Browse Source

chore: Update codegen

Michael Bromley 1 day ago
parent
commit
f2713abc65

File diff suppressed because it is too large
+ 0 - 0
packages/asset-server-plugin/e2e/graphql/graphql-env-admin.d.ts


File diff suppressed because it is too large
+ 0 - 0
packages/asset-server-plugin/e2e/graphql/graphql-env-shop.d.ts


File diff suppressed because it is too large
+ 0 - 0
packages/core/e2e/graphql/graphql-env-admin.d.ts


File diff suppressed because it is too large
+ 0 - 0
packages/core/e2e/graphql/graphql-env-shop.d.ts


+ 3 - 3
packages/dashboard/src/app/routeTree.gen.ts

@@ -395,8 +395,8 @@ const AuthenticatedProductsProductsProductIdOptionGroupsProductOptionGroupIdOpti
   )
 
 export interface FileRoutesByFullPath {
-  '/login': typeof LoginRoute
   '/': typeof AuthenticatedIndexRoute
+  '/login': typeof LoginRoute
   '/administrators': typeof AuthenticatedAdministratorsAdministratorsRoute
   '/assets': typeof AuthenticatedAssetsAssetsRoute
   '/channels': typeof AuthenticatedChannelsChannelsRoute
@@ -567,8 +567,8 @@ export interface FileRoutesById {
 export interface FileRouteTypes {
   fileRoutesByFullPath: FileRoutesByFullPath
   fullPaths:
-    | '/login'
     | '/'
+    | '/login'
     | '/administrators'
     | '/assets'
     | '/channels'
@@ -753,7 +753,7 @@ declare module '@tanstack/react-router' {
     '/_authenticated': {
       id: '/_authenticated'
       path: ''
-      fullPath: ''
+      fullPath: '/'
       preLoaderRoute: typeof AuthenticatedRouteImport
       parentRoute: typeof rootRouteImport
     }

File diff suppressed because it is too large
+ 0 - 0
packages/elasticsearch-plugin/e2e/graphql/graphql-env-admin.d.ts


File diff suppressed because it is too large
+ 0 - 0
packages/elasticsearch-plugin/e2e/graphql/graphql-env-shop.d.ts


File diff suppressed because it is too large
+ 0 - 0
packages/payments-plugin/e2e/graphql/graphql-env-admin.d.ts


File diff suppressed because it is too large
+ 0 - 0
packages/payments-plugin/e2e/graphql/graphql-env-shop.d.ts


+ 11 - 10
packages/payments-plugin/src/mollie/graphql/generated-shop-types.ts

@@ -1785,6 +1785,7 @@ export type MolliePaymentIntentInput = {
      * Set this to false when you expect that order fulfillment takes longer than 24 hours.
      * If set to false, you will need to settle the "Authorized" payment in Vendure manually!
      * If you fail to do so, the Authorized payment will expire after 28 days.
+     * This setting can be overridden on the plugin level via the plugin options.
      */
     immediateCapture?: InputMaybe<Scalars['Boolean']['input']>;
     /**
@@ -1918,6 +1919,12 @@ export type Mutation = {
      * shipping method will apply to.
      */
     setOrderShippingMethod: SetOrderShippingMethodResult;
+    /**
+     * Fetch the payment status from Mollie and update the order status in Vendure accordingly.
+     * Use this mutation when the Mollie webhook is delayed and you want to manually force update the order status.
+     * Throws a ForbiddenError for unauthenticated calls when the order is not yet settled.
+     */
+    syncMolliePaymentStatus?: Maybe<Order>;
     /** Transitions an Order to a new state. Valid next states can be found by querying `nextOrderStates` */
     transitionOrderToState?: Maybe<TransitionOrderToStateResult>;
     /** Unsets the billing address for the active Order. Available since version 3.1.0 */
@@ -1935,12 +1942,6 @@ export type Mutation = {
     updateCustomerEmailAddress: UpdateCustomerEmailAddressResult;
     /** Update the password of the active Customer */
     updateCustomerPassword: UpdateCustomerPasswordResult;
-    /**
-     * Fetch the payment status from Mollie and update the order status in Vendure accordingly.
-     * Use this mutation when the Mollie webhook is delayed and you want to manually force update the order status.
-     * Throws a ForbiddenError for unauthenticated calls when the order is not yet settled.
-     */
-    syncMolliePaymentStatus?: Maybe<Order>;
     /**
      * Verify a Customer email address with the token sent to that address. Only applicable if `authOptions.requireVerification` is set to true.
      *
@@ -2045,6 +2046,10 @@ export type MutationSetOrderShippingMethodArgs = {
     shippingMethodId: Array<Scalars['ID']['input']>;
 };
 
+export type MutationSyncMolliePaymentStatusArgs = {
+    orderCode: Scalars['String']['input'];
+};
+
 export type MutationTransitionOrderToStateArgs = {
     state: Scalars['String']['input'];
 };
@@ -2066,10 +2071,6 @@ export type MutationUpdateCustomerPasswordArgs = {
     newPassword: Scalars['String']['input'];
 };
 
-export type MutationSyncMolliePaymentStatusArgs = {
-    orderCode: Scalars['String']['input'];
-};
-
 export type MutationVerifyCustomerAccountArgs = {
     password?: InputMaybe<Scalars['String']['input']>;
     token: Scalars['String']['input'];

File diff suppressed because it is too large
+ 0 - 0
schema-admin.json


File diff suppressed because it is too large
+ 0 - 0
schema-shop.json


Some files were not shown because too many files changed in this diff