@forgecart/sdk 0.1.0 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8234,46 +8234,2115 @@ export type ZoneSortParameter = {
8234
8234
  updatedAt?: InputMaybe<SortOrder>;
8235
8235
  };
8236
8236
 
8237
- export type AdminLoginMutationVariables = Exact<{
8237
+ export type ActiveAdministratorQueryVariables = Exact<{ [key: string]: never; }>;
8238
+
8239
+
8240
+ export type ActiveAdministratorQuery = { __typename?: 'Query', activeAdministrator?: { __typename?: 'Administrator', id: string, createdAt: any, updatedAt: any, firstName: string, lastName: string, emailAddress: string, customFields?: any | null, user: { __typename?: 'User', id: string, identifier: string, verified: boolean, lastLogin?: any | null, roles: Array<{ __typename?: 'Role', id: string, code: string, description: string, permissions: Array<Permission> }> } } | null };
8241
+
8242
+ export type AdministratorQueryVariables = Exact<{
8243
+ id: Scalars['ID']['input'];
8244
+ }>;
8245
+
8246
+
8247
+ export type AdministratorQuery = { __typename?: 'Query', administrator?: { __typename?: 'Administrator', id: string, createdAt: any, updatedAt: any, firstName: string, lastName: string, emailAddress: string, customFields?: any | null, user: { __typename?: 'User', id: string, identifier: string, verified: boolean, lastLogin?: any | null, roles: Array<{ __typename?: 'Role', id: string, code: string, description: string, permissions: Array<Permission> }> } } | null };
8248
+
8249
+ export type AdministratorsQueryVariables = Exact<{
8250
+ options?: InputMaybe<AdministratorListOptions>;
8251
+ }>;
8252
+
8253
+
8254
+ export type AdministratorsQuery = { __typename?: 'Query', administrators: { __typename?: 'AdministratorList', totalItems: number, items: Array<{ __typename?: 'Administrator', id: string, createdAt: any, updatedAt: any, firstName: string, lastName: string, emailAddress: string, customFields?: any | null, user: { __typename?: 'User', id: string, identifier: string, verified: boolean, roles: Array<{ __typename?: 'Role', id: string, code: string, description: string }> } }> } };
8255
+
8256
+ export type MeQueryVariables = Exact<{ [key: string]: never; }>;
8257
+
8258
+
8259
+ export type MeQuery = { __typename?: 'Query', me?: { __typename?: 'CurrentUser', id: string, identifier: string, sessionToken: string, channels: Array<{ __typename?: 'CurrentUserChannel', id: string, code: string, token: string, permissions: Array<Permission> }> } | null };
8260
+
8261
+ export type AuthenticateMutationVariables = Exact<{
8262
+ input: AuthenticationInput;
8263
+ rememberMe?: InputMaybe<Scalars['Boolean']['input']>;
8264
+ }>;
8265
+
8266
+
8267
+ export type AuthenticateMutation = { __typename?: 'Mutation', authenticate: { __typename: 'CurrentUser', id: string, identifier: string, sessionToken: string, channels: Array<{ __typename?: 'CurrentUserChannel', id: string, code: string, token: string, permissions: Array<Permission> }> } | { __typename: 'InvalidCredentialsError', errorCode: ErrorCode, message: string } };
8268
+
8269
+ export type LoginMutationVariables = Exact<{
8238
8270
  username: Scalars['String']['input'];
8239
8271
  password: Scalars['String']['input'];
8240
8272
  rememberMe?: InputMaybe<Scalars['Boolean']['input']>;
8241
8273
  }>;
8242
8274
 
8243
8275
 
8244
- export type AdminLoginMutation = { __typename?: 'Mutation', login: { __typename: 'CurrentUser', id: string, identifier: string, channels: Array<{ __typename?: 'CurrentUserChannel', id: string, code: string, token: string, permissions: Array<Permission> }> } | { __typename: 'InvalidCredentialsError', errorCode: ErrorCode, message: string } | { __typename: 'NativeAuthStrategyError', errorCode: ErrorCode, message: string } };
8276
+ export type LoginMutation = { __typename?: 'Mutation', login: { __typename: 'CurrentUser', id: string, identifier: string, sessionToken: string, channels: Array<{ __typename?: 'CurrentUserChannel', id: string, code: string, token: string, permissions: Array<Permission> }> } | { __typename: 'InvalidCredentialsError', errorCode: ErrorCode, message: string } | { __typename: 'NativeAuthStrategyError', errorCode: ErrorCode, message: string } };
8245
8277
 
8246
- export type ProductsQueryVariables = Exact<{
8247
- options?: InputMaybe<ProductListOptions>;
8278
+ export type LogoutMutationVariables = Exact<{ [key: string]: never; }>;
8279
+
8280
+
8281
+ export type LogoutMutation = { __typename?: 'Mutation', logout: { __typename?: 'Success', success: boolean } };
8282
+
8283
+ export type RegisterMutationVariables = Exact<{
8284
+ input: AuthenticationRegisterInput;
8248
8285
  }>;
8249
8286
 
8250
8287
 
8251
- export type ProductsQuery = { __typename?: 'Query', products: { __typename?: 'ProductList', totalItems: number, items: Array<{ __typename?: 'Product', id: string, name: string, slug: string, description: string, enabled: boolean, createdAt: any, updatedAt: any, featuredAsset?: { __typename?: 'Asset', id: string, preview: string } | null, variants: Array<{ __typename?: 'ProductVariant', id: string, name: string, sku: string, price: any, stockLevel: string, enabled: boolean }> }> } };
8288
+ export type RegisterMutation = { __typename?: 'Mutation', register?: { __typename?: 'RegisterSellerResponse', result: boolean } | null };
8252
8289
 
8253
- export type ProductQueryVariables = Exact<{
8290
+ export type VerifyMutationVariables = Exact<{
8291
+ token: Scalars['String']['input'];
8292
+ }>;
8293
+
8294
+
8295
+ export type VerifyMutation = { __typename?: 'Mutation', verify?: { __typename?: 'VerifySellerResponse', success: boolean, message: string } | null };
8296
+
8297
+ export type CreateAdministratorMutationVariables = Exact<{
8298
+ input: CreateAdministratorInput;
8299
+ }>;
8300
+
8301
+
8302
+ export type CreateAdministratorMutation = { __typename?: 'Mutation', createAdministrator: { __typename?: 'Administrator', id: string, createdAt: any, updatedAt: any, firstName: string, lastName: string, emailAddress: string, customFields?: any | null, user: { __typename?: 'User', id: string, identifier: string, verified: boolean, roles: Array<{ __typename?: 'Role', id: string, code: string, description: string, permissions: Array<Permission> }> } } };
8303
+
8304
+ export type UpdateAdministratorMutationVariables = Exact<{
8305
+ input: UpdateAdministratorInput;
8306
+ }>;
8307
+
8308
+
8309
+ export type UpdateAdministratorMutation = { __typename?: 'Mutation', updateAdministrator: { __typename?: 'Administrator', id: string, createdAt: any, updatedAt: any, firstName: string, lastName: string, emailAddress: string, customFields?: any | null, user: { __typename?: 'User', id: string, identifier: string, verified: boolean, roles: Array<{ __typename?: 'Role', id: string, code: string, description: string, permissions: Array<Permission> }> } } };
8310
+
8311
+ export type UpdateActiveAdministratorMutationVariables = Exact<{
8312
+ input: UpdateActiveAdministratorInput;
8313
+ }>;
8314
+
8315
+
8316
+ export type UpdateActiveAdministratorMutation = { __typename?: 'Mutation', updateActiveAdministrator: { __typename?: 'Administrator', id: string, createdAt: any, updatedAt: any, firstName: string, lastName: string, emailAddress: string, customFields?: any | null, user: { __typename?: 'User', id: string, identifier: string, verified: boolean, roles: Array<{ __typename?: 'Role', id: string, code: string, description: string, permissions: Array<Permission> }> } } };
8317
+
8318
+ export type DeleteAdministratorMutationVariables = Exact<{
8254
8319
  id: Scalars['ID']['input'];
8255
8320
  }>;
8256
8321
 
8257
8322
 
8258
- export type ProductQuery = { __typename?: 'Query', product?: { __typename?: 'Product', id: string, name: string, slug: string, description: string, enabled: boolean, featuredAsset?: { __typename?: 'Asset', id: string, preview: string, source: string } | null, assets: Array<{ __typename?: 'Asset', id: string, preview: string, source: string }>, variants: Array<{ __typename?: 'ProductVariant', id: string, name: string, sku: string, price: any, stockLevel: string, trackInventory: GlobalFlag, enabled: boolean }>, optionGroups: Array<{ __typename?: 'ProductOptionGroup', id: string, name: string, code: string }>, facetValues: Array<{ __typename?: 'FacetValue', id: string, name: string, code: string }> } | null };
8323
+ export type DeleteAdministratorMutation = { __typename?: 'Mutation', deleteAdministrator: { __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null } };
8259
8324
 
8260
- export type CreateProductMutationVariables = Exact<{
8261
- input: CreateProductInput;
8325
+ export type DeleteAdministratorsMutationVariables = Exact<{
8326
+ ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
8262
8327
  }>;
8263
8328
 
8264
8329
 
8265
- export type CreateProductMutation = { __typename?: 'Mutation', createProduct: { __typename?: 'Product', id: string, name: string, slug: string, enabled: boolean } };
8330
+ export type DeleteAdministratorsMutation = { __typename?: 'Mutation', deleteAdministrators: Array<{ __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null }> };
8266
8331
 
8267
- export type UpdateProductMutationVariables = Exact<{
8268
- input: UpdateProductInput;
8332
+ export type InviteAdministratorMutationVariables = Exact<{
8333
+ input: InviteAdministratorInput;
8269
8334
  }>;
8270
8335
 
8271
8336
 
8272
- export type UpdateProductMutation = { __typename?: 'Mutation', updateProduct: { __typename?: 'Product', id: string, name: string, slug: string, enabled: boolean } };
8337
+ export type InviteAdministratorMutation = { __typename?: 'Mutation', inviteAdministrator?: { __typename?: 'InviteAdministratorRsponse', result: boolean } | null };
8273
8338
 
8274
- export type DeleteProductMutationVariables = Exact<{
8339
+ export type AssignRoleToAdministratorMutationVariables = Exact<{
8340
+ administratorId: Scalars['ID']['input'];
8341
+ roleId: Scalars['ID']['input'];
8342
+ }>;
8343
+
8344
+
8345
+ export type AssignRoleToAdministratorMutation = { __typename?: 'Mutation', assignRoleToAdministrator: { __typename?: 'Administrator', id: string, createdAt: any, updatedAt: any, firstName: string, lastName: string, emailAddress: string, customFields?: any | null, user: { __typename?: 'User', id: string, identifier: string, verified: boolean, roles: Array<{ __typename?: 'Role', id: string, code: string, description: string, permissions: Array<Permission> }> } } };
8346
+
8347
+ export type AssetQueryVariables = Exact<{
8275
8348
  id: Scalars['ID']['input'];
8276
8349
  }>;
8277
8350
 
8278
8351
 
8279
- export type DeleteProductMutation = { __typename?: 'Mutation', deleteProduct: { __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null } };
8352
+ export type AssetQuery = { __typename?: 'Query', asset?: { __typename?: 'Asset', id: string, createdAt: any, updatedAt: any, name: string, type: AssetType, fileSize: number, mimeType: string, width: number, height: number, source: string, preview: string, thumbnail: string, customFields?: any | null, focalPoint?: { __typename?: 'Coordinate', x: number, y: number } | null, tags: Array<{ __typename?: 'Tag', id: string, value: string }> } | null };
8353
+
8354
+ export type AssetsQueryVariables = Exact<{
8355
+ options?: InputMaybe<AssetListOptions>;
8356
+ }>;
8357
+
8358
+
8359
+ export type AssetsQuery = { __typename?: 'Query', assets: { __typename?: 'AssetList', totalItems: number, items: Array<{ __typename?: 'Asset', id: string, createdAt: any, updatedAt: any, name: string, type: AssetType, fileSize: number, mimeType: string, width: number, height: number, source: string, preview: string, thumbnail: string, focalPoint?: { __typename?: 'Coordinate', x: number, y: number } | null, tags: Array<{ __typename?: 'Tag', id: string, value: string }> }> } };
8360
+
8361
+ export type CreateAssetsMutationVariables = Exact<{
8362
+ input: Array<CreateAssetInput> | CreateAssetInput;
8363
+ }>;
8364
+
8365
+
8366
+ export type CreateAssetsMutation = { __typename?: 'Mutation', createAssets: Array<{ __typename: 'Asset', id: string, createdAt: any, updatedAt: any, name: string, type: AssetType, fileSize: number, mimeType: string, width: number, height: number, source: string, preview: string, thumbnail: string, customFields?: any | null, focalPoint?: { __typename?: 'Coordinate', x: number, y: number } | null, tags: Array<{ __typename?: 'Tag', id: string, value: string }> } | { __typename: 'MimeTypeError', errorCode: ErrorCode, message: string, fileName: string, mimeType: string }> };
8367
+
8368
+ export type UpdateAssetMutationVariables = Exact<{
8369
+ input: UpdateAssetInput;
8370
+ }>;
8371
+
8372
+
8373
+ export type UpdateAssetMutation = { __typename?: 'Mutation', updateAsset: { __typename?: 'Asset', id: string, createdAt: any, updatedAt: any, name: string, type: AssetType, fileSize: number, mimeType: string, width: number, height: number, source: string, preview: string, thumbnail: string, customFields?: any | null, focalPoint?: { __typename?: 'Coordinate', x: number, y: number } | null, tags: Array<{ __typename?: 'Tag', id: string, value: string }> } };
8374
+
8375
+ export type DeleteAssetMutationVariables = Exact<{
8376
+ input: DeleteAssetInput;
8377
+ }>;
8378
+
8379
+
8380
+ export type DeleteAssetMutation = { __typename?: 'Mutation', deleteAsset: { __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null } };
8381
+
8382
+ export type DeleteAssetsMutationVariables = Exact<{
8383
+ input: DeleteAssetsInput;
8384
+ }>;
8385
+
8386
+
8387
+ export type DeleteAssetsMutation = { __typename?: 'Mutation', deleteAssets: { __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null } };
8388
+
8389
+ export type AssignAssetsToChannelMutationVariables = Exact<{
8390
+ input: AssignAssetsToChannelInput;
8391
+ }>;
8392
+
8393
+
8394
+ export type AssignAssetsToChannelMutation = { __typename?: 'Mutation', assignAssetsToChannel: Array<{ __typename?: 'Asset', id: string, createdAt: any, updatedAt: any, name: string, type: AssetType, fileSize: number, mimeType: string, width: number, height: number, source: string, preview: string, thumbnail: string, tags: Array<{ __typename?: 'Tag', id: string, value: string }> }> };
8395
+
8396
+ export type BlogPostsQueryVariables = Exact<{
8397
+ options?: InputMaybe<BlogPostListOptions>;
8398
+ }>;
8399
+
8400
+
8401
+ export type BlogPostsQuery = { __typename?: 'Query', blogPosts: { __typename?: 'BlogPostList', totalItems: number, items: Array<{ __typename?: 'BlogPost', id: string, name: string, title: string, slug: string, content: string, excerpt?: string | null, author?: string | null, isPublished: boolean, publishedAt?: any | null, createdAt: any, updatedAt: any, featuredAsset?: { __typename?: 'Asset', id: string, name: string, preview: string, source: string, fileSize: number, mimeType: string } | null, facetValues: Array<{ __typename?: 'FacetValue', id: string, code: string, name: string, facet: { __typename?: 'Facet', id: string, code: string, name: string, languageCode: LanguageCode, isPrivate: boolean, createdAt: any, updatedAt: any, customFields?: any | null, translations: Array<{ __typename?: 'FacetTranslation', id: string, languageCode: LanguageCode, name: string, createdAt: any, updatedAt: any }>, valueList: { __typename?: 'FacetValueList', totalItems: number, items: Array<{ __typename?: 'FacetValue', id: string, code: string, name: string }> }, values: Array<{ __typename?: 'FacetValue', id: string, code: string, name: string }> } }>, meta?: { __typename?: 'BlogPostMeta', id: string, title: string, description: string, keywords: string, structuredData?: any | null, translations: Array<{ __typename?: 'BlogPostMetaTranslation', id: string, languageCode: LanguageCode, title: string, description: string, keywords: string }> } | null, translations: Array<{ __typename?: 'BlogPostTranslation', id: string, languageCode: LanguageCode, name: string, title: string, slug: string, content: string, excerpt?: string | null }> }> } };
8402
+
8403
+ export type BlogPostQueryVariables = Exact<{
8404
+ id?: InputMaybe<Scalars['ID']['input']>;
8405
+ slug?: InputMaybe<Scalars['String']['input']>;
8406
+ }>;
8407
+
8408
+
8409
+ export type BlogPostQuery = { __typename?: 'Query', blogPost?: { __typename?: 'BlogPost', id: string, name: string, title: string, slug: string, content: string, excerpt?: string | null, author?: string | null, isPublished: boolean, publishedAt?: any | null, createdAt: any, updatedAt: any, featuredAsset?: { __typename?: 'Asset', id: string, name: string, preview: string, source: string, fileSize: number, mimeType: string } | null, facetValues: Array<{ __typename?: 'FacetValue', id: string, code: string, name: string, facet: { __typename?: 'Facet', id: string, code: string, name: string, languageCode: LanguageCode, isPrivate: boolean, createdAt: any, updatedAt: any, customFields?: any | null, translations: Array<{ __typename?: 'FacetTranslation', id: string, languageCode: LanguageCode, name: string, createdAt: any, updatedAt: any }>, valueList: { __typename?: 'FacetValueList', totalItems: number, items: Array<{ __typename?: 'FacetValue', id: string, code: string, name: string }> }, values: Array<{ __typename?: 'FacetValue', id: string, code: string, name: string }> } }>, meta?: { __typename?: 'BlogPostMeta', id: string, title: string, description: string, keywords: string, structuredData?: any | null, translations: Array<{ __typename?: 'BlogPostMetaTranslation', id: string, languageCode: LanguageCode, title: string, description: string, keywords: string }> } | null, translations: Array<{ __typename?: 'BlogPostTranslation', id: string, languageCode: LanguageCode, name: string, title: string, slug: string, content: string, excerpt?: string | null }> } | null };
8410
+
8411
+ export type CreateBlogPostMutationVariables = Exact<{
8412
+ input: CreateBlogPostInput;
8413
+ }>;
8414
+
8415
+
8416
+ export type CreateBlogPostMutation = { __typename?: 'Mutation', createBlogPost: { __typename?: 'BlogPost', id: string, name: string, title: string, slug: string, content: string, excerpt?: string | null, author?: string | null, isPublished: boolean, publishedAt?: any | null, createdAt: any, updatedAt: any, featuredAsset?: { __typename?: 'Asset', id: string, name: string, preview: string, source: string } | null, facetValues: Array<{ __typename?: 'FacetValue', id: string, code: string, name: string }>, meta?: { __typename?: 'BlogPostMeta', id: string, title: string, description: string, keywords: string, structuredData?: any | null } | null, translations: Array<{ __typename?: 'BlogPostTranslation', id: string, languageCode: LanguageCode, name: string, title: string, slug: string, content: string, excerpt?: string | null }> } };
8417
+
8418
+ export type UpdateBlogPostMutationVariables = Exact<{
8419
+ input: UpdateBlogPostInput;
8420
+ }>;
8421
+
8422
+
8423
+ export type UpdateBlogPostMutation = { __typename?: 'Mutation', updateBlogPost: { __typename?: 'BlogPost', id: string, name: string, title: string, slug: string, content: string, excerpt?: string | null, author?: string | null, isPublished: boolean, publishedAt?: any | null, createdAt: any, updatedAt: any, featuredAsset?: { __typename?: 'Asset', id: string, name: string, preview: string, source: string } | null, facetValues: Array<{ __typename?: 'FacetValue', id: string, code: string, name: string }>, meta?: { __typename?: 'BlogPostMeta', id: string, title: string, description: string, keywords: string, structuredData?: any | null } | null, translations: Array<{ __typename?: 'BlogPostTranslation', id: string, languageCode: LanguageCode, name: string, title: string, slug: string, content: string, excerpt?: string | null }> } };
8424
+
8425
+ export type DeleteBlogPostMutationVariables = Exact<{
8426
+ id: Scalars['ID']['input'];
8427
+ }>;
8428
+
8429
+
8430
+ export type DeleteBlogPostMutation = { __typename?: 'Mutation', deleteBlogPost: boolean };
8431
+
8432
+ export type PublishBlogPostMutationVariables = Exact<{
8433
+ id: Scalars['ID']['input'];
8434
+ }>;
8435
+
8436
+
8437
+ export type PublishBlogPostMutation = { __typename?: 'Mutation', publishBlogPost: { __typename?: 'BlogPost', id: string, name: string, title: string, slug: string, isPublished: boolean, publishedAt?: any | null, updatedAt: any } };
8438
+
8439
+ export type UnpublishBlogPostMutationVariables = Exact<{
8440
+ id: Scalars['ID']['input'];
8441
+ }>;
8442
+
8443
+
8444
+ export type UnpublishBlogPostMutation = { __typename?: 'Mutation', unpublishBlogPost: { __typename?: 'BlogPost', id: string, name: string, title: string, slug: string, isPublished: boolean, publishedAt?: any | null, updatedAt: any } };
8445
+
8446
+ export type ListChannelPluginsQueryVariables = Exact<{ [key: string]: never; }>;
8447
+
8448
+
8449
+ export type ListChannelPluginsQuery = { __typename?: 'Query', listChannelPlugins: Array<{ __typename?: 'ChannelPlugin', id: string, status: string, configuration: any, channel: { __typename?: 'Channel', id: string, code: string, token: string, createdAt: any, updatedAt: any, availableCurrencyCodes: Array<CurrencyCode>, availableLanguageCodes?: Array<LanguageCode> | null, defaultCurrencyCode: CurrencyCode, defaultLanguageCode: LanguageCode, currencyCode: CurrencyCode, pricesIncludeTax: boolean, outOfStockThreshold?: number | null, trackInventory?: boolean | null, customFields?: any | null, defaultShippingZone?: { __typename?: 'Zone', id: string, name: string } | null, defaultTaxZone?: { __typename?: 'Zone', id: string, name: string } | null, seller?: { __typename?: 'Seller', id: string, name: string, createdAt: any, updatedAt: any, customFields?: any | null } | null, settings?: { __typename?: 'ChannelSettings', id: string, name: string } | null, fulfillmentHandlers: Array<{ __typename?: 'ChannelFulfillment', id: string, code: string, name: string }> }, manageablePlugin: { __typename?: 'ManageablePlugin', id: string, code: string, name: string, description: string, imageUrl: string, toggable: boolean, tags: Array<{ __typename?: 'ManageablePluginTags', id: string, code: string, name: string }>, configurationItems: Array<{ __typename?: 'ManageablePluginConfigItem', id: string, type: string, translations: Array<{ __typename?: 'ManageablePluginConfigItemTranslation', id: string, languageCode: string, name: string, description: string, type: string }> }> } }> };
8450
+
8451
+ export type ListManageablePluginsQueryVariables = Exact<{ [key: string]: never; }>;
8452
+
8453
+
8454
+ export type ListManageablePluginsQuery = { __typename?: 'Query', listManageablePlugins: Array<{ __typename?: 'ManageablePlugin', id: string, code: string, name: string, description: string, imageUrl: string, toggable: boolean, tags: Array<{ __typename?: 'ManageablePluginTags', id: string, code: string, name: string }>, configurationItems: Array<{ __typename?: 'ManageablePluginConfigItem', id: string, type: string, translations: Array<{ __typename?: 'ManageablePluginConfigItemTranslation', id: string, languageCode: string, name: string, description: string, type: string }> }> }> };
8455
+
8456
+ export type GetChannelPluginConfigurationItemValueQueryVariables = Exact<{
8457
+ code: Scalars['String']['input'];
8458
+ configurationItemCode: Scalars['String']['input'];
8459
+ }>;
8460
+
8461
+
8462
+ export type GetChannelPluginConfigurationItemValueQuery = { __typename?: 'Query', getChannelPluginConfigurationItemValue: string };
8463
+
8464
+ export type CreateChannelPluginMutationVariables = Exact<{
8465
+ manageablePluginCode: Scalars['String']['input'];
8466
+ }>;
8467
+
8468
+
8469
+ export type CreateChannelPluginMutation = { __typename?: 'Mutation', createChannelPlugin: { __typename?: 'ChannelPlugin', id: string, status: string, configuration: any, channel: { __typename?: 'Channel', id: string, code: string, token: string, createdAt: any, updatedAt: any, availableCurrencyCodes: Array<CurrencyCode>, availableLanguageCodes?: Array<LanguageCode> | null, defaultCurrencyCode: CurrencyCode, defaultLanguageCode: LanguageCode, currencyCode: CurrencyCode, pricesIncludeTax: boolean, outOfStockThreshold?: number | null, trackInventory?: boolean | null, customFields?: any | null, defaultShippingZone?: { __typename?: 'Zone', id: string, name: string } | null, defaultTaxZone?: { __typename?: 'Zone', id: string, name: string } | null, seller?: { __typename?: 'Seller', id: string, name: string, createdAt: any, updatedAt: any, customFields?: any | null } | null, settings?: { __typename?: 'ChannelSettings', id: string, name: string } | null, fulfillmentHandlers: Array<{ __typename?: 'ChannelFulfillment', id: string, code: string, name: string }> }, manageablePlugin: { __typename?: 'ManageablePlugin', id: string, code: string, name: string, description: string, imageUrl: string, toggable: boolean, tags: Array<{ __typename?: 'ManageablePluginTags', id: string, code: string, name: string }>, configurationItems: Array<{ __typename?: 'ManageablePluginConfigItem', id: string, type: string, translations: Array<{ __typename?: 'ManageablePluginConfigItemTranslation', id: string, languageCode: string, name: string, description: string, type: string }> }> } } };
8470
+
8471
+ export type UpdateChannelPluginConfigurationMutationVariables = Exact<{
8472
+ channelPluginId: Scalars['ID']['input'];
8473
+ configuration: Scalars['JSON']['input'];
8474
+ }>;
8475
+
8476
+
8477
+ export type UpdateChannelPluginConfigurationMutation = { __typename?: 'Mutation', updateChannelPluginConfiguration: { __typename?: 'ChannelPlugin', id: string, status: string, configuration: any, channel: { __typename?: 'Channel', id: string, code: string, token: string, createdAt: any, updatedAt: any, availableCurrencyCodes: Array<CurrencyCode>, availableLanguageCodes?: Array<LanguageCode> | null, defaultCurrencyCode: CurrencyCode, defaultLanguageCode: LanguageCode, currencyCode: CurrencyCode, pricesIncludeTax: boolean, outOfStockThreshold?: number | null, trackInventory?: boolean | null, customFields?: any | null, defaultShippingZone?: { __typename?: 'Zone', id: string, name: string } | null, defaultTaxZone?: { __typename?: 'Zone', id: string, name: string } | null, seller?: { __typename?: 'Seller', id: string, name: string, createdAt: any, updatedAt: any, customFields?: any | null } | null, settings?: { __typename?: 'ChannelSettings', id: string, name: string } | null, fulfillmentHandlers: Array<{ __typename?: 'ChannelFulfillment', id: string, code: string, name: string }> }, manageablePlugin: { __typename?: 'ManageablePlugin', id: string, code: string, name: string, description: string, imageUrl: string, toggable: boolean, tags: Array<{ __typename?: 'ManageablePluginTags', id: string, code: string, name: string }>, configurationItems: Array<{ __typename?: 'ManageablePluginConfigItem', id: string, type: string, translations: Array<{ __typename?: 'ManageablePluginConfigItemTranslation', id: string, languageCode: string, name: string, description: string, type: string }> }> } } };
8478
+
8479
+ export type EnableChannelPluginMutationVariables = Exact<{
8480
+ channelPluginId: Scalars['ID']['input'];
8481
+ configuration: Scalars['JSON']['input'];
8482
+ }>;
8483
+
8484
+
8485
+ export type EnableChannelPluginMutation = { __typename?: 'Mutation', enableChannelPlugin: { __typename?: 'ChannelPlugin', id: string, status: string, configuration: any, channel: { __typename?: 'Channel', id: string, code: string, token: string, createdAt: any, updatedAt: any, availableCurrencyCodes: Array<CurrencyCode>, availableLanguageCodes?: Array<LanguageCode> | null, defaultCurrencyCode: CurrencyCode, defaultLanguageCode: LanguageCode, currencyCode: CurrencyCode, pricesIncludeTax: boolean, outOfStockThreshold?: number | null, trackInventory?: boolean | null, customFields?: any | null, defaultShippingZone?: { __typename?: 'Zone', id: string, name: string } | null, defaultTaxZone?: { __typename?: 'Zone', id: string, name: string } | null, seller?: { __typename?: 'Seller', id: string, name: string, createdAt: any, updatedAt: any, customFields?: any | null } | null, settings?: { __typename?: 'ChannelSettings', id: string, name: string } | null, fulfillmentHandlers: Array<{ __typename?: 'ChannelFulfillment', id: string, code: string, name: string }> }, manageablePlugin: { __typename?: 'ManageablePlugin', id: string, code: string, name: string, description: string, imageUrl: string, toggable: boolean, tags: Array<{ __typename?: 'ManageablePluginTags', id: string, code: string, name: string }>, configurationItems: Array<{ __typename?: 'ManageablePluginConfigItem', id: string, type: string, translations: Array<{ __typename?: 'ManageablePluginConfigItemTranslation', id: string, languageCode: string, name: string, description: string, type: string }> }> } } };
8486
+
8487
+ export type DisableChannelPluginMutationVariables = Exact<{
8488
+ channelPluginId: Scalars['ID']['input'];
8489
+ }>;
8490
+
8491
+
8492
+ export type DisableChannelPluginMutation = { __typename?: 'Mutation', disableChannelPlugin: { __typename?: 'ChannelPlugin', id: string, status: string, configuration: any, channel: { __typename?: 'Channel', id: string, code: string, token: string, createdAt: any, updatedAt: any, availableCurrencyCodes: Array<CurrencyCode>, availableLanguageCodes?: Array<LanguageCode> | null, defaultCurrencyCode: CurrencyCode, defaultLanguageCode: LanguageCode, currencyCode: CurrencyCode, pricesIncludeTax: boolean, outOfStockThreshold?: number | null, trackInventory?: boolean | null, customFields?: any | null, defaultShippingZone?: { __typename?: 'Zone', id: string, name: string } | null, defaultTaxZone?: { __typename?: 'Zone', id: string, name: string } | null, seller?: { __typename?: 'Seller', id: string, name: string, createdAt: any, updatedAt: any, customFields?: any | null } | null, settings?: { __typename?: 'ChannelSettings', id: string, name: string } | null, fulfillmentHandlers: Array<{ __typename?: 'ChannelFulfillment', id: string, code: string, name: string }> }, manageablePlugin: { __typename?: 'ManageablePlugin', id: string, code: string, name: string, description: string, imageUrl: string, toggable: boolean, tags: Array<{ __typename?: 'ManageablePluginTags', id: string, code: string, name: string }>, configurationItems: Array<{ __typename?: 'ManageablePluginConfigItem', id: string, type: string, translations: Array<{ __typename?: 'ManageablePluginConfigItemTranslation', id: string, languageCode: string, name: string, description: string, type: string }> }> } } };
8493
+
8494
+ export type DeleteChannelPluginMutationVariables = Exact<{
8495
+ channelPluginId: Scalars['ID']['input'];
8496
+ }>;
8497
+
8498
+
8499
+ export type DeleteChannelPluginMutation = { __typename?: 'Mutation', deleteChannelPlugin: { __typename?: 'ChannelPlugin', id: string, status: string, configuration: any, channel: { __typename?: 'Channel', id: string, code: string, token: string, createdAt: any, updatedAt: any, availableCurrencyCodes: Array<CurrencyCode>, availableLanguageCodes?: Array<LanguageCode> | null, defaultCurrencyCode: CurrencyCode, defaultLanguageCode: LanguageCode, currencyCode: CurrencyCode, pricesIncludeTax: boolean, outOfStockThreshold?: number | null, trackInventory?: boolean | null, customFields?: any | null, defaultShippingZone?: { __typename?: 'Zone', id: string, name: string } | null, defaultTaxZone?: { __typename?: 'Zone', id: string, name: string } | null, seller?: { __typename?: 'Seller', id: string, name: string, createdAt: any, updatedAt: any, customFields?: any | null } | null, settings?: { __typename?: 'ChannelSettings', id: string, name: string } | null, fulfillmentHandlers: Array<{ __typename?: 'ChannelFulfillment', id: string, code: string, name: string }> }, manageablePlugin: { __typename?: 'ManageablePlugin', id: string, code: string, name: string, description: string, imageUrl: string, toggable: boolean, tags: Array<{ __typename?: 'ManageablePluginTags', id: string, code: string, name: string }>, configurationItems: Array<{ __typename?: 'ManageablePluginConfigItem', id: string, type: string, translations: Array<{ __typename?: 'ManageablePluginConfigItemTranslation', id: string, languageCode: string, name: string, description: string, type: string }> }> } } };
8500
+
8501
+ export type ActiveChannelQueryVariables = Exact<{ [key: string]: never; }>;
8502
+
8503
+
8504
+ export type ActiveChannelQuery = { __typename?: 'Query', activeChannel: { __typename?: 'Channel', id: string, code: string, token: string, createdAt: any, updatedAt: any, defaultLanguageCode: LanguageCode, availableLanguageCodes?: Array<LanguageCode> | null, defaultCurrencyCode: CurrencyCode, availableCurrencyCodes: Array<CurrencyCode>, pricesIncludeTax: boolean, outOfStockThreshold?: number | null, trackInventory?: boolean | null, customFields?: any | null, defaultShippingZone?: { __typename?: 'Zone', id: string, name: string } | null, defaultTaxZone?: { __typename?: 'Zone', id: string, name: string } | null, seller?: { __typename?: 'Seller', id: string, name: string, createdAt: any, updatedAt: any, customFields?: any | null } | null, fulfillmentHandlers: Array<{ __typename?: 'ChannelFulfillment', id: string, code: string, name: string, description: string }>, settings?: { __typename?: 'ChannelSettings', id: string, name: string, digital: boolean, arrangingPaymentRequiresContents: boolean, arrangingPaymentRequiresCustomer: boolean, arrangingPaymentRequiresShipping: boolean, arrangingPaymentRequiresStock: boolean, checkAdditionalPaymentsAmount: boolean, checkAllItemsBeforeCancel: boolean, checkAllVariantsExist: boolean, checkFulfillmentStates: boolean, checkModificationPayments: boolean, checkPaymentsCoverTotal: boolean, defaultDigitalFulfillment?: { __typename?: 'ChannelFulfillment', id: string, code: string, name: string, description: string } | null, defaultPhysicalFulfillment?: { __typename?: 'ChannelFulfillment', id: string, code: string, name: string, description: string } | null } | null } };
8505
+
8506
+ export type ChannelQueryVariables = Exact<{
8507
+ id: Scalars['ID']['input'];
8508
+ }>;
8509
+
8510
+
8511
+ export type ChannelQuery = { __typename?: 'Query', channel?: { __typename?: 'Channel', id: string, code: string, token: string, createdAt: any, updatedAt: any, defaultLanguageCode: LanguageCode, availableLanguageCodes?: Array<LanguageCode> | null, defaultCurrencyCode: CurrencyCode, availableCurrencyCodes: Array<CurrencyCode>, pricesIncludeTax: boolean, outOfStockThreshold?: number | null, trackInventory?: boolean | null, customFields?: any | null, defaultShippingZone?: { __typename?: 'Zone', id: string, name: string } | null, defaultTaxZone?: { __typename?: 'Zone', id: string, name: string } | null, seller?: { __typename?: 'Seller', id: string, name: string, createdAt: any, updatedAt: any, customFields?: any | null } | null, fulfillmentHandlers: Array<{ __typename?: 'ChannelFulfillment', id: string, code: string, name: string, description: string }>, settings?: { __typename?: 'ChannelSettings', id: string, name: string, digital: boolean, arrangingPaymentRequiresContents: boolean, arrangingPaymentRequiresCustomer: boolean, arrangingPaymentRequiresShipping: boolean, arrangingPaymentRequiresStock: boolean, checkAdditionalPaymentsAmount: boolean, checkAllItemsBeforeCancel: boolean, checkAllVariantsExist: boolean, checkFulfillmentStates: boolean, checkModificationPayments: boolean, checkPaymentsCoverTotal: boolean, defaultDigitalFulfillment?: { __typename?: 'ChannelFulfillment', id: string, code: string, name: string, description: string } | null, defaultPhysicalFulfillment?: { __typename?: 'ChannelFulfillment', id: string, code: string, name: string, description: string } | null } | null } | null };
8512
+
8513
+ export type ChannelsQueryVariables = Exact<{
8514
+ options?: InputMaybe<ChannelListOptions>;
8515
+ }>;
8516
+
8517
+
8518
+ export type ChannelsQuery = { __typename?: 'Query', channels: { __typename?: 'ChannelList', totalItems: number, items: Array<{ __typename?: 'Channel', id: string, code: string, token: string, createdAt: any, updatedAt: any, defaultLanguageCode: LanguageCode, availableLanguageCodes?: Array<LanguageCode> | null, defaultCurrencyCode: CurrencyCode, availableCurrencyCodes: Array<CurrencyCode>, pricesIncludeTax: boolean, seller?: { __typename?: 'Seller', id: string, name: string, createdAt: any, updatedAt: any, customFields?: any | null } | null, defaultShippingZone?: { __typename?: 'Zone', id: string, name: string } | null, defaultTaxZone?: { __typename?: 'Zone', id: string, name: string } | null, settings?: { __typename?: 'ChannelSettings', id: string, name: string, digital: boolean } | null }> } };
8519
+
8520
+ export type ChannelFulfillmentsQueryVariables = Exact<{
8521
+ input?: InputMaybe<ChannelFulfillmentsInput>;
8522
+ }>;
8523
+
8524
+
8525
+ export type ChannelFulfillmentsQuery = { __typename?: 'Query', channelFulfillments: Array<{ __typename?: 'ChannelFulfillment', id: string, code: string, name: string, description: string, type: FulfillmentType }> };
8526
+
8527
+ export type CreateChannelMutationVariables = Exact<{
8528
+ input: CreateChannelInput;
8529
+ }>;
8530
+
8531
+
8532
+ export type CreateChannelMutation = { __typename?: 'Mutation', createChannel: { __typename: 'Channel', id: string, code: string, token: string, createdAt: any, updatedAt: any, defaultLanguageCode: LanguageCode, availableLanguageCodes?: Array<LanguageCode> | null, defaultCurrencyCode: CurrencyCode, availableCurrencyCodes: Array<CurrencyCode>, pricesIncludeTax: boolean, outOfStockThreshold?: number | null, trackInventory?: boolean | null, customFields?: any | null, defaultShippingZone?: { __typename?: 'Zone', id: string, name: string } | null, defaultTaxZone?: { __typename?: 'Zone', id: string, name: string } | null, seller?: { __typename?: 'Seller', id: string, name: string, createdAt: any, updatedAt: any, customFields?: any | null } | null } | { __typename: 'LanguageNotAvailableError', errorCode: ErrorCode, message: string, languageCode: string } };
8533
+
8534
+ export type UpdateChannelMutationVariables = Exact<{
8535
+ input: UpdateChannelInput;
8536
+ }>;
8537
+
8538
+
8539
+ export type UpdateChannelMutation = { __typename?: 'Mutation', updateChannel: { __typename: 'Channel', id: string, code: string, token: string, createdAt: any, updatedAt: any, defaultLanguageCode: LanguageCode, availableLanguageCodes?: Array<LanguageCode> | null, defaultCurrencyCode: CurrencyCode, availableCurrencyCodes: Array<CurrencyCode>, pricesIncludeTax: boolean, outOfStockThreshold?: number | null, trackInventory?: boolean | null, customFields?: any | null, defaultShippingZone?: { __typename?: 'Zone', id: string, name: string } | null, defaultTaxZone?: { __typename?: 'Zone', id: string, name: string } | null, seller?: { __typename?: 'Seller', id: string, name: string, createdAt: any, updatedAt: any, customFields?: any | null } | null } | { __typename: 'LanguageNotAvailableError', errorCode: ErrorCode, message: string, languageCode: string } };
8540
+
8541
+ export type UpdateChannelSettingsMutationVariables = Exact<{
8542
+ input: UpdateChannelSettingsInput;
8543
+ }>;
8544
+
8545
+
8546
+ export type UpdateChannelSettingsMutation = { __typename?: 'Mutation', updateChannelSettings?: { __typename?: 'ChannelSettings', id: string, name: string, digital: boolean, arrangingPaymentRequiresContents: boolean, arrangingPaymentRequiresCustomer: boolean, arrangingPaymentRequiresShipping: boolean, arrangingPaymentRequiresStock: boolean, checkAdditionalPaymentsAmount: boolean, checkAllItemsBeforeCancel: boolean, checkAllVariantsExist: boolean, checkFulfillmentStates: boolean, checkModificationPayments: boolean, checkPaymentsCoverTotal: boolean, defaultDigitalFulfillment?: { __typename?: 'ChannelFulfillment', id: string, code: string, name: string } | null, defaultPhysicalFulfillment?: { __typename?: 'ChannelFulfillment', id: string, code: string, name: string } | null } | null };
8547
+
8548
+ export type DeleteChannelMutationVariables = Exact<{
8549
+ id: Scalars['ID']['input'];
8550
+ }>;
8551
+
8552
+
8553
+ export type DeleteChannelMutation = { __typename?: 'Mutation', deleteChannel: { __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null } };
8554
+
8555
+ export type DeleteChannelsMutationVariables = Exact<{
8556
+ ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
8557
+ }>;
8558
+
8559
+
8560
+ export type DeleteChannelsMutation = { __typename?: 'Mutation', deleteChannels: Array<{ __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null }> };
8561
+
8562
+ export type AssignCollectionsToChannelMutationVariables = Exact<{
8563
+ input: AssignCollectionsToChannelInput;
8564
+ }>;
8565
+
8566
+
8567
+ export type AssignCollectionsToChannelMutation = { __typename?: 'Mutation', assignCollectionsToChannel: Array<{ __typename?: 'Collection', id: string, name: string, slug: string, description: string }> };
8568
+
8569
+ export type RemoveCollectionsFromChannelMutationVariables = Exact<{
8570
+ input: RemoveCollectionsFromChannelInput;
8571
+ }>;
8572
+
8573
+
8574
+ export type RemoveCollectionsFromChannelMutation = { __typename?: 'Mutation', removeCollectionsFromChannel: Array<{ __typename?: 'Collection', id: string, name: string, slug: string, description: string }> };
8575
+
8576
+ export type AssignFacetsToChannelMutationVariables = Exact<{
8577
+ input: AssignFacetsToChannelInput;
8578
+ }>;
8579
+
8580
+
8581
+ export type AssignFacetsToChannelMutation = { __typename?: 'Mutation', assignFacetsToChannel: Array<{ __typename?: 'Facet', id: string, name: string, code: string, createdAt: any, updatedAt: any }> };
8582
+
8583
+ export type RemoveFacetsFromChannelMutationVariables = Exact<{
8584
+ input: RemoveFacetsFromChannelInput;
8585
+ }>;
8586
+
8587
+
8588
+ export type RemoveFacetsFromChannelMutation = { __typename?: 'Mutation', removeFacetsFromChannel: Array<{ __typename: 'Facet', id: string, name: string, code: string } | { __typename: 'FacetInUseError', errorCode: ErrorCode, message: string, facetCode: string, productCount: number, variantCount: number }> };
8589
+
8590
+ export type AssignPaymentMethodsToChannelMutationVariables = Exact<{
8591
+ input: AssignPaymentMethodsToChannelInput;
8592
+ }>;
8593
+
8594
+
8595
+ export type AssignPaymentMethodsToChannelMutation = { __typename?: 'Mutation', assignPaymentMethodsToChannel: Array<{ __typename?: 'PaymentMethod', id: string, name: string, code: string, enabled: boolean, createdAt: any, updatedAt: any }> };
8596
+
8597
+ export type RemovePaymentMethodsFromChannelMutationVariables = Exact<{
8598
+ input: RemovePaymentMethodsFromChannelInput;
8599
+ }>;
8600
+
8601
+
8602
+ export type RemovePaymentMethodsFromChannelMutation = { __typename?: 'Mutation', removePaymentMethodsFromChannel: Array<{ __typename?: 'PaymentMethod', id: string, name: string, code: string, enabled: boolean }> };
8603
+
8604
+ export type AssignProductVariantsToChannelMutationVariables = Exact<{
8605
+ input: AssignProductVariantsToChannelInput;
8606
+ }>;
8607
+
8608
+
8609
+ export type AssignProductVariantsToChannelMutation = { __typename?: 'Mutation', assignProductVariantsToChannel: Array<{ __typename?: 'ProductVariant', id: string, name: string, sku: string, price: any, priceWithTax: any, enabled: boolean, createdAt: any, updatedAt: any }> };
8610
+
8611
+ export type RemoveProductVariantsFromChannelMutationVariables = Exact<{
8612
+ input: RemoveProductVariantsFromChannelInput;
8613
+ }>;
8614
+
8615
+
8616
+ export type RemoveProductVariantsFromChannelMutation = { __typename?: 'Mutation', removeProductVariantsFromChannel: Array<{ __typename?: 'ProductVariant', id: string, name: string, sku: string, price: any, priceWithTax: any, enabled: boolean }> };
8617
+
8618
+ export type AssignProductsToChannelMutationVariables = Exact<{
8619
+ input: AssignProductsToChannelInput;
8620
+ }>;
8621
+
8622
+
8623
+ export type AssignProductsToChannelMutation = { __typename?: 'Mutation', assignProductsToChannel: Array<{ __typename?: 'Product', id: string, name: string, slug: string, description: string, enabled: boolean, createdAt: any, updatedAt: any }> };
8624
+
8625
+ export type RemoveProductsFromChannelMutationVariables = Exact<{
8626
+ input: RemoveProductsFromChannelInput;
8627
+ }>;
8628
+
8629
+
8630
+ export type RemoveProductsFromChannelMutation = { __typename?: 'Mutation', removeProductsFromChannel: Array<{ __typename?: 'Product', id: string, name: string, slug: string, description: string, enabled: boolean }> };
8631
+
8632
+ export type AssignPromotionsToChannelMutationVariables = Exact<{
8633
+ input: AssignPromotionsToChannelInput;
8634
+ }>;
8635
+
8636
+
8637
+ export type AssignPromotionsToChannelMutation = { __typename?: 'Mutation', assignPromotionsToChannel: Array<{ __typename?: 'Promotion', id: string, name: string, enabled: boolean, couponCode?: string | null, startsAt?: any | null, endsAt?: any | null, createdAt: any, updatedAt: any }> };
8638
+
8639
+ export type RemovePromotionsFromChannelMutationVariables = Exact<{
8640
+ input: RemovePromotionsFromChannelInput;
8641
+ }>;
8642
+
8643
+
8644
+ export type RemovePromotionsFromChannelMutation = { __typename?: 'Mutation', removePromotionsFromChannel: Array<{ __typename?: 'Promotion', id: string, name: string, enabled: boolean, couponCode?: string | null }> };
8645
+
8646
+ export type AssignShippingMethodsToChannelMutationVariables = Exact<{
8647
+ input: AssignShippingMethodsToChannelInput;
8648
+ }>;
8649
+
8650
+
8651
+ export type AssignShippingMethodsToChannelMutation = { __typename?: 'Mutation', assignShippingMethodsToChannel: Array<{ __typename?: 'ShippingMethod', id: string, name: string, code: string, description: string, createdAt: any, updatedAt: any }> };
8652
+
8653
+ export type RemoveShippingMethodsFromChannelMutationVariables = Exact<{
8654
+ input: RemoveShippingMethodsFromChannelInput;
8655
+ }>;
8656
+
8657
+
8658
+ export type RemoveShippingMethodsFromChannelMutation = { __typename?: 'Mutation', removeShippingMethodsFromChannel: Array<{ __typename?: 'ShippingMethod', id: string, name: string, code: string, description: string }> };
8659
+
8660
+ export type AssignStockLocationsToChannelMutationVariables = Exact<{
8661
+ input: AssignStockLocationsToChannelInput;
8662
+ }>;
8663
+
8664
+
8665
+ export type AssignStockLocationsToChannelMutation = { __typename?: 'Mutation', assignStockLocationsToChannel: Array<{ __typename?: 'StockLocation', id: string, name: string, description: string, createdAt: any, updatedAt: any }> };
8666
+
8667
+ export type RemoveStockLocationsFromChannelMutationVariables = Exact<{
8668
+ input: RemoveStockLocationsFromChannelInput;
8669
+ }>;
8670
+
8671
+
8672
+ export type RemoveStockLocationsFromChannelMutation = { __typename?: 'Mutation', removeStockLocationsFromChannel: Array<{ __typename?: 'StockLocation', id: string, name: string, description: string }> };
8673
+
8674
+ export type CollectionQueryVariables = Exact<{
8675
+ id?: InputMaybe<Scalars['ID']['input']>;
8676
+ slug?: InputMaybe<Scalars['String']['input']>;
8677
+ }>;
8678
+
8679
+
8680
+ export type CollectionQuery = { __typename?: 'Query', collection?: { __typename?: 'Collection', id: string, name: string, slug: string, description: string, isPrivate: boolean, inheritFilters: boolean, languageCode?: LanguageCode | null, createdAt: any, updatedAt: any, position: number, parentId: string, parent?: { __typename?: 'Collection', id: string, name: string, slug: string } | null, breadcrumbs: Array<{ __typename?: 'CollectionBreadcrumb', id: string, name: string, slug: string }>, featuredAsset?: { __typename?: 'Asset', id: string, name: string, preview: string, source: string, type: AssetType } | null, assets: Array<{ __typename?: 'Asset', id: string, name: string, preview: string, source: string, type: AssetType }>, filters: Array<{ __typename?: 'ConfigurableOperation', code: string, args: Array<{ __typename?: 'ConfigArg', name: string, value: string }> }>, translations: Array<{ __typename?: 'CollectionTranslation', id: string, languageCode: LanguageCode, name: string, slug: string, description: string }>, children?: Array<{ __typename?: 'Collection', id: string, name: string, slug: string, position: number }> | null } | null };
8681
+
8682
+ export type CollectionsQueryVariables = Exact<{
8683
+ options?: InputMaybe<CollectionListOptions>;
8684
+ }>;
8685
+
8686
+
8687
+ export type CollectionsQuery = { __typename?: 'Query', collections: { __typename?: 'CollectionList', totalItems: number, items: Array<{ __typename?: 'Collection', id: string, name: string, slug: string, description: string, isPrivate: boolean, inheritFilters: boolean, position: number, parentId: string, createdAt: any, updatedAt: any, featuredAsset?: { __typename?: 'Asset', id: string, name: string, preview: string } | null, parent?: { __typename?: 'Collection', id: string, name: string, slug: string } | null }> } };
8688
+
8689
+ export type CollectionFiltersQueryVariables = Exact<{ [key: string]: never; }>;
8690
+
8691
+
8692
+ export type CollectionFiltersQuery = { __typename?: 'Query', collectionFilters: Array<{ __typename?: 'ConfigurableOperationDefinition', code: string, description: string, args: Array<{ __typename?: 'ConfigArgDefinition', name: string, type: string, required: boolean, defaultValue?: any | null, description?: string | null, label?: string | null, list: boolean, ui?: any | null }> }> };
8693
+
8694
+ export type PreviewCollectionVariantsQueryVariables = Exact<{
8695
+ input: PreviewCollectionVariantsInput;
8696
+ options?: InputMaybe<ProductVariantListOptions>;
8697
+ }>;
8698
+
8699
+
8700
+ export type PreviewCollectionVariantsQuery = { __typename?: 'Query', previewCollectionVariants: { __typename?: 'ProductVariantList', totalItems: number, items: Array<{ __typename?: 'ProductVariant', id: string, name: string, sku: string, price: any, priceWithTax: any, currencyCode: CurrencyCode, enabled: boolean, featuredAsset?: { __typename?: 'Asset', id: string, name: string, preview: string } | null, product: { __typename?: 'Product', id: string, name: string, slug: string, description: string, enabled: boolean, createdAt: any, updatedAt: any, languageCode: LanguageCode, customFields?: any | null, featuredAsset?: { __typename?: 'Asset', id: string, name: string, preview: string } | null, assets: Array<{ __typename?: 'Asset', id: string, name: string, preview: string }>, channels: Array<{ __typename?: 'Channel', id: string, code: string, token: string }>, collections: Array<{ __typename?: 'Collection', id: string, name: string, slug: string }>, facetValues: Array<{ __typename?: 'FacetValue', id: string, code: string, name: string }>, optionGroups: Array<{ __typename?: 'ProductOptionGroup', id: string, code: string, name: string }>, settings?: { __typename?: 'ProductSettings', id: string, digital: boolean, fulfillmentHandler?: { __typename?: 'ChannelFulfillment', id: string, code: string, name: string, description: string } | null } | null, translations: Array<{ __typename?: 'ProductTranslation', id: string, languageCode: LanguageCode, name: string, slug: string, description: string }>, variantList: { __typename?: 'ProductVariantList', totalItems: number, items: Array<{ __typename?: 'ProductVariant', id: string, name: string, sku: string }> }, variants: Array<{ __typename?: 'ProductVariant', id: string, name: string, sku: string }> } }> } };
8701
+
8702
+ export type CreateCollectionMutationVariables = Exact<{
8703
+ input: CreateCollectionInput;
8704
+ }>;
8705
+
8706
+
8707
+ export type CreateCollectionMutation = { __typename?: 'Mutation', createCollection: { __typename?: 'Collection', id: string, name: string, slug: string, description: string, isPrivate: boolean, inheritFilters: boolean, languageCode?: LanguageCode | null, createdAt: any, updatedAt: any, position: number, parentId: string, parent?: { __typename?: 'Collection', id: string, name: string, slug: string } | null, breadcrumbs: Array<{ __typename?: 'CollectionBreadcrumb', id: string, name: string, slug: string }>, featuredAsset?: { __typename?: 'Asset', id: string, name: string, preview: string, source: string, type: AssetType } | null, assets: Array<{ __typename?: 'Asset', id: string, name: string, preview: string }>, filters: Array<{ __typename?: 'ConfigurableOperation', code: string, args: Array<{ __typename?: 'ConfigArg', name: string, value: string }> }>, translations: Array<{ __typename?: 'CollectionTranslation', id: string, languageCode: LanguageCode, name: string, slug: string, description: string }> } };
8708
+
8709
+ export type UpdateCollectionMutationVariables = Exact<{
8710
+ input: UpdateCollectionInput;
8711
+ }>;
8712
+
8713
+
8714
+ export type UpdateCollectionMutation = { __typename?: 'Mutation', updateCollection: { __typename?: 'Collection', id: string, name: string, slug: string, description: string, isPrivate: boolean, inheritFilters: boolean, languageCode?: LanguageCode | null, createdAt: any, updatedAt: any, position: number, parentId: string, parent?: { __typename?: 'Collection', id: string, name: string, slug: string } | null, breadcrumbs: Array<{ __typename?: 'CollectionBreadcrumb', id: string, name: string, slug: string }>, featuredAsset?: { __typename?: 'Asset', id: string, name: string, preview: string, source: string, type: AssetType } | null, assets: Array<{ __typename?: 'Asset', id: string, name: string, preview: string }>, filters: Array<{ __typename?: 'ConfigurableOperation', code: string, args: Array<{ __typename?: 'ConfigArg', name: string, value: string }> }>, translations: Array<{ __typename?: 'CollectionTranslation', id: string, languageCode: LanguageCode, name: string, slug: string, description: string }> } };
8715
+
8716
+ export type MoveCollectionMutationVariables = Exact<{
8717
+ input: MoveCollectionInput;
8718
+ }>;
8719
+
8720
+
8721
+ export type MoveCollectionMutation = { __typename?: 'Mutation', moveCollection: { __typename?: 'Collection', id: string, name: string, slug: string, position: number, parentId: string, parent?: { __typename?: 'Collection', id: string, name: string, slug: string } | null, breadcrumbs: Array<{ __typename?: 'CollectionBreadcrumb', id: string, name: string, slug: string }> } };
8722
+
8723
+ export type DeleteCollectionMutationVariables = Exact<{
8724
+ id: Scalars['ID']['input'];
8725
+ }>;
8726
+
8727
+
8728
+ export type DeleteCollectionMutation = { __typename?: 'Mutation', deleteCollection: { __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null } };
8729
+
8730
+ export type DeleteCollectionsMutationVariables = Exact<{
8731
+ ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
8732
+ }>;
8733
+
8734
+
8735
+ export type DeleteCollectionsMutation = { __typename?: 'Mutation', deleteCollections: Array<{ __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null }> };
8736
+
8737
+ export type CountryQueryVariables = Exact<{
8738
+ id: Scalars['ID']['input'];
8739
+ }>;
8740
+
8741
+
8742
+ export type CountryQuery = { __typename?: 'Query', country?: { __typename?: 'Country', id: string, code: string, name: string, enabled: boolean, languageCode: LanguageCode, createdAt: any, updatedAt: any, customFields?: any | null, translations: Array<{ __typename?: 'RegionTranslation', id: string, languageCode: LanguageCode, name: string }> } | null };
8743
+
8744
+ export type CountriesQueryVariables = Exact<{
8745
+ options?: InputMaybe<CountryListOptions>;
8746
+ }>;
8747
+
8748
+
8749
+ export type CountriesQuery = { __typename?: 'Query', countries: { __typename?: 'CountryList', totalItems: number, items: Array<{ __typename?: 'Country', id: string, code: string, name: string, enabled: boolean, languageCode: LanguageCode, createdAt: any, updatedAt: any }> } };
8750
+
8751
+ export type ProvinceQueryVariables = Exact<{
8752
+ id: Scalars['ID']['input'];
8753
+ }>;
8754
+
8755
+
8756
+ export type ProvinceQuery = { __typename?: 'Query', province?: { __typename?: 'Province', id: string, code: string, name: string, enabled: boolean, languageCode: LanguageCode, createdAt: any, updatedAt: any, customFields?: any | null, translations: Array<{ __typename?: 'RegionTranslation', id: string, languageCode: LanguageCode, name: string }> } | null };
8757
+
8758
+ export type ProvincesQueryVariables = Exact<{
8759
+ options?: InputMaybe<ProvinceListOptions>;
8760
+ }>;
8761
+
8762
+
8763
+ export type ProvincesQuery = { __typename?: 'Query', provinces: { __typename?: 'ProvinceList', totalItems: number, items: Array<{ __typename?: 'Province', id: string, code: string, name: string, enabled: boolean, languageCode: LanguageCode, createdAt: any, updatedAt: any }> } };
8764
+
8765
+ export type CreateCountryMutationVariables = Exact<{
8766
+ input: CreateCountryInput;
8767
+ }>;
8768
+
8769
+
8770
+ export type CreateCountryMutation = { __typename?: 'Mutation', createCountry: { __typename?: 'Country', id: string, code: string, name: string, enabled: boolean, languageCode: LanguageCode, createdAt: any, updatedAt: any, customFields?: any | null, translations: Array<{ __typename?: 'RegionTranslation', id: string, languageCode: LanguageCode, name: string }> } };
8771
+
8772
+ export type UpdateCountryMutationVariables = Exact<{
8773
+ input: UpdateCountryInput;
8774
+ }>;
8775
+
8776
+
8777
+ export type UpdateCountryMutation = { __typename?: 'Mutation', updateCountry: { __typename?: 'Country', id: string, code: string, name: string, enabled: boolean, languageCode: LanguageCode, createdAt: any, updatedAt: any, customFields?: any | null, translations: Array<{ __typename?: 'RegionTranslation', id: string, languageCode: LanguageCode, name: string }> } };
8778
+
8779
+ export type DeleteCountryMutationVariables = Exact<{
8780
+ id: Scalars['ID']['input'];
8781
+ }>;
8782
+
8783
+
8784
+ export type DeleteCountryMutation = { __typename?: 'Mutation', deleteCountry: { __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null } };
8785
+
8786
+ export type DeleteCountriesMutationVariables = Exact<{
8787
+ ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
8788
+ }>;
8789
+
8790
+
8791
+ export type DeleteCountriesMutation = { __typename?: 'Mutation', deleteCountries: Array<{ __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null }> };
8792
+
8793
+ export type CreateProvinceMutationVariables = Exact<{
8794
+ input: CreateProvinceInput;
8795
+ }>;
8796
+
8797
+
8798
+ export type CreateProvinceMutation = { __typename?: 'Mutation', createProvince: { __typename?: 'Province', id: string, code: string, name: string, enabled: boolean, languageCode: LanguageCode, createdAt: any, updatedAt: any, customFields?: any | null, translations: Array<{ __typename?: 'RegionTranslation', id: string, languageCode: LanguageCode, name: string }> } };
8799
+
8800
+ export type UpdateProvinceMutationVariables = Exact<{
8801
+ input: UpdateProvinceInput;
8802
+ }>;
8803
+
8804
+
8805
+ export type UpdateProvinceMutation = { __typename?: 'Mutation', updateProvince: { __typename?: 'Province', id: string, code: string, name: string, enabled: boolean, languageCode: LanguageCode, createdAt: any, updatedAt: any, customFields?: any | null, translations: Array<{ __typename?: 'RegionTranslation', id: string, languageCode: LanguageCode, name: string }> } };
8806
+
8807
+ export type DeleteProvinceMutationVariables = Exact<{
8808
+ id: Scalars['ID']['input'];
8809
+ }>;
8810
+
8811
+
8812
+ export type DeleteProvinceMutation = { __typename?: 'Mutation', deleteProvince: { __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null } };
8813
+
8814
+ export type GetAllFieldsQueryVariables = Exact<{
8815
+ input: GetAllFieldsInput;
8816
+ }>;
8817
+
8818
+
8819
+ export type GetAllFieldsQuery = { __typename?: 'Query', getAllFields: Array<{ __typename: 'BooleanFieldDefinition', id: string, entityName: string, fieldName: string, template: string, title: string, description: string, required: boolean, sortOrder: number } | { __typename: 'DateFieldDefinition', id: string, entityName: string, fieldName: string, template: string, title: string, description: string, required: boolean, sortOrder: number } | { __typename: 'FloatFieldDefinition', id: string, entityName: string, fieldName: string, template: string, title: string, description: string, required: boolean, sortOrder: number } | { __typename: 'GroupFieldDefinition', id: string, entityName: string, fieldName: string, template: string, title: string, description: string, required: boolean, sortOrder: number, list: boolean, fields: Array<{ __typename: 'BooleanFieldDefinition', id: string, fieldName: string, title: string } | { __typename?: 'DateFieldDefinition' } | { __typename?: 'FloatFieldDefinition' } | { __typename?: 'GroupFieldDefinition' } | { __typename: 'IntegerFieldDefinition', id: string, fieldName: string, title: string } | { __typename?: 'RelationFieldDefinition' } | { __typename?: 'RichTextFieldDefinition' } | { __typename: 'StringFieldDefinition', id: string, fieldName: string, title: string }> } | { __typename: 'IntegerFieldDefinition', id: string, entityName: string, fieldName: string, template: string, title: string, description: string, required: boolean, sortOrder: number } | { __typename: 'RelationFieldDefinition', id: string, entityName: string, fieldName: string, template: string, title: string, description: string, required: boolean, sortOrder: number, relatedEntityName: string } | { __typename: 'RichTextFieldDefinition', id: string, entityName: string, fieldName: string, template: string, title: string, description: string, required: boolean, sortOrder: number } | { __typename: 'StringFieldDefinition', id: string, entityName: string, fieldName: string, template: string, title: string, description: string, required: boolean, sortOrder: number, defaultValue?: string | null, maxLength?: number | null }> };
8820
+
8821
+ export type GetAllValuesQueryVariables = Exact<{
8822
+ input: GetAllValuesInput;
8823
+ }>;
8824
+
8825
+
8826
+ export type GetAllValuesQuery = { __typename?: 'Query', getAllValues: Array<{ __typename: 'BooleanValue', id: string, template: string, booleanValue?: string | null, field: { __typename?: 'BooleanFieldDefinition', id: string, fieldName: string, title: string } } | { __typename: 'DateValue', id: string, template: string, dateValue?: any | null, field: { __typename?: 'DateFieldDefinition', id: string, fieldName: string, title: string } } | { __typename: 'FloatValue', id: string, template: string, floatValue?: number | null, field: { __typename?: 'FloatFieldDefinition', id: string, fieldName: string, title: string } } | { __typename: 'GroupValue', id: string, template: string, field: { __typename?: 'GroupFieldDefinition', id: string, fieldName: string, title: string }, members: Array<{ __typename?: 'AcfGroupMember', id: string, sortOrder: number, value: { __typename: 'BooleanValue', id: string, booleanValue?: string | null } | { __typename?: 'DateValue' } | { __typename?: 'FloatValue' } | { __typename?: 'GroupValue' } | { __typename: 'IntegerValue', id: string, integerValue?: number | null } | { __typename?: 'RelationValue' } | { __typename?: 'RichTextValue' } | { __typename: 'StringValue', id: string, stringValue?: string | null } }> } | { __typename: 'IntegerValue', id: string, template: string, integerValue?: number | null, field: { __typename?: 'IntegerFieldDefinition', id: string, fieldName: string, title: string } } | { __typename: 'RelationValue', id: string, template: string, entity?: any | null, relationValue?: string | null, field: { __typename?: 'RelationFieldDefinition', id: string, fieldName: string, title: string, relatedEntityName: string } } | { __typename: 'RichTextValue', id: string, template: string, richTextValue?: string | null, field: { __typename?: 'RichTextFieldDefinition', id: string, fieldName: string, title: string } } | { __typename: 'StringValue', id: string, template: string, stringValue?: string | null, field: { __typename?: 'StringFieldDefinition', id: string, fieldName: string, title: string } }> };
8827
+
8828
+ export type GetBooleanValueQueryVariables = Exact<{
8829
+ input: GetBooleanValueInput;
8830
+ }>;
8831
+
8832
+
8833
+ export type GetBooleanValueQuery = { __typename?: 'Query', getBooleanValue?: { __typename?: 'BooleanValue', id: string, template: string, value?: string | null, field: { __typename?: 'BooleanFieldDefinition', id: string, entityName: string, fieldName: string, template: string, title: string, description: string, required: boolean, sortOrder: number } } | null };
8834
+
8835
+ export type GetDateValueQueryVariables = Exact<{
8836
+ input: GetDateValueInput;
8837
+ }>;
8838
+
8839
+
8840
+ export type GetDateValueQuery = { __typename?: 'Query', getDateValue?: { __typename?: 'DateValue', id: string, template: string, value?: any | null, field: { __typename?: 'DateFieldDefinition', id: string, entityName: string, fieldName: string, template: string, title: string, description: string, required: boolean, sortOrder: number } } | null };
8841
+
8842
+ export type GetFloatValueQueryVariables = Exact<{
8843
+ input: GetFloatValueInput;
8844
+ }>;
8845
+
8846
+
8847
+ export type GetFloatValueQuery = { __typename?: 'Query', getFloatValue?: { __typename?: 'FloatValue', id: string, template: string, value?: number | null, field: { __typename?: 'FloatFieldDefinition', id: string, entityName: string, fieldName: string, template: string, title: string, description: string, required: boolean, sortOrder: number } } | null };
8848
+
8849
+ export type GetGroupFieldDefinitionByIdQueryVariables = Exact<{
8850
+ id: Scalars['String']['input'];
8851
+ }>;
8852
+
8853
+
8854
+ export type GetGroupFieldDefinitionByIdQuery = { __typename?: 'Query', getGroupFieldDefinitionById?: { __typename?: 'GroupFieldDefinition', id: string, entityName: string, fieldName: string, template: string, title: string, description: string, required: boolean, sortOrder: number, list: boolean, fields: Array<{ __typename: 'BooleanFieldDefinition', id: string, fieldName: string, title: string, description: string, required: boolean, sortOrder: number } | { __typename: 'DateFieldDefinition', id: string, fieldName: string, title: string, description: string, required: boolean, sortOrder: number } | { __typename: 'FloatFieldDefinition', id: string, fieldName: string, title: string, description: string, required: boolean, sortOrder: number } | { __typename?: 'GroupFieldDefinition' } | { __typename: 'IntegerFieldDefinition', id: string, fieldName: string, title: string, description: string, required: boolean, sortOrder: number } | { __typename: 'RelationFieldDefinition', id: string, fieldName: string, title: string, description: string, required: boolean, sortOrder: number, relatedEntityName: string } | { __typename: 'RichTextFieldDefinition', id: string, fieldName: string, title: string, description: string, required: boolean, sortOrder: number } | { __typename: 'StringFieldDefinition', id: string, fieldName: string, title: string, description: string, required: boolean, sortOrder: number, defaultValue?: string | null, maxLength?: number | null }> } | null };
8855
+
8856
+ export type GetGroupValueQueryVariables = Exact<{
8857
+ input: GetGroupValueInput;
8858
+ }>;
8859
+
8860
+
8861
+ export type GetGroupValueQuery = { __typename?: 'Query', getGroupValue?: { __typename?: 'GroupValue', id: string, template: string, field: { __typename?: 'GroupFieldDefinition', id: string, entityName: string, fieldName: string, template: string, title: string, description: string, required: boolean, sortOrder: number, list: boolean, fields: Array<{ __typename: 'BooleanFieldDefinition', id: string, fieldName: string, title: string } | { __typename?: 'DateFieldDefinition' } | { __typename?: 'FloatFieldDefinition' } | { __typename?: 'GroupFieldDefinition' } | { __typename: 'IntegerFieldDefinition', id: string, fieldName: string, title: string } | { __typename?: 'RelationFieldDefinition' } | { __typename?: 'RichTextFieldDefinition' } | { __typename: 'StringFieldDefinition', id: string, fieldName: string, title: string }> }, members: Array<{ __typename?: 'AcfGroupMember', id: string, sortOrder: number, value: { __typename: 'BooleanValue', id: string, booleanValue?: string | null, field: { __typename?: 'BooleanFieldDefinition', id: string, fieldName: string, title: string } } | { __typename: 'DateValue', id: string, dateValue?: any | null, field: { __typename?: 'DateFieldDefinition', id: string, fieldName: string, title: string } } | { __typename: 'FloatValue', id: string, floatValue?: number | null, field: { __typename?: 'FloatFieldDefinition', id: string, fieldName: string, title: string } } | { __typename?: 'GroupValue' } | { __typename: 'IntegerValue', id: string, integerValue?: number | null, field: { __typename?: 'IntegerFieldDefinition', id: string, fieldName: string, title: string } } | { __typename: 'RelationValue', id: string, entity?: any | null, relationValue?: string | null, field: { __typename?: 'RelationFieldDefinition', id: string, fieldName: string, title: string } } | { __typename: 'RichTextValue', id: string, richTextValue?: string | null, field: { __typename?: 'RichTextFieldDefinition', id: string, fieldName: string, title: string } } | { __typename: 'StringValue', id: string, stringValue?: string | null, field: { __typename?: 'StringFieldDefinition', id: string, fieldName: string, title: string } } }> } | null };
8862
+
8863
+ export type GetIntegerValueQueryVariables = Exact<{
8864
+ input: GetIntegerValueInput;
8865
+ }>;
8866
+
8867
+
8868
+ export type GetIntegerValueQuery = { __typename?: 'Query', getIntegerValue?: { __typename?: 'IntegerValue', id: string, template: string, value?: number | null, field: { __typename?: 'IntegerFieldDefinition', id: string, entityName: string, fieldName: string, template: string, title: string, description: string, required: boolean, sortOrder: number } } | null };
8869
+
8870
+ export type GetRelationValueQueryVariables = Exact<{
8871
+ input: GetRelationValueInput;
8872
+ }>;
8873
+
8874
+
8875
+ export type GetRelationValueQuery = { __typename?: 'Query', getRelationValue?: { __typename?: 'RelationValue', id: string, template: string, value?: string | null, entity?: any | null, field: { __typename?: 'RelationFieldDefinition', id: string, entityName: string, fieldName: string, template: string, title: string, description: string, required: boolean, sortOrder: number, relatedEntityName: string } } | null };
8876
+
8877
+ export type GetRichTextValueQueryVariables = Exact<{
8878
+ input: GetRichTextValueInput;
8879
+ }>;
8880
+
8881
+
8882
+ export type GetRichTextValueQuery = { __typename?: 'Query', getRichTextValue?: { __typename?: 'RichTextValue', id: string, template: string, value?: string | null, field: { __typename?: 'RichTextFieldDefinition', id: string, entityName: string, fieldName: string, template: string, title: string, description: string, required: boolean, sortOrder: number } } | null };
8883
+
8884
+ export type GetStringValueQueryVariables = Exact<{
8885
+ input: GetStringValueInput;
8886
+ }>;
8887
+
8888
+
8889
+ export type GetStringValueQuery = { __typename?: 'Query', getStringValue?: { __typename?: 'StringValue', id: string, template: string, value?: string | null, field: { __typename?: 'StringFieldDefinition', id: string, entityName: string, fieldName: string, template: string, title: string, description: string, required: boolean, sortOrder: number, defaultValue?: string | null, maxLength?: number | null } } | null };
8890
+
8891
+ export type GetTemplatesByEntityIdQueryVariables = Exact<{
8892
+ entityId: Scalars['String']['input'];
8893
+ }>;
8894
+
8895
+
8896
+ export type GetTemplatesByEntityIdQuery = { __typename?: 'Query', getTemplatesByEntityId: Array<string> };
8897
+
8898
+ export type GetUniqueTemplatesQueryVariables = Exact<{
8899
+ entityName: Scalars['String']['input'];
8900
+ }>;
8901
+
8902
+
8903
+ export type GetUniqueTemplatesQuery = { __typename?: 'Query', getUniqueTemplates: Array<string> };
8904
+
8905
+ export type InsertBooleanFieldDefinitionMutationVariables = Exact<{
8906
+ input: InsertBooleanFieldDefinitionInput;
8907
+ }>;
8908
+
8909
+
8910
+ export type InsertBooleanFieldDefinitionMutation = { __typename?: 'Mutation', insertBooleanFieldDefinition: { __typename?: 'BooleanFieldDefinition', id: string, entityName: string, fieldName: string, template: string, title: string, description: string, required: boolean, sortOrder: number } };
8911
+
8912
+ export type InsertDateFieldDefinitionMutationVariables = Exact<{
8913
+ input: InsertDateFieldDefinitionInput;
8914
+ }>;
8915
+
8916
+
8917
+ export type InsertDateFieldDefinitionMutation = { __typename?: 'Mutation', insertDateFieldDefinition: { __typename?: 'DateFieldDefinition', id: string, entityName: string, fieldName: string, template: string, title: string, description: string, required: boolean, sortOrder: number } };
8918
+
8919
+ export type InsertFloatFieldDefinitionMutationVariables = Exact<{
8920
+ input: InsertFloatFieldDefinitionInput;
8921
+ }>;
8922
+
8923
+
8924
+ export type InsertFloatFieldDefinitionMutation = { __typename?: 'Mutation', insertFloatFieldDefinition: { __typename?: 'FloatFieldDefinition', id: string, entityName: string, fieldName: string, template: string, title: string, description: string, required: boolean, sortOrder: number } };
8925
+
8926
+ export type InsertGroupFieldDefinitionMutationVariables = Exact<{
8927
+ input: InsertGroupFieldDefinitionInput;
8928
+ }>;
8929
+
8930
+
8931
+ export type InsertGroupFieldDefinitionMutation = { __typename?: 'Mutation', insertGroupFieldDefinition: { __typename?: 'GroupFieldDefinition', id: string, entityName: string, fieldName: string, template: string, title: string, description: string, required: boolean, sortOrder: number, list: boolean, fields: Array<{ __typename: 'BooleanFieldDefinition', id: string, fieldName: string, title: string } | { __typename?: 'DateFieldDefinition' } | { __typename?: 'FloatFieldDefinition' } | { __typename?: 'GroupFieldDefinition' } | { __typename: 'IntegerFieldDefinition', id: string, fieldName: string, title: string } | { __typename?: 'RelationFieldDefinition' } | { __typename?: 'RichTextFieldDefinition' } | { __typename: 'StringFieldDefinition', id: string, fieldName: string, title: string }> } };
8932
+
8933
+ export type InsertIntegerFieldDefinitionMutationVariables = Exact<{
8934
+ input: InsertIntegerFieldDefinitionInput;
8935
+ }>;
8936
+
8937
+
8938
+ export type InsertIntegerFieldDefinitionMutation = { __typename?: 'Mutation', insertIntegerFieldDefinition: { __typename?: 'IntegerFieldDefinition', id: string, entityName: string, fieldName: string, template: string, title: string, description: string, required: boolean, sortOrder: number } };
8939
+
8940
+ export type InsertRelationFieldDefinitionMutationVariables = Exact<{
8941
+ input: InsertRelationFieldDefinitionInput;
8942
+ }>;
8943
+
8944
+
8945
+ export type InsertRelationFieldDefinitionMutation = { __typename?: 'Mutation', insertRelationFieldDefinition: { __typename?: 'RelationFieldDefinition', id: string, entityName: string, fieldName: string, template: string, title: string, description: string, required: boolean, sortOrder: number, relatedEntityName: string } };
8946
+
8947
+ export type InsertRichTextFieldDefinitionMutationVariables = Exact<{
8948
+ input: InsertRichTextFieldDefinitionInput;
8949
+ }>;
8950
+
8951
+
8952
+ export type InsertRichTextFieldDefinitionMutation = { __typename?: 'Mutation', insertRichTextFieldDefinition: { __typename?: 'RichTextFieldDefinition', id: string, entityName: string, fieldName: string, template: string, title: string, description: string, required: boolean, sortOrder: number } };
8953
+
8954
+ export type InsertStringFieldDefinitionMutationVariables = Exact<{
8955
+ input: InsertStringFieldDefinitionInput;
8956
+ }>;
8957
+
8958
+
8959
+ export type InsertStringFieldDefinitionMutation = { __typename?: 'Mutation', insertStringFieldDefinition: { __typename?: 'StringFieldDefinition', id: string, entityName: string, fieldName: string, template: string, title: string, description: string, required: boolean, sortOrder: number, defaultValue?: string | null, maxLength?: number | null } };
8960
+
8961
+ export type DeleteGroupFieldDefinitionMutationVariables = Exact<{
8962
+ input: DeleteGroupFieldDefinitionInput;
8963
+ }>;
8964
+
8965
+
8966
+ export type DeleteGroupFieldDefinitionMutation = { __typename?: 'Mutation', deleteGroupFieldDefinition: boolean };
8967
+
8968
+ export type CreateGroupValueMutationVariables = Exact<{
8969
+ input: CreateGroupValueInput;
8970
+ }>;
8971
+
8972
+
8973
+ export type CreateGroupValueMutation = { __typename?: 'Mutation', createGroupValue: { __typename?: 'GroupValue', id: string, template: string, field: { __typename?: 'GroupFieldDefinition', id: string, fieldName: string, title: string } } };
8974
+
8975
+ export type UpsertBooleanValueMutationVariables = Exact<{
8976
+ input: UpsertBooleanValueInput;
8977
+ }>;
8978
+
8979
+
8980
+ export type UpsertBooleanValueMutation = { __typename?: 'Mutation', upsertBooleanValue: { __typename?: 'BooleanValue', id: string, template: string, value?: string | null, field: { __typename?: 'BooleanFieldDefinition', id: string, fieldName: string, title: string } } };
8981
+
8982
+ export type UpsertDateValueMutationVariables = Exact<{
8983
+ input: UpsertDateValueInput;
8984
+ }>;
8985
+
8986
+
8987
+ export type UpsertDateValueMutation = { __typename?: 'Mutation', upsertDateValue: { __typename?: 'DateValue', id: string, template: string, value?: any | null, field: { __typename?: 'DateFieldDefinition', id: string, fieldName: string, title: string } } };
8988
+
8989
+ export type UpsertFloatValueMutationVariables = Exact<{
8990
+ input: UpsertFloatValueInput;
8991
+ }>;
8992
+
8993
+
8994
+ export type UpsertFloatValueMutation = { __typename?: 'Mutation', upsertFloatValue: { __typename?: 'FloatValue', id: string, template: string, value?: number | null, field: { __typename?: 'FloatFieldDefinition', id: string, fieldName: string, title: string } } };
8995
+
8996
+ export type UpsertGroupValueMutationVariables = Exact<{
8997
+ input: UpsertGroupValueInput;
8998
+ }>;
8999
+
9000
+
9001
+ export type UpsertGroupValueMutation = { __typename?: 'Mutation', upsertGroupValue: { __typename?: 'GroupValue', id: string, template: string, field: { __typename?: 'GroupFieldDefinition', id: string, fieldName: string, title: string }, members: Array<{ __typename?: 'AcfGroupMember', id: string, sortOrder: number, value: { __typename: 'BooleanValue', id: string, booleanValue?: string | null } | { __typename?: 'DateValue' } | { __typename?: 'FloatValue' } | { __typename?: 'GroupValue' } | { __typename: 'IntegerValue', id: string, integerValue?: number | null } | { __typename?: 'RelationValue' } | { __typename?: 'RichTextValue' } | { __typename: 'StringValue', id: string, stringValue?: string | null } }> } };
9002
+
9003
+ export type UpsertGroupMemberMutationVariables = Exact<{
9004
+ input: UpsertGroupMemberInput;
9005
+ }>;
9006
+
9007
+
9008
+ export type UpsertGroupMemberMutation = { __typename?: 'Mutation', upsertGroupMember: { __typename?: 'AcfGroupMember', id: string, sortOrder: number, value: { __typename: 'BooleanValue', id: string, booleanValue?: string | null, field: { __typename?: 'BooleanFieldDefinition', id: string, fieldName: string, title: string } } | { __typename: 'DateValue', id: string, dateValue?: any | null, field: { __typename?: 'DateFieldDefinition', id: string, fieldName: string, title: string } } | { __typename: 'FloatValue', id: string, floatValue?: number | null, field: { __typename?: 'FloatFieldDefinition', id: string, fieldName: string, title: string } } | { __typename?: 'GroupValue' } | { __typename: 'IntegerValue', id: string, integerValue?: number | null, field: { __typename?: 'IntegerFieldDefinition', id: string, fieldName: string, title: string } } | { __typename: 'RelationValue', id: string, entity?: any | null, relationValue?: string | null, field: { __typename?: 'RelationFieldDefinition', id: string, fieldName: string, title: string } } | { __typename: 'RichTextValue', id: string, richTextValue?: string | null, field: { __typename?: 'RichTextFieldDefinition', id: string, fieldName: string, title: string } } | { __typename: 'StringValue', id: string, stringValue?: string | null, field: { __typename?: 'StringFieldDefinition', id: string, fieldName: string, title: string } } } };
9009
+
9010
+ export type UpsertIntegerValueMutationVariables = Exact<{
9011
+ input: UpsertIntegerValueInput;
9012
+ }>;
9013
+
9014
+
9015
+ export type UpsertIntegerValueMutation = { __typename?: 'Mutation', upsertIntegerValue: { __typename?: 'IntegerValue', id: string, template: string, value?: number | null, field: { __typename?: 'IntegerFieldDefinition', id: string, fieldName: string, title: string } } };
9016
+
9017
+ export type UpsertRelationValueMutationVariables = Exact<{
9018
+ input: UpsertRelationValueInput;
9019
+ }>;
9020
+
9021
+
9022
+ export type UpsertRelationValueMutation = { __typename?: 'Mutation', upsertRelationValue: { __typename?: 'RelationValue', id: string, template: string, value?: string | null, entity?: any | null, field: { __typename?: 'RelationFieldDefinition', id: string, fieldName: string, title: string, relatedEntityName: string } } };
9023
+
9024
+ export type UpsertRichTextValueMutationVariables = Exact<{
9025
+ input: UpsertRichTextValueInput;
9026
+ }>;
9027
+
9028
+
9029
+ export type UpsertRichTextValueMutation = { __typename?: 'Mutation', upsertRichTextValue: { __typename?: 'RichTextValue', id: string, template: string, value?: string | null, field: { __typename?: 'RichTextFieldDefinition', id: string, fieldName: string, title: string } } };
9030
+
9031
+ export type UpsertStringValueMutationVariables = Exact<{
9032
+ input: UpsertStringValueInput;
9033
+ }>;
9034
+
9035
+
9036
+ export type UpsertStringValueMutation = { __typename?: 'Mutation', upsertStringValue: { __typename?: 'StringValue', id: string, template: string, value?: string | null, field: { __typename?: 'StringFieldDefinition', id: string, fieldName: string, title: string } } };
9037
+
9038
+ export type UpdateGroupMembersMutationVariables = Exact<{
9039
+ input: UpdateGroupMembersInput;
9040
+ }>;
9041
+
9042
+
9043
+ export type UpdateGroupMembersMutation = { __typename?: 'Mutation', updateGroupMembers: { __typename?: 'GroupValue', id: string, template: string, field: { __typename?: 'GroupFieldDefinition', id: string, fieldName: string, title: string }, members: Array<{ __typename?: 'AcfGroupMember', id: string, sortOrder: number, value: { __typename: 'BooleanValue', id: string, booleanValue?: string | null } | { __typename?: 'DateValue' } | { __typename?: 'FloatValue' } | { __typename?: 'GroupValue' } | { __typename: 'IntegerValue', id: string, integerValue?: number | null } | { __typename?: 'RelationValue' } | { __typename?: 'RichTextValue' } | { __typename: 'StringValue', id: string, stringValue?: string | null } }> } };
9044
+
9045
+ export type DeleteBooleanValueMutationVariables = Exact<{
9046
+ input: DeleteBooleanValueInput;
9047
+ }>;
9048
+
9049
+
9050
+ export type DeleteBooleanValueMutation = { __typename?: 'Mutation', deleteBooleanValue: boolean };
9051
+
9052
+ export type DeleteDateValueMutationVariables = Exact<{
9053
+ input: DeleteDateValueInput;
9054
+ }>;
9055
+
9056
+
9057
+ export type DeleteDateValueMutation = { __typename?: 'Mutation', deleteDateValue: boolean };
9058
+
9059
+ export type DeleteFloatValueMutationVariables = Exact<{
9060
+ input: DeleteFloatValueInput;
9061
+ }>;
9062
+
9063
+
9064
+ export type DeleteFloatValueMutation = { __typename?: 'Mutation', deleteFloatValue: boolean };
9065
+
9066
+ export type DeleteGroupValueMutationVariables = Exact<{
9067
+ input: DeleteGroupValueInput;
9068
+ }>;
9069
+
9070
+
9071
+ export type DeleteGroupValueMutation = { __typename?: 'Mutation', deleteGroupValue: boolean };
9072
+
9073
+ export type DeleteIntegerValueMutationVariables = Exact<{
9074
+ input: DeleteIntegerValueInput;
9075
+ }>;
9076
+
9077
+
9078
+ export type DeleteIntegerValueMutation = { __typename?: 'Mutation', deleteIntegerValue: boolean };
9079
+
9080
+ export type DeleteRelationValueMutationVariables = Exact<{
9081
+ input: DeleteRelationInput;
9082
+ }>;
9083
+
9084
+
9085
+ export type DeleteRelationValueMutation = { __typename?: 'Mutation', deleteRelationValue: boolean };
9086
+
9087
+ export type DeleteRichTextValueMutationVariables = Exact<{
9088
+ input: DeleteRichTextValueInput;
9089
+ }>;
9090
+
9091
+
9092
+ export type DeleteRichTextValueMutation = { __typename?: 'Mutation', deleteRichTextValue: boolean };
9093
+
9094
+ export type DeleteStringValueMutationVariables = Exact<{
9095
+ input: DeleteStringValueInput;
9096
+ }>;
9097
+
9098
+
9099
+ export type DeleteStringValueMutation = { __typename?: 'Mutation', deleteStringValue: boolean };
9100
+
9101
+ export type CustomerGroupQueryVariables = Exact<{
9102
+ id: Scalars['ID']['input'];
9103
+ }>;
9104
+
9105
+
9106
+ export type CustomerGroupQuery = { __typename?: 'Query', customerGroup?: { __typename?: 'CustomerGroup', id: string, createdAt: any, updatedAt: any, name: string, customFields?: any | null, customers: { __typename?: 'CustomerList', totalItems: number, items: Array<{ __typename?: 'Customer', id: string, firstName: string, lastName: string, emailAddress: string }> } } | null };
9107
+
9108
+ export type CustomerGroupsQueryVariables = Exact<{
9109
+ options?: InputMaybe<CustomerGroupListOptions>;
9110
+ }>;
9111
+
9112
+
9113
+ export type CustomerGroupsQuery = { __typename?: 'Query', customerGroups: { __typename?: 'CustomerGroupList', totalItems: number, items: Array<{ __typename?: 'CustomerGroup', id: string, createdAt: any, updatedAt: any, name: string, customers: { __typename?: 'CustomerList', totalItems: number, items: Array<{ __typename?: 'Customer', id: string, firstName: string, lastName: string, emailAddress: string }> } }> } };
9114
+
9115
+ export type CreateCustomerGroupMutationVariables = Exact<{
9116
+ input: CreateCustomerGroupInput;
9117
+ }>;
9118
+
9119
+
9120
+ export type CreateCustomerGroupMutation = { __typename?: 'Mutation', createCustomerGroup: { __typename?: 'CustomerGroup', id: string, createdAt: any, updatedAt: any, name: string, customFields?: any | null, customers: { __typename?: 'CustomerList', totalItems: number, items: Array<{ __typename?: 'Customer', id: string, firstName: string, lastName: string, emailAddress: string }> } } };
9121
+
9122
+ export type UpdateCustomerGroupMutationVariables = Exact<{
9123
+ input: UpdateCustomerGroupInput;
9124
+ }>;
9125
+
9126
+
9127
+ export type UpdateCustomerGroupMutation = { __typename?: 'Mutation', updateCustomerGroup: { __typename?: 'CustomerGroup', id: string, createdAt: any, updatedAt: any, name: string, customFields?: any | null, customers: { __typename?: 'CustomerList', totalItems: number, items: Array<{ __typename?: 'Customer', id: string, firstName: string, lastName: string, emailAddress: string }> } } };
9128
+
9129
+ export type DeleteCustomerGroupMutationVariables = Exact<{
9130
+ id: Scalars['ID']['input'];
9131
+ }>;
9132
+
9133
+
9134
+ export type DeleteCustomerGroupMutation = { __typename?: 'Mutation', deleteCustomerGroup: { __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null } };
9135
+
9136
+ export type DeleteCustomerGroupsMutationVariables = Exact<{
9137
+ ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
9138
+ }>;
9139
+
9140
+
9141
+ export type DeleteCustomerGroupsMutation = { __typename?: 'Mutation', deleteCustomerGroups: Array<{ __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null }> };
9142
+
9143
+ export type AddCustomersToGroupMutationVariables = Exact<{
9144
+ customerGroupId: Scalars['ID']['input'];
9145
+ customerIds: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
9146
+ }>;
9147
+
9148
+
9149
+ export type AddCustomersToGroupMutation = { __typename?: 'Mutation', addCustomersToGroup: { __typename?: 'CustomerGroup', id: string, createdAt: any, updatedAt: any, name: string, customFields?: any | null, customers: { __typename?: 'CustomerList', totalItems: number, items: Array<{ __typename?: 'Customer', id: string, firstName: string, lastName: string, emailAddress: string }> } } };
9150
+
9151
+ export type RemoveCustomersFromGroupMutationVariables = Exact<{
9152
+ customerGroupId: Scalars['ID']['input'];
9153
+ customerIds: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
9154
+ }>;
9155
+
9156
+
9157
+ export type RemoveCustomersFromGroupMutation = { __typename?: 'Mutation', removeCustomersFromGroup: { __typename?: 'CustomerGroup', id: string, createdAt: any, updatedAt: any, name: string, customFields?: any | null, customers: { __typename?: 'CustomerList', totalItems: number, items: Array<{ __typename?: 'Customer', id: string, firstName: string, lastName: string, emailAddress: string }> } } };
9158
+
9159
+ export type CustomerQueryVariables = Exact<{
9160
+ id: Scalars['ID']['input'];
9161
+ }>;
9162
+
9163
+
9164
+ export type CustomerQuery = { __typename?: 'Query', customer?: { __typename?: 'Customer', id: string, createdAt: any, updatedAt: any, title?: string | null, firstName: string, lastName: string, phoneNumber?: string | null, emailAddress: string, addresses?: Array<{ __typename?: 'Address', id: string, createdAt: any, updatedAt: any, fullName?: string | null, company?: string | null, streetLine1: string, streetLine2?: string | null, city?: string | null, province?: string | null, postalCode?: string | null, phoneNumber?: string | null, defaultShippingAddress?: boolean | null, defaultBillingAddress?: boolean | null, country: { __typename?: 'Country', id: string, code: string, name: string, createdAt: any, updatedAt: any, enabled: boolean, languageCode: LanguageCode, type: string, parentId?: string | null } }> | null, groups: Array<{ __typename?: 'CustomerGroup', id: string, name: string }>, user?: { __typename?: 'User', id: string, identifier: string, verified: boolean, lastLogin?: any | null } | null } | null };
9165
+
9166
+ export type CustomersQueryVariables = Exact<{
9167
+ options?: InputMaybe<CustomerListOptions>;
9168
+ }>;
9169
+
9170
+
9171
+ export type CustomersQuery = { __typename?: 'Query', customers: { __typename?: 'CustomerList', totalItems: number, items: Array<{ __typename?: 'Customer', id: string, createdAt: any, updatedAt: any, title?: string | null, firstName: string, lastName: string, phoneNumber?: string | null, emailAddress: string, addresses?: Array<{ __typename?: 'Address', id: string, city?: string | null, postalCode?: string | null, country: { __typename?: 'Country', id: string, code: string, name: string, createdAt: any, updatedAt: any, enabled: boolean, languageCode: LanguageCode, type: string, parentId?: string | null } }> | null, groups: Array<{ __typename?: 'CustomerGroup', id: string, name: string }> }> } };
9172
+
9173
+ export type CreateCustomerMutationVariables = Exact<{
9174
+ input: CreateCustomerInput;
9175
+ }>;
9176
+
9177
+
9178
+ export type CreateCustomerMutation = { __typename?: 'Mutation', createCustomer: { __typename: 'Customer', id: string, createdAt: any, updatedAt: any, title?: string | null, firstName: string, lastName: string, phoneNumber?: string | null, emailAddress: string, addresses?: Array<{ __typename?: 'Address', id: string }> | null, groups: Array<{ __typename?: 'CustomerGroup', id: string, name: string }> } | { __typename: 'EmailAddressConflictError', errorCode: ErrorCode, message: string } };
9179
+
9180
+ export type UpdateCustomerMutationVariables = Exact<{
9181
+ input: UpdateCustomerInput;
9182
+ }>;
9183
+
9184
+
9185
+ export type UpdateCustomerMutation = { __typename?: 'Mutation', updateCustomer: { __typename: 'Customer', id: string, createdAt: any, updatedAt: any, title?: string | null, firstName: string, lastName: string, phoneNumber?: string | null, emailAddress: string } | { __typename: 'EmailAddressConflictError', errorCode: ErrorCode, message: string } };
9186
+
9187
+ export type DeleteCustomerMutationVariables = Exact<{
9188
+ id: Scalars['ID']['input'];
9189
+ }>;
9190
+
9191
+
9192
+ export type DeleteCustomerMutation = { __typename?: 'Mutation', deleteCustomer: { __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null } };
9193
+
9194
+ export type DeleteCustomersMutationVariables = Exact<{
9195
+ ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
9196
+ }>;
9197
+
9198
+
9199
+ export type DeleteCustomersMutation = { __typename?: 'Mutation', deleteCustomers: Array<{ __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null }> };
9200
+
9201
+ export type CreateCustomerAddressMutationVariables = Exact<{
9202
+ customerId: Scalars['ID']['input'];
9203
+ input: CreateAddressInput;
9204
+ }>;
9205
+
9206
+
9207
+ export type CreateCustomerAddressMutation = { __typename?: 'Mutation', createCustomerAddress: { __typename?: 'Address', id: string, createdAt: any, updatedAt: any, fullName?: string | null, company?: string | null, streetLine1: string, streetLine2?: string | null, city?: string | null, province?: string | null, postalCode?: string | null, phoneNumber?: string | null, defaultShippingAddress?: boolean | null, defaultBillingAddress?: boolean | null, country: { __typename?: 'Country', id: string, code: string, name: string, createdAt: any, updatedAt: any, enabled: boolean, languageCode: LanguageCode, type: string, parentId?: string | null } } };
9208
+
9209
+ export type UpdateCustomerAddressMutationVariables = Exact<{
9210
+ input: UpdateAddressInput;
9211
+ }>;
9212
+
9213
+
9214
+ export type UpdateCustomerAddressMutation = { __typename?: 'Mutation', updateCustomerAddress: { __typename?: 'Address', id: string, createdAt: any, updatedAt: any, fullName?: string | null, company?: string | null, streetLine1: string, streetLine2?: string | null, city?: string | null, province?: string | null, postalCode?: string | null, phoneNumber?: string | null, defaultShippingAddress?: boolean | null, defaultBillingAddress?: boolean | null, country: { __typename?: 'Country', id: string, code: string, name: string, createdAt: any, updatedAt: any, enabled: boolean, languageCode: LanguageCode, type: string, parentId?: string | null } } };
9215
+
9216
+ export type DeleteCustomerAddressMutationVariables = Exact<{
9217
+ id: Scalars['ID']['input'];
9218
+ }>;
9219
+
9220
+
9221
+ export type DeleteCustomerAddressMutation = { __typename?: 'Mutation', deleteCustomerAddress: { __typename?: 'Success', success: boolean } };
9222
+
9223
+ export type AddNoteToCustomerMutationVariables = Exact<{
9224
+ input: AddNoteToCustomerInput;
9225
+ }>;
9226
+
9227
+
9228
+ export type AddNoteToCustomerMutation = { __typename?: 'Mutation', addNoteToCustomer: { __typename?: 'Customer', id: string, createdAt: any, updatedAt: any, title?: string | null, firstName: string, lastName: string, phoneNumber?: string | null, emailAddress: string } };
9229
+
9230
+ export type UpdateCustomerNoteMutationVariables = Exact<{
9231
+ input: UpdateCustomerNoteInput;
9232
+ }>;
9233
+
9234
+
9235
+ export type UpdateCustomerNoteMutation = { __typename?: 'Mutation', updateCustomerNote: { __typename?: 'HistoryEntry', id: string, type: HistoryEntryType, data: any, createdAt: any, updatedAt: any, administrator?: { __typename?: 'Administrator', id: string, firstName: string, lastName: string, createdAt: any, updatedAt: any, emailAddress: string } | null } };
9236
+
9237
+ export type DeleteCustomerNoteMutationVariables = Exact<{
9238
+ id: Scalars['ID']['input'];
9239
+ }>;
9240
+
9241
+
9242
+ export type DeleteCustomerNoteMutation = { __typename?: 'Mutation', deleteCustomerNote: { __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null } };
9243
+
9244
+ export type EntityDuplicatorsQueryVariables = Exact<{ [key: string]: never; }>;
9245
+
9246
+
9247
+ export type EntityDuplicatorsQuery = { __typename?: 'Query', entityDuplicators: Array<{ __typename?: 'EntityDuplicatorDefinition', code: string, description: string, forEntities: Array<string>, requiresPermission: Array<Permission>, args: Array<{ __typename?: 'ConfigArgDefinition', name: string, label?: string | null, description?: string | null, defaultValue?: any | null, list: boolean }> }> };
9248
+
9249
+ export type DuplicateEntityMutationVariables = Exact<{
9250
+ input: DuplicateEntityInput;
9251
+ }>;
9252
+
9253
+
9254
+ export type DuplicateEntityMutation = { __typename?: 'Mutation', duplicateEntity: { __typename: 'DuplicateEntityError', errorCode: ErrorCode, message: string, duplicationError: string } | { __typename: 'DuplicateEntitySuccess', newEntityId: string } };
9255
+
9256
+ export type FacetQueryVariables = Exact<{
9257
+ id: Scalars['ID']['input'];
9258
+ }>;
9259
+
9260
+
9261
+ export type FacetQuery = { __typename?: 'Query', facet?: { __typename?: 'Facet', id: string, createdAt: any, updatedAt: any, code: string, name: string, isPrivate: boolean, languageCode: LanguageCode, customFields?: any | null, translations: Array<{ __typename?: 'FacetTranslation', id: string, languageCode: LanguageCode, name: string }>, values: Array<{ __typename?: 'FacetValue', id: string, code: string, name: string, createdAt: any, updatedAt: any }>, valueList: { __typename?: 'FacetValueList', totalItems: number, items: Array<{ __typename?: 'FacetValue', id: string, code: string, name: string, createdAt: any, updatedAt: any }> } } | null };
9262
+
9263
+ export type FacetsQueryVariables = Exact<{
9264
+ options?: InputMaybe<FacetListOptions>;
9265
+ }>;
9266
+
9267
+
9268
+ export type FacetsQuery = { __typename?: 'Query', facets: { __typename?: 'FacetList', totalItems: number, items: Array<{ __typename?: 'Facet', id: string, createdAt: any, updatedAt: any, code: string, name: string, isPrivate: boolean, languageCode: LanguageCode, translations: Array<{ __typename?: 'FacetTranslation', id: string, languageCode: LanguageCode, name: string }> }> } };
9269
+
9270
+ export type FacetValuesQueryVariables = Exact<{
9271
+ options?: InputMaybe<FacetValueListOptions>;
9272
+ }>;
9273
+
9274
+
9275
+ export type FacetValuesQuery = { __typename?: 'Query', facetValues: { __typename?: 'FacetValueList', totalItems: number, items: Array<{ __typename?: 'FacetValue', id: string, code: string, name: string, createdAt: any, updatedAt: any, languageCode: LanguageCode, facet: { __typename?: 'Facet', id: string, createdAt: any, updatedAt: any, code: string, name: string, isPrivate: boolean, languageCode: LanguageCode, customFields?: any | null, translations: Array<{ __typename?: 'FacetTranslation', id: string, languageCode: LanguageCode, name: string }> }, translations: Array<{ __typename?: 'FacetValueTranslation', id: string, languageCode: LanguageCode, name: string }> }> } };
9276
+
9277
+ export type CreateFacetMutationVariables = Exact<{
9278
+ input: CreateFacetInput;
9279
+ }>;
9280
+
9281
+
9282
+ export type CreateFacetMutation = { __typename?: 'Mutation', createFacet: { __typename?: 'Facet', id: string, createdAt: any, updatedAt: any, code: string, name: string, isPrivate: boolean, languageCode: LanguageCode, translations: Array<{ __typename?: 'FacetTranslation', id: string, languageCode: LanguageCode, name: string }>, valueList: { __typename?: 'FacetValueList', totalItems: number, items: Array<{ __typename?: 'FacetValue', id: string, code: string, name: string }> } } };
9283
+
9284
+ export type UpdateFacetMutationVariables = Exact<{
9285
+ input: UpdateFacetInput;
9286
+ }>;
9287
+
9288
+
9289
+ export type UpdateFacetMutation = { __typename?: 'Mutation', updateFacet: { __typename?: 'Facet', id: string, createdAt: any, updatedAt: any, code: string, name: string, isPrivate: boolean, languageCode: LanguageCode, translations: Array<{ __typename?: 'FacetTranslation', id: string, languageCode: LanguageCode, name: string }>, valueList: { __typename?: 'FacetValueList', totalItems: number, items: Array<{ __typename?: 'FacetValue', id: string, code: string, name: string }> } } };
9290
+
9291
+ export type DeleteFacetMutationVariables = Exact<{
9292
+ id: Scalars['ID']['input'];
9293
+ force?: InputMaybe<Scalars['Boolean']['input']>;
9294
+ }>;
9295
+
9296
+
9297
+ export type DeleteFacetMutation = { __typename?: 'Mutation', deleteFacet: { __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null } };
9298
+
9299
+ export type DeleteFacetsMutationVariables = Exact<{
9300
+ ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
9301
+ force?: InputMaybe<Scalars['Boolean']['input']>;
9302
+ }>;
9303
+
9304
+
9305
+ export type DeleteFacetsMutation = { __typename?: 'Mutation', deleteFacets: Array<{ __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null }> };
9306
+
9307
+ export type CreateFacetValuesMutationVariables = Exact<{
9308
+ input: Array<CreateFacetValueInput> | CreateFacetValueInput;
9309
+ }>;
9310
+
9311
+
9312
+ export type CreateFacetValuesMutation = { __typename?: 'Mutation', createFacetValues: Array<{ __typename?: 'FacetValue', id: string, createdAt: any, updatedAt: any, code: string, name: string, languageCode: LanguageCode, facet: { __typename?: 'Facet', id: string, createdAt: any, updatedAt: any, code: string, name: string, isPrivate: boolean, languageCode: LanguageCode, customFields?: any | null, translations: Array<{ __typename?: 'FacetTranslation', id: string, languageCode: LanguageCode, name: string }> }, translations: Array<{ __typename?: 'FacetValueTranslation', id: string, languageCode: LanguageCode, name: string }> }> };
9313
+
9314
+ export type UpdateFacetValuesMutationVariables = Exact<{
9315
+ input: Array<UpdateFacetValueInput> | UpdateFacetValueInput;
9316
+ }>;
9317
+
9318
+
9319
+ export type UpdateFacetValuesMutation = { __typename?: 'Mutation', updateFacetValues: Array<{ __typename?: 'FacetValue', id: string, createdAt: any, updatedAt: any, code: string, name: string, languageCode: LanguageCode, facet: { __typename?: 'Facet', id: string, createdAt: any, updatedAt: any, code: string, name: string, isPrivate: boolean, languageCode: LanguageCode, customFields?: any | null, translations: Array<{ __typename?: 'FacetTranslation', id: string, languageCode: LanguageCode, name: string }> }, translations: Array<{ __typename?: 'FacetValueTranslation', id: string, languageCode: LanguageCode, name: string }> }> };
9320
+
9321
+ export type DeleteFacetValuesMutationVariables = Exact<{
9322
+ ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
9323
+ force?: InputMaybe<Scalars['Boolean']['input']>;
9324
+ }>;
9325
+
9326
+
9327
+ export type DeleteFacetValuesMutation = { __typename?: 'Mutation', deleteFacetValues: Array<{ __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null }> };
9328
+
9329
+ export type FulfillmentHandlersQueryVariables = Exact<{ [key: string]: never; }>;
9330
+
9331
+
9332
+ export type FulfillmentHandlersQuery = { __typename?: 'Query', fulfillmentHandlers: Array<{ __typename?: 'ConfigurableOperationDefinition', code: string, description: string, args: Array<{ __typename?: 'ConfigArgDefinition', name: string, type: string, required: boolean, defaultValue?: any | null, label?: string | null, description?: string | null, list: boolean, ui?: any | null }> }> };
9333
+
9334
+ export type GlobalSettingsQueryVariables = Exact<{ [key: string]: never; }>;
9335
+
9336
+
9337
+ export type GlobalSettingsQuery = { __typename?: 'Query', globalSettings: { __typename?: 'GlobalSettings', id: string, createdAt: any, updatedAt: any, availableLanguages: Array<LanguageCode>, trackInventory: boolean, outOfStockThreshold: number, customFields?: any | null, serverConfig: { __typename?: 'ServerConfig', permittedAssetTypes: Array<string>, orderProcess: Array<{ __typename?: 'OrderProcessState', name: string }>, permissions: Array<{ __typename?: 'PermissionDefinition', name: string, description: string, assignable: boolean }>, customFieldConfig: { __typename?: 'CustomFields', Customer: Array<{ __typename: 'BooleanCustomFieldConfig', name: string, type: string, list: boolean } | { __typename: 'DateTimeCustomFieldConfig', name: string, type: string, list: boolean } | { __typename: 'FloatCustomFieldConfig', name: string, type: string, list: boolean } | { __typename: 'IntCustomFieldConfig', name: string, type: string, list: boolean } | { __typename: 'LocaleStringCustomFieldConfig', name: string, type: string, list: boolean } | { __typename: 'LocaleTextCustomFieldConfig', name: string, type: string, list: boolean } | { __typename: 'RelationCustomFieldConfig', name: string, type: string, list: boolean } | { __typename: 'StringCustomFieldConfig', name: string, type: string, list: boolean } | { __typename: 'StructCustomFieldConfig', name: string, type: string, list: boolean } | { __typename: 'TextCustomFieldConfig', name: string, type: string, list: boolean }> } } } };
9338
+
9339
+ export type UpdateGlobalSettingsMutationVariables = Exact<{
9340
+ input: UpdateGlobalSettingsInput;
9341
+ }>;
9342
+
9343
+
9344
+ export type UpdateGlobalSettingsMutation = { __typename?: 'Mutation', updateGlobalSettings: { __typename: 'ChannelDefaultLanguageError', errorCode: ErrorCode, message: string, channelCode: string, language: string } | { __typename: 'GlobalSettings', id: string, createdAt: any, updatedAt: any, availableLanguages: Array<LanguageCode>, trackInventory: boolean, outOfStockThreshold: number, customFields?: any | null } };
9345
+
9346
+ export type ImportProductsMutationVariables = Exact<{
9347
+ csvFile: Scalars['Upload']['input'];
9348
+ }>;
9349
+
9350
+
9351
+ export type ImportProductsMutation = { __typename?: 'Mutation', importProducts?: { __typename?: 'ImportInfo', errors?: Array<string> | null, imported: number, processed: number } | null };
9352
+
9353
+ export type JobQueryVariables = Exact<{
9354
+ jobId: Scalars['ID']['input'];
9355
+ }>;
9356
+
9357
+
9358
+ export type JobQuery = { __typename?: 'Query', job?: { __typename?: 'Job', id: string, queueName: string, state: JobState, progress: number, data?: any | null, result?: any | null, error?: any | null, isSettled: boolean, attempts: number, retries: number, duration: number, createdAt: any, startedAt?: any | null, settledAt?: any | null } | null };
9359
+
9360
+ export type JobsQueryVariables = Exact<{
9361
+ options?: InputMaybe<JobListOptions>;
9362
+ }>;
9363
+
9364
+
9365
+ export type JobsQuery = { __typename?: 'Query', jobs: { __typename?: 'JobList', totalItems: number, items: Array<{ __typename?: 'Job', id: string, queueName: string, state: JobState, progress: number, data?: any | null, result?: any | null, error?: any | null, isSettled: boolean, attempts: number, retries: number, duration: number, createdAt: any, startedAt?: any | null, settledAt?: any | null }> } };
9366
+
9367
+ export type JobsByIdQueryVariables = Exact<{
9368
+ jobIds: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
9369
+ }>;
9370
+
9371
+
9372
+ export type JobsByIdQuery = { __typename?: 'Query', jobsById: Array<{ __typename?: 'Job', id: string, queueName: string, state: JobState, progress: number, data?: any | null, result?: any | null, error?: any | null, isSettled: boolean, attempts: number, retries: number, duration: number, createdAt: any, startedAt?: any | null, settledAt?: any | null }> };
9373
+
9374
+ export type JobQueuesQueryVariables = Exact<{ [key: string]: never; }>;
9375
+
9376
+
9377
+ export type JobQueuesQuery = { __typename?: 'Query', jobQueues: Array<{ __typename?: 'JobQueue', name: string, running: boolean }> };
9378
+
9379
+ export type JobBufferSizeQueryVariables = Exact<{
9380
+ bufferIds?: InputMaybe<Array<Scalars['String']['input']> | Scalars['String']['input']>;
9381
+ }>;
9382
+
9383
+
9384
+ export type JobBufferSizeQuery = { __typename?: 'Query', jobBufferSize: Array<{ __typename?: 'JobBufferSize', bufferId: string, size: number }> };
9385
+
9386
+ export type ScheduledTasksQueryVariables = Exact<{ [key: string]: never; }>;
9387
+
9388
+
9389
+ export type ScheduledTasksQuery = { __typename?: 'Query', scheduledTasks: Array<{ __typename?: 'ScheduledTask', id: string, description: string, enabled: boolean, schedule: string, scheduleDescription: string, isRunning: boolean, lastExecutedAt?: any | null, lastResult?: any | null, nextExecutionAt?: any | null }> };
9390
+
9391
+ export type CancelJobMutationVariables = Exact<{
9392
+ jobId: Scalars['ID']['input'];
9393
+ }>;
9394
+
9395
+
9396
+ export type CancelJobMutation = { __typename?: 'Mutation', cancelJob: { __typename?: 'Job', id: string, queueName: string, state: JobState, progress: number, data?: any | null, result?: any | null, error?: any | null, isSettled: boolean, attempts: number, retries: number, duration: number, createdAt: any, startedAt?: any | null, settledAt?: any | null } };
9397
+
9398
+ export type FlushBufferedJobsMutationVariables = Exact<{
9399
+ bufferIds?: InputMaybe<Array<Scalars['String']['input']> | Scalars['String']['input']>;
9400
+ }>;
9401
+
9402
+
9403
+ export type FlushBufferedJobsMutation = { __typename?: 'Mutation', flushBufferedJobs: { __typename?: 'Success', success: boolean } };
9404
+
9405
+ export type RemoveSettledJobsMutationVariables = Exact<{
9406
+ queueNames?: InputMaybe<Array<Scalars['String']['input']> | Scalars['String']['input']>;
9407
+ olderThan?: InputMaybe<Scalars['DateTime']['input']>;
9408
+ }>;
9409
+
9410
+
9411
+ export type RemoveSettledJobsMutation = { __typename?: 'Mutation', removeSettledJobs: number };
9412
+
9413
+ export type RunScheduledTaskMutationVariables = Exact<{
9414
+ id: Scalars['String']['input'];
9415
+ }>;
9416
+
9417
+
9418
+ export type RunScheduledTaskMutation = { __typename?: 'Mutation', runScheduledTask: { __typename?: 'Success', success: boolean } };
9419
+
9420
+ export type UpdateScheduledTaskMutationVariables = Exact<{
9421
+ input: UpdateScheduledTaskInput;
9422
+ }>;
9423
+
9424
+
9425
+ export type UpdateScheduledTaskMutation = { __typename?: 'Mutation', updateScheduledTask: { __typename?: 'ScheduledTask', id: string, description: string, enabled: boolean, schedule: string, scheduleDescription: string, isRunning: boolean, lastExecutedAt?: any | null, lastResult?: any | null, nextExecutionAt?: any | null } };
9426
+
9427
+ export type SubmitLandingContactFormMutationVariables = Exact<{
9428
+ input: LandingContactFormInput;
9429
+ }>;
9430
+
9431
+
9432
+ export type SubmitLandingContactFormMutation = { __typename?: 'Mutation', submitLandingContactForm: { __typename?: 'LandingContactForm', success: boolean } };
9433
+
9434
+ export type NotificationsQueryVariables = Exact<{ [key: string]: never; }>;
9435
+
9436
+
9437
+ export type NotificationsQuery = { __typename?: 'Query', notifications: Array<{ __typename?: 'NotificationPayload', id: string, title: string, message: string, type: NotificationType, link: string, userId: string, createdAt: any }> };
9438
+
9439
+ export type NotificationSubscriptionVariables = Exact<{ [key: string]: never; }>;
9440
+
9441
+
9442
+ export type NotificationSubscription = { __typename?: 'Subscription', notification: { __typename?: 'NotificationPayload', id: string, title: string, message: string, type: NotificationType, link: string, userId: string, createdAt: any } };
9443
+
9444
+ export type MarkAsReadMutationVariables = Exact<{
9445
+ input: MarkAsReadInput;
9446
+ }>;
9447
+
9448
+
9449
+ export type MarkAsReadMutation = { __typename?: 'Mutation', markAsRead: boolean };
9450
+
9451
+ export type OrderQueryVariables = Exact<{
9452
+ id: Scalars['ID']['input'];
9453
+ }>;
9454
+
9455
+
9456
+ export type OrderQuery = { __typename?: 'Query', order?: { __typename?: 'Order', id: string, createdAt: any, updatedAt: any, code: string, state: string, active: boolean, orderPlacedAt?: any | null, currencyCode: CurrencyCode, totalWithTax: any, totalQuantity: number, total: any, subTotal: any, subTotalWithTax: any, shipping: any, shippingWithTax: any, type: OrderType, aggregateOrderId?: string | null, couponCodes: Array<string>, nextStates: Array<string>, taxSummary: Array<{ __typename?: 'OrderTaxSummary', description: string, taxRate: number, taxBase: any, taxTotal: any }>, discounts: Array<{ __typename?: 'Discount', adjustmentSource: string, type: AdjustmentType, description: string, amount: any, amountWithTax: any }>, promotions: Array<{ __typename?: 'Promotion', id: string, name: string }>, surcharges: Array<{ __typename?: 'Surcharge', id: string, description: string, sku?: string | null, price: any, priceWithTax: any, taxRate: number }>, shippingLines: Array<{ __typename?: 'ShippingLine', id: string, priceWithTax: any }>, modifications: Array<{ __typename?: 'OrderModification', id: string, createdAt: any, updatedAt: any, priceChange: any, note: string, isSettled: boolean }>, channels: Array<{ __typename?: 'Channel', id: string, code: string }>, customer?: { __typename?: 'Customer', id: string, createdAt: any, updatedAt: any, title?: string | null, firstName: string, lastName: string, phoneNumber?: string | null, emailAddress: string, addresses?: Array<{ __typename?: 'Address', id: string, fullName?: string | null }> | null, groups: Array<{ __typename?: 'CustomerGroup', id: string, name: string }>, user?: { __typename?: 'User', id: string, identifier: string, verified: boolean } | null } | null, lines: Array<{ __typename?: 'OrderLine', id: string, quantity: number, linePrice: any, linePriceWithTax: any, productVariant: { __typename?: 'ProductVariant', id: string, createdAt: any, updatedAt: any, name: string, sku: string, enabled: boolean, price: any, priceWithTax: any, currencyCode: CurrencyCode, languageCode: LanguageCode, stockOnHand: number, stockAllocated: number, trackInventory: GlobalFlag, outOfStockThreshold: number, useGlobalOutOfStockThreshold: boolean, productId: string, taxRateApplied: { __typename?: 'TaxRate', id: string, name: string, value: number }, featuredAsset?: { __typename?: 'Asset', id: string, preview: string } | null, facetValues: Array<{ __typename?: 'FacetValue', id: string, name: string }>, channels: Array<{ __typename?: 'Channel', id: string, code: string }>, assets: Array<{ __typename?: 'Asset', id: string, preview: string }>, options: Array<{ __typename?: 'ProductOption', id: string, name: string }>, taxCategory: { __typename?: 'TaxCategory', id: string, createdAt: any, updatedAt: any, name: string, isDefault: boolean }, product: { __typename?: 'Product', id: string, createdAt: any, updatedAt: any, name: string, slug: string, enabled: boolean, description: string, languageCode: LanguageCode, featuredAsset?: { __typename?: 'Asset', id: string, preview: string } | null, facetValues: Array<{ __typename?: 'FacetValue', id: string, name: string }>, channels: Array<{ __typename?: 'Channel', id: string, code: string }>, optionGroups: Array<{ __typename?: 'ProductOptionGroup', id: string, code: string }>, collections: Array<{ __typename?: 'Collection', id: string, name: string }>, assets: Array<{ __typename?: 'Asset', id: string, preview: string }> } } }>, shippingAddress?: { __typename?: 'OrderAddress', fullName?: string | null, company?: string | null, streetLine1?: string | null, streetLine2?: string | null, city?: string | null, province?: string | null, postalCode?: string | null, country?: string | null, phoneNumber?: string | null } | null, billingAddress?: { __typename?: 'OrderAddress', fullName?: string | null, company?: string | null, streetLine1?: string | null, streetLine2?: string | null, city?: string | null, province?: string | null, postalCode?: string | null, country?: string | null, phoneNumber?: string | null } | null, payments?: Array<{ __typename?: 'Payment', id: string, method: string, amount: any, state: string, transactionId?: string | null }> | null, fulfillments?: Array<{ __typename?: 'Fulfillment', id: string, state: string, method: string, trackingCode?: string | null }> | null } | null };
9457
+
9458
+ export type OrdersQueryVariables = Exact<{
9459
+ options?: InputMaybe<OrderListOptions>;
9460
+ }>;
9461
+
9462
+
9463
+ export type OrdersQuery = { __typename?: 'Query', orders: { __typename?: 'OrderList', totalItems: number, items: Array<{ __typename?: 'Order', id: string, createdAt: any, updatedAt: any, code: string, state: string, totalWithTax: any, customer?: { __typename?: 'Customer', id: string, createdAt: any, updatedAt: any, title?: string | null, firstName: string, lastName: string, phoneNumber?: string | null, emailAddress: string, addresses?: Array<{ __typename?: 'Address', id: string, fullName?: string | null }> | null, groups: Array<{ __typename?: 'CustomerGroup', id: string, name: string }>, user?: { __typename?: 'User', id: string, identifier: string, verified: boolean } | null } | null }> } };
9464
+
9465
+ export type EligibleShippingMethodsForDraftOrderQueryVariables = Exact<{
9466
+ orderId: Scalars['ID']['input'];
9467
+ }>;
9468
+
9469
+
9470
+ export type EligibleShippingMethodsForDraftOrderQuery = { __typename?: 'Query', eligibleShippingMethodsForDraftOrder: Array<{ __typename?: 'ShippingMethodQuote', id: string, name: string, code: string, description: string, price: any, priceWithTax: any, metadata?: any | null }> };
9471
+
9472
+ export type CreateDraftOrderMutationVariables = Exact<{ [key: string]: never; }>;
9473
+
9474
+
9475
+ export type CreateDraftOrderMutation = { __typename?: 'Mutation', createDraftOrder: { __typename?: 'Order', id: string, createdAt: any, updatedAt: any, code: string, state: string, active: boolean, totalWithTax: any, totalQuantity: number } };
9476
+
9477
+ export type DeleteDraftOrderMutationVariables = Exact<{
9478
+ orderId: Scalars['ID']['input'];
9479
+ }>;
9480
+
9481
+
9482
+ export type DeleteDraftOrderMutation = { __typename?: 'Mutation', deleteDraftOrder: { __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null } };
9483
+
9484
+ export type AddItemToDraftOrderMutationVariables = Exact<{
9485
+ orderId: Scalars['ID']['input'];
9486
+ input: AddItemToDraftOrderInput;
9487
+ }>;
9488
+
9489
+
9490
+ export type AddItemToDraftOrderMutation = { __typename?: 'Mutation', addItemToDraftOrder: { __typename: 'InsufficientStockError', errorCode: ErrorCode, message: string, quantityAvailable: number } | { __typename: 'NegativeQuantityError', errorCode: ErrorCode, message: string } | { __typename: 'Order', id: string, code: string, state: string, totalWithTax: any, totalQuantity: number, lines: Array<{ __typename?: 'OrderLine', id: string, quantity: number, linePrice: any, linePriceWithTax: any, productVariant: { __typename?: 'ProductVariant', id: string, createdAt: any, updatedAt: any, name: string, sku: string, enabled: boolean, price: any, priceWithTax: any, currencyCode: CurrencyCode, languageCode: LanguageCode, stockOnHand: number, stockAllocated: number, trackInventory: GlobalFlag, outOfStockThreshold: number, useGlobalOutOfStockThreshold: boolean, productId: string, taxRateApplied: { __typename?: 'TaxRate', id: string, name: string, value: number }, featuredAsset?: { __typename?: 'Asset', id: string, preview: string } | null, facetValues: Array<{ __typename?: 'FacetValue', id: string, name: string }>, channels: Array<{ __typename?: 'Channel', id: string, code: string }>, assets: Array<{ __typename?: 'Asset', id: string, preview: string }>, options: Array<{ __typename?: 'ProductOption', id: string, name: string }>, taxCategory: { __typename?: 'TaxCategory', id: string, createdAt: any, updatedAt: any, name: string, isDefault: boolean }, product: { __typename?: 'Product', id: string, createdAt: any, updatedAt: any, name: string, slug: string, enabled: boolean, description: string, languageCode: LanguageCode, featuredAsset?: { __typename?: 'Asset', id: string, preview: string } | null, facetValues: Array<{ __typename?: 'FacetValue', id: string, name: string }>, channels: Array<{ __typename?: 'Channel', id: string, code: string }>, optionGroups: Array<{ __typename?: 'ProductOptionGroup', id: string, code: string }>, collections: Array<{ __typename?: 'Collection', id: string, name: string }>, assets: Array<{ __typename?: 'Asset', id: string, preview: string }> } } }> } | { __typename?: 'OrderInterceptorError' } | { __typename: 'OrderLimitError', errorCode: ErrorCode, message: string, maxItems: number } | { __typename?: 'OrderModificationError' } };
9491
+
9492
+ export type AdjustDraftOrderLineMutationVariables = Exact<{
9493
+ orderId: Scalars['ID']['input'];
9494
+ input: AdjustDraftOrderLineInput;
9495
+ }>;
9496
+
9497
+
9498
+ export type AdjustDraftOrderLineMutation = { __typename?: 'Mutation', adjustDraftOrderLine: { __typename: 'InsufficientStockError', errorCode: ErrorCode, message: string, quantityAvailable: number } | { __typename: 'NegativeQuantityError', errorCode: ErrorCode, message: string } | { __typename: 'Order', id: string, code: string, state: string, totalWithTax: any, totalQuantity: number, lines: Array<{ __typename?: 'OrderLine', id: string, quantity: number, linePrice: any, linePriceWithTax: any }> } | { __typename?: 'OrderInterceptorError' } | { __typename: 'OrderLimitError', errorCode: ErrorCode, message: string, maxItems: number } | { __typename?: 'OrderModificationError' } };
9499
+
9500
+ export type RemoveDraftOrderLineMutationVariables = Exact<{
9501
+ orderId: Scalars['ID']['input'];
9502
+ orderLineId: Scalars['ID']['input'];
9503
+ }>;
9504
+
9505
+
9506
+ export type RemoveDraftOrderLineMutation = { __typename?: 'Mutation', removeDraftOrderLine: { __typename: 'Order', id: string, code: string, state: string, totalWithTax: any, totalQuantity: number, lines: Array<{ __typename?: 'OrderLine', id: string, quantity: number }> } | { __typename?: 'OrderInterceptorError' } | { __typename: 'OrderModificationError', errorCode: ErrorCode, message: string } };
9507
+
9508
+ export type ApplyCouponCodeToDraftOrderMutationVariables = Exact<{
9509
+ orderId: Scalars['ID']['input'];
9510
+ couponCode: Scalars['String']['input'];
9511
+ }>;
9512
+
9513
+
9514
+ export type ApplyCouponCodeToDraftOrderMutation = { __typename?: 'Mutation', applyCouponCodeToDraftOrder: { __typename: 'CouponCodeExpiredError', errorCode: ErrorCode, message: string } | { __typename: 'CouponCodeInvalidError', errorCode: ErrorCode, message: string } | { __typename: 'CouponCodeLimitError', errorCode: ErrorCode, message: string } | { __typename: 'Order', id: string, code: string, couponCodes: Array<string>, totalWithTax: any } };
9515
+
9516
+ export type RemoveCouponCodeFromDraftOrderMutationVariables = Exact<{
9517
+ orderId: Scalars['ID']['input'];
9518
+ couponCode: Scalars['String']['input'];
9519
+ }>;
9520
+
9521
+
9522
+ export type RemoveCouponCodeFromDraftOrderMutation = { __typename?: 'Mutation', removeCouponCodeFromDraftOrder?: { __typename?: 'Order', id: string, code: string, couponCodes: Array<string>, totalWithTax: any } | null };
9523
+
9524
+ export type SetCustomerForDraftOrderMutationVariables = Exact<{
9525
+ orderId: Scalars['ID']['input'];
9526
+ customerId?: InputMaybe<Scalars['ID']['input']>;
9527
+ input?: InputMaybe<CreateCustomerInput>;
9528
+ }>;
9529
+
9530
+
9531
+ export type SetCustomerForDraftOrderMutation = { __typename?: 'Mutation', setCustomerForDraftOrder: { __typename: 'EmailAddressConflictError', errorCode: ErrorCode, message: string } | { __typename: 'Order', id: string, customer?: { __typename?: 'Customer', id: string, createdAt: any, updatedAt: any, title?: string | null, firstName: string, lastName: string, phoneNumber?: string | null, emailAddress: string, addresses?: Array<{ __typename?: 'Address', id: string, fullName?: string | null }> | null, groups: Array<{ __typename?: 'CustomerGroup', id: string, name: string }>, user?: { __typename?: 'User', id: string, identifier: string, verified: boolean } | null } | null } };
9532
+
9533
+ export type SetDraftOrderBillingAddressMutationVariables = Exact<{
9534
+ orderId: Scalars['ID']['input'];
9535
+ input: CreateAddressInput;
9536
+ }>;
9537
+
9538
+
9539
+ export type SetDraftOrderBillingAddressMutation = { __typename?: 'Mutation', setDraftOrderBillingAddress: { __typename?: 'Order', id: string, billingAddress?: { __typename?: 'OrderAddress', fullName?: string | null, company?: string | null, streetLine1?: string | null, streetLine2?: string | null, city?: string | null, province?: string | null, postalCode?: string | null, country?: string | null, phoneNumber?: string | null } | null } };
9540
+
9541
+ export type SetDraftOrderShippingAddressMutationVariables = Exact<{
9542
+ orderId: Scalars['ID']['input'];
9543
+ input: CreateAddressInput;
9544
+ }>;
9545
+
9546
+
9547
+ export type SetDraftOrderShippingAddressMutation = { __typename?: 'Mutation', setDraftOrderShippingAddress: { __typename?: 'Order', id: string, shippingAddress?: { __typename?: 'OrderAddress', fullName?: string | null, company?: string | null, streetLine1?: string | null, streetLine2?: string | null, city?: string | null, province?: string | null, postalCode?: string | null, country?: string | null, phoneNumber?: string | null } | null } };
9548
+
9549
+ export type UnsetDraftOrderBillingAddressMutationVariables = Exact<{
9550
+ orderId: Scalars['ID']['input'];
9551
+ }>;
9552
+
9553
+
9554
+ export type UnsetDraftOrderBillingAddressMutation = { __typename?: 'Mutation', unsetDraftOrderBillingAddress: { __typename?: 'Order', id: string, billingAddress?: { __typename?: 'OrderAddress', fullName?: string | null } | null } };
9555
+
9556
+ export type UnsetDraftOrderShippingAddressMutationVariables = Exact<{
9557
+ orderId: Scalars['ID']['input'];
9558
+ }>;
9559
+
9560
+
9561
+ export type UnsetDraftOrderShippingAddressMutation = { __typename?: 'Mutation', unsetDraftOrderShippingAddress: { __typename?: 'Order', id: string, shippingAddress?: { __typename?: 'OrderAddress', fullName?: string | null } | null } };
9562
+
9563
+ export type SetDraftOrderShippingMethodMutationVariables = Exact<{
9564
+ orderId: Scalars['ID']['input'];
9565
+ shippingMethodId: Scalars['ID']['input'];
9566
+ }>;
9567
+
9568
+
9569
+ export type SetDraftOrderShippingMethodMutation = { __typename?: 'Mutation', setDraftOrderShippingMethod: { __typename: 'IneligibleShippingMethodError', errorCode: ErrorCode, message: string } | { __typename: 'NoActiveOrderError', errorCode: ErrorCode, message: string } | { __typename: 'Order', id: string, shippingWithTax: any, totalWithTax: any } | { __typename: 'OrderModificationError', errorCode: ErrorCode, message: string } };
9570
+
9571
+ export type SetDraftOrderCustomFieldsMutationVariables = Exact<{
9572
+ orderId: Scalars['ID']['input'];
9573
+ input: UpdateOrderInput;
9574
+ }>;
9575
+
9576
+
9577
+ export type SetDraftOrderCustomFieldsMutation = { __typename?: 'Mutation', setDraftOrderCustomFields: { __typename?: 'Order', id: string } };
9578
+
9579
+ export type AddNoteToOrderMutationVariables = Exact<{
9580
+ input: AddNoteToOrderInput;
9581
+ }>;
9582
+
9583
+
9584
+ export type AddNoteToOrderMutation = { __typename?: 'Mutation', addNoteToOrder: { __typename?: 'Order', id: string, createdAt: any, updatedAt: any } };
9585
+
9586
+ export type UpdateOrderNoteMutationVariables = Exact<{
9587
+ input: UpdateOrderNoteInput;
9588
+ }>;
9589
+
9590
+
9591
+ export type UpdateOrderNoteMutation = { __typename?: 'Mutation', updateOrderNote: { __typename?: 'HistoryEntry', id: string, type: HistoryEntryType, data: any, createdAt: any, updatedAt: any, administrator?: { __typename?: 'Administrator', id: string, createdAt: any, updatedAt: any, firstName: string, lastName: string, emailAddress: string } | null } };
9592
+
9593
+ export type DeleteOrderNoteMutationVariables = Exact<{
9594
+ id: Scalars['ID']['input'];
9595
+ }>;
9596
+
9597
+
9598
+ export type DeleteOrderNoteMutation = { __typename?: 'Mutation', deleteOrderNote: { __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null } };
9599
+
9600
+ export type SetOrderCustomFieldsMutationVariables = Exact<{
9601
+ input: UpdateOrderInput;
9602
+ }>;
9603
+
9604
+
9605
+ export type SetOrderCustomFieldsMutation = { __typename?: 'Mutation', setOrderCustomFields?: { __typename?: 'Order', id: string } | null };
9606
+
9607
+ export type SetOrderCustomerMutationVariables = Exact<{
9608
+ input: SetOrderCustomerInput;
9609
+ }>;
9610
+
9611
+
9612
+ export type SetOrderCustomerMutation = { __typename?: 'Mutation', setOrderCustomer?: { __typename?: 'Order', id: string, customer?: { __typename?: 'Customer', id: string, createdAt: any, updatedAt: any, title?: string | null, firstName: string, lastName: string, phoneNumber?: string | null, emailAddress: string, addresses?: Array<{ __typename?: 'Address', id: string, fullName?: string | null }> | null, groups: Array<{ __typename?: 'CustomerGroup', id: string, name: string }>, user?: { __typename?: 'User', id: string, identifier: string, verified: boolean } | null } | null } | null };
9613
+
9614
+ export type ModifyOrderMutationVariables = Exact<{
9615
+ input: ModifyOrderInput;
9616
+ }>;
9617
+
9618
+
9619
+ export type ModifyOrderMutation = { __typename?: 'Mutation', modifyOrder: { __typename: 'CouponCodeExpiredError', errorCode: ErrorCode, message: string } | { __typename: 'CouponCodeInvalidError', errorCode: ErrorCode, message: string } | { __typename: 'CouponCodeLimitError', errorCode: ErrorCode, message: string } | { __typename: 'IneligibleShippingMethodError', errorCode: ErrorCode, message: string } | { __typename: 'InsufficientStockError', errorCode: ErrorCode, message: string, quantityAvailable: number } | { __typename: 'NegativeQuantityError', errorCode: ErrorCode, message: string } | { __typename: 'NoChangesSpecifiedError', errorCode: ErrorCode, message: string } | { __typename: 'Order', id: string, code: string, state: string, totalWithTax: any, lines: Array<{ __typename?: 'OrderLine', id: string, quantity: number, linePrice: any, linePriceWithTax: any }> } | { __typename: 'OrderLimitError', errorCode: ErrorCode, message: string, maxItems: number } | { __typename: 'OrderModificationStateError', errorCode: ErrorCode, message: string } | { __typename: 'PaymentMethodMissingError', errorCode: ErrorCode, message: string } | { __typename: 'RefundPaymentIdMissingError', errorCode: ErrorCode, message: string } };
9620
+
9621
+ export type CancelOrderMutationVariables = Exact<{
9622
+ input: CancelOrderInput;
9623
+ }>;
9624
+
9625
+
9626
+ export type CancelOrderMutation = { __typename?: 'Mutation', cancelOrder: { __typename: 'CancelActiveOrderError', errorCode: ErrorCode, message: string, orderState: string } | { __typename: 'EmptyOrderLineSelectionError', errorCode: ErrorCode, message: string } | { __typename: 'MultipleOrderError', errorCode: ErrorCode, message: string } | { __typename: 'Order', id: string, code: string, state: string } | { __typename: 'OrderStateTransitionError', errorCode: ErrorCode, message: string, transitionError: string, fromState: string, toState: string } | { __typename: 'QuantityTooGreatError', errorCode: ErrorCode, message: string } };
9627
+
9628
+ export type TransitionOrderToStateMutationVariables = Exact<{
9629
+ id: Scalars['ID']['input'];
9630
+ state: Scalars['String']['input'];
9631
+ }>;
9632
+
9633
+
9634
+ export type TransitionOrderToStateMutation = { __typename?: 'Mutation', transitionOrderToState?: { __typename: 'Order', id: string, state: string } | { __typename: 'OrderStateTransitionError', errorCode: ErrorCode, message: string, transitionError: string, fromState: string, toState: string } | null };
9635
+
9636
+ export type AddFulfillmentToOrderMutationVariables = Exact<{
9637
+ input: FulfillOrderInput;
9638
+ }>;
9639
+
9640
+
9641
+ export type AddFulfillmentToOrderMutation = { __typename?: 'Mutation', addFulfillmentToOrder: { __typename: 'CreateFulfillmentError', errorCode: ErrorCode, message: string, fulfillmentHandlerError: string } | { __typename: 'EmptyOrderLineSelectionError', errorCode: ErrorCode, message: string } | { __typename: 'Fulfillment', id: string, state: string, method: string, trackingCode?: string | null, createdAt: any, updatedAt: any } | { __typename: 'FulfillmentStateTransitionError', errorCode: ErrorCode, message: string, transitionError: string, fromState: string, toState: string } | { __typename: 'InsufficientStockOnHandError', errorCode: ErrorCode, message: string, productVariantId: string, productVariantName: string, stockOnHand: number } | { __typename: 'InvalidFulfillmentHandlerError', errorCode: ErrorCode, message: string } | { __typename: 'ItemsAlreadyFulfilledError', errorCode: ErrorCode, message: string } };
9642
+
9643
+ export type TransitionFulfillmentToStateMutationVariables = Exact<{
9644
+ id: Scalars['ID']['input'];
9645
+ state: Scalars['String']['input'];
9646
+ }>;
9647
+
9648
+
9649
+ export type TransitionFulfillmentToStateMutation = { __typename?: 'Mutation', transitionFulfillmentToState: { __typename: 'Fulfillment', id: string, state: string } | { __typename: 'FulfillmentStateTransitionError', errorCode: ErrorCode, message: string, transitionError: string, fromState: string, toState: string } };
9650
+
9651
+ export type AddManualPaymentToOrderMutationVariables = Exact<{
9652
+ input: ManualPaymentInput;
9653
+ }>;
9654
+
9655
+
9656
+ export type AddManualPaymentToOrderMutation = { __typename?: 'Mutation', addManualPaymentToOrder: { __typename: 'ManualPaymentStateError', errorCode: ErrorCode, message: string } | { __typename: 'Order', id: string, payments?: Array<{ __typename?: 'Payment', id: string, method: string, amount: any, state: string, transactionId?: string | null }> | null } };
9657
+
9658
+ export type CancelPaymentMutationVariables = Exact<{
9659
+ id: Scalars['ID']['input'];
9660
+ }>;
9661
+
9662
+
9663
+ export type CancelPaymentMutation = { __typename?: 'Mutation', cancelPayment: { __typename: 'CancelPaymentError', errorCode: ErrorCode, message: string, paymentErrorMessage: string } | { __typename: 'Payment', id: string, state: string } | { __typename: 'PaymentStateTransitionError', errorCode: ErrorCode, message: string, transitionError: string, fromState: string, toState: string } };
9664
+
9665
+ export type SettlePaymentMutationVariables = Exact<{
9666
+ id: Scalars['ID']['input'];
9667
+ }>;
9668
+
9669
+
9670
+ export type SettlePaymentMutation = { __typename?: 'Mutation', settlePayment: { __typename: 'OrderStateTransitionError', errorCode: ErrorCode, message: string, transitionError: string, fromState: string, toState: string } | { __typename: 'Payment', id: string, state: string } | { __typename: 'PaymentStateTransitionError', errorCode: ErrorCode, message: string, transitionError: string, fromState: string, toState: string } | { __typename: 'SettlePaymentError', errorCode: ErrorCode, message: string, paymentErrorMessage: string } };
9671
+
9672
+ export type TransitionPaymentToStateMutationVariables = Exact<{
9673
+ id: Scalars['ID']['input'];
9674
+ state: Scalars['String']['input'];
9675
+ }>;
9676
+
9677
+
9678
+ export type TransitionPaymentToStateMutation = { __typename?: 'Mutation', transitionPaymentToState: { __typename: 'Payment', id: string, state: string } | { __typename: 'PaymentStateTransitionError', errorCode: ErrorCode, message: string, transitionError: string, fromState: string, toState: string } };
9679
+
9680
+ export type RefundOrderMutationVariables = Exact<{
9681
+ input: RefundOrderInput;
9682
+ }>;
9683
+
9684
+
9685
+ export type RefundOrderMutation = { __typename?: 'Mutation', refundOrder: { __typename: 'AlreadyRefundedError', errorCode: ErrorCode, message: string, refundId: string } | { __typename: 'MultipleOrderError', errorCode: ErrorCode, message: string } | { __typename: 'NothingToRefundError', errorCode: ErrorCode, message: string } | { __typename: 'OrderStateTransitionError', errorCode: ErrorCode, message: string, transitionError: string, fromState: string, toState: string } | { __typename: 'PaymentOrderMismatchError', errorCode: ErrorCode, message: string } | { __typename: 'QuantityTooGreatError', errorCode: ErrorCode, message: string } | { __typename: 'Refund', id: string, state: string, items: any, shipping: any, adjustment: any, total: any, paymentId: string } | { __typename: 'RefundAmountError', errorCode: ErrorCode, message: string, maximumRefundable: number } | { __typename: 'RefundOrderStateError', errorCode: ErrorCode, message: string, orderState: string } | { __typename: 'RefundStateTransitionError', errorCode: ErrorCode, message: string, transitionError: string, fromState: string, toState: string } };
9686
+
9687
+ export type SettleRefundMutationVariables = Exact<{
9688
+ input: SettleRefundInput;
9689
+ }>;
9690
+
9691
+
9692
+ export type SettleRefundMutation = { __typename?: 'Mutation', settleRefund: { __typename: 'Refund', id: string, state: string } | { __typename: 'RefundStateTransitionError', errorCode: ErrorCode, message: string, transitionError: string, fromState: string, toState: string } };
9693
+
9694
+ export type PaymentMethodsQueryVariables = Exact<{
9695
+ options?: InputMaybe<PaymentMethodListOptions>;
9696
+ }>;
9697
+
9698
+
9699
+ export type PaymentMethodsQuery = { __typename?: 'Query', paymentMethods: { __typename?: 'PaymentMethodList', totalItems: number, items: Array<{ __typename?: 'PaymentMethod', id: string, createdAt: any, updatedAt: any, name: string, code: string, description: string, enabled: boolean, checker?: { __typename?: 'ConfigurableOperation', code: string, args: Array<{ __typename?: 'ConfigArg', name: string, value: string }> } | null, handler: { __typename?: 'ConfigurableOperation', code: string, args: Array<{ __typename?: 'ConfigArg', name: string, value: string }> }, translations: Array<{ __typename?: 'PaymentMethodTranslation', id: string, languageCode: LanguageCode, name: string, description: string }> }> } };
9700
+
9701
+ export type PaymentMethodQueryVariables = Exact<{
9702
+ id: Scalars['ID']['input'];
9703
+ }>;
9704
+
9705
+
9706
+ export type PaymentMethodQuery = { __typename?: 'Query', paymentMethod?: { __typename?: 'PaymentMethod', id: string, createdAt: any, updatedAt: any, name: string, code: string, description: string, enabled: boolean, checker?: { __typename?: 'ConfigurableOperation', code: string, args: Array<{ __typename?: 'ConfigArg', name: string, value: string }> } | null, handler: { __typename?: 'ConfigurableOperation', code: string, args: Array<{ __typename?: 'ConfigArg', name: string, value: string }> }, translations: Array<{ __typename?: 'PaymentMethodTranslation', id: string, languageCode: LanguageCode, name: string, description: string }> } | null };
9707
+
9708
+ export type PaymentMethodEligibilityCheckersQueryVariables = Exact<{ [key: string]: never; }>;
9709
+
9710
+
9711
+ export type PaymentMethodEligibilityCheckersQuery = { __typename?: 'Query', paymentMethodEligibilityCheckers: Array<{ __typename?: 'ConfigurableOperationDefinition', code: string, description: string, args: Array<{ __typename?: 'ConfigArgDefinition', name: string, type: string, list: boolean, required: boolean, defaultValue?: any | null, label?: string | null, description?: string | null, ui?: any | null }> }> };
9712
+
9713
+ export type PaymentMethodHandlersQueryVariables = Exact<{ [key: string]: never; }>;
9714
+
9715
+
9716
+ export type PaymentMethodHandlersQuery = { __typename?: 'Query', paymentMethodHandlers: Array<{ __typename?: 'ConfigurableOperationDefinition', code: string, description: string, args: Array<{ __typename?: 'ConfigArgDefinition', name: string, type: string, list: boolean, required: boolean, defaultValue?: any | null, label?: string | null, description?: string | null, ui?: any | null }> }> };
9717
+
9718
+ export type CreatePaymentMethodMutationVariables = Exact<{
9719
+ input: CreatePaymentMethodInput;
9720
+ }>;
9721
+
9722
+
9723
+ export type CreatePaymentMethodMutation = { __typename?: 'Mutation', createPaymentMethod: { __typename?: 'PaymentMethod', id: string, createdAt: any, updatedAt: any, name: string, code: string, description: string, enabled: boolean, checker?: { __typename?: 'ConfigurableOperation', code: string, args: Array<{ __typename?: 'ConfigArg', name: string, value: string }> } | null, handler: { __typename?: 'ConfigurableOperation', code: string, args: Array<{ __typename?: 'ConfigArg', name: string, value: string }> }, translations: Array<{ __typename?: 'PaymentMethodTranslation', id: string, languageCode: LanguageCode, name: string, description: string }> } };
9724
+
9725
+ export type UpdatePaymentMethodMutationVariables = Exact<{
9726
+ input: UpdatePaymentMethodInput;
9727
+ }>;
9728
+
9729
+
9730
+ export type UpdatePaymentMethodMutation = { __typename?: 'Mutation', updatePaymentMethod: { __typename?: 'PaymentMethod', id: string, createdAt: any, updatedAt: any, name: string, code: string, description: string, enabled: boolean, checker?: { __typename?: 'ConfigurableOperation', code: string, args: Array<{ __typename?: 'ConfigArg', name: string, value: string }> } | null, handler: { __typename?: 'ConfigurableOperation', code: string, args: Array<{ __typename?: 'ConfigArg', name: string, value: string }> }, translations: Array<{ __typename?: 'PaymentMethodTranslation', id: string, languageCode: LanguageCode, name: string, description: string }> } };
9731
+
9732
+ export type DeletePaymentMethodMutationVariables = Exact<{
9733
+ id: Scalars['ID']['input'];
9734
+ force?: InputMaybe<Scalars['Boolean']['input']>;
9735
+ }>;
9736
+
9737
+
9738
+ export type DeletePaymentMethodMutation = { __typename?: 'Mutation', deletePaymentMethod: { __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null } };
9739
+
9740
+ export type DeletePaymentMethodsMutationVariables = Exact<{
9741
+ ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
9742
+ force?: InputMaybe<Scalars['Boolean']['input']>;
9743
+ }>;
9744
+
9745
+
9746
+ export type DeletePaymentMethodsMutation = { __typename?: 'Mutation', deletePaymentMethods: Array<{ __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null }> };
9747
+
9748
+ export type ProductOptionGroupQueryVariables = Exact<{
9749
+ id: Scalars['ID']['input'];
9750
+ }>;
9751
+
9752
+
9753
+ export type ProductOptionGroupQuery = { __typename?: 'Query', productOptionGroup?: { __typename?: 'ProductOptionGroup', id: string, createdAt: any, updatedAt: any, code: string, name: string, languageCode: LanguageCode, customFields?: any | null, translations: Array<{ __typename?: 'ProductOptionGroupTranslation', id: string, languageCode: LanguageCode, name: string }>, options: Array<{ __typename?: 'ProductOption', id: string, code: string, name: string, createdAt: any, updatedAt: any }> } | null };
9754
+
9755
+ export type ProductOptionGroupsQueryVariables = Exact<{
9756
+ filterTerm?: InputMaybe<Scalars['String']['input']>;
9757
+ }>;
9758
+
9759
+
9760
+ export type ProductOptionGroupsQuery = { __typename?: 'Query', productOptionGroups: Array<{ __typename?: 'ProductOptionGroup', id: string, createdAt: any, updatedAt: any, code: string, name: string, languageCode: LanguageCode, customFields?: any | null, translations: Array<{ __typename?: 'ProductOptionGroupTranslation', id: string, languageCode: LanguageCode, name: string }>, options: Array<{ __typename?: 'ProductOption', id: string, code: string, name: string }> }> };
9761
+
9762
+ export type CreateProductOptionMutationVariables = Exact<{
9763
+ input: CreateProductOptionInput;
9764
+ }>;
9765
+
9766
+
9767
+ export type CreateProductOptionMutation = { __typename?: 'Mutation', createProductOption: { __typename?: 'ProductOption', id: string, code: string, name: string, groupId: string, createdAt: any, updatedAt: any } };
9768
+
9769
+ export type CreateProductOptionGroupMutationVariables = Exact<{
9770
+ input: CreateProductOptionGroupInput;
9771
+ }>;
9772
+
9773
+
9774
+ export type CreateProductOptionGroupMutation = { __typename?: 'Mutation', createProductOptionGroup: { __typename?: 'ProductOptionGroup', id: string, code: string, name: string, createdAt: any, updatedAt: any, languageCode: LanguageCode, customFields?: any | null, translations: Array<{ __typename?: 'ProductOptionGroupTranslation', id: string, languageCode: LanguageCode, name: string }>, options: Array<{ __typename?: 'ProductOption', id: string, code: string, name: string }> } };
9775
+
9776
+ export type UpdateProductOptionMutationVariables = Exact<{
9777
+ input: UpdateProductOptionInput;
9778
+ }>;
9779
+
9780
+
9781
+ export type UpdateProductOptionMutation = { __typename?: 'Mutation', updateProductOption: { __typename?: 'ProductOption', id: string, code: string, name: string, groupId: string, createdAt: any, updatedAt: any } };
9782
+
9783
+ export type UpdateProductOptionGroupMutationVariables = Exact<{
9784
+ input: UpdateProductOptionGroupInput;
9785
+ }>;
9786
+
9787
+
9788
+ export type UpdateProductOptionGroupMutation = { __typename?: 'Mutation', updateProductOptionGroup: { __typename?: 'ProductOptionGroup', id: string, code: string, name: string, createdAt: any, updatedAt: any, languageCode: LanguageCode, customFields?: any | null, translations: Array<{ __typename?: 'ProductOptionGroupTranslation', id: string, languageCode: LanguageCode, name: string }>, options: Array<{ __typename?: 'ProductOption', id: string, code: string, name: string }> } };
9789
+
9790
+ export type DeleteProductOptionMutationVariables = Exact<{
9791
+ id: Scalars['ID']['input'];
9792
+ }>;
9793
+
9794
+
9795
+ export type DeleteProductOptionMutation = { __typename?: 'Mutation', deleteProductOption: { __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null } };
9796
+
9797
+ export type AddOptionGroupToProductMutationVariables = Exact<{
9798
+ productId: Scalars['ID']['input'];
9799
+ optionGroupId: Scalars['ID']['input'];
9800
+ }>;
9801
+
9802
+
9803
+ export type AddOptionGroupToProductMutation = { __typename?: 'Mutation', addOptionGroupToProduct: { __typename?: 'Product', id: string, name: string, optionGroups: Array<{ __typename?: 'ProductOptionGroup', id: string, code: string, name: string, options: Array<{ __typename?: 'ProductOption', id: string, code: string, name: string }> }> } };
9804
+
9805
+ export type RemoveOptionGroupFromProductMutationVariables = Exact<{
9806
+ productId: Scalars['ID']['input'];
9807
+ optionGroupId: Scalars['ID']['input'];
9808
+ force?: InputMaybe<Scalars['Boolean']['input']>;
9809
+ }>;
9810
+
9811
+
9812
+ export type RemoveOptionGroupFromProductMutation = { __typename?: 'Mutation', removeOptionGroupFromProduct: { __typename: 'Product', id: string, name: string, optionGroups: Array<{ __typename?: 'ProductOptionGroup', id: string, code: string, name: string }> } | { __typename: 'ProductOptionInUseError', errorCode: ErrorCode, message: string, optionGroupCode: string, productVariantCount: number } };
9813
+
9814
+ export type ProductVariantQueryVariables = Exact<{
9815
+ id: Scalars['ID']['input'];
9816
+ }>;
9817
+
9818
+
9819
+ export type ProductVariantQuery = { __typename?: 'Query', productVariant?: { __typename?: 'ProductVariant', id: string, createdAt: any, updatedAt: any, enabled: boolean, languageCode: LanguageCode, name: string, price: any, currencyCode: CurrencyCode, priceWithTax: any, stockLevel: string, trackInventory: GlobalFlag, outOfStockThreshold: number, useGlobalOutOfStockThreshold: boolean, sku: string, productId: string, facetValues: Array<{ __typename?: 'FacetValue', id: string, name: string, code: string }>, featuredAsset?: { __typename?: 'Asset', id: string, preview: string, name: string } | null, assets: Array<{ __typename?: 'Asset', id: string, preview: string, name: string }>, translations: Array<{ __typename?: 'ProductVariantTranslation', id: string, languageCode: LanguageCode, name: string }>, options: Array<{ __typename?: 'ProductOption', id: string, code: string, name: string, groupId: string }>, stockLevels: Array<{ __typename?: 'StockLevel', id: string, stockLocationId: string, stockOnHand: number, stockAllocated: number }> } | null };
9820
+
9821
+ export type ProductVariantsQueryVariables = Exact<{
9822
+ options?: InputMaybe<ProductVariantListOptions>;
9823
+ productId?: InputMaybe<Scalars['ID']['input']>;
9824
+ }>;
9825
+
9826
+
9827
+ export type ProductVariantsQuery = { __typename?: 'Query', productVariants: { __typename?: 'ProductVariantList', totalItems: number, items: Array<{ __typename?: 'ProductVariant', id: string, createdAt: any, updatedAt: any, enabled: boolean, languageCode: LanguageCode, name: string, price: any, currencyCode: CurrencyCode, priceWithTax: any, stockLevel: string, sku: string, productId: string, featuredAsset?: { __typename?: 'Asset', id: string, preview: string, name: string } | null, options: Array<{ __typename?: 'ProductOption', id: string, code: string, name: string }> }> } };
9828
+
9829
+ export type CreateProductVariantsMutationVariables = Exact<{
9830
+ input: Array<CreateProductVariantInput> | CreateProductVariantInput;
9831
+ }>;
9832
+
9833
+
9834
+ export type CreateProductVariantsMutation = { __typename?: 'Mutation', createProductVariants: Array<{ __typename?: 'ProductVariant', id: string, createdAt: any, updatedAt: any, enabled: boolean, languageCode: LanguageCode, name: string, price: any, currencyCode: CurrencyCode, priceWithTax: any, stockLevel: string, sku: string, productId: string, featuredAsset?: { __typename?: 'Asset', id: string, preview: string, name: string } | null, assets: Array<{ __typename?: 'Asset', id: string, preview: string, name: string }>, translations: Array<{ __typename?: 'ProductVariantTranslation', id: string, languageCode: LanguageCode, name: string }>, options: Array<{ __typename?: 'ProductOption', id: string, code: string, name: string }> } | null> };
9835
+
9836
+ export type UpdateProductVariantMutationVariables = Exact<{
9837
+ input: UpdateProductVariantInput;
9838
+ }>;
9839
+
9840
+
9841
+ export type UpdateProductVariantMutation = { __typename?: 'Mutation', updateProductVariant: { __typename?: 'ProductVariant', id: string, createdAt: any, updatedAt: any, enabled: boolean, languageCode: LanguageCode, name: string, price: any, currencyCode: CurrencyCode, priceWithTax: any, stockLevel: string, sku: string, productId: string, featuredAsset?: { __typename?: 'Asset', id: string, preview: string, name: string } | null, assets: Array<{ __typename?: 'Asset', id: string, preview: string, name: string }>, translations: Array<{ __typename?: 'ProductVariantTranslation', id: string, languageCode: LanguageCode, name: string }>, options: Array<{ __typename?: 'ProductOption', id: string, code: string, name: string }> } };
9842
+
9843
+ export type UpdateProductVariantsMutationVariables = Exact<{
9844
+ input: Array<UpdateProductVariantInput> | UpdateProductVariantInput;
9845
+ }>;
9846
+
9847
+
9848
+ export type UpdateProductVariantsMutation = { __typename?: 'Mutation', updateProductVariants: Array<{ __typename?: 'ProductVariant', id: string, createdAt: any, updatedAt: any, enabled: boolean, languageCode: LanguageCode, name: string, price: any, currencyCode: CurrencyCode, priceWithTax: any, stockLevel: string, sku: string, productId: string, featuredAsset?: { __typename?: 'Asset', id: string, preview: string, name: string } | null, assets: Array<{ __typename?: 'Asset', id: string, preview: string, name: string }>, translations: Array<{ __typename?: 'ProductVariantTranslation', id: string, languageCode: LanguageCode, name: string }>, options: Array<{ __typename?: 'ProductOption', id: string, code: string, name: string }> } | null> };
9849
+
9850
+ export type DeleteProductVariantMutationVariables = Exact<{
9851
+ id: Scalars['ID']['input'];
9852
+ }>;
9853
+
9854
+
9855
+ export type DeleteProductVariantMutation = { __typename?: 'Mutation', deleteProductVariant: { __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null } };
9856
+
9857
+ export type DeleteProductVariantsMutationVariables = Exact<{
9858
+ ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
9859
+ }>;
9860
+
9861
+
9862
+ export type DeleteProductVariantsMutation = { __typename?: 'Mutation', deleteProductVariants: Array<{ __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null }> };
9863
+
9864
+ export type ProductsQueryVariables = Exact<{
9865
+ options?: InputMaybe<ProductListOptions>;
9866
+ }>;
9867
+
9868
+
9869
+ export type ProductsQuery = { __typename?: 'Query', products: { __typename?: 'ProductList', totalItems: number, items: Array<{ __typename?: 'Product', id: string, name: string, slug: string, description: string, enabled: boolean, createdAt: any, updatedAt: any, featuredAsset?: { __typename?: 'Asset', id: string, preview: string } | null, variants: Array<{ __typename?: 'ProductVariant', id: string, name: string, sku: string, price: any, stockLevel: string, enabled: boolean }> }> } };
9870
+
9871
+ export type ProductQueryVariables = Exact<{
9872
+ id?: InputMaybe<Scalars['ID']['input']>;
9873
+ slug?: InputMaybe<Scalars['String']['input']>;
9874
+ }>;
9875
+
9876
+
9877
+ export type ProductQuery = { __typename?: 'Query', product?: { __typename?: 'Product', id: string, name: string, slug: string, description: string, enabled: boolean, createdAt: any, updatedAt: any, languageCode: LanguageCode, customFields?: any | null, featuredAsset?: { __typename?: 'Asset', id: string, preview: string, source: string } | null, assets: Array<{ __typename?: 'Asset', id: string, preview: string, source: string }>, variants: Array<{ __typename?: 'ProductVariant', id: string, name: string, sku: string, price: any, stockLevel: string, trackInventory: GlobalFlag, enabled: boolean }>, optionGroups: Array<{ __typename?: 'ProductOptionGroup', id: string, name: string, code: string }>, facetValues: Array<{ __typename?: 'FacetValue', id: string, name: string, code: string }>, channels: Array<{ __typename?: 'Channel', id: string, code: string }>, collections: Array<{ __typename?: 'Collection', id: string, name: string }>, translations: Array<{ __typename?: 'ProductTranslation', id: string, languageCode: LanguageCode, name: string, slug: string, description: string }>, variantList: { __typename?: 'ProductVariantList', totalItems: number, items: Array<{ __typename?: 'ProductVariant', id: string, name: string, sku: string }> }, settings?: { __typename?: 'ProductSettings', id: string, digital: boolean, fulfillmentHandler?: { __typename?: 'ChannelFulfillment', code: string, name: string } | null } | null } | null };
9878
+
9879
+ export type CreateProductMutationVariables = Exact<{
9880
+ input: CreateProductInput;
9881
+ }>;
9882
+
9883
+
9884
+ export type CreateProductMutation = { __typename?: 'Mutation', createProduct: { __typename?: 'Product', id: string, name: string, slug: string, enabled: boolean } };
9885
+
9886
+ export type UpdateProductMutationVariables = Exact<{
9887
+ input: UpdateProductInput;
9888
+ }>;
9889
+
9890
+
9891
+ export type UpdateProductMutation = { __typename?: 'Mutation', updateProduct: { __typename?: 'Product', id: string, name: string, slug: string, enabled: boolean } };
9892
+
9893
+ export type DeleteProductMutationVariables = Exact<{
9894
+ id: Scalars['ID']['input'];
9895
+ }>;
9896
+
9897
+
9898
+ export type DeleteProductMutation = { __typename?: 'Mutation', deleteProduct: { __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null } };
9899
+
9900
+ export type PromotionQueryVariables = Exact<{
9901
+ id: Scalars['ID']['input'];
9902
+ }>;
9903
+
9904
+
9905
+ export type PromotionQuery = { __typename?: 'Query', promotion?: { __typename?: 'Promotion', id: string, createdAt: any, updatedAt: any, name: string, description: string, enabled: boolean, couponCode?: string | null, startsAt?: any | null, endsAt?: any | null, perCustomerUsageLimit?: number | null, usageLimit?: number | null, customFields?: any | null, conditions: Array<{ __typename?: 'ConfigurableOperation', code: string, args: Array<{ __typename?: 'ConfigArg', name: string, value: string }> }>, actions: Array<{ __typename?: 'ConfigurableOperation', code: string, args: Array<{ __typename?: 'ConfigArg', name: string, value: string }> }>, translations: Array<{ __typename?: 'PromotionTranslation', id: string, languageCode: LanguageCode, name: string, description: string }> } | null };
9906
+
9907
+ export type PromotionsQueryVariables = Exact<{
9908
+ options?: InputMaybe<PromotionListOptions>;
9909
+ }>;
9910
+
9911
+
9912
+ export type PromotionsQuery = { __typename?: 'Query', promotions: { __typename?: 'PromotionList', totalItems: number, items: Array<{ __typename?: 'Promotion', id: string, createdAt: any, updatedAt: any, name: string, description: string, enabled: boolean, couponCode?: string | null, startsAt?: any | null, endsAt?: any | null, perCustomerUsageLimit?: number | null, usageLimit?: number | null, customFields?: any | null, conditions: Array<{ __typename?: 'ConfigurableOperation', code: string, args: Array<{ __typename?: 'ConfigArg', name: string, value: string }> }>, actions: Array<{ __typename?: 'ConfigurableOperation', code: string, args: Array<{ __typename?: 'ConfigArg', name: string, value: string }> }> }> } };
9913
+
9914
+ export type PromotionActionsQueryVariables = Exact<{ [key: string]: never; }>;
9915
+
9916
+
9917
+ export type PromotionActionsQuery = { __typename?: 'Query', promotionActions: Array<{ __typename?: 'ConfigurableOperationDefinition', code: string, description: string, args: Array<{ __typename?: 'ConfigArgDefinition', name: string, type: string, description?: string | null, label?: string | null, required: boolean, defaultValue?: any | null, list: boolean, ui?: any | null }> }> };
9918
+
9919
+ export type PromotionConditionsQueryVariables = Exact<{ [key: string]: never; }>;
9920
+
9921
+
9922
+ export type PromotionConditionsQuery = { __typename?: 'Query', promotionConditions: Array<{ __typename?: 'ConfigurableOperationDefinition', code: string, description: string, args: Array<{ __typename?: 'ConfigArgDefinition', name: string, type: string, description?: string | null, label?: string | null, required: boolean, defaultValue?: any | null, list: boolean, ui?: any | null }> }> };
9923
+
9924
+ export type CreatePromotionMutationVariables = Exact<{
9925
+ input: CreatePromotionInput;
9926
+ }>;
9927
+
9928
+
9929
+ export type CreatePromotionMutation = { __typename?: 'Mutation', createPromotion: { __typename: 'MissingConditionsError', errorCode: ErrorCode, message: string } | { __typename: 'Promotion', id: string, createdAt: any, updatedAt: any, name: string, description: string, enabled: boolean, couponCode?: string | null, startsAt?: any | null, endsAt?: any | null, perCustomerUsageLimit?: number | null, usageLimit?: number | null, customFields?: any | null, conditions: Array<{ __typename?: 'ConfigurableOperation', code: string, args: Array<{ __typename?: 'ConfigArg', name: string, value: string }> }>, actions: Array<{ __typename?: 'ConfigurableOperation', code: string, args: Array<{ __typename?: 'ConfigArg', name: string, value: string }> }>, translations: Array<{ __typename?: 'PromotionTranslation', id: string, languageCode: LanguageCode, name: string, description: string }> } };
9930
+
9931
+ export type UpdatePromotionMutationVariables = Exact<{
9932
+ input: UpdatePromotionInput;
9933
+ }>;
9934
+
9935
+
9936
+ export type UpdatePromotionMutation = { __typename?: 'Mutation', updatePromotion: { __typename: 'MissingConditionsError', errorCode: ErrorCode, message: string } | { __typename: 'Promotion', id: string, createdAt: any, updatedAt: any, name: string, description: string, enabled: boolean, couponCode?: string | null, startsAt?: any | null, endsAt?: any | null, perCustomerUsageLimit?: number | null, usageLimit?: number | null, customFields?: any | null, conditions: Array<{ __typename?: 'ConfigurableOperation', code: string, args: Array<{ __typename?: 'ConfigArg', name: string, value: string }> }>, actions: Array<{ __typename?: 'ConfigurableOperation', code: string, args: Array<{ __typename?: 'ConfigArg', name: string, value: string }> }>, translations: Array<{ __typename?: 'PromotionTranslation', id: string, languageCode: LanguageCode, name: string, description: string }> } };
9937
+
9938
+ export type DeletePromotionMutationVariables = Exact<{
9939
+ id: Scalars['ID']['input'];
9940
+ }>;
9941
+
9942
+
9943
+ export type DeletePromotionMutation = { __typename?: 'Mutation', deletePromotion: { __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null } };
9944
+
9945
+ export type DeletePromotionsMutationVariables = Exact<{
9946
+ ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
9947
+ }>;
9948
+
9949
+
9950
+ export type DeletePromotionsMutation = { __typename?: 'Mutation', deletePromotions: Array<{ __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null }> };
9951
+
9952
+ export type RoleQueryVariables = Exact<{
9953
+ id: Scalars['ID']['input'];
9954
+ }>;
9955
+
9956
+
9957
+ export type RoleQuery = { __typename?: 'Query', role?: { __typename?: 'Role', id: string, createdAt: any, updatedAt: any, code: string, description: string, permissions: Array<Permission>, channels: Array<{ __typename?: 'Channel', id: string, code: string, token: string }> } | null };
9958
+
9959
+ export type RolesQueryVariables = Exact<{
9960
+ options?: InputMaybe<RoleListOptions>;
9961
+ }>;
9962
+
9963
+
9964
+ export type RolesQuery = { __typename?: 'Query', roles: { __typename?: 'RoleList', totalItems: number, items: Array<{ __typename?: 'Role', id: string, createdAt: any, updatedAt: any, code: string, description: string, permissions: Array<Permission>, channels: Array<{ __typename?: 'Channel', id: string, code: string, token: string }> }> } };
9965
+
9966
+ export type CreateRoleMutationVariables = Exact<{
9967
+ input: CreateRoleInput;
9968
+ }>;
9969
+
9970
+
9971
+ export type CreateRoleMutation = { __typename?: 'Mutation', createRole: { __typename?: 'Role', id: string, createdAt: any, updatedAt: any, code: string, description: string, permissions: Array<Permission>, channels: Array<{ __typename?: 'Channel', id: string, code: string, token: string }> } };
9972
+
9973
+ export type UpdateRoleMutationVariables = Exact<{
9974
+ input: UpdateRoleInput;
9975
+ }>;
9976
+
9977
+
9978
+ export type UpdateRoleMutation = { __typename?: 'Mutation', updateRole: { __typename?: 'Role', id: string, createdAt: any, updatedAt: any, code: string, description: string, permissions: Array<Permission>, channels: Array<{ __typename?: 'Channel', id: string, code: string, token: string }> } };
9979
+
9980
+ export type DeleteRoleMutationVariables = Exact<{
9981
+ id: Scalars['ID']['input'];
9982
+ }>;
9983
+
9984
+
9985
+ export type DeleteRoleMutation = { __typename?: 'Mutation', deleteRole: { __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null } };
9986
+
9987
+ export type DeleteRolesMutationVariables = Exact<{
9988
+ ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
9989
+ }>;
9990
+
9991
+
9992
+ export type DeleteRolesMutation = { __typename?: 'Mutation', deleteRoles: Array<{ __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null }> };
9993
+
9994
+ export type SearchQueryVariables = Exact<{
9995
+ input: SearchInput;
9996
+ }>;
9997
+
9998
+
9999
+ export type SearchQuery = { __typename?: 'Query', search: { __typename?: 'SearchResponse', totalItems: number, items: Array<{ __typename?: 'SearchResult', enabled: boolean, productId: string, productName: string, productVariantId: string, productVariantName: string, sku: string, slug: string, collectionIds: Array<string>, channelIds: Array<string>, facetIds: Array<string>, facetValueIds: Array<string>, currencyCode: CurrencyCode, description: string, score: number, productAsset?: { __typename?: 'SearchResultAsset', id: string, preview: string } | null, productVariantAsset?: { __typename?: 'SearchResultAsset', id: string, preview: string } | null, price: { __typename: 'PriceRange', min: any, max: any } | { __typename: 'SinglePrice', value: any }, priceWithTax: { __typename: 'PriceRange', min: any, max: any } | { __typename: 'SinglePrice', value: any } }>, facetValues: Array<{ __typename?: 'FacetValueResult', count: number, facetValue: { __typename?: 'FacetValue', id: string, name: string, facet: { __typename?: 'Facet', id: string, name: string, code: string, createdAt: any, updatedAt: any, languageCode: LanguageCode, isPrivate: boolean, customFields?: any | null, translations: Array<{ __typename?: 'FacetTranslation', id: string, languageCode: LanguageCode, name: string }>, values: Array<{ __typename?: 'FacetValue', id: string, name: string, code: string }>, valueList: { __typename?: 'FacetValueList', totalItems: number, items: Array<{ __typename?: 'FacetValue', id: string, name: string, code: string }> } } } }>, collections: Array<{ __typename?: 'CollectionResult', count: number, collection: { __typename?: 'Collection', id: string, name: string, slug: string, description: string, createdAt: any, updatedAt: any, languageCode?: LanguageCode | null, isPrivate: boolean, position: number, parentId: string, inheritFilters: boolean, customFields?: any | null, featuredAsset?: { __typename?: 'Asset', id: string, preview: string } | null, assets: Array<{ __typename?: 'Asset', id: string, preview: string }>, parent?: { __typename?: 'Collection', id: string, name: string } | null, children?: Array<{ __typename?: 'Collection', id: string, name: string }> | null, breadcrumbs: Array<{ __typename?: 'CollectionBreadcrumb', id: string, name: string, slug: string }>, filters: Array<{ __typename?: 'ConfigurableOperation', code: string, args: Array<{ __typename?: 'ConfigArg', name: string, value: string }> }>, translations: Array<{ __typename?: 'CollectionTranslation', id: string, languageCode: LanguageCode, name: string, slug: string, description: string }>, productVariants: { __typename?: 'ProductVariantList', totalItems: number, items: Array<{ __typename?: 'ProductVariant', id: string, name: string }> } } }> } };
10000
+
10001
+ export type PendingSearchIndexUpdatesQueryVariables = Exact<{ [key: string]: never; }>;
10002
+
10003
+
10004
+ export type PendingSearchIndexUpdatesQuery = { __typename?: 'Query', pendingSearchIndexUpdates: number };
10005
+
10006
+ export type RunPendingSearchIndexUpdatesMutationVariables = Exact<{ [key: string]: never; }>;
10007
+
10008
+
10009
+ export type RunPendingSearchIndexUpdatesMutation = { __typename?: 'Mutation', runPendingSearchIndexUpdates: { __typename?: 'Success', success: boolean } };
10010
+
10011
+ export type ReindexMutationVariables = Exact<{ [key: string]: never; }>;
10012
+
10013
+
10014
+ export type ReindexMutation = { __typename?: 'Mutation', reindex: { __typename?: 'Job', id: string } };
10015
+
10016
+ export type SellerQueryVariables = Exact<{
10017
+ id: Scalars['ID']['input'];
10018
+ }>;
10019
+
10020
+
10021
+ export type SellerQuery = { __typename?: 'Query', seller?: { __typename?: 'Seller', id: string, createdAt: any, updatedAt: any, name: string, customFields?: any | null } | null };
10022
+
10023
+ export type SellersQueryVariables = Exact<{
10024
+ options?: InputMaybe<SellerListOptions>;
10025
+ }>;
10026
+
10027
+
10028
+ export type SellersQuery = { __typename?: 'Query', sellers: { __typename?: 'SellerList', totalItems: number, items: Array<{ __typename?: 'Seller', id: string, createdAt: any, updatedAt: any, name: string, customFields?: any | null }> } };
10029
+
10030
+ export type CreateSellerMutationVariables = Exact<{
10031
+ input: CreateSellerInput;
10032
+ }>;
10033
+
10034
+
10035
+ export type CreateSellerMutation = { __typename?: 'Mutation', createSeller: { __typename?: 'Seller', id: string, createdAt: any, updatedAt: any, name: string, customFields?: any | null } };
10036
+
10037
+ export type UpdateSellerMutationVariables = Exact<{
10038
+ input: UpdateSellerInput;
10039
+ }>;
10040
+
10041
+
10042
+ export type UpdateSellerMutation = { __typename?: 'Mutation', updateSeller: { __typename?: 'Seller', id: string, createdAt: any, updatedAt: any, name: string, customFields?: any | null } };
10043
+
10044
+ export type DeleteSellerMutationVariables = Exact<{
10045
+ id: Scalars['ID']['input'];
10046
+ }>;
10047
+
10048
+
10049
+ export type DeleteSellerMutation = { __typename?: 'Mutation', deleteSeller: { __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null } };
10050
+
10051
+ export type DeleteSellersMutationVariables = Exact<{
10052
+ ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
10053
+ }>;
10054
+
10055
+
10056
+ export type DeleteSellersMutation = { __typename?: 'Mutation', deleteSellers: Array<{ __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null }> };
10057
+
10058
+ export type ShippingMethodQueryVariables = Exact<{
10059
+ id: Scalars['ID']['input'];
10060
+ }>;
10061
+
10062
+
10063
+ export type ShippingMethodQuery = { __typename?: 'Query', shippingMethod?: { __typename?: 'ShippingMethod', id: string, createdAt: any, updatedAt: any, languageCode: LanguageCode, code: string, name: string, description: string, fulfillmentHandlerCode: string, customFields?: any | null, checker: { __typename?: 'ConfigurableOperation', code: string, args: Array<{ __typename?: 'ConfigArg', name: string, value: string }> }, calculator: { __typename?: 'ConfigurableOperation', code: string, args: Array<{ __typename?: 'ConfigArg', name: string, value: string }> }, translations: Array<{ __typename?: 'ShippingMethodTranslation', id: string, languageCode: LanguageCode, name: string, description: string }> } | null };
10064
+
10065
+ export type ShippingMethodsQueryVariables = Exact<{
10066
+ options?: InputMaybe<ShippingMethodListOptions>;
10067
+ }>;
10068
+
10069
+
10070
+ export type ShippingMethodsQuery = { __typename?: 'Query', shippingMethods: { __typename?: 'ShippingMethodList', totalItems: number, items: Array<{ __typename?: 'ShippingMethod', id: string, createdAt: any, updatedAt: any, languageCode: LanguageCode, code: string, name: string, description: string, fulfillmentHandlerCode: string, customFields?: any | null }> } };
10071
+
10072
+ export type ShippingCalculatorsQueryVariables = Exact<{ [key: string]: never; }>;
10073
+
10074
+
10075
+ export type ShippingCalculatorsQuery = { __typename?: 'Query', shippingCalculators: Array<{ __typename?: 'ConfigurableOperationDefinition', code: string, description: string, args: Array<{ __typename?: 'ConfigArgDefinition', name: string, type: string, list: boolean, required: boolean, defaultValue?: any | null, label?: string | null, description?: string | null, ui?: any | null }> }> };
10076
+
10077
+ export type ShippingEligibilityCheckersQueryVariables = Exact<{ [key: string]: never; }>;
10078
+
10079
+
10080
+ export type ShippingEligibilityCheckersQuery = { __typename?: 'Query', shippingEligibilityCheckers: Array<{ __typename?: 'ConfigurableOperationDefinition', code: string, description: string, args: Array<{ __typename?: 'ConfigArgDefinition', name: string, type: string, list: boolean, required: boolean, defaultValue?: any | null, label?: string | null, description?: string | null, ui?: any | null }> }> };
10081
+
10082
+ export type CreateShippingMethodMutationVariables = Exact<{
10083
+ input: CreateShippingMethodInput;
10084
+ }>;
10085
+
10086
+
10087
+ export type CreateShippingMethodMutation = { __typename?: 'Mutation', createShippingMethod: { __typename?: 'ShippingMethod', id: string, createdAt: any, updatedAt: any, languageCode: LanguageCode, code: string, name: string, description: string, fulfillmentHandlerCode: string, customFields?: any | null, checker: { __typename?: 'ConfigurableOperation', code: string, args: Array<{ __typename?: 'ConfigArg', name: string, value: string }> }, calculator: { __typename?: 'ConfigurableOperation', code: string, args: Array<{ __typename?: 'ConfigArg', name: string, value: string }> } } };
10088
+
10089
+ export type UpdateShippingMethodMutationVariables = Exact<{
10090
+ input: UpdateShippingMethodInput;
10091
+ }>;
10092
+
10093
+
10094
+ export type UpdateShippingMethodMutation = { __typename?: 'Mutation', updateShippingMethod: { __typename?: 'ShippingMethod', id: string, createdAt: any, updatedAt: any, languageCode: LanguageCode, code: string, name: string, description: string, fulfillmentHandlerCode: string, customFields?: any | null, checker: { __typename?: 'ConfigurableOperation', code: string, args: Array<{ __typename?: 'ConfigArg', name: string, value: string }> }, calculator: { __typename?: 'ConfigurableOperation', code: string, args: Array<{ __typename?: 'ConfigArg', name: string, value: string }> } } };
10095
+
10096
+ export type DeleteShippingMethodMutationVariables = Exact<{
10097
+ id: Scalars['ID']['input'];
10098
+ }>;
10099
+
10100
+
10101
+ export type DeleteShippingMethodMutation = { __typename?: 'Mutation', deleteShippingMethod: { __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null } };
10102
+
10103
+ export type DeleteShippingMethodsMutationVariables = Exact<{
10104
+ ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
10105
+ }>;
10106
+
10107
+
10108
+ export type DeleteShippingMethodsMutation = { __typename?: 'Mutation', deleteShippingMethods: Array<{ __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null }> };
10109
+
10110
+ export type TestShippingMethodQueryVariables = Exact<{
10111
+ input: TestShippingMethodInput;
10112
+ }>;
10113
+
10114
+
10115
+ export type TestShippingMethodQuery = { __typename?: 'Query', testShippingMethod: { __typename?: 'TestShippingMethodResult', eligible: boolean, quote?: { __typename?: 'TestShippingMethodQuote', price: any, priceWithTax: any, metadata?: any | null } | null } };
10116
+
10117
+ export type TestEligibleShippingMethodsQueryVariables = Exact<{
10118
+ input: TestEligibleShippingMethodsInput;
10119
+ }>;
10120
+
10121
+
10122
+ export type TestEligibleShippingMethodsQuery = { __typename?: 'Query', testEligibleShippingMethods: Array<{ __typename?: 'ShippingMethodQuote', id: string, name: string, code: string, description: string, price: any, priceWithTax: any, metadata?: any | null, customFields?: any | null }> };
10123
+
10124
+ export type StockLocationQueryVariables = Exact<{
10125
+ id: Scalars['ID']['input'];
10126
+ }>;
10127
+
10128
+
10129
+ export type StockLocationQuery = { __typename?: 'Query', stockLocation?: { __typename?: 'StockLocation', id: string, createdAt: any, updatedAt: any, name: string, description: string, customFields?: any | null, address?: { __typename?: 'StockLocationAddress', id: string, streetLine1: string, streetLine2?: string | null, city: string, province?: string | null, postalCode: string, latitude?: number | null, longitude?: number | null, phone?: string | null, email?: string | null, locationType: LocationType, createdAt: any, updatedAt: any, country: { __typename?: 'Country', id: string, createdAt: any, updatedAt: any, code: string, name: string, enabled: boolean, languageCode: LanguageCode, type: string, parentId?: string | null, customFields?: any | null } } | null } | null };
10130
+
10131
+ export type StockLocationsQueryVariables = Exact<{
10132
+ options?: InputMaybe<StockLocationListOptions>;
10133
+ }>;
10134
+
10135
+
10136
+ export type StockLocationsQuery = { __typename?: 'Query', stockLocations: { __typename?: 'StockLocationList', totalItems: number, items: Array<{ __typename?: 'StockLocation', id: string, createdAt: any, updatedAt: any, name: string, description: string, customFields?: any | null, address?: { __typename?: 'StockLocationAddress', id: string, streetLine1: string, streetLine2?: string | null, city: string, province?: string | null, postalCode: string, latitude?: number | null, longitude?: number | null, phone?: string | null, email?: string | null, locationType: LocationType, createdAt: any, updatedAt: any, country: { __typename?: 'Country', id: string, createdAt: any, updatedAt: any, code: string, name: string, enabled: boolean, languageCode: LanguageCode, type: string, parentId?: string | null, customFields?: any | null } } | null }> } };
10137
+
10138
+ export type StockLocationProductsQueryVariables = Exact<{
10139
+ input: StockLocationProductsInput;
10140
+ }>;
10141
+
10142
+
10143
+ export type StockLocationProductsQuery = { __typename?: 'Query', stockLocationProducts: { __typename?: 'ProductList', totalItems: number, items: Array<{ __typename?: 'Product', id: string, name: string, slug: string, description: string, enabled: boolean, featuredAsset?: { __typename?: 'Asset', id: string, preview: string, focalPoint?: { __typename?: 'Coordinate', x: number, y: number } | null } | null, assets: Array<{ __typename?: 'Asset', id: string, preview: string, focalPoint?: { __typename?: 'Coordinate', x: number, y: number } | null }>, variantList: { __typename?: 'ProductVariantList', totalItems: number }, variants: Array<{ __typename?: 'ProductVariant', id: string, sku: string, stockOnHand: number }> }> } };
10144
+
10145
+ export type CreateStockLocationMutationVariables = Exact<{
10146
+ input: CreateStockLocationInput;
10147
+ }>;
10148
+
10149
+
10150
+ export type CreateStockLocationMutation = { __typename?: 'Mutation', createStockLocation: { __typename?: 'StockLocation', id: string, createdAt: any, updatedAt: any, name: string, description: string, customFields?: any | null, address?: { __typename?: 'StockLocationAddress', id: string, streetLine1: string, streetLine2?: string | null, city: string, province?: string | null, postalCode: string, latitude?: number | null, longitude?: number | null, phone?: string | null, email?: string | null, locationType: LocationType, createdAt: any, updatedAt: any, country: { __typename?: 'Country', id: string, createdAt: any, updatedAt: any, code: string, name: string, enabled: boolean, languageCode: LanguageCode, type: string, parentId?: string | null, customFields?: any | null } } | null } };
10151
+
10152
+ export type UpdateStockLocationMutationVariables = Exact<{
10153
+ input: UpdateStockLocationInput;
10154
+ }>;
10155
+
10156
+
10157
+ export type UpdateStockLocationMutation = { __typename?: 'Mutation', updateStockLocation: { __typename?: 'StockLocation', id: string, createdAt: any, updatedAt: any, name: string, description: string, customFields?: any | null, address?: { __typename?: 'StockLocationAddress', id: string, streetLine1: string, streetLine2?: string | null, city: string, province?: string | null, postalCode: string, latitude?: number | null, longitude?: number | null, phone?: string | null, email?: string | null, locationType: LocationType, createdAt: any, updatedAt: any, country: { __typename?: 'Country', id: string, createdAt: any, updatedAt: any, code: string, name: string, enabled: boolean, languageCode: LanguageCode, type: string, parentId?: string | null, customFields?: any | null } } | null } };
10158
+
10159
+ export type DeleteStockLocationMutationVariables = Exact<{
10160
+ input: DeleteStockLocationInput;
10161
+ }>;
10162
+
10163
+
10164
+ export type DeleteStockLocationMutation = { __typename?: 'Mutation', deleteStockLocation: { __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null } };
10165
+
10166
+ export type DeleteStockLocationsMutationVariables = Exact<{
10167
+ input: Array<DeleteStockLocationInput> | DeleteStockLocationInput;
10168
+ }>;
10169
+
10170
+
10171
+ export type DeleteStockLocationsMutation = { __typename?: 'Mutation', deleteStockLocations: Array<{ __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null }> };
10172
+
10173
+ export type TagQueryVariables = Exact<{
10174
+ id: Scalars['ID']['input'];
10175
+ }>;
10176
+
10177
+
10178
+ export type TagQuery = { __typename?: 'Query', tag: { __typename?: 'Tag', id: string, createdAt: any, updatedAt: any, value: string } };
10179
+
10180
+ export type TagsQueryVariables = Exact<{
10181
+ options?: InputMaybe<TagListOptions>;
10182
+ }>;
10183
+
10184
+
10185
+ export type TagsQuery = { __typename?: 'Query', tags: { __typename?: 'TagList', totalItems: number, items: Array<{ __typename?: 'Tag', id: string, createdAt: any, updatedAt: any, value: string }> } };
10186
+
10187
+ export type CreateTagMutationVariables = Exact<{
10188
+ input: CreateTagInput;
10189
+ }>;
10190
+
10191
+
10192
+ export type CreateTagMutation = { __typename?: 'Mutation', createTag: { __typename?: 'Tag', id: string, createdAt: any, updatedAt: any, value: string } };
10193
+
10194
+ export type UpdateTagMutationVariables = Exact<{
10195
+ input: UpdateTagInput;
10196
+ }>;
10197
+
10198
+
10199
+ export type UpdateTagMutation = { __typename?: 'Mutation', updateTag: { __typename?: 'Tag', id: string, createdAt: any, updatedAt: any, value: string } };
10200
+
10201
+ export type DeleteTagMutationVariables = Exact<{
10202
+ id: Scalars['ID']['input'];
10203
+ }>;
10204
+
10205
+
10206
+ export type DeleteTagMutation = { __typename?: 'Mutation', deleteTag: { __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null } };
10207
+
10208
+ export type TaxRateQueryVariables = Exact<{
10209
+ id: Scalars['ID']['input'];
10210
+ }>;
10211
+
10212
+
10213
+ export type TaxRateQuery = { __typename?: 'Query', taxRate?: { __typename?: 'TaxRate', id: string, createdAt: any, updatedAt: any, name: string, enabled: boolean, value: number, category: { __typename?: 'TaxCategory', id: string, name: string, isDefault: boolean }, zone: { __typename?: 'Zone', id: string, createdAt: any, updatedAt: any, name: string, customFields?: any | null, members: Array<{ __typename?: 'Country', id: string, name: string, code: string } | { __typename?: 'Province', id: string, name: string, code: string }> }, customerGroup?: { __typename?: 'CustomerGroup', id: string, createdAt: any, updatedAt: any, name: string, customFields?: any | null, customers: { __typename?: 'CustomerList', totalItems: number, items: Array<{ __typename?: 'Customer', id: string }> } } | null } | null };
10214
+
10215
+ export type TaxRatesQueryVariables = Exact<{
10216
+ options?: InputMaybe<TaxRateListOptions>;
10217
+ }>;
10218
+
10219
+
10220
+ export type TaxRatesQuery = { __typename?: 'Query', taxRates: { __typename?: 'TaxRateList', totalItems: number, items: Array<{ __typename?: 'TaxRate', id: string, createdAt: any, updatedAt: any, name: string, enabled: boolean, value: number, category: { __typename?: 'TaxCategory', id: string, name: string, isDefault: boolean }, zone: { __typename?: 'Zone', id: string, createdAt: any, updatedAt: any, name: string, customFields?: any | null, members: Array<{ __typename?: 'Country', id: string, name: string, code: string } | { __typename?: 'Province', id: string, name: string, code: string }> }, customerGroup?: { __typename?: 'CustomerGroup', id: string, createdAt: any, updatedAt: any, name: string, customFields?: any | null, customers: { __typename?: 'CustomerList', totalItems: number, items: Array<{ __typename?: 'Customer', id: string }> } } | null }> } };
10221
+
10222
+ export type CreateTaxRateMutationVariables = Exact<{
10223
+ input: CreateTaxRateInput;
10224
+ }>;
10225
+
10226
+
10227
+ export type CreateTaxRateMutation = { __typename?: 'Mutation', createTaxRate: { __typename?: 'TaxRate', id: string, createdAt: any, updatedAt: any, name: string, enabled: boolean, value: number, category: { __typename?: 'TaxCategory', id: string, name: string, isDefault: boolean }, zone: { __typename?: 'Zone', id: string, createdAt: any, updatedAt: any, name: string, customFields?: any | null, members: Array<{ __typename?: 'Country', id: string, name: string, code: string } | { __typename?: 'Province', id: string, name: string, code: string }> }, customerGroup?: { __typename?: 'CustomerGroup', id: string, createdAt: any, updatedAt: any, name: string, customFields?: any | null, customers: { __typename?: 'CustomerList', totalItems: number, items: Array<{ __typename?: 'Customer', id: string }> } } | null } };
10228
+
10229
+ export type UpdateTaxRateMutationVariables = Exact<{
10230
+ input: UpdateTaxRateInput;
10231
+ }>;
10232
+
10233
+
10234
+ export type UpdateTaxRateMutation = { __typename?: 'Mutation', updateTaxRate: { __typename?: 'TaxRate', id: string, createdAt: any, updatedAt: any, name: string, enabled: boolean, value: number, category: { __typename?: 'TaxCategory', id: string, name: string, isDefault: boolean }, zone: { __typename?: 'Zone', id: string, createdAt: any, updatedAt: any, name: string, customFields?: any | null, members: Array<{ __typename?: 'Country', id: string, name: string, code: string } | { __typename?: 'Province', id: string, name: string, code: string }> }, customerGroup?: { __typename?: 'CustomerGroup', id: string, createdAt: any, updatedAt: any, name: string, customFields?: any | null, customers: { __typename?: 'CustomerList', totalItems: number, items: Array<{ __typename?: 'Customer', id: string }> } } | null } };
10235
+
10236
+ export type DeleteTaxRateMutationVariables = Exact<{
10237
+ id: Scalars['ID']['input'];
10238
+ }>;
10239
+
10240
+
10241
+ export type DeleteTaxRateMutation = { __typename?: 'Mutation', deleteTaxRate: { __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null } };
10242
+
10243
+ export type DeleteTaxRatesMutationVariables = Exact<{
10244
+ ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
10245
+ }>;
10246
+
10247
+
10248
+ export type DeleteTaxRatesMutation = { __typename?: 'Mutation', deleteTaxRates: Array<{ __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null }> };
10249
+
10250
+ export type TaxCategoryQueryVariables = Exact<{
10251
+ id: Scalars['ID']['input'];
10252
+ }>;
10253
+
10254
+
10255
+ export type TaxCategoryQuery = { __typename?: 'Query', taxCategory?: { __typename?: 'TaxCategory', id: string, createdAt: any, updatedAt: any, name: string, isDefault: boolean } | null };
10256
+
10257
+ export type TaxCategoriesQueryVariables = Exact<{
10258
+ options?: InputMaybe<TaxCategoryListOptions>;
10259
+ }>;
10260
+
10261
+
10262
+ export type TaxCategoriesQuery = { __typename?: 'Query', taxCategories: { __typename?: 'TaxCategoryList', totalItems: number, items: Array<{ __typename?: 'TaxCategory', id: string, createdAt: any, updatedAt: any, name: string, isDefault: boolean }> } };
10263
+
10264
+ export type CreateTaxCategoryMutationVariables = Exact<{
10265
+ input: CreateTaxCategoryInput;
10266
+ }>;
10267
+
10268
+
10269
+ export type CreateTaxCategoryMutation = { __typename?: 'Mutation', createTaxCategory: { __typename?: 'TaxCategory', id: string, createdAt: any, updatedAt: any, name: string, isDefault: boolean } };
10270
+
10271
+ export type UpdateTaxCategoryMutationVariables = Exact<{
10272
+ input: UpdateTaxCategoryInput;
10273
+ }>;
10274
+
10275
+
10276
+ export type UpdateTaxCategoryMutation = { __typename?: 'Mutation', updateTaxCategory: { __typename?: 'TaxCategory', id: string, createdAt: any, updatedAt: any, name: string, isDefault: boolean } };
10277
+
10278
+ export type DeleteTaxCategoryMutationVariables = Exact<{
10279
+ id: Scalars['ID']['input'];
10280
+ }>;
10281
+
10282
+
10283
+ export type DeleteTaxCategoryMutation = { __typename?: 'Mutation', deleteTaxCategory: { __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null } };
10284
+
10285
+ export type DeleteTaxCategoriesMutationVariables = Exact<{
10286
+ ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
10287
+ }>;
10288
+
10289
+
10290
+ export type DeleteTaxCategoriesMutation = { __typename?: 'Mutation', deleteTaxCategories: Array<{ __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null }> };
10291
+
10292
+ export type ZoneQueryVariables = Exact<{
10293
+ id: Scalars['ID']['input'];
10294
+ }>;
10295
+
10296
+
10297
+ export type ZoneQuery = { __typename?: 'Query', zone?: { __typename?: 'Zone', id: string, createdAt: any, updatedAt: any, name: string, members: Array<{ __typename?: 'Country', id: string, createdAt: any, updatedAt: any, code: string, name: string, enabled: boolean } | { __typename?: 'Province', id: string, createdAt: any, updatedAt: any, code: string, name: string, enabled: boolean }> } | null };
10298
+
10299
+ export type ZonesQueryVariables = Exact<{
10300
+ options?: InputMaybe<ZoneListOptions>;
10301
+ }>;
10302
+
10303
+
10304
+ export type ZonesQuery = { __typename?: 'Query', zones: { __typename?: 'ZoneList', totalItems: number, items: Array<{ __typename?: 'Zone', id: string, createdAt: any, updatedAt: any, name: string, members: Array<{ __typename?: 'Country', id: string, createdAt: any, updatedAt: any, code: string, name: string, enabled: boolean } | { __typename?: 'Province', id: string, createdAt: any, updatedAt: any, code: string, name: string, enabled: boolean }> }> } };
10305
+
10306
+ export type CreateZoneMutationVariables = Exact<{
10307
+ input: CreateZoneInput;
10308
+ }>;
10309
+
10310
+
10311
+ export type CreateZoneMutation = { __typename?: 'Mutation', createZone: { __typename?: 'Zone', id: string, createdAt: any, updatedAt: any, name: string, members: Array<{ __typename?: 'Country', id: string, createdAt: any, updatedAt: any, code: string, name: string, enabled: boolean } | { __typename?: 'Province', id: string, createdAt: any, updatedAt: any, code: string, name: string, enabled: boolean }> } };
10312
+
10313
+ export type UpdateZoneMutationVariables = Exact<{
10314
+ input: UpdateZoneInput;
10315
+ }>;
10316
+
10317
+
10318
+ export type UpdateZoneMutation = { __typename?: 'Mutation', updateZone: { __typename?: 'Zone', id: string, createdAt: any, updatedAt: any, name: string, members: Array<{ __typename?: 'Country', id: string, createdAt: any, updatedAt: any, code: string, name: string, enabled: boolean } | { __typename?: 'Province', id: string, createdAt: any, updatedAt: any, code: string, name: string, enabled: boolean }> } };
10319
+
10320
+ export type DeleteZoneMutationVariables = Exact<{
10321
+ id: Scalars['ID']['input'];
10322
+ }>;
10323
+
10324
+
10325
+ export type DeleteZoneMutation = { __typename?: 'Mutation', deleteZone: { __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null } };
10326
+
10327
+ export type DeleteZonesMutationVariables = Exact<{
10328
+ ids: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
10329
+ }>;
10330
+
10331
+
10332
+ export type DeleteZonesMutation = { __typename?: 'Mutation', deleteZones: Array<{ __typename?: 'DeletionResponse', result: DeletionResult, message?: string | null }> };
10333
+
10334
+ export type AddMembersToZoneMutationVariables = Exact<{
10335
+ zoneId: Scalars['ID']['input'];
10336
+ memberIds: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
10337
+ }>;
10338
+
10339
+
10340
+ export type AddMembersToZoneMutation = { __typename?: 'Mutation', addMembersToZone: { __typename?: 'Zone', id: string, createdAt: any, updatedAt: any, name: string, members: Array<{ __typename?: 'Country', id: string, createdAt: any, updatedAt: any, code: string, name: string, enabled: boolean } | { __typename?: 'Province', id: string, createdAt: any, updatedAt: any, code: string, name: string, enabled: boolean }> } };
10341
+
10342
+ export type RemoveMembersFromZoneMutationVariables = Exact<{
10343
+ zoneId: Scalars['ID']['input'];
10344
+ memberIds: Array<Scalars['ID']['input']> | Scalars['ID']['input'];
10345
+ }>;
10346
+
10347
+
10348
+ export type RemoveMembersFromZoneMutation = { __typename?: 'Mutation', removeMembersFromZone: { __typename?: 'Zone', id: string, createdAt: any, updatedAt: any, name: string, members: Array<{ __typename?: 'Country', id: string, createdAt: any, updatedAt: any, code: string, name: string, enabled: boolean } | { __typename?: 'Province', id: string, createdAt: any, updatedAt: any, code: string, name: string, enabled: boolean }> } };