@forgecart/sdk 1.2.5 → 1.2.6

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.
Files changed (58) hide show
  1. package/README.md +2 -87
  2. package/dist/admin-types.generated.d.ts +9884 -0
  3. package/dist/admin.d.ts +55 -8
  4. package/dist/admin.generated.d.ts +790 -0
  5. package/dist/admin.generated.js +1801 -0
  6. package/dist/admin.js +112 -23
  7. package/dist/client.generated.d.ts +251 -0
  8. package/dist/client.generated.js +757 -0
  9. package/dist/documents.generated.d.ts +465 -0
  10. package/dist/documents.generated.js +24283 -0
  11. package/dist/error-utils.d.ts +25 -0
  12. package/dist/error-utils.js +59 -0
  13. package/dist/hook-event-map.generated.d.ts +243 -0
  14. package/dist/hook-event-map.generated.js +9 -0
  15. package/dist/index.d.ts +23 -59
  16. package/dist/index.js +35 -83
  17. package/dist/sdk-hook-subscription.generated.d.ts +29 -0
  18. package/dist/sdk-hook-subscription.generated.js +73 -0
  19. package/dist/sdk-plugin.generated.d.ts +38 -0
  20. package/dist/sdk-plugin.generated.js +31 -0
  21. package/dist/sdk-types.generated.d.ts +56 -0
  22. package/dist/sdk-types.generated.js +28 -0
  23. package/dist/shop-types.generated.d.ts +4776 -0
  24. package/dist/shop.d.ts +18 -8
  25. package/dist/shop.generated.d.ts +213 -0
  26. package/dist/shop.generated.js +465 -0
  27. package/dist/shop.js +37 -23
  28. package/dist/upload.d.ts +14 -0
  29. package/dist/upload.js +163 -0
  30. package/package.json +10 -25
  31. package/src/admin-types.generated.ts +28377 -0
  32. package/src/admin.generated.ts +1771 -0
  33. package/src/admin.ts +55 -9
  34. package/src/client.generated.ts +845 -0
  35. package/src/documents.generated.ts +24730 -0
  36. package/src/error-utils.ts +74 -0
  37. package/src/hook-event-map.generated.ts +252 -0
  38. package/src/index.ts +23 -115
  39. package/src/sdk-hook-subscription.generated.ts +93 -0
  40. package/src/sdk-plugin.generated.ts +59 -0
  41. package/src/sdk-types.generated.ts +79 -0
  42. package/src/shop-types.generated.ts +10400 -0
  43. package/src/shop.generated.ts +452 -0
  44. package/src/shop.ts +18 -9
  45. package/src/upload.ts +211 -0
  46. package/LICENSE +0 -21
  47. package/dist/admin-namespace.d.ts +0 -2688
  48. package/dist/admin-namespace.js +0 -9691
  49. package/dist/admin-types.d.ts +0 -16195
  50. package/dist/shop-namespace.d.ts +0 -718
  51. package/dist/shop-namespace.js +0 -3124
  52. package/dist/shop-types.d.ts +0 -6310
  53. package/src/admin-namespace.ts +0 -11428
  54. package/src/admin-types.ts +0 -10809
  55. package/src/shop-namespace.ts +0 -3547
  56. package/src/shop-types.ts +0 -4684
  57. /package/dist/{admin-types.js → admin-types.generated.js} +0 -0
  58. /package/dist/{shop-types.js → shop-types.generated.js} +0 -0
@@ -0,0 +1,465 @@
1
+ /**
2
+ * AUTO-GENERATED FILE — DO NOT EDIT
3
+ *
4
+ * This file was generated by @forgecart/client-sdk-generators.
5
+ * Any manual changes will be overwritten on the next generation run.
6
+ */
7
+ export declare const adminAcfEntryDocument = "query AcfEntry($definitionCode: String!, $id: ID!) {\n entry(definitionCode: $definitionCode, id: $id) {\n id\n createdAt\n updatedAt\n fields {\n ...AcfFieldValueField\n }\n groups {\n name\n entries {\n id\n sortOrder\n fields {\n ...AcfFieldValueField\n }\n }\n }\n }\n}\n\nfragment AcfFieldValueField on AcfFieldValueUnion {\n ... on AcfStringValue {\n __typename\n name\n stringValue\n }\n ... on AcfIntValue {\n __typename\n name\n intValue\n }\n ... on AcfFloatValue {\n __typename\n name\n floatValue\n }\n ... on AcfBoolValue {\n __typename\n name\n boolValue\n }\n ... on AcfDateValue {\n __typename\n name\n dateValue\n }\n ... on AcfIdValue {\n __typename\n name\n idValue\n }\n}";
8
+ export declare const adminAcfEntriesDocument = "query AcfEntries($definitionCode: String!, $options: EntryListOptions) {\n entries(definitionCode: $definitionCode, options: $options) {\n items {\n id\n createdAt\n updatedAt\n fields {\n ...AcfFieldValueField\n }\n groups {\n name\n entries {\n id\n sortOrder\n fields {\n ...AcfFieldValueField\n }\n }\n }\n }\n totalItems\n }\n}\n\nfragment AcfFieldValueField on AcfFieldValueUnion {\n ... on AcfStringValue {\n __typename\n name\n stringValue\n }\n ... on AcfIntValue {\n __typename\n name\n intValue\n }\n ... on AcfFloatValue {\n __typename\n name\n floatValue\n }\n ... on AcfBoolValue {\n __typename\n name\n boolValue\n }\n ... on AcfDateValue {\n __typename\n name\n dateValue\n }\n ... on AcfIdValue {\n __typename\n name\n idValue\n }\n}";
9
+ export declare const adminAcfCreateEntryDocument = "mutation AcfCreateEntry($definitionCode: String!, $input: CreateEntryInput!) {\n createEntry(definitionCode: $definitionCode, input: $input) {\n id\n createdAt\n updatedAt\n fields {\n ...AcfFieldValueField\n }\n groups {\n name\n entries {\n id\n sortOrder\n fields {\n ...AcfFieldValueField\n }\n }\n }\n }\n}\n\nfragment AcfFieldValueField on AcfFieldValueUnion {\n ... on AcfStringValue {\n __typename\n name\n stringValue\n }\n ... on AcfIntValue {\n __typename\n name\n intValue\n }\n ... on AcfFloatValue {\n __typename\n name\n floatValue\n }\n ... on AcfBoolValue {\n __typename\n name\n boolValue\n }\n ... on AcfDateValue {\n __typename\n name\n dateValue\n }\n ... on AcfIdValue {\n __typename\n name\n idValue\n }\n}";
10
+ export declare const adminAcfUpdateEntryDocument = "mutation AcfUpdateEntry($definitionCode: String!, $id: ID!, $input: UpdateEntryInput!) {\n updateEntry(definitionCode: $definitionCode, id: $id, input: $input) {\n id\n createdAt\n updatedAt\n fields {\n ...AcfFieldValueField\n }\n groups {\n name\n entries {\n id\n sortOrder\n fields {\n ...AcfFieldValueField\n }\n }\n }\n }\n}\n\nfragment AcfFieldValueField on AcfFieldValueUnion {\n ... on AcfStringValue {\n __typename\n name\n stringValue\n }\n ... on AcfIntValue {\n __typename\n name\n intValue\n }\n ... on AcfFloatValue {\n __typename\n name\n floatValue\n }\n ... on AcfBoolValue {\n __typename\n name\n boolValue\n }\n ... on AcfDateValue {\n __typename\n name\n dateValue\n }\n ... on AcfIdValue {\n __typename\n name\n idValue\n }\n}";
11
+ export declare const adminAcfDeleteEntryDocument = "mutation AcfDeleteEntry($definitionCode: String!, $id: ID!) {\n deleteEntry(definitionCode: $definitionCode, id: $id) {\n result\n message\n }\n}";
12
+ export declare const adminAcfFieldDefinitionsDocument = "query AcfFieldDefinitions($kind: String) {\n fieldDefinitions(kind: $kind) {\n ...FieldDefinitionGroupField\n }\n}\n\nfragment FieldDefinitionGroupField on FieldDefinitionGroup {\n id\n createdAt\n updatedAt\n code\n name\n kind\n icon\n source\n pluginCode\n maxDepth\n route\n capabilities {\n publishable\n translatable\n sortable\n searchable\n }\n fieldDefinitions {\n id\n createdAt\n updatedAt\n entityName\n fieldName\n category\n fieldGroupId\n sortOrder\n }\n}";
13
+ export declare const adminAcfFieldDefinitionDocument = "query AcfFieldDefinition($code: String!) {\n fieldDefinition(code: $code) {\n ...FieldDefinitionGroupField\n }\n}\n\nfragment FieldDefinitionGroupField on FieldDefinitionGroup {\n id\n createdAt\n updatedAt\n code\n name\n kind\n icon\n source\n pluginCode\n maxDepth\n route\n capabilities {\n publishable\n translatable\n sortable\n searchable\n }\n fieldDefinitions {\n id\n createdAt\n updatedAt\n entityName\n fieldName\n category\n fieldGroupId\n sortOrder\n }\n}";
14
+ export declare const adminAcfCreateFieldDefinitionDocument = "mutation AcfCreateFieldDefinition($input: CreateFieldDefinitionInput!) {\n createFieldDefinition(input: $input) {\n ...FieldDefinitionGroupField\n }\n}\n\nfragment FieldDefinitionGroupField on FieldDefinitionGroup {\n id\n createdAt\n updatedAt\n code\n name\n kind\n icon\n source\n pluginCode\n maxDepth\n route\n capabilities {\n publishable\n translatable\n sortable\n searchable\n }\n fieldDefinitions {\n id\n createdAt\n updatedAt\n entityName\n fieldName\n category\n fieldGroupId\n sortOrder\n }\n}";
15
+ export declare const adminAcfUpdateFieldDefinitionDocument = "mutation AcfUpdateFieldDefinition($input: UpdateFieldDefinitionInput!) {\n updateFieldDefinition(input: $input) {\n ...FieldDefinitionGroupField\n }\n}\n\nfragment FieldDefinitionGroupField on FieldDefinitionGroup {\n id\n createdAt\n updatedAt\n code\n name\n kind\n icon\n source\n pluginCode\n maxDepth\n route\n capabilities {\n publishable\n translatable\n sortable\n searchable\n }\n fieldDefinitions {\n id\n createdAt\n updatedAt\n entityName\n fieldName\n category\n fieldGroupId\n sortOrder\n }\n}";
16
+ export declare const adminAcfDeleteFieldDefinitionDocument = "mutation AcfDeleteFieldDefinition($code: String!) {\n deleteFieldDefinition(code: $code) {\n id\n code\n name\n }\n}";
17
+ export declare const adminAcfPublishHistoryDocument = "query AcfPublishHistory {\n publishHistory {\n id\n createdAt\n updatedAt\n channelCode\n publishedAt\n publishedBy\n changesetJson\n }\n}";
18
+ export declare const adminAcfPublishDocument = "mutation AcfPublish($codes: [String!]) {\n publish(codes: $codes) {\n id\n createdAt\n updatedAt\n channelCode\n publishedAt\n publishedBy\n changesetJson\n }\n}";
19
+ export declare const adminFieldDefinitionsDocument = "query FieldDefinitions($kind: String) {\n fieldDefinitions(kind: $kind) {\n ...FieldDefinitionGroupField\n }\n}\n\nfragment FieldDefinitionGroupField on FieldDefinitionGroup {\n id\n createdAt\n updatedAt\n code\n name\n kind\n icon\n source\n pluginCode\n maxDepth\n route\n capabilities {\n publishable\n translatable\n sortable\n searchable\n }\n fieldDefinitions {\n id\n createdAt\n updatedAt\n entityName\n fieldName\n category\n fieldGroupId\n sortOrder\n }\n}";
20
+ export declare const adminFieldDefinitionDocument = "query FieldDefinition($code: String!) {\n fieldDefinition(code: $code) {\n ...FieldDefinitionGroupField\n }\n}\n\nfragment FieldDefinitionGroupField on FieldDefinitionGroup {\n id\n createdAt\n updatedAt\n code\n name\n kind\n icon\n source\n pluginCode\n maxDepth\n route\n capabilities {\n publishable\n translatable\n sortable\n searchable\n }\n fieldDefinitions {\n id\n createdAt\n updatedAt\n entityName\n fieldName\n category\n fieldGroupId\n sortOrder\n }\n}";
21
+ export declare const adminPublishHistoryDocument = "query PublishHistory {\n publishHistory {\n id\n createdAt\n updatedAt\n channelCode\n publishedAt\n publishedBy\n changesetJson\n }\n}";
22
+ export declare const adminCreateFieldDefinitionDocument = "mutation CreateFieldDefinition($input: CreateFieldDefinitionInput!) {\n createFieldDefinition(input: $input) {\n ...FieldDefinitionGroupField\n }\n}\n\nfragment FieldDefinitionGroupField on FieldDefinitionGroup {\n id\n createdAt\n updatedAt\n code\n name\n kind\n icon\n source\n pluginCode\n maxDepth\n route\n capabilities {\n publishable\n translatable\n sortable\n searchable\n }\n fieldDefinitions {\n id\n createdAt\n updatedAt\n entityName\n fieldName\n category\n fieldGroupId\n sortOrder\n }\n}";
23
+ export declare const adminUpdateFieldDefinitionDocument = "mutation UpdateFieldDefinition($input: UpdateFieldDefinitionInput!) {\n updateFieldDefinition(input: $input) {\n ...FieldDefinitionGroupField\n }\n}\n\nfragment FieldDefinitionGroupField on FieldDefinitionGroup {\n id\n createdAt\n updatedAt\n code\n name\n kind\n icon\n source\n pluginCode\n maxDepth\n route\n capabilities {\n publishable\n translatable\n sortable\n searchable\n }\n fieldDefinitions {\n id\n createdAt\n updatedAt\n entityName\n fieldName\n category\n fieldGroupId\n sortOrder\n }\n}";
24
+ export declare const adminDeleteFieldDefinitionDocument = "mutation DeleteFieldDefinition($code: String!) {\n deleteFieldDefinition(code: $code) {\n id\n code\n name\n }\n}";
25
+ export declare const adminPublishDocument = "mutation Publish($codes: [String!]) {\n publish(codes: $codes) {\n id\n createdAt\n updatedAt\n channelCode\n publishedAt\n publishedBy\n changesetJson\n }\n}";
26
+ export declare const adminAdminEntryDocument = "query AdminEntry($definitionCode: String!, $id: ID!) {\n entry(definitionCode: $definitionCode, id: $id) {\n id\n createdAt\n updatedAt\n fields {\n ...AcfFieldValueField\n }\n groups {\n name\n entries {\n id\n sortOrder\n fields {\n ...AcfFieldValueField\n }\n }\n }\n }\n}\n\nfragment AcfFieldValueField on AcfFieldValueUnion {\n ... on AcfStringValue {\n __typename\n name\n stringValue\n }\n ... on AcfIntValue {\n __typename\n name\n intValue\n }\n ... on AcfFloatValue {\n __typename\n name\n floatValue\n }\n ... on AcfBoolValue {\n __typename\n name\n boolValue\n }\n ... on AcfDateValue {\n __typename\n name\n dateValue\n }\n ... on AcfIdValue {\n __typename\n name\n idValue\n }\n}";
27
+ export declare const adminAdminEntriesDocument = "query AdminEntries($definitionCode: String!, $options: EntryListOptions) {\n entries(definitionCode: $definitionCode, options: $options) {\n items {\n id\n createdAt\n updatedAt\n fields {\n ...AcfFieldValueField\n }\n groups {\n name\n entries {\n id\n sortOrder\n fields {\n ...AcfFieldValueField\n }\n }\n }\n }\n totalItems\n }\n}\n\nfragment AcfFieldValueField on AcfFieldValueUnion {\n ... on AcfStringValue {\n __typename\n name\n stringValue\n }\n ... on AcfIntValue {\n __typename\n name\n intValue\n }\n ... on AcfFloatValue {\n __typename\n name\n floatValue\n }\n ... on AcfBoolValue {\n __typename\n name\n boolValue\n }\n ... on AcfDateValue {\n __typename\n name\n dateValue\n }\n ... on AcfIdValue {\n __typename\n name\n idValue\n }\n}";
28
+ export declare const adminCreateEntryDocument = "mutation CreateEntry($definitionCode: String!, $input: CreateEntryInput!) {\n createEntry(definitionCode: $definitionCode, input: $input) {\n id\n createdAt\n updatedAt\n fields {\n ...AcfFieldValueField\n }\n groups {\n name\n entries {\n id\n sortOrder\n fields {\n ...AcfFieldValueField\n }\n }\n }\n }\n}\n\nfragment AcfFieldValueField on AcfFieldValueUnion {\n ... on AcfStringValue {\n __typename\n name\n stringValue\n }\n ... on AcfIntValue {\n __typename\n name\n intValue\n }\n ... on AcfFloatValue {\n __typename\n name\n floatValue\n }\n ... on AcfBoolValue {\n __typename\n name\n boolValue\n }\n ... on AcfDateValue {\n __typename\n name\n dateValue\n }\n ... on AcfIdValue {\n __typename\n name\n idValue\n }\n}";
29
+ export declare const adminUpdateEntryDocument = "mutation UpdateEntry($definitionCode: String!, $id: ID!, $input: UpdateEntryInput!) {\n updateEntry(definitionCode: $definitionCode, id: $id, input: $input) {\n id\n createdAt\n updatedAt\n fields {\n ...AcfFieldValueField\n }\n groups {\n name\n entries {\n id\n sortOrder\n fields {\n ...AcfFieldValueField\n }\n }\n }\n }\n}\n\nfragment AcfFieldValueField on AcfFieldValueUnion {\n ... on AcfStringValue {\n __typename\n name\n stringValue\n }\n ... on AcfIntValue {\n __typename\n name\n intValue\n }\n ... on AcfFloatValue {\n __typename\n name\n floatValue\n }\n ... on AcfBoolValue {\n __typename\n name\n boolValue\n }\n ... on AcfDateValue {\n __typename\n name\n dateValue\n }\n ... on AcfIdValue {\n __typename\n name\n idValue\n }\n}";
30
+ export declare const adminDeleteEntryDocument = "mutation DeleteEntry($definitionCode: String!, $id: ID!) {\n deleteEntry(definitionCode: $definitionCode, id: $id) {\n result\n message\n }\n}";
31
+ export declare const adminAdministratorDocument = "query Administrator($id: ID!) {\n administrator(id: $id) {\n ...AdministratorField\n }\n}\n\nfragment AdministratorField on Administrator {\n id\n createdAt\n updatedAt\n firstName\n lastName\n emailAddress\n userId\n avatarUrl\n user {\n primaryAuthStrategy\n }\n}";
32
+ export declare const adminActiveAdministratorDocument = "query ActiveAdministrator {\n activeAdministrator {\n ...AdministratorField\n }\n}\n\nfragment AdministratorField on Administrator {\n id\n createdAt\n updatedAt\n firstName\n lastName\n emailAddress\n userId\n avatarUrl\n user {\n primaryAuthStrategy\n }\n}";
33
+ export declare const adminAdministratorsDocument = "query Administrators($options: ListQueryOptions) {\n administrators(options: $options) {\n items {\n ...AdministratorField\n }\n totalItems\n }\n}\n\nfragment AdministratorField on Administrator {\n id\n createdAt\n updatedAt\n firstName\n lastName\n emailAddress\n userId\n avatarUrl\n user {\n primaryAuthStrategy\n }\n}";
34
+ export declare const adminCreateAdministratorDocument = "mutation CreateAdministrator($input: CreateAdministratorInput!) {\n createAdministrator(input: $input) {\n ...AdministratorField\n }\n}\n\nfragment AdministratorField on Administrator {\n id\n createdAt\n updatedAt\n firstName\n lastName\n emailAddress\n userId\n avatarUrl\n user {\n primaryAuthStrategy\n }\n}";
35
+ export declare const adminUpdateAdministratorDocument = "mutation UpdateAdministrator($input: UpdateAdministratorInput!) {\n updateAdministrator(input: $input) {\n ...AdministratorField\n }\n}\n\nfragment AdministratorField on Administrator {\n id\n createdAt\n updatedAt\n firstName\n lastName\n emailAddress\n userId\n avatarUrl\n user {\n primaryAuthStrategy\n }\n}";
36
+ export declare const adminAssignRoleToAdministratorDocument = "mutation AssignRoleToAdministrator($input: AssignRoleToAdministratorInput!) {\n assignRoleToAdministrator(input: $input) {\n ...AdministratorField\n }\n}\n\nfragment AdministratorField on Administrator {\n id\n createdAt\n updatedAt\n firstName\n lastName\n emailAddress\n userId\n avatarUrl\n user {\n primaryAuthStrategy\n }\n}";
37
+ export declare const adminDeleteAdministratorDocument = "mutation DeleteAdministrator($id: ID!) {\n deleteAdministrator(id: $id) {\n ...AdministratorField\n }\n}\n\nfragment AdministratorField on Administrator {\n id\n createdAt\n updatedAt\n firstName\n lastName\n emailAddress\n userId\n avatarUrl\n user {\n primaryAuthStrategy\n }\n}";
38
+ export declare const adminInviteTeamMemberDocument = "mutation InviteTeamMember($input: InviteTeamMemberInput!) {\n inviteTeamMember(input: $input) {\n ...AdministratorField\n }\n}\n\nfragment AdministratorField on Administrator {\n id\n createdAt\n updatedAt\n firstName\n lastName\n emailAddress\n userId\n avatarUrl\n user {\n primaryAuthStrategy\n }\n}";
39
+ export declare const adminRegisterAdministratorDocument = "mutation RegisterAdministrator($input: RegisterAdministratorInput!) {\n registerAdministrator(input: $input) {\n administrator {\n ...AdministratorField\n }\n }\n}\n\nfragment AdministratorField on Administrator {\n id\n createdAt\n updatedAt\n firstName\n lastName\n emailAddress\n userId\n avatarUrl\n user {\n primaryAuthStrategy\n }\n}";
40
+ export declare const adminAdminAnalyticsGatewayProvidersDocument = "query AdminAnalyticsGatewayProviders {\n analyticsGatewayProviders {\n ...AdminAnalyticsGatewayProviderDescriptorFields\n }\n}\n\nfragment AdminAnalyticsGatewayProviderDescriptorFields on AnalyticsGatewayProviderDescriptor {\n code\n displayName\n supportedEventTypes\n}";
41
+ export declare const adminAssetDocument = "query Asset($id: ID!) {\n asset(id: $id) {\n ...AssetField\n }\n}\n\nfragment AssetField on Asset {\n id\n name\n type\n mimeType\n source\n preview\n fileSize\n width\n height\n tags {\n id\n value\n }\n focalPoint {\n x\n y\n }\n}";
42
+ export declare const adminAssetsDocument = "query Assets($options: ListQueryOptions) {\n assets(options: $options) {\n items {\n ...AssetField\n }\n totalItems\n }\n}\n\nfragment AssetField on Asset {\n id\n name\n type\n mimeType\n source\n preview\n fileSize\n width\n height\n tags {\n id\n value\n }\n focalPoint {\n x\n y\n }\n}";
43
+ export declare const adminCreateAssetDocument = "mutation CreateAsset($input: CreateAssetInput!) {\n createAsset(input: $input) {\n ...AssetField\n }\n}\n\nfragment AssetField on Asset {\n id\n name\n type\n mimeType\n source\n preview\n fileSize\n width\n height\n tags {\n id\n value\n }\n focalPoint {\n x\n y\n }\n}";
44
+ export declare const adminUpdateAssetDocument = "mutation UpdateAsset($input: UpdateAssetInput!) {\n updateAsset(input: $input) {\n ...AssetField\n }\n}\n\nfragment AssetField on Asset {\n id\n name\n type\n mimeType\n source\n preview\n fileSize\n width\n height\n tags {\n id\n value\n }\n focalPoint {\n x\n y\n }\n}";
45
+ export declare const adminDeleteAssetsDocument = "mutation DeleteAssets($input: DeleteAssetsInput!) {\n deleteAssets(input: $input) {\n result\n message\n }\n}";
46
+ export declare const adminAssignAssetsToChannelDocument = "mutation AssignAssetsToChannel($input: AssignAssetsToChannelInput!) {\n assignAssetsToChannel(input: $input) {\n ...AssetField\n }\n}\n\nfragment AssetField on Asset {\n id\n name\n type\n mimeType\n source\n preview\n fileSize\n width\n height\n tags {\n id\n value\n }\n focalPoint {\n x\n y\n }\n}";
47
+ export declare const adminRemoveAssetsFromChannelDocument = "mutation RemoveAssetsFromChannel($input: RemoveAssetsFromChannelInput!) {\n removeAssetsFromChannel(input: $input) {\n ...AssetField\n }\n}\n\nfragment AssetField on Asset {\n id\n name\n type\n mimeType\n source\n preview\n fileSize\n width\n height\n tags {\n id\n value\n }\n focalPoint {\n x\n y\n }\n}";
48
+ export declare const adminCreateAssetFromUrlDocument = "mutation CreateAssetFromUrl($url: String!) {\n createAssetFromUrl(url: $url) {\n ...AssetField\n }\n}\n\nfragment AssetField on Asset {\n id\n name\n type\n mimeType\n source\n preview\n fileSize\n width\n height\n tags {\n id\n value\n }\n focalPoint {\n x\n y\n }\n}";
49
+ export declare const adminAdminAudienceMembershipsBySegmentDocument = "query AdminAudienceMembershipsBySegment($input: AudienceMembershipsBySegmentInput!) {\n audienceMembershipsBySegment(input: $input) {\n items {\n ...AdminAudienceMembershipFields\n }\n totalItems\n }\n}\n\nfragment AdminAudienceMembershipFields on AudienceMembership {\n id\n segmentId\n segmentCode\n identityId\n customerId\n enteredAt\n exitedAt\n source\n}";
50
+ export declare const adminAdminAudienceMembershipsByIdentityDocument = "query AdminAudienceMembershipsByIdentity($identityId: ID!) {\n audienceMembershipsByIdentity(identityId: $identityId) {\n ...AdminAudienceMembershipFields\n }\n}\n\nfragment AdminAudienceMembershipFields on AudienceMembership {\n id\n segmentId\n segmentCode\n identityId\n customerId\n enteredAt\n exitedAt\n source\n}";
51
+ export declare const adminAdminAudienceMembershipsByCustomerDocument = "query AdminAudienceMembershipsByCustomer($customerId: ID!) {\n audienceMembershipsByCustomer(customerId: $customerId) {\n ...AdminAudienceMembershipFields\n }\n}\n\nfragment AdminAudienceMembershipFields on AudienceMembership {\n id\n segmentId\n segmentCode\n identityId\n customerId\n enteredAt\n exitedAt\n source\n}";
52
+ export declare const adminAdminAddIdentityToSegmentDocument = "mutation AdminAddIdentityToSegment($input: AddIdentityToSegmentInput!) {\n addIdentityToSegment(input: $input) {\n ...AdminAudienceMembershipFields\n }\n}\n\nfragment AdminAudienceMembershipFields on AudienceMembership {\n id\n segmentId\n segmentCode\n identityId\n customerId\n enteredAt\n exitedAt\n source\n}";
53
+ export declare const adminAdminRemoveIdentityFromSegmentDocument = "mutation AdminRemoveIdentityFromSegment($input: RemoveIdentityFromSegmentInput!) {\n removeIdentityFromSegment(input: $input) {\n ...AdminAudienceMembershipFields\n }\n}\n\nfragment AdminAudienceMembershipFields on AudienceMembership {\n id\n segmentId\n segmentCode\n identityId\n customerId\n enteredAt\n exitedAt\n source\n}";
54
+ export declare const adminAdminAudienceSegmentDocument = "query AdminAudienceSegment($id: ID!) {\n audienceSegment(id: $id) {\n ...AdminAudienceSegmentFields\n }\n}\n\nfragment AdminAudienceSegmentFields on AudienceSegment {\n id\n code\n name\n description\n active\n memberCount\n createdAt\n updatedAt\n deletedAt\n lastCompiledAt\n lastEvaluatedAt\n}";
55
+ export declare const adminAdminAudienceSegmentByCodeDocument = "query AdminAudienceSegmentByCode($code: String!) {\n audienceSegmentByCode(code: $code) {\n ...AdminAudienceSegmentFields\n }\n}\n\nfragment AdminAudienceSegmentFields on AudienceSegment {\n id\n code\n name\n description\n active\n memberCount\n createdAt\n updatedAt\n deletedAt\n lastCompiledAt\n lastEvaluatedAt\n}";
56
+ export declare const adminAdminAudienceSegmentWithTreeDocument = "query AdminAudienceSegmentWithTree($code: String!) {\n audienceSegmentByCode(code: $code) {\n ...AdminAudienceSegmentFields\n rootGroup {\n ...AdminAudienceSegmentRootGroupFields\n }\n }\n}\n\nfragment AdminAudienceSegmentFields on AudienceSegment {\n id\n code\n name\n description\n active\n memberCount\n createdAt\n updatedAt\n deletedAt\n lastCompiledAt\n lastEvaluatedAt\n}\n\nfragment AdminAudienceSegmentRootGroupFields on AudienceSegmentConditionGroup {\n id\n groupOperator\n position\n children {\n __typename\n ... on AudienceSegmentCondition {\n ...AdminAudienceSegmentConditionLeafFields\n }\n ... on AudienceSegmentConditionGroup {\n id\n groupOperator\n position\n children {\n __typename\n ... on AudienceSegmentCondition {\n ...AdminAudienceSegmentConditionLeafFields\n }\n ... on AudienceSegmentConditionGroup {\n id\n groupOperator\n position\n children {\n __typename\n ... on AudienceSegmentCondition {\n ...AdminAudienceSegmentConditionLeafFields\n }\n ... on AudienceSegmentConditionGroup {\n id\n groupOperator\n position\n children {\n __typename\n ... on AudienceSegmentCondition {\n ...AdminAudienceSegmentConditionLeafFields\n }\n }\n }\n }\n }\n }\n }\n }\n}\n\nfragment AdminAudienceSegmentConditionLeafFields on AudienceSegmentCondition {\n id\n conditionCode\n operator\n position\n stringValue\n intValue\n intValueEnd\n floatValue\n dateValue\n stringArrayValue\n windowLastUnit\n windowLastCount\n occurredAfter\n occurredBefore\n propertyFilters {\n ...AdminAudienceSegmentConditionPropertyFilterFields\n }\n}\n\nfragment AdminAudienceSegmentConditionPropertyFilterFields on AudienceSegmentConditionPropertyFilter {\n id\n propertyPath\n operator\n position\n stringValue\n intValue\n intValueEnd\n floatValue\n dateValue\n stringArrayValue\n}";
57
+ export declare const adminAdminAudienceSegmentsDocument = "query AdminAudienceSegments($options: ListQueryOptions) {\n audienceSegments(options: $options) {\n items {\n ...AdminAudienceSegmentFields\n }\n totalItems\n }\n}\n\nfragment AdminAudienceSegmentFields on AudienceSegment {\n id\n code\n name\n description\n active\n memberCount\n createdAt\n updatedAt\n deletedAt\n lastCompiledAt\n lastEvaluatedAt\n}";
58
+ export declare const adminAdminCreateAudienceSegmentDocument = "mutation AdminCreateAudienceSegment($input: CreateAudienceSegmentInput!) {\n createAudienceSegment(input: $input) {\n ...AdminAudienceSegmentFields\n }\n}\n\nfragment AdminAudienceSegmentFields on AudienceSegment {\n id\n code\n name\n description\n active\n memberCount\n createdAt\n updatedAt\n deletedAt\n lastCompiledAt\n lastEvaluatedAt\n}";
59
+ export declare const adminAdminUpdateAudienceSegmentDocument = "mutation AdminUpdateAudienceSegment($input: UpdateAudienceSegmentInput!) {\n updateAudienceSegment(input: $input) {\n ...AdminAudienceSegmentFields\n }\n}\n\nfragment AdminAudienceSegmentFields on AudienceSegment {\n id\n code\n name\n description\n active\n memberCount\n createdAt\n updatedAt\n deletedAt\n lastCompiledAt\n lastEvaluatedAt\n}";
60
+ export declare const adminAdminDeleteAudienceSegmentDocument = "mutation AdminDeleteAudienceSegment($id: ID!) {\n deleteAudienceSegment(id: $id) {\n ...AdminAudienceSegmentFields\n }\n}\n\nfragment AdminAudienceSegmentFields on AudienceSegment {\n id\n code\n name\n description\n active\n memberCount\n createdAt\n updatedAt\n deletedAt\n lastCompiledAt\n lastEvaluatedAt\n}";
61
+ export declare const adminAdminEvaluateAudienceSegmentDocument = "mutation AdminEvaluateAudienceSegment($id: ID!) {\n evaluateAudienceSegment(id: $id) {\n added\n removed\n currentCount\n durationMs\n }\n}";
62
+ export declare const adminLoginDocument = "mutation Login($input: NativeAuthInput!) {\n login(input: $input) {\n id\n token\n channels {\n id\n token\n code\n permissions\n }\n }\n}";
63
+ export declare const adminAuthenticateWithExternalStrategyDocument = "mutation AuthenticateWithExternalStrategy($input: AuthenticateWithExternalStrategyInput!) {\n authenticateWithExternalStrategy(input: $input) {\n session {\n id\n token\n channels {\n id\n token\n code\n permissions\n }\n }\n administrator {\n ...AdministratorField\n }\n requiresOnboarding\n }\n}\n\nfragment AdministratorField on Administrator {\n id\n createdAt\n updatedAt\n firstName\n lastName\n emailAddress\n userId\n avatarUrl\n user {\n primaryAuthStrategy\n }\n}";
64
+ export declare const adminVerifyAdministratorEmailDocument = "mutation VerifyAdministratorEmail($input: VerifyAdministratorEmailInput!) {\n verifyAdministratorEmail(input: $input) {\n session {\n id\n token\n }\n administrator {\n id\n firstName\n lastName\n emailAddress\n avatarUrl\n }\n requiresOnboarding\n }\n}";
65
+ export declare const adminResendAdministratorVerificationDocument = "mutation ResendAdministratorVerification($input: ResendAdministratorVerificationInput!) {\n resendAdministratorVerification(input: $input)\n}";
66
+ export declare const adminLogoutDocument = "mutation Logout {\n logout\n}";
67
+ export declare const adminChannelSettingsDocument = "query ChannelSettings {\n channelSettings {\n ...ChannelSettingsField\n }\n}\n\nfragment ChannelSettingsField on ChannelSettings {\n id\n channelId\n shopName\n requiresShippingAddressValidation\n requireCustomerForCheckout\n defaultFulfillmentHandlerCode\n defaultPaymentProviderCode\n defaultWeightUnit\n defaultDimensionUnit\n manualShippingRates {\n code\n name\n amount\n currency\n estimatedDays\n }\n}";
68
+ export declare const adminChannelUpdateSettingsDocument = "mutation ChannelUpdateSettings($input: UpdateChannelSettingsInput!) {\n updateChannelSettings(input: $input) {\n ...ChannelSettingsField\n }\n}\n\nfragment ChannelSettingsField on ChannelSettings {\n id\n channelId\n shopName\n requiresShippingAddressValidation\n requireCustomerForCheckout\n defaultFulfillmentHandlerCode\n defaultPaymentProviderCode\n defaultWeightUnit\n defaultDimensionUnit\n manualShippingRates {\n code\n name\n amount\n currency\n estimatedDays\n }\n}";
69
+ export declare const adminChannelDocument = "query Channel($id: ID!) {\n channel(id: $id) {\n ...ChannelField\n }\n}\n\nfragment ChannelField on Channel {\n id\n createdAt\n updatedAt\n code\n token\n secret\n defaultLanguageCode\n defaultCurrencyCode\n availableLanguageCodes\n availableCurrencyCodes\n description\n pricesIncludeTax\n taxProviderCode\n trackInventory\n outOfStockThreshold\n sellerId\n defaultTaxZoneId\n}";
70
+ export declare const adminChannelsDocument = "query Channels($options: ListQueryOptions) {\n channels(options: $options) {\n items {\n ...ChannelField\n }\n totalItems\n }\n}\n\nfragment ChannelField on Channel {\n id\n createdAt\n updatedAt\n code\n token\n secret\n defaultLanguageCode\n defaultCurrencyCode\n availableLanguageCodes\n availableCurrencyCodes\n description\n pricesIncludeTax\n taxProviderCode\n trackInventory\n outOfStockThreshold\n sellerId\n defaultTaxZoneId\n}";
71
+ export declare const adminCreateChannelDocument = "mutation CreateChannel($input: CreateChannelInput!) {\n createChannel(input: $input) {\n ...ChannelField\n }\n}\n\nfragment ChannelField on Channel {\n id\n createdAt\n updatedAt\n code\n token\n secret\n defaultLanguageCode\n defaultCurrencyCode\n availableLanguageCodes\n availableCurrencyCodes\n description\n pricesIncludeTax\n taxProviderCode\n trackInventory\n outOfStockThreshold\n sellerId\n defaultTaxZoneId\n}";
72
+ export declare const adminUpdateChannelDocument = "mutation UpdateChannel($input: UpdateChannelInput!) {\n updateChannel(input: $input) {\n ...ChannelField\n }\n}\n\nfragment ChannelField on Channel {\n id\n createdAt\n updatedAt\n code\n token\n secret\n defaultLanguageCode\n defaultCurrencyCode\n availableLanguageCodes\n availableCurrencyCodes\n description\n pricesIncludeTax\n taxProviderCode\n trackInventory\n outOfStockThreshold\n sellerId\n defaultTaxZoneId\n}";
73
+ export declare const adminDeleteChannelDocument = "mutation DeleteChannel($id: ID!) {\n deleteChannel(id: $id)\n}";
74
+ export declare const adminUpdateChannelSettingsDocument = "mutation UpdateChannelSettings($input: UpdateChannelSettingsInput!) {\n updateChannelSettings(input: $input) {\n ...ChannelSettingsField\n }\n}\n\nfragment ChannelSettingsField on ChannelSettings {\n id\n channelId\n shopName\n requiresShippingAddressValidation\n requireCustomerForCheckout\n defaultFulfillmentHandlerCode\n defaultPaymentProviderCode\n defaultWeightUnit\n defaultDimensionUnit\n manualShippingRates {\n code\n name\n amount\n currency\n estimatedDays\n }\n}";
75
+ export declare const adminProvisionChannelDocument = "mutation ProvisionChannel($input: ProvisionChannelInput!) {\n provisionChannel(input: $input) {\n channel {\n ...ChannelField\n }\n channelSettings {\n ...ChannelSettingsField\n }\n role {\n id\n name\n code\n description\n permissions\n }\n }\n}\n\nfragment ChannelField on Channel {\n id\n createdAt\n updatedAt\n code\n token\n secret\n defaultLanguageCode\n defaultCurrencyCode\n availableLanguageCodes\n availableCurrencyCodes\n description\n pricesIncludeTax\n taxProviderCode\n trackInventory\n outOfStockThreshold\n sellerId\n defaultTaxZoneId\n}\n\nfragment ChannelSettingsField on ChannelSettings {\n id\n channelId\n shopName\n requiresShippingAddressValidation\n requireCustomerForCheckout\n defaultFulfillmentHandlerCode\n defaultPaymentProviderCode\n defaultWeightUnit\n defaultDimensionUnit\n manualShippingRates {\n code\n name\n amount\n currency\n estimatedDays\n }\n}";
76
+ export declare const adminAdminCollectionDocument = "query AdminCollection($id: ID!) {\n collection(id: $id) {\n ...CollectionField\n }\n}\n\nfragment CollectionField on Collection {\n id\n createdAt\n updatedAt\n name\n slug\n description\n isPrivate\n isRoot\n inheritFilters\n position\n filters\n parentId\n featuredAsset {\n id\n name\n preview\n source\n }\n translations {\n ...CollectionTranslationField\n }\n}\n\nfragment CollectionTranslationField on CollectionTranslation {\n id\n languageCode\n name\n slug\n description\n}";
77
+ export declare const adminAdminCollectionsDocument = "query AdminCollections($options: ListQueryOptions) {\n collections(options: $options) {\n items {\n ...CollectionField\n }\n totalItems\n }\n}\n\nfragment CollectionField on Collection {\n id\n createdAt\n updatedAt\n name\n slug\n description\n isPrivate\n isRoot\n inheritFilters\n position\n filters\n parentId\n featuredAsset {\n id\n name\n preview\n source\n }\n translations {\n ...CollectionTranslationField\n }\n}\n\nfragment CollectionTranslationField on CollectionTranslation {\n id\n languageCode\n name\n slug\n description\n}";
78
+ export declare const adminCreateCollectionDocument = "mutation CreateCollection($input: CreateCollectionInput!) {\n createCollection(input: $input) {\n ...CollectionField\n }\n}\n\nfragment CollectionField on Collection {\n id\n createdAt\n updatedAt\n name\n slug\n description\n isPrivate\n isRoot\n inheritFilters\n position\n filters\n parentId\n featuredAsset {\n id\n name\n preview\n source\n }\n translations {\n ...CollectionTranslationField\n }\n}\n\nfragment CollectionTranslationField on CollectionTranslation {\n id\n languageCode\n name\n slug\n description\n}";
79
+ export declare const adminUpdateCollectionDocument = "mutation UpdateCollection($input: UpdateCollectionInput!) {\n updateCollection(input: $input) {\n ...CollectionField\n }\n}\n\nfragment CollectionField on Collection {\n id\n createdAt\n updatedAt\n name\n slug\n description\n isPrivate\n isRoot\n inheritFilters\n position\n filters\n parentId\n featuredAsset {\n id\n name\n preview\n source\n }\n translations {\n ...CollectionTranslationField\n }\n}\n\nfragment CollectionTranslationField on CollectionTranslation {\n id\n languageCode\n name\n slug\n description\n}";
80
+ export declare const adminDeleteCollectionDocument = "mutation DeleteCollection($id: ID!) {\n deleteCollection(id: $id) {\n result\n message\n }\n}";
81
+ export declare const adminMoveCollectionDocument = "mutation MoveCollection($input: MoveCollectionInput!) {\n moveCollection(input: $input) {\n ...CollectionField\n }\n}\n\nfragment CollectionField on Collection {\n id\n createdAt\n updatedAt\n name\n slug\n description\n isPrivate\n isRoot\n inheritFilters\n position\n filters\n parentId\n featuredAsset {\n id\n name\n preview\n source\n }\n translations {\n ...CollectionTranslationField\n }\n}\n\nfragment CollectionTranslationField on CollectionTranslation {\n id\n languageCode\n name\n slug\n description\n}";
82
+ export declare const adminCountryDocument = "query Country($id: ID!) {\n country(id: $id) {\n ...CountryField\n }\n}\n\nfragment CountryField on Country {\n id\n createdAt\n updatedAt\n code\n name\n enabled\n translations {\n ...CountryTranslationField\n }\n}\n\nfragment CountryTranslationField on CountryTranslation {\n id\n languageCode\n name\n}";
83
+ export declare const adminCountryByCodeDocument = "query CountryByCode($code: String!) {\n countryByCode(code: $code) {\n ...CountryField\n }\n}\n\nfragment CountryField on Country {\n id\n createdAt\n updatedAt\n code\n name\n enabled\n translations {\n ...CountryTranslationField\n }\n}\n\nfragment CountryTranslationField on CountryTranslation {\n id\n languageCode\n name\n}";
84
+ export declare const adminCountriesDocument = "query Countries($options: ListQueryOptions) {\n countries(options: $options) {\n items {\n ...CountryField\n }\n totalItems\n }\n}\n\nfragment CountryField on Country {\n id\n createdAt\n updatedAt\n code\n name\n enabled\n translations {\n ...CountryTranslationField\n }\n}\n\nfragment CountryTranslationField on CountryTranslation {\n id\n languageCode\n name\n}";
85
+ export declare const adminUpdateCountryDocument = "mutation UpdateCountry($input: UpdateCountryInput!) {\n updateCountry(input: $input) {\n ...CountryField\n }\n}\n\nfragment CountryField on Country {\n id\n createdAt\n updatedAt\n code\n name\n enabled\n translations {\n ...CountryTranslationField\n }\n}\n\nfragment CountryTranslationField on CountryTranslation {\n id\n languageCode\n name\n}";
86
+ export declare const adminDeleteCountryDocument = "mutation DeleteCountry($id: ID!) {\n deleteCountry(id: $id) {\n result\n message\n }\n}";
87
+ export declare const adminCustomerCreateAddressDocument = "mutation CustomerCreateAddress($input: CreateCustomerAddressInput!) {\n createCustomerAddress(input: $input) {\n id\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n defaultShippingAddress\n defaultBillingAddress\n }\n}";
88
+ export declare const adminCustomerUpdateAddressDocument = "mutation CustomerUpdateAddress($input: UpdateAddressInput!) {\n updateCustomerAddress(input: $input) {\n id\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n defaultShippingAddress\n defaultBillingAddress\n }\n}";
89
+ export declare const adminCustomerDeleteAddressDocument = "mutation CustomerDeleteAddress($id: ID!) {\n deleteCustomerAddress(id: $id) {\n result\n message\n }\n}";
90
+ export declare const adminCustomerGroupDocument = "query CustomerGroup($id: ID!) {\n customerGroup(id: $id) {\n ...CustomerGroupField\n }\n}\n\nfragment CustomerGroupField on CustomerGroup {\n id\n createdAt\n updatedAt\n name\n}";
91
+ export declare const adminCustomerGroupsDocument = "query CustomerGroups($options: ListQueryOptions) {\n customerGroups(options: $options) {\n items {\n ...CustomerGroupField\n }\n totalItems\n }\n}\n\nfragment CustomerGroupField on CustomerGroup {\n id\n createdAt\n updatedAt\n name\n}";
92
+ export declare const adminCustomerCreateGroupDocument = "mutation CustomerCreateGroup($input: CreateCustomerGroupInput!) {\n createCustomerGroup(input: $input) {\n ...CustomerGroupField\n }\n}\n\nfragment CustomerGroupField on CustomerGroup {\n id\n createdAt\n updatedAt\n name\n}";
93
+ export declare const adminCustomerUpdateGroupDocument = "mutation CustomerUpdateGroup($input: UpdateCustomerGroupInput!) {\n updateCustomerGroup(input: $input) {\n ...CustomerGroupField\n }\n}\n\nfragment CustomerGroupField on CustomerGroup {\n id\n createdAt\n updatedAt\n name\n}";
94
+ export declare const adminCustomerDeleteGroupDocument = "mutation CustomerDeleteGroup($id: ID!) {\n deleteCustomerGroup(id: $id) {\n result\n message\n }\n}";
95
+ export declare const adminCustomerAddCustomersGroupDocument = "mutation CustomerAddCustomersGroup($input: AddCustomersToGroupInput!) {\n addCustomersToGroup(input: $input) {\n ...CustomerGroupField\n }\n}\n\nfragment CustomerGroupField on CustomerGroup {\n id\n createdAt\n updatedAt\n name\n}";
96
+ export declare const adminCustomerRemoveCustomersGroupDocument = "mutation CustomerRemoveCustomersGroup($input: RemoveCustomersFromGroupInput!) {\n removeCustomersFromGroup(input: $input) {\n ...CustomerGroupField\n }\n}\n\nfragment CustomerGroupField on CustomerGroup {\n id\n createdAt\n updatedAt\n name\n}";
97
+ export declare const adminCreateCustomerGroupDocument = "mutation CreateCustomerGroup($input: CreateCustomerGroupInput!) {\n createCustomerGroup(input: $input) {\n ...CustomerGroupField\n }\n}\n\nfragment CustomerGroupField on CustomerGroup {\n id\n createdAt\n updatedAt\n name\n}";
98
+ export declare const adminUpdateCustomerGroupDocument = "mutation UpdateCustomerGroup($input: UpdateCustomerGroupInput!) {\n updateCustomerGroup(input: $input) {\n ...CustomerGroupField\n }\n}\n\nfragment CustomerGroupField on CustomerGroup {\n id\n createdAt\n updatedAt\n name\n}";
99
+ export declare const adminDeleteCustomerGroupDocument = "mutation DeleteCustomerGroup($id: ID!) {\n deleteCustomerGroup(id: $id) {\n result\n message\n }\n}";
100
+ export declare const adminAddCustomersToGroupDocument = "mutation AddCustomersToGroup($input: AddCustomersToGroupInput!) {\n addCustomersToGroup(input: $input) {\n ...CustomerGroupField\n }\n}\n\nfragment CustomerGroupField on CustomerGroup {\n id\n createdAt\n updatedAt\n name\n}";
101
+ export declare const adminRemoveCustomersFromGroupDocument = "mutation RemoveCustomersFromGroup($input: RemoveCustomersFromGroupInput!) {\n removeCustomersFromGroup(input: $input) {\n ...CustomerGroupField\n }\n}\n\nfragment CustomerGroupField on CustomerGroup {\n id\n createdAt\n updatedAt\n name\n}";
102
+ export declare const adminAdminCustomerDocument = "query AdminCustomer($id: ID!) {\n customer(id: $id) {\n ...CustomerField\n }\n}\n\nfragment CustomerField on Customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n addresses {\n id\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n defaultShippingAddress\n defaultBillingAddress\n }\n}";
103
+ export declare const adminAdminCustomersDocument = "query AdminCustomers($options: ListQueryOptions) {\n customers(options: $options) {\n items {\n ...CustomerField\n }\n totalItems\n }\n}\n\nfragment CustomerField on Customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n addresses {\n id\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n defaultShippingAddress\n defaultBillingAddress\n }\n}";
104
+ export declare const adminCreateCustomerDocument = "mutation CreateCustomer($input: CreateCustomerInput!) {\n createCustomer(input: $input) {\n ...CustomerField\n }\n}\n\nfragment CustomerField on Customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n addresses {\n id\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n defaultShippingAddress\n defaultBillingAddress\n }\n}";
105
+ export declare const adminUpdateCustomerDocument = "mutation UpdateCustomer($input: UpdateCustomerInput!) {\n updateCustomer(input: $input) {\n ...CustomerField\n }\n}\n\nfragment CustomerField on Customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n addresses {\n id\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n defaultShippingAddress\n defaultBillingAddress\n }\n}";
106
+ export declare const adminDeleteCustomerDocument = "mutation DeleteCustomer($id: ID!) {\n deleteCustomer(id: $id) {\n result\n message\n }\n}";
107
+ export declare const adminCreateCustomerAddressDocument = "mutation CreateCustomerAddress($input: CreateCustomerAddressInput!) {\n createCustomerAddress(input: $input) {\n id\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n defaultShippingAddress\n defaultBillingAddress\n }\n}";
108
+ export declare const adminUpdateCustomerAddressDocument = "mutation UpdateCustomerAddress($input: UpdateAddressInput!) {\n updateCustomerAddress(input: $input) {\n id\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n defaultShippingAddress\n defaultBillingAddress\n }\n}";
109
+ export declare const adminDeleteCustomerAddressDocument = "mutation DeleteCustomerAddress($id: ID!) {\n deleteCustomerAddress(id: $id) {\n result\n message\n }\n}";
110
+ export declare const adminAdminDeploymentsDocument = "query AdminDeployments {\n deployments {\n ...DeploymentField\n }\n}\n\nfragment DeploymentField on Deployment {\n id\n name\n type\n status\n url\n providerCode\n providerAppName\n instances\n lastDeployedAt\n errorMessage\n channelId\n createdAt\n updatedAt\n}";
111
+ export declare const adminAdminDeploymentDocument = "query AdminDeployment($type: DeploymentType!) {\n deployment(type: $type) {\n ...DeploymentField\n }\n}\n\nfragment DeploymentField on Deployment {\n id\n name\n type\n status\n url\n providerCode\n providerAppName\n instances\n lastDeployedAt\n errorMessage\n channelId\n createdAt\n updatedAt\n}";
112
+ export declare const adminAdminDeploymentEnvDocument = "query AdminDeploymentEnv($type: DeploymentType!) {\n deploymentEnv(type: $type) {\n key\n value\n }\n}";
113
+ export declare const adminAdminChannelDeploymentInfoDocument = "query AdminChannelDeploymentInfo {\n channelDeploymentInfo {\n channelId\n channelToken\n deployments {\n type\n status\n url\n instances\n lastDeployedAt\n }\n providerCode\n }\n}";
114
+ export declare const adminAdminDeviceCodeInfoDocument = "query AdminDeviceCodeInfo($userCode: String!) {\n deviceCodeInfo(userCode: $userCode) {\n userCode\n apiUrl\n status\n expiresAt\n }\n}";
115
+ export declare const adminAdminValidateChannelTokenDocument = "query AdminValidateChannelToken($channelToken: String!) {\n validateChannelToken(channelToken: $channelToken)\n}";
116
+ export declare const adminAdminCreateDeploymentDocument = "mutation AdminCreateDeployment($input: CreateDeploymentInput!) {\n createDeployment(input: $input) {\n ...DeploymentField\n }\n}\n\nfragment DeploymentField on Deployment {\n id\n name\n type\n status\n url\n providerCode\n providerAppName\n instances\n lastDeployedAt\n errorMessage\n channelId\n createdAt\n updatedAt\n}";
117
+ export declare const adminAdminDeleteDeploymentDocument = "mutation AdminDeleteDeployment($type: DeploymentType!) {\n deleteDeployment(type: $type) {\n ...DeploymentField\n }\n}\n\nfragment DeploymentField on Deployment {\n id\n name\n type\n status\n url\n providerCode\n providerAppName\n instances\n lastDeployedAt\n errorMessage\n channelId\n createdAt\n updatedAt\n}";
118
+ export declare const adminAdminDeployAppDocument = "mutation AdminDeployApp($input: DeployAppInput!) {\n deployApp(input: $input) {\n ...DeploymentField\n }\n}\n\nfragment DeploymentField on Deployment {\n id\n name\n type\n status\n url\n providerCode\n providerAppName\n instances\n lastDeployedAt\n errorMessage\n channelId\n createdAt\n updatedAt\n}";
119
+ export declare const adminAdminScaleDeploymentDocument = "mutation AdminScaleDeployment($input: ScaleDeploymentInput!) {\n scaleDeployment(input: $input) {\n ...DeploymentField\n }\n}\n\nfragment DeploymentField on Deployment {\n id\n name\n type\n status\n url\n providerCode\n providerAppName\n instances\n lastDeployedAt\n errorMessage\n channelId\n createdAt\n updatedAt\n}";
120
+ export declare const adminAdminSetDeploymentEnvDocument = "mutation AdminSetDeploymentEnv($input: SetDeploymentEnvInput!) {\n setDeploymentEnv(input: $input) {\n ...DeploymentField\n }\n}\n\nfragment DeploymentField on Deployment {\n id\n name\n type\n status\n url\n providerCode\n providerAppName\n instances\n lastDeployedAt\n errorMessage\n channelId\n createdAt\n updatedAt\n}";
121
+ export declare const adminAdminUnsetDeploymentEnvDocument = "mutation AdminUnsetDeploymentEnv($input: UnsetDeploymentEnvInput!) {\n unsetDeploymentEnv(input: $input) {\n ...DeploymentField\n }\n}\n\nfragment DeploymentField on Deployment {\n id\n name\n type\n status\n url\n providerCode\n providerAppName\n instances\n lastDeployedAt\n errorMessage\n channelId\n createdAt\n updatedAt\n}";
122
+ export declare const adminAdminRefreshDeploymentStatusDocument = "mutation AdminRefreshDeploymentStatus($type: DeploymentType!) {\n refreshDeploymentStatus(type: $type) {\n ...DeploymentField\n }\n}\n\nfragment DeploymentField on Deployment {\n id\n name\n type\n status\n url\n providerCode\n providerAppName\n instances\n lastDeployedAt\n errorMessage\n channelId\n createdAt\n updatedAt\n}";
123
+ export declare const adminAdminGenerateDeviceCodeDocument = "mutation AdminGenerateDeviceCode($input: GenerateDeviceCodeInput!) {\n generateDeviceCode(input: $input) {\n deviceCode\n userCode\n verificationUrl\n expiresIn\n interval\n }\n}";
124
+ export declare const adminAdminPollDeviceTokenDocument = "mutation AdminPollDeviceToken($deviceCode: String!) {\n pollDeviceToken(deviceCode: $deviceCode) {\n channelToken\n authToken\n }\n}";
125
+ export declare const adminAdminApproveDeviceCodeDocument = "mutation AdminApproveDeviceCode($userCode: String!) {\n approveDeviceCode(userCode: $userCode) {\n userCode\n apiUrl\n status\n expiresAt\n }\n}";
126
+ export declare const adminAdminDeploymentLogsDocument = "subscription AdminDeploymentLogs($type: DeploymentType!) {\n deploymentLogs(type: $type) {\n timestamp\n message\n stream\n }\n}";
127
+ export declare const adminFacetDocument = "query Facet($id: ID!) {\n facet(id: $id) {\n ...FacetField\n }\n}\n\nfragment FacetField on Facet {\n id\n createdAt\n updatedAt\n name\n code\n isPrivate\n values {\n ...FacetValueField\n }\n translations {\n ...FacetTranslationField\n }\n}\n\nfragment FacetValueField on FacetValue {\n id\n createdAt\n updatedAt\n name\n code\n facetId\n translations {\n ...FacetValueTranslationField\n }\n}\n\nfragment FacetValueTranslationField on FacetValueTranslation {\n id\n languageCode\n name\n}\n\nfragment FacetTranslationField on FacetTranslation {\n id\n languageCode\n name\n}";
128
+ export declare const adminFacetsDocument = "query Facets($options: ListQueryOptions) {\n facets(options: $options) {\n items {\n ...FacetField\n }\n totalItems\n }\n}\n\nfragment FacetField on Facet {\n id\n createdAt\n updatedAt\n name\n code\n isPrivate\n values {\n ...FacetValueField\n }\n translations {\n ...FacetTranslationField\n }\n}\n\nfragment FacetValueField on FacetValue {\n id\n createdAt\n updatedAt\n name\n code\n facetId\n translations {\n ...FacetValueTranslationField\n }\n}\n\nfragment FacetValueTranslationField on FacetValueTranslation {\n id\n languageCode\n name\n}\n\nfragment FacetTranslationField on FacetTranslation {\n id\n languageCode\n name\n}";
129
+ export declare const adminCreateFacetDocument = "mutation CreateFacet($input: CreateFacetInput!) {\n createFacet(input: $input) {\n ...FacetField\n }\n}\n\nfragment FacetField on Facet {\n id\n createdAt\n updatedAt\n name\n code\n isPrivate\n values {\n ...FacetValueField\n }\n translations {\n ...FacetTranslationField\n }\n}\n\nfragment FacetValueField on FacetValue {\n id\n createdAt\n updatedAt\n name\n code\n facetId\n translations {\n ...FacetValueTranslationField\n }\n}\n\nfragment FacetValueTranslationField on FacetValueTranslation {\n id\n languageCode\n name\n}\n\nfragment FacetTranslationField on FacetTranslation {\n id\n languageCode\n name\n}";
130
+ export declare const adminUpdateFacetDocument = "mutation UpdateFacet($input: UpdateFacetInput!) {\n updateFacet(input: $input) {\n ...FacetField\n }\n}\n\nfragment FacetField on Facet {\n id\n createdAt\n updatedAt\n name\n code\n isPrivate\n values {\n ...FacetValueField\n }\n translations {\n ...FacetTranslationField\n }\n}\n\nfragment FacetValueField on FacetValue {\n id\n createdAt\n updatedAt\n name\n code\n facetId\n translations {\n ...FacetValueTranslationField\n }\n}\n\nfragment FacetValueTranslationField on FacetValueTranslation {\n id\n languageCode\n name\n}\n\nfragment FacetTranslationField on FacetTranslation {\n id\n languageCode\n name\n}";
131
+ export declare const adminDeleteFacetDocument = "mutation DeleteFacet($input: DeleteFacetInput!) {\n deleteFacet(input: $input) {\n result\n message\n }\n}";
132
+ export declare const adminCreateFacetValuesDocument = "mutation CreateFacetValues($input: CreateFacetValueInput!) {\n createFacetValues(input: $input) {\n ...FacetValueField\n }\n}\n\nfragment FacetValueField on FacetValue {\n id\n createdAt\n updatedAt\n name\n code\n facetId\n translations {\n ...FacetValueTranslationField\n }\n}\n\nfragment FacetValueTranslationField on FacetValueTranslation {\n id\n languageCode\n name\n}";
133
+ export declare const adminUpdateFacetValuesDocument = "mutation UpdateFacetValues($input: UpdateFacetValueInput!) {\n updateFacetValues(input: $input) {\n ...FacetValueField\n }\n}\n\nfragment FacetValueField on FacetValue {\n id\n createdAt\n updatedAt\n name\n code\n facetId\n translations {\n ...FacetValueTranslationField\n }\n}\n\nfragment FacetValueTranslationField on FacetValueTranslation {\n id\n languageCode\n name\n}";
134
+ export declare const adminDeleteFacetValuesDocument = "mutation DeleteFacetValues($input: DeleteFacetValuesInput!) {\n deleteFacetValues(input: $input) {\n result\n message\n }\n}";
135
+ export declare const adminFulfillmentRequestDocument = "query FulfillmentRequest($id: ID!) {\n fulfillmentRequest(id: $id) {\n ...FulfillmentRequestField\n }\n}\n\nfragment FulfillmentRequestField on FulfillmentRequest {\n id\n createdAt\n updatedAt\n state\n deliveryMethod\n handlerCode\n holdReasons {\n ...HoldReasonField\n }\n destinationAddress {\n fullName\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n }\n assignedLocation {\n id\n name\n }\n fulfillment {\n id\n state\n }\n lines {\n ...FulfillmentRequestLineField\n }\n}\n\nfragment HoldReasonField on HoldReason {\n code\n addedAt\n note\n}\n\nfragment FulfillmentRequestLineField on FulfillmentRequestLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}";
136
+ export declare const adminFulfillmentRequestsForOrderDocument = "query FulfillmentRequestsForOrder($orderId: ID!) {\n fulfillmentRequestsForOrder(orderId: $orderId) {\n ...FulfillmentRequestField\n }\n}\n\nfragment FulfillmentRequestField on FulfillmentRequest {\n id\n createdAt\n updatedAt\n state\n deliveryMethod\n handlerCode\n holdReasons {\n ...HoldReasonField\n }\n destinationAddress {\n fullName\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n }\n assignedLocation {\n id\n name\n }\n fulfillment {\n id\n state\n }\n lines {\n ...FulfillmentRequestLineField\n }\n}\n\nfragment HoldReasonField on HoldReason {\n code\n addedAt\n note\n}\n\nfragment FulfillmentRequestLineField on FulfillmentRequestLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}";
137
+ export declare const adminFulfillmentRequestNextStatesDocument = "query FulfillmentRequestNextStates($id: ID!) {\n fulfillmentRequestNextStates(id: $id)\n}";
138
+ export declare const adminAcceptFulfillmentRequestDocument = "mutation AcceptFulfillmentRequest($input: AcceptFulfillmentRequestInput!) {\n acceptFulfillmentRequest(input: $input) {\n ...FulfillmentRequestField\n }\n}\n\nfragment FulfillmentRequestField on FulfillmentRequest {\n id\n createdAt\n updatedAt\n state\n deliveryMethod\n handlerCode\n holdReasons {\n ...HoldReasonField\n }\n destinationAddress {\n fullName\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n }\n assignedLocation {\n id\n name\n }\n fulfillment {\n id\n state\n }\n lines {\n ...FulfillmentRequestLineField\n }\n}\n\nfragment HoldReasonField on HoldReason {\n code\n addedAt\n note\n}\n\nfragment FulfillmentRequestLineField on FulfillmentRequestLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}";
139
+ export declare const adminCancelFulfillmentRequestDocument = "mutation CancelFulfillmentRequest($input: CancelFulfillmentRequestInput!) {\n cancelFulfillmentRequest(input: $input) {\n ...FulfillmentRequestField\n }\n}\n\nfragment FulfillmentRequestField on FulfillmentRequest {\n id\n createdAt\n updatedAt\n state\n deliveryMethod\n handlerCode\n holdReasons {\n ...HoldReasonField\n }\n destinationAddress {\n fullName\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n }\n assignedLocation {\n id\n name\n }\n fulfillment {\n id\n state\n }\n lines {\n ...FulfillmentRequestLineField\n }\n}\n\nfragment HoldReasonField on HoldReason {\n code\n addedAt\n note\n}\n\nfragment FulfillmentRequestLineField on FulfillmentRequestLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}";
140
+ export declare const adminMoveFulfillmentRequestDocument = "mutation MoveFulfillmentRequest($input: MoveFulfillmentRequestInput!) {\n moveFulfillmentRequest(input: $input) {\n ...FulfillmentRequestField\n }\n}\n\nfragment FulfillmentRequestField on FulfillmentRequest {\n id\n createdAt\n updatedAt\n state\n deliveryMethod\n handlerCode\n holdReasons {\n ...HoldReasonField\n }\n destinationAddress {\n fullName\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n }\n assignedLocation {\n id\n name\n }\n fulfillment {\n id\n state\n }\n lines {\n ...FulfillmentRequestLineField\n }\n}\n\nfragment HoldReasonField on HoldReason {\n code\n addedAt\n note\n}\n\nfragment FulfillmentRequestLineField on FulfillmentRequestLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}";
141
+ export declare const adminSplitFulfillmentRequestDocument = "mutation SplitFulfillmentRequest($input: SplitFulfillmentRequestInput!) {\n splitFulfillmentRequest(input: $input) {\n ...FulfillmentRequestField\n }\n}\n\nfragment FulfillmentRequestField on FulfillmentRequest {\n id\n createdAt\n updatedAt\n state\n deliveryMethod\n handlerCode\n holdReasons {\n ...HoldReasonField\n }\n destinationAddress {\n fullName\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n }\n assignedLocation {\n id\n name\n }\n fulfillment {\n id\n state\n }\n lines {\n ...FulfillmentRequestLineField\n }\n}\n\nfragment HoldReasonField on HoldReason {\n code\n addedAt\n note\n}\n\nfragment FulfillmentRequestLineField on FulfillmentRequestLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}";
142
+ export declare const adminMergeFulfillmentRequestsDocument = "mutation MergeFulfillmentRequests($input: MergeFulfillmentRequestInput!) {\n mergeFulfillmentRequests(input: $input) {\n ...FulfillmentRequestField\n }\n}\n\nfragment FulfillmentRequestField on FulfillmentRequest {\n id\n createdAt\n updatedAt\n state\n deliveryMethod\n handlerCode\n holdReasons {\n ...HoldReasonField\n }\n destinationAddress {\n fullName\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n }\n assignedLocation {\n id\n name\n }\n fulfillment {\n id\n state\n }\n lines {\n ...FulfillmentRequestLineField\n }\n}\n\nfragment HoldReasonField on HoldReason {\n code\n addedAt\n note\n}\n\nfragment FulfillmentRequestLineField on FulfillmentRequestLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}";
143
+ export declare const adminAddFulfillmentRequestHoldDocument = "mutation AddFulfillmentRequestHold($input: AddFulfillmentRequestHoldInput!) {\n addFulfillmentRequestHold(input: $input) {\n ...FulfillmentRequestField\n }\n}\n\nfragment FulfillmentRequestField on FulfillmentRequest {\n id\n createdAt\n updatedAt\n state\n deliveryMethod\n handlerCode\n holdReasons {\n ...HoldReasonField\n }\n destinationAddress {\n fullName\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n }\n assignedLocation {\n id\n name\n }\n fulfillment {\n id\n state\n }\n lines {\n ...FulfillmentRequestLineField\n }\n}\n\nfragment HoldReasonField on HoldReason {\n code\n addedAt\n note\n}\n\nfragment FulfillmentRequestLineField on FulfillmentRequestLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}";
144
+ export declare const adminRemoveFulfillmentRequestHoldDocument = "mutation RemoveFulfillmentRequestHold($input: RemoveFulfillmentRequestHoldInput!) {\n removeFulfillmentRequestHold(input: $input) {\n ...FulfillmentRequestField\n }\n}\n\nfragment FulfillmentRequestField on FulfillmentRequest {\n id\n createdAt\n updatedAt\n state\n deliveryMethod\n handlerCode\n holdReasons {\n ...HoldReasonField\n }\n destinationAddress {\n fullName\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n }\n assignedLocation {\n id\n name\n }\n fulfillment {\n id\n state\n }\n lines {\n ...FulfillmentRequestLineField\n }\n}\n\nfragment HoldReasonField on HoldReason {\n code\n addedAt\n note\n}\n\nfragment FulfillmentRequestLineField on FulfillmentRequestLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}";
145
+ export declare const adminChangeFulfillmentRequestDeliveryMethodDocument = "mutation ChangeFulfillmentRequestDeliveryMethod($input: ChangeFulfillmentRequestDeliveryMethodInput!) {\n changeFulfillmentRequestDeliveryMethod(input: $input) {\n ...FulfillmentRequestField\n }\n}\n\nfragment FulfillmentRequestField on FulfillmentRequest {\n id\n createdAt\n updatedAt\n state\n deliveryMethod\n handlerCode\n holdReasons {\n ...HoldReasonField\n }\n destinationAddress {\n fullName\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n }\n assignedLocation {\n id\n name\n }\n fulfillment {\n id\n state\n }\n lines {\n ...FulfillmentRequestLineField\n }\n}\n\nfragment HoldReasonField on HoldReason {\n code\n addedAt\n note\n}\n\nfragment FulfillmentRequestLineField on FulfillmentRequestLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}";
146
+ export declare const adminCreateFulfillmentRequestsForOrderDocument = "mutation CreateFulfillmentRequestsForOrder($input: CreateFulfillmentRequestsForOrderInput!) {\n createFulfillmentRequestsForOrder(input: $input) {\n ...FulfillmentRequestField\n }\n}\n\nfragment FulfillmentRequestField on FulfillmentRequest {\n id\n createdAt\n updatedAt\n state\n deliveryMethod\n handlerCode\n holdReasons {\n ...HoldReasonField\n }\n destinationAddress {\n fullName\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n }\n assignedLocation {\n id\n name\n }\n fulfillment {\n id\n state\n }\n lines {\n ...FulfillmentRequestLineField\n }\n}\n\nfragment HoldReasonField on HoldReason {\n code\n addedAt\n note\n}\n\nfragment FulfillmentRequestLineField on FulfillmentRequestLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}";
147
+ export declare const adminFulfillmentDocument = "query Fulfillment($id: ID!) {\n fulfillment(id: $id) {\n ...FulfillmentField\n }\n}\n\nfragment FulfillmentField on Fulfillment {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n ...FulfillmentLineField\n }\n}\n\nfragment FulfillmentLineField on FulfillmentLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}";
148
+ export declare const adminFulfillmentsForOrderDocument = "query FulfillmentsForOrder($orderId: ID!) {\n fulfillmentsForOrder(orderId: $orderId) {\n ...FulfillmentField\n }\n}\n\nfragment FulfillmentField on Fulfillment {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n ...FulfillmentLineField\n }\n}\n\nfragment FulfillmentLineField on FulfillmentLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}";
149
+ export declare const adminFulfillmentNextStatesDocument = "query FulfillmentNextStates($id: ID!) {\n fulfillmentNextStates(id: $id)\n}";
150
+ export declare const adminFulfillmentHandlersDocument = "query FulfillmentHandlers {\n fulfillmentHandlers {\n code\n name\n capabilities {\n supportsTracking\n requiresShippingAddress\n autoFulfillOnPayment\n autoDeliver\n autoCreateLabel\n supportsReturn\n }\n }\n}";
151
+ export declare const adminCreateFulfillmentDocument = "mutation CreateFulfillment($input: CreateFulfillmentInput!) {\n createFulfillment(input: $input) {\n ...FulfillmentField\n }\n}\n\nfragment FulfillmentField on Fulfillment {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n ...FulfillmentLineField\n }\n}\n\nfragment FulfillmentLineField on FulfillmentLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}";
152
+ export declare const adminTransitionFulfillmentToStateDocument = "mutation TransitionFulfillmentToState($input: TransitionFulfillmentToStateInput!) {\n transitionFulfillmentToState(input: $input) {\n ...FulfillmentField\n }\n}\n\nfragment FulfillmentField on Fulfillment {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n ...FulfillmentLineField\n }\n}\n\nfragment FulfillmentLineField on FulfillmentLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}";
153
+ export declare const adminAdminHookDispatchedDocument = "subscription AdminHookDispatched($hookPoints: [String!]!) {\n hookDispatched(hookPoints: $hookPoints) {\n id\n hookPoint\n transactionToken\n subscriberId\n args\n }\n}";
154
+ export declare const adminAdminRespondToHookDispatchDocument = "mutation AdminRespondToHookDispatch($input: RespondToHookDispatchInput!) {\n respondToHookDispatch(input: $input)\n}";
155
+ export declare const adminHookListenDocument = "subscription HookListen($hookPoints: [String!]!) {\n hookDispatched(hookPoints: $hookPoints) {\n id\n hookPoint\n transactionToken\n args\n }\n}";
156
+ export declare const adminHookRespondDocument = "mutation HookRespond($input: RespondToHookDispatchInput!) {\n respondToHookDispatch(input: $input)\n}";
157
+ export declare const adminEmitDocument = "mutation Emit($input: EmitCustomEventInput!) {\n emit(input: $input)\n}";
158
+ export declare const adminAdminAttributionByOrderDocument = "query AdminAttributionByOrder($input: AttributionByOrderInput!) {\n attributionByOrder(input: $input) {\n id\n orderId\n customerId\n identityId\n lookbackDays\n totalRevenueMinor\n currencyCode\n firstTouchUtmSource\n firstTouchUtmMedium\n firstTouchUtmCampaign\n firstTouchOccurredAt\n lastTouchUtmSource\n lastTouchUtmMedium\n lastTouchUtmCampaign\n lastTouchOccurredAt\n computedAt\n reversedAt\n touchpoints {\n id\n eventId\n occurredAt\n utmSource\n utmMedium\n utmCampaign\n utmContent\n utmTerm\n source\n revenueMinor\n position\n dedupCount\n }\n touchpointsWithCredit {\n touchpoint {\n id\n eventId\n occurredAt\n utmSource\n utmMedium\n utmCampaign\n utmContent\n utmTerm\n source\n revenueMinor\n position\n dedupCount\n }\n creditWeight\n attributedRevenueMinor\n }\n }\n}";
159
+ export declare const adminAdminAttributionSourceRollupDocument = "query AdminAttributionSourceRollup($input: AttributionSourceRollupInput!) {\n attributionSourceRollup(input: $input) {\n items {\n groupKey\n attributedRevenueMinor\n conversionCount\n }\n totalItems\n totalAttributedRevenueMinor\n totalConversionCount\n model\n }\n}";
160
+ export declare const adminAdminRecomputeAttributionDocument = "mutation AdminRecomputeAttribution($orderId: ID!) {\n recomputeAttribution(orderId: $orderId) {\n id\n orderId\n lookbackDays\n totalRevenueMinor\n currencyCode\n computedAt\n lastTouchUtmSource\n lastTouchUtmMedium\n lastTouchUtmCampaign\n lastTouchOccurredAt\n }\n}";
161
+ export declare const adminAdminIngestMarketingEventDocument = "mutation AdminIngestMarketingEvent($input: IngestMarketingEventInput!) {\n ingestMarketingEvent(input: $input) {\n eventId\n accepted\n }\n}";
162
+ export declare const adminAdminQueryMarketingEventSummaryDocument = "query AdminQueryMarketingEventSummary($input: MarketingEventSummaryInput!) {\n queryMarketingEventSummary(input: $input) {\n count\n uniqueIdentities\n uniqueCustomers\n durationMs\n }\n}";
163
+ export declare const adminAdminMarketingIdentityDocument = "query AdminMarketingIdentity($id: ID!) {\n marketingIdentity(id: $id) {\n ...AdminMarketingIdentityFields\n }\n}\n\nfragment AdminMarketingIdentityFields on MarketingIdentity {\n id\n sessionToken\n customerId\n email\n emailSha256\n phone\n phoneSha256\n ipAddress\n userAgent\n country\n region\n city\n postalCode\n deviceType\n os\n browser\n firstSeenAt\n lastSeenAt\n createdAt\n updatedAt\n identifiers {\n ...AdminMarketingIdentityIdentifierFields\n }\n}\n\nfragment AdminMarketingIdentityIdentifierFields on MarketingIdentityIdentifier {\n id\n key\n value\n capturedAt\n position\n}";
164
+ export declare const adminAdminMarketingIdentityByCustomerDocument = "query AdminMarketingIdentityByCustomer($customerId: ID!) {\n marketingIdentityByCustomer(customerId: $customerId) {\n ...AdminMarketingIdentityFields\n }\n}\n\nfragment AdminMarketingIdentityFields on MarketingIdentity {\n id\n sessionToken\n customerId\n email\n emailSha256\n phone\n phoneSha256\n ipAddress\n userAgent\n country\n region\n city\n postalCode\n deviceType\n os\n browser\n firstSeenAt\n lastSeenAt\n createdAt\n updatedAt\n identifiers {\n ...AdminMarketingIdentityIdentifierFields\n }\n}\n\nfragment AdminMarketingIdentityIdentifierFields on MarketingIdentityIdentifier {\n id\n key\n value\n capturedAt\n position\n}";
165
+ export declare const adminActiveOnboardingDocument = "query ActiveOnboarding {\n activeOnboarding {\n onboarding {\n id\n currentStep\n completedAt\n createdAt\n updatedAt\n }\n administrator {\n ...AdministratorField\n }\n profileStep {\n id\n firstName\n lastName\n avatarUrl\n completedAt\n }\n shopStep {\n id\n shopName\n defaultLanguageCode\n defaultCurrencyCode\n completedAt\n }\n }\n}\n\nfragment AdministratorField on Administrator {\n id\n createdAt\n updatedAt\n firstName\n lastName\n emailAddress\n userId\n avatarUrl\n user {\n primaryAuthStrategy\n }\n}";
166
+ export declare const adminUpdateProfileDocument = "mutation UpdateProfile($input: UpdateOnboardingProfileInput!) {\n updateOnboardingProfile(input: $input) {\n onboarding {\n id\n currentStep\n completedAt\n }\n administrator {\n ...AdministratorField\n }\n profileStep {\n id\n firstName\n lastName\n avatarUrl\n completedAt\n }\n shopStep {\n id\n shopName\n defaultLanguageCode\n defaultCurrencyCode\n completedAt\n }\n }\n}\n\nfragment AdministratorField on Administrator {\n id\n createdAt\n updatedAt\n firstName\n lastName\n emailAddress\n userId\n avatarUrl\n user {\n primaryAuthStrategy\n }\n}";
167
+ export declare const adminCompleteShopDocument = "mutation CompleteShop($input: CompleteOnboardingShopInput!) {\n completeOnboardingShop(input: $input) {\n administrator {\n ...AdministratorField\n }\n channel {\n id\n code\n token\n }\n onboarding {\n id\n currentStep\n completedAt\n }\n }\n}\n\nfragment AdministratorField on Administrator {\n id\n createdAt\n updatedAt\n firstName\n lastName\n emailAddress\n userId\n avatarUrl\n user {\n primaryAuthStrategy\n }\n}";
168
+ export declare const adminOrderApplyCodeCouponDocument = "mutation OrderApplyCodeCoupon($input: OrderCouponCodeInput!) {\n applyCouponCode(input: $input) {\n ...OrderField\n }\n}\n\nfragment OrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n draftComplete\n preModificationState\n version\n billingAddress {\n ...OrderAddressField\n }\n shippingAddress {\n ...OrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...OrderLineField\n }\n payments {\n ...PaymentField\n }\n fulfillments {\n ...FulfillmentField\n }\n shippingLines {\n ...ShippingLineField\n }\n surcharges {\n ...SurchargeField\n }\n modifications {\n ...OrderModificationField\n }\n promotions {\n id\n }\n discounts {\n ...DiscountField\n }\n taxSummary {\n ...TaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...PaymentTokenField\n }\n history {\n items {\n ...HistoryEntryField\n }\n totalItems\n }\n}\n\nfragment OrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment OrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n snapshot {\n id\n createdAt\n updatedAt\n productName\n variantName\n sku\n imageUrl\n price\n priceWithTax\n }\n}\n\nfragment AdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment TaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment PaymentField on Payment {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n ...RefundField\n }\n}\n\nfragment RefundField on Refund {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n lines {\n ...RefundLineField\n }\n}\n\nfragment RefundLineField on RefundLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment FulfillmentField on Fulfillment {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n ...FulfillmentLineField\n }\n}\n\nfragment FulfillmentLineField on FulfillmentLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment SurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment OrderModificationField on OrderModification {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n ...SurchargeField\n }\n payment {\n ...PaymentField\n }\n refund {\n ...RefundField\n }\n}\n\nfragment DiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment TaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment PaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}\n\nfragment HistoryEntryField on HistoryEntry {\n id\n createdAt\n updatedAt\n type\n isPublic\n data\n administrator {\n id\n }\n}";
169
+ export declare const adminOrderRemoveCouponDocument = "mutation OrderRemoveCoupon($input: OrderCouponCodeInput!) {\n removeCouponCode(input: $input) {\n ...OrderField\n }\n}\n\nfragment OrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n draftComplete\n preModificationState\n version\n billingAddress {\n ...OrderAddressField\n }\n shippingAddress {\n ...OrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...OrderLineField\n }\n payments {\n ...PaymentField\n }\n fulfillments {\n ...FulfillmentField\n }\n shippingLines {\n ...ShippingLineField\n }\n surcharges {\n ...SurchargeField\n }\n modifications {\n ...OrderModificationField\n }\n promotions {\n id\n }\n discounts {\n ...DiscountField\n }\n taxSummary {\n ...TaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...PaymentTokenField\n }\n history {\n items {\n ...HistoryEntryField\n }\n totalItems\n }\n}\n\nfragment OrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment OrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n snapshot {\n id\n createdAt\n updatedAt\n productName\n variantName\n sku\n imageUrl\n price\n priceWithTax\n }\n}\n\nfragment AdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment TaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment PaymentField on Payment {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n ...RefundField\n }\n}\n\nfragment RefundField on Refund {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n lines {\n ...RefundLineField\n }\n}\n\nfragment RefundLineField on RefundLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment FulfillmentField on Fulfillment {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n ...FulfillmentLineField\n }\n}\n\nfragment FulfillmentLineField on FulfillmentLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment SurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment OrderModificationField on OrderModification {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n ...SurchargeField\n }\n payment {\n ...PaymentField\n }\n refund {\n ...RefundField\n }\n}\n\nfragment DiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment TaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment PaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}\n\nfragment HistoryEntryField on HistoryEntry {\n id\n createdAt\n updatedAt\n type\n isPublic\n data\n administrator {\n id\n }\n}";
170
+ export declare const adminOrderCreateDraftDocument = "mutation OrderCreateDraft {\n createDraftOrder {\n ...OrderField\n }\n}\n\nfragment OrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n draftComplete\n preModificationState\n version\n billingAddress {\n ...OrderAddressField\n }\n shippingAddress {\n ...OrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...OrderLineField\n }\n payments {\n ...PaymentField\n }\n fulfillments {\n ...FulfillmentField\n }\n shippingLines {\n ...ShippingLineField\n }\n surcharges {\n ...SurchargeField\n }\n modifications {\n ...OrderModificationField\n }\n promotions {\n id\n }\n discounts {\n ...DiscountField\n }\n taxSummary {\n ...TaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...PaymentTokenField\n }\n history {\n items {\n ...HistoryEntryField\n }\n totalItems\n }\n}\n\nfragment OrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment OrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n snapshot {\n id\n createdAt\n updatedAt\n productName\n variantName\n sku\n imageUrl\n price\n priceWithTax\n }\n}\n\nfragment AdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment TaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment PaymentField on Payment {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n ...RefundField\n }\n}\n\nfragment RefundField on Refund {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n lines {\n ...RefundLineField\n }\n}\n\nfragment RefundLineField on RefundLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment FulfillmentField on Fulfillment {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n ...FulfillmentLineField\n }\n}\n\nfragment FulfillmentLineField on FulfillmentLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment SurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment OrderModificationField on OrderModification {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n ...SurchargeField\n }\n payment {\n ...PaymentField\n }\n refund {\n ...RefundField\n }\n}\n\nfragment DiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment TaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment PaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}\n\nfragment HistoryEntryField on HistoryEntry {\n id\n createdAt\n updatedAt\n type\n isPublic\n data\n administrator {\n id\n }\n}";
171
+ export declare const adminOrderDeleteDraftDocument = "mutation OrderDeleteDraft($orderId: ID!) {\n deleteDraftOrder(orderId: $orderId) {\n result\n message\n }\n}";
172
+ export declare const adminOrderCompleteDraftDocument = "mutation OrderCompleteDraft($input: CompleteDraftInput!) {\n completeDraft(input: $input) {\n ...OrderField\n }\n}\n\nfragment OrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n draftComplete\n preModificationState\n version\n billingAddress {\n ...OrderAddressField\n }\n shippingAddress {\n ...OrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...OrderLineField\n }\n payments {\n ...PaymentField\n }\n fulfillments {\n ...FulfillmentField\n }\n shippingLines {\n ...ShippingLineField\n }\n surcharges {\n ...SurchargeField\n }\n modifications {\n ...OrderModificationField\n }\n promotions {\n id\n }\n discounts {\n ...DiscountField\n }\n taxSummary {\n ...TaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...PaymentTokenField\n }\n history {\n items {\n ...HistoryEntryField\n }\n totalItems\n }\n}\n\nfragment OrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment OrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n snapshot {\n id\n createdAt\n updatedAt\n productName\n variantName\n sku\n imageUrl\n price\n priceWithTax\n }\n}\n\nfragment AdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment TaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment PaymentField on Payment {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n ...RefundField\n }\n}\n\nfragment RefundField on Refund {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n lines {\n ...RefundLineField\n }\n}\n\nfragment RefundLineField on RefundLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment FulfillmentField on Fulfillment {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n ...FulfillmentLineField\n }\n}\n\nfragment FulfillmentLineField on FulfillmentLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment SurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment OrderModificationField on OrderModification {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n ...SurchargeField\n }\n payment {\n ...PaymentField\n }\n refund {\n ...RefundField\n }\n}\n\nfragment DiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment TaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment PaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}\n\nfragment HistoryEntryField on HistoryEntry {\n id\n createdAt\n updatedAt\n type\n isPublic\n data\n administrator {\n id\n }\n}";
173
+ export declare const adminOrderSetCustomerDraftDocument = "mutation OrderSetCustomerDraft($input: SetCustomerForDraftOrderInput!) {\n setCustomerForDraftOrder(input: $input) {\n ...OrderField\n }\n}\n\nfragment OrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n draftComplete\n preModificationState\n version\n billingAddress {\n ...OrderAddressField\n }\n shippingAddress {\n ...OrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...OrderLineField\n }\n payments {\n ...PaymentField\n }\n fulfillments {\n ...FulfillmentField\n }\n shippingLines {\n ...ShippingLineField\n }\n surcharges {\n ...SurchargeField\n }\n modifications {\n ...OrderModificationField\n }\n promotions {\n id\n }\n discounts {\n ...DiscountField\n }\n taxSummary {\n ...TaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...PaymentTokenField\n }\n history {\n items {\n ...HistoryEntryField\n }\n totalItems\n }\n}\n\nfragment OrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment OrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n snapshot {\n id\n createdAt\n updatedAt\n productName\n variantName\n sku\n imageUrl\n price\n priceWithTax\n }\n}\n\nfragment AdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment TaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment PaymentField on Payment {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n ...RefundField\n }\n}\n\nfragment RefundField on Refund {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n lines {\n ...RefundLineField\n }\n}\n\nfragment RefundLineField on RefundLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment FulfillmentField on Fulfillment {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n ...FulfillmentLineField\n }\n}\n\nfragment FulfillmentLineField on FulfillmentLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment SurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment OrderModificationField on OrderModification {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n ...SurchargeField\n }\n payment {\n ...PaymentField\n }\n refund {\n ...RefundField\n }\n}\n\nfragment DiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment TaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment PaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}\n\nfragment HistoryEntryField on HistoryEntry {\n id\n createdAt\n updatedAt\n type\n isPublic\n data\n administrator {\n id\n }\n}";
174
+ export declare const adminOrderModificationsDocument = "query OrderModifications($orderId: ID!) {\n orderModifications(orderId: $orderId) {\n ...OrderModificationField\n }\n}\n\nfragment OrderModificationField on OrderModification {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n ...SurchargeField\n }\n payment {\n ...PaymentField\n }\n refund {\n ...RefundField\n }\n}\n\nfragment SurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment TaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment PaymentField on Payment {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n ...RefundField\n }\n}\n\nfragment RefundField on Refund {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n lines {\n ...RefundLineField\n }\n}\n\nfragment RefundLineField on RefundLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}";
175
+ export declare const adminOrderModifyModificationDocument = "mutation OrderModifyModification($input: ModifyOrderInput!) {\n modifyOrder(input: $input) {\n order {\n ...OrderField\n }\n modification {\n ...OrderModificationField\n }\n }\n}\n\nfragment OrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n draftComplete\n preModificationState\n version\n billingAddress {\n ...OrderAddressField\n }\n shippingAddress {\n ...OrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...OrderLineField\n }\n payments {\n ...PaymentField\n }\n fulfillments {\n ...FulfillmentField\n }\n shippingLines {\n ...ShippingLineField\n }\n surcharges {\n ...SurchargeField\n }\n modifications {\n ...OrderModificationField\n }\n promotions {\n id\n }\n discounts {\n ...DiscountField\n }\n taxSummary {\n ...TaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...PaymentTokenField\n }\n history {\n items {\n ...HistoryEntryField\n }\n totalItems\n }\n}\n\nfragment OrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment OrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n snapshot {\n id\n createdAt\n updatedAt\n productName\n variantName\n sku\n imageUrl\n price\n priceWithTax\n }\n}\n\nfragment AdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment TaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment PaymentField on Payment {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n ...RefundField\n }\n}\n\nfragment RefundField on Refund {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n lines {\n ...RefundLineField\n }\n}\n\nfragment RefundLineField on RefundLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment FulfillmentField on Fulfillment {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n ...FulfillmentLineField\n }\n}\n\nfragment FulfillmentLineField on FulfillmentLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment SurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment OrderModificationField on OrderModification {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n ...SurchargeField\n }\n payment {\n ...PaymentField\n }\n refund {\n ...RefundField\n }\n}\n\nfragment DiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment TaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment PaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}\n\nfragment HistoryEntryField on HistoryEntry {\n id\n createdAt\n updatedAt\n type\n isPublic\n data\n administrator {\n id\n }\n}";
176
+ export declare const adminOrderCancelModificationDocument = "mutation OrderCancelModification($input: CancelOrderInput!) {\n cancelOrder(input: $input) {\n ...OrderField\n }\n}\n\nfragment OrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n draftComplete\n preModificationState\n version\n billingAddress {\n ...OrderAddressField\n }\n shippingAddress {\n ...OrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...OrderLineField\n }\n payments {\n ...PaymentField\n }\n fulfillments {\n ...FulfillmentField\n }\n shippingLines {\n ...ShippingLineField\n }\n surcharges {\n ...SurchargeField\n }\n modifications {\n ...OrderModificationField\n }\n promotions {\n id\n }\n discounts {\n ...DiscountField\n }\n taxSummary {\n ...TaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...PaymentTokenField\n }\n history {\n items {\n ...HistoryEntryField\n }\n totalItems\n }\n}\n\nfragment OrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment OrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n snapshot {\n id\n createdAt\n updatedAt\n productName\n variantName\n sku\n imageUrl\n price\n priceWithTax\n }\n}\n\nfragment AdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment TaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment PaymentField on Payment {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n ...RefundField\n }\n}\n\nfragment RefundField on Refund {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n lines {\n ...RefundLineField\n }\n}\n\nfragment RefundLineField on RefundLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment FulfillmentField on Fulfillment {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n ...FulfillmentLineField\n }\n}\n\nfragment FulfillmentLineField on FulfillmentLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment SurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment OrderModificationField on OrderModification {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n ...SurchargeField\n }\n payment {\n ...PaymentField\n }\n refund {\n ...RefundField\n }\n}\n\nfragment DiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment TaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment PaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}\n\nfragment HistoryEntryField on HistoryEntry {\n id\n createdAt\n updatedAt\n type\n isPublic\n data\n administrator {\n id\n }\n}";
177
+ export declare const adminOrderRefundModificationDocument = "mutation OrderRefundModification($input: RefundOrderInput!) {\n refundOrder(input: $input) {\n ...RefundField\n }\n}\n\nfragment RefundField on Refund {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n lines {\n ...RefundLineField\n }\n}\n\nfragment RefundLineField on RefundLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}";
178
+ export declare const adminOrderSettleRefundModificationDocument = "mutation OrderSettleRefundModification($input: SettleRefundInput!) {\n settleRefund(input: $input) {\n ...RefundField\n }\n}\n\nfragment RefundField on Refund {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n lines {\n ...RefundLineField\n }\n}\n\nfragment RefundLineField on RefundLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}";
179
+ export declare const adminOrderCreateNoteDocument = "mutation OrderCreateNote($input: AddNoteToOrderInput!) {\n addNoteToOrder(input: $input) {\n ...HistoryEntryField\n }\n}\n\nfragment HistoryEntryField on HistoryEntry {\n id\n createdAt\n updatedAt\n type\n isPublic\n data\n administrator {\n id\n }\n}";
180
+ export declare const adminOrderUpdateNoteDocument = "mutation OrderUpdateNote($input: UpdateOrderNoteInput!) {\n updateOrderNote(input: $input) {\n ...HistoryEntryField\n }\n}\n\nfragment HistoryEntryField on HistoryEntry {\n id\n createdAt\n updatedAt\n type\n isPublic\n data\n administrator {\n id\n }\n}";
181
+ export declare const adminOrderDeleteNoteDocument = "mutation OrderDeleteNote($id: ID!) {\n deleteOrderNote(id: $id) {\n result\n message\n }\n}";
182
+ export declare const adminModifyOrderDocument = "mutation ModifyOrder($input: ModifyOrderInput!) {\n modifyOrder(input: $input) {\n order {\n ...OrderField\n }\n modification {\n ...OrderModificationField\n }\n }\n}\n\nfragment OrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n draftComplete\n preModificationState\n version\n billingAddress {\n ...OrderAddressField\n }\n shippingAddress {\n ...OrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...OrderLineField\n }\n payments {\n ...PaymentField\n }\n fulfillments {\n ...FulfillmentField\n }\n shippingLines {\n ...ShippingLineField\n }\n surcharges {\n ...SurchargeField\n }\n modifications {\n ...OrderModificationField\n }\n promotions {\n id\n }\n discounts {\n ...DiscountField\n }\n taxSummary {\n ...TaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...PaymentTokenField\n }\n history {\n items {\n ...HistoryEntryField\n }\n totalItems\n }\n}\n\nfragment OrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment OrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n snapshot {\n id\n createdAt\n updatedAt\n productName\n variantName\n sku\n imageUrl\n price\n priceWithTax\n }\n}\n\nfragment AdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment TaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment PaymentField on Payment {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n ...RefundField\n }\n}\n\nfragment RefundField on Refund {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n lines {\n ...RefundLineField\n }\n}\n\nfragment RefundLineField on RefundLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment FulfillmentField on Fulfillment {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n ...FulfillmentLineField\n }\n}\n\nfragment FulfillmentLineField on FulfillmentLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment SurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment OrderModificationField on OrderModification {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n ...SurchargeField\n }\n payment {\n ...PaymentField\n }\n refund {\n ...RefundField\n }\n}\n\nfragment DiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment TaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment PaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}\n\nfragment HistoryEntryField on HistoryEntry {\n id\n createdAt\n updatedAt\n type\n isPublic\n data\n administrator {\n id\n }\n}";
183
+ export declare const adminCancelOrderDocument = "mutation CancelOrder($input: CancelOrderInput!) {\n cancelOrder(input: $input) {\n ...OrderField\n }\n}\n\nfragment OrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n draftComplete\n preModificationState\n version\n billingAddress {\n ...OrderAddressField\n }\n shippingAddress {\n ...OrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...OrderLineField\n }\n payments {\n ...PaymentField\n }\n fulfillments {\n ...FulfillmentField\n }\n shippingLines {\n ...ShippingLineField\n }\n surcharges {\n ...SurchargeField\n }\n modifications {\n ...OrderModificationField\n }\n promotions {\n id\n }\n discounts {\n ...DiscountField\n }\n taxSummary {\n ...TaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...PaymentTokenField\n }\n history {\n items {\n ...HistoryEntryField\n }\n totalItems\n }\n}\n\nfragment OrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment OrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n snapshot {\n id\n createdAt\n updatedAt\n productName\n variantName\n sku\n imageUrl\n price\n priceWithTax\n }\n}\n\nfragment AdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment TaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment PaymentField on Payment {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n ...RefundField\n }\n}\n\nfragment RefundField on Refund {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n lines {\n ...RefundLineField\n }\n}\n\nfragment RefundLineField on RefundLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment FulfillmentField on Fulfillment {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n ...FulfillmentLineField\n }\n}\n\nfragment FulfillmentLineField on FulfillmentLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment SurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment OrderModificationField on OrderModification {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n ...SurchargeField\n }\n payment {\n ...PaymentField\n }\n refund {\n ...RefundField\n }\n}\n\nfragment DiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment TaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment PaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}\n\nfragment HistoryEntryField on HistoryEntry {\n id\n createdAt\n updatedAt\n type\n isPublic\n data\n administrator {\n id\n }\n}";
184
+ export declare const adminRefundOrderDocument = "mutation RefundOrder($input: RefundOrderInput!) {\n refundOrder(input: $input) {\n ...RefundField\n }\n}\n\nfragment RefundField on Refund {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n lines {\n ...RefundLineField\n }\n}\n\nfragment RefundLineField on RefundLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}";
185
+ export declare const adminSettleRefundDocument = "mutation SettleRefund($input: SettleRefundInput!) {\n settleRefund(input: $input) {\n ...RefundField\n }\n}\n\nfragment RefundField on Refund {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n lines {\n ...RefundLineField\n }\n}\n\nfragment RefundLineField on RefundLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}";
186
+ export declare const adminOrderDocument = "query Order($id: ID!) {\n order(id: $id) {\n ...OrderField\n }\n}\n\nfragment OrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n draftComplete\n preModificationState\n version\n billingAddress {\n ...OrderAddressField\n }\n shippingAddress {\n ...OrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...OrderLineField\n }\n payments {\n ...PaymentField\n }\n fulfillments {\n ...FulfillmentField\n }\n shippingLines {\n ...ShippingLineField\n }\n surcharges {\n ...SurchargeField\n }\n modifications {\n ...OrderModificationField\n }\n promotions {\n id\n }\n discounts {\n ...DiscountField\n }\n taxSummary {\n ...TaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...PaymentTokenField\n }\n history {\n items {\n ...HistoryEntryField\n }\n totalItems\n }\n}\n\nfragment OrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment OrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n snapshot {\n id\n createdAt\n updatedAt\n productName\n variantName\n sku\n imageUrl\n price\n priceWithTax\n }\n}\n\nfragment AdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment TaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment PaymentField on Payment {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n ...RefundField\n }\n}\n\nfragment RefundField on Refund {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n lines {\n ...RefundLineField\n }\n}\n\nfragment RefundLineField on RefundLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment FulfillmentField on Fulfillment {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n ...FulfillmentLineField\n }\n}\n\nfragment FulfillmentLineField on FulfillmentLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment SurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment OrderModificationField on OrderModification {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n ...SurchargeField\n }\n payment {\n ...PaymentField\n }\n refund {\n ...RefundField\n }\n}\n\nfragment DiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment TaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment PaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}\n\nfragment HistoryEntryField on HistoryEntry {\n id\n createdAt\n updatedAt\n type\n isPublic\n data\n administrator {\n id\n }\n}";
187
+ export declare const adminOrdersDocument = "query Orders($options: ListQueryOptions) {\n orders(options: $options) {\n items {\n ...OrderField\n }\n totalItems\n }\n}\n\nfragment OrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n draftComplete\n preModificationState\n version\n billingAddress {\n ...OrderAddressField\n }\n shippingAddress {\n ...OrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...OrderLineField\n }\n payments {\n ...PaymentField\n }\n fulfillments {\n ...FulfillmentField\n }\n shippingLines {\n ...ShippingLineField\n }\n surcharges {\n ...SurchargeField\n }\n modifications {\n ...OrderModificationField\n }\n promotions {\n id\n }\n discounts {\n ...DiscountField\n }\n taxSummary {\n ...TaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...PaymentTokenField\n }\n history {\n items {\n ...HistoryEntryField\n }\n totalItems\n }\n}\n\nfragment OrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment OrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n snapshot {\n id\n createdAt\n updatedAt\n productName\n variantName\n sku\n imageUrl\n price\n priceWithTax\n }\n}\n\nfragment AdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment TaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment PaymentField on Payment {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n ...RefundField\n }\n}\n\nfragment RefundField on Refund {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n lines {\n ...RefundLineField\n }\n}\n\nfragment RefundLineField on RefundLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment FulfillmentField on Fulfillment {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n ...FulfillmentLineField\n }\n}\n\nfragment FulfillmentLineField on FulfillmentLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment SurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment OrderModificationField on OrderModification {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n ...SurchargeField\n }\n payment {\n ...PaymentField\n }\n refund {\n ...RefundField\n }\n}\n\nfragment DiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment TaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment PaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}\n\nfragment HistoryEntryField on HistoryEntry {\n id\n createdAt\n updatedAt\n type\n isPublic\n data\n administrator {\n id\n }\n}";
188
+ export declare const adminOrderByCodeDocument = "query OrderByCode($code: String!) {\n orderByCode(code: $code) {\n ...OrderField\n }\n}\n\nfragment OrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n draftComplete\n preModificationState\n version\n billingAddress {\n ...OrderAddressField\n }\n shippingAddress {\n ...OrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...OrderLineField\n }\n payments {\n ...PaymentField\n }\n fulfillments {\n ...FulfillmentField\n }\n shippingLines {\n ...ShippingLineField\n }\n surcharges {\n ...SurchargeField\n }\n modifications {\n ...OrderModificationField\n }\n promotions {\n id\n }\n discounts {\n ...DiscountField\n }\n taxSummary {\n ...TaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...PaymentTokenField\n }\n history {\n items {\n ...HistoryEntryField\n }\n totalItems\n }\n}\n\nfragment OrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment OrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n snapshot {\n id\n createdAt\n updatedAt\n productName\n variantName\n sku\n imageUrl\n price\n priceWithTax\n }\n}\n\nfragment AdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment TaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment PaymentField on Payment {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n ...RefundField\n }\n}\n\nfragment RefundField on Refund {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n lines {\n ...RefundLineField\n }\n}\n\nfragment RefundLineField on RefundLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment FulfillmentField on Fulfillment {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n ...FulfillmentLineField\n }\n}\n\nfragment FulfillmentLineField on FulfillmentLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment SurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment OrderModificationField on OrderModification {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n ...SurchargeField\n }\n payment {\n ...PaymentField\n }\n refund {\n ...RefundField\n }\n}\n\nfragment DiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment TaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment PaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}\n\nfragment HistoryEntryField on HistoryEntry {\n id\n createdAt\n updatedAt\n type\n isPublic\n data\n administrator {\n id\n }\n}";
189
+ export declare const adminGetNextOrderStatesDocument = "query GetNextOrderStates($id: ID!) {\n getNextOrderStates(id: $id)\n}";
190
+ export declare const adminTransitionOrderToStateDocument = "mutation TransitionOrderToState($input: TransitionOrderInput!) {\n transitionOrderToState(input: $input) {\n ...OrderField\n }\n}\n\nfragment OrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n draftComplete\n preModificationState\n version\n billingAddress {\n ...OrderAddressField\n }\n shippingAddress {\n ...OrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...OrderLineField\n }\n payments {\n ...PaymentField\n }\n fulfillments {\n ...FulfillmentField\n }\n shippingLines {\n ...ShippingLineField\n }\n surcharges {\n ...SurchargeField\n }\n modifications {\n ...OrderModificationField\n }\n promotions {\n id\n }\n discounts {\n ...DiscountField\n }\n taxSummary {\n ...TaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...PaymentTokenField\n }\n history {\n items {\n ...HistoryEntryField\n }\n totalItems\n }\n}\n\nfragment OrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment OrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n snapshot {\n id\n createdAt\n updatedAt\n productName\n variantName\n sku\n imageUrl\n price\n priceWithTax\n }\n}\n\nfragment AdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment TaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment PaymentField on Payment {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n ...RefundField\n }\n}\n\nfragment RefundField on Refund {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n lines {\n ...RefundLineField\n }\n}\n\nfragment RefundLineField on RefundLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment FulfillmentField on Fulfillment {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n ...FulfillmentLineField\n }\n}\n\nfragment FulfillmentLineField on FulfillmentLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment SurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment OrderModificationField on OrderModification {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n ...SurchargeField\n }\n payment {\n ...PaymentField\n }\n refund {\n ...RefundField\n }\n}\n\nfragment DiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment TaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment PaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}\n\nfragment HistoryEntryField on HistoryEntry {\n id\n createdAt\n updatedAt\n type\n isPublic\n data\n administrator {\n id\n }\n}";
191
+ export declare const adminAddNoteToOrderDocument = "mutation AddNoteToOrder($input: AddNoteToOrderInput!) {\n addNoteToOrder(input: $input) {\n ...HistoryEntryField\n }\n}\n\nfragment HistoryEntryField on HistoryEntry {\n id\n createdAt\n updatedAt\n type\n isPublic\n data\n administrator {\n id\n }\n}";
192
+ export declare const adminUpdateOrderNoteDocument = "mutation UpdateOrderNote($input: UpdateOrderNoteInput!) {\n updateOrderNote(input: $input) {\n ...HistoryEntryField\n }\n}\n\nfragment HistoryEntryField on HistoryEntry {\n id\n createdAt\n updatedAt\n type\n isPublic\n data\n administrator {\n id\n }\n}";
193
+ export declare const adminDeleteOrderNoteDocument = "mutation DeleteOrderNote($id: ID!) {\n deleteOrderNote(id: $id) {\n result\n message\n }\n}";
194
+ export declare const adminOrderHistoryDocument = "query OrderHistory($input: OrderHistoryInput!) {\n orderHistory(input: $input) {\n items {\n ...HistoryEntryField\n }\n totalItems\n }\n}\n\nfragment HistoryEntryField on HistoryEntry {\n id\n createdAt\n updatedAt\n type\n isPublic\n data\n administrator {\n id\n }\n}";
195
+ export declare const adminOrderNotesDocument = "query OrderNotes($input: OrderNotesInput!) {\n orderNotes(input: $input) {\n items {\n ...HistoryEntryField\n }\n totalItems\n }\n}\n\nfragment HistoryEntryField on HistoryEntry {\n id\n createdAt\n updatedAt\n type\n isPublic\n data\n administrator {\n id\n }\n}";
196
+ export declare const adminCreateDraftOrderDocument = "mutation CreateDraftOrder {\n createDraftOrder {\n ...OrderField\n }\n}\n\nfragment OrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n draftComplete\n preModificationState\n version\n billingAddress {\n ...OrderAddressField\n }\n shippingAddress {\n ...OrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...OrderLineField\n }\n payments {\n ...PaymentField\n }\n fulfillments {\n ...FulfillmentField\n }\n shippingLines {\n ...ShippingLineField\n }\n surcharges {\n ...SurchargeField\n }\n modifications {\n ...OrderModificationField\n }\n promotions {\n id\n }\n discounts {\n ...DiscountField\n }\n taxSummary {\n ...TaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...PaymentTokenField\n }\n history {\n items {\n ...HistoryEntryField\n }\n totalItems\n }\n}\n\nfragment OrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment OrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n snapshot {\n id\n createdAt\n updatedAt\n productName\n variantName\n sku\n imageUrl\n price\n priceWithTax\n }\n}\n\nfragment AdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment TaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment PaymentField on Payment {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n ...RefundField\n }\n}\n\nfragment RefundField on Refund {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n lines {\n ...RefundLineField\n }\n}\n\nfragment RefundLineField on RefundLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment FulfillmentField on Fulfillment {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n ...FulfillmentLineField\n }\n}\n\nfragment FulfillmentLineField on FulfillmentLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment SurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment OrderModificationField on OrderModification {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n ...SurchargeField\n }\n payment {\n ...PaymentField\n }\n refund {\n ...RefundField\n }\n}\n\nfragment DiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment TaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment PaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}\n\nfragment HistoryEntryField on HistoryEntry {\n id\n createdAt\n updatedAt\n type\n isPublic\n data\n administrator {\n id\n }\n}";
197
+ export declare const adminDeleteDraftOrderDocument = "mutation DeleteDraftOrder($orderId: ID!) {\n deleteDraftOrder(orderId: $orderId) {\n result\n message\n }\n}";
198
+ export declare const adminCompleteDraftDocument = "mutation CompleteDraft($input: CompleteDraftInput!) {\n completeDraft(input: $input) {\n ...OrderField\n }\n}\n\nfragment OrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n draftComplete\n preModificationState\n version\n billingAddress {\n ...OrderAddressField\n }\n shippingAddress {\n ...OrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...OrderLineField\n }\n payments {\n ...PaymentField\n }\n fulfillments {\n ...FulfillmentField\n }\n shippingLines {\n ...ShippingLineField\n }\n surcharges {\n ...SurchargeField\n }\n modifications {\n ...OrderModificationField\n }\n promotions {\n id\n }\n discounts {\n ...DiscountField\n }\n taxSummary {\n ...TaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...PaymentTokenField\n }\n history {\n items {\n ...HistoryEntryField\n }\n totalItems\n }\n}\n\nfragment OrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment OrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n snapshot {\n id\n createdAt\n updatedAt\n productName\n variantName\n sku\n imageUrl\n price\n priceWithTax\n }\n}\n\nfragment AdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment TaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment PaymentField on Payment {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n ...RefundField\n }\n}\n\nfragment RefundField on Refund {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n lines {\n ...RefundLineField\n }\n}\n\nfragment RefundLineField on RefundLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment FulfillmentField on Fulfillment {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n ...FulfillmentLineField\n }\n}\n\nfragment FulfillmentLineField on FulfillmentLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment SurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment OrderModificationField on OrderModification {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n ...SurchargeField\n }\n payment {\n ...PaymentField\n }\n refund {\n ...RefundField\n }\n}\n\nfragment DiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment TaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment PaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}\n\nfragment HistoryEntryField on HistoryEntry {\n id\n createdAt\n updatedAt\n type\n isPublic\n data\n administrator {\n id\n }\n}";
199
+ export declare const adminAddItemsToOrderDocument = "mutation AddItemsToOrder($input: AddItemsToOrderInput!) {\n addItemsToOrder(input: $input) {\n order {\n ...OrderField\n }\n errors {\n index\n errorCode\n variables\n }\n }\n}\n\nfragment OrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n draftComplete\n preModificationState\n version\n billingAddress {\n ...OrderAddressField\n }\n shippingAddress {\n ...OrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...OrderLineField\n }\n payments {\n ...PaymentField\n }\n fulfillments {\n ...FulfillmentField\n }\n shippingLines {\n ...ShippingLineField\n }\n surcharges {\n ...SurchargeField\n }\n modifications {\n ...OrderModificationField\n }\n promotions {\n id\n }\n discounts {\n ...DiscountField\n }\n taxSummary {\n ...TaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...PaymentTokenField\n }\n history {\n items {\n ...HistoryEntryField\n }\n totalItems\n }\n}\n\nfragment OrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment OrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n snapshot {\n id\n createdAt\n updatedAt\n productName\n variantName\n sku\n imageUrl\n price\n priceWithTax\n }\n}\n\nfragment AdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment TaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment PaymentField on Payment {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n ...RefundField\n }\n}\n\nfragment RefundField on Refund {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n lines {\n ...RefundLineField\n }\n}\n\nfragment RefundLineField on RefundLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment FulfillmentField on Fulfillment {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n ...FulfillmentLineField\n }\n}\n\nfragment FulfillmentLineField on FulfillmentLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment SurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment OrderModificationField on OrderModification {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n ...SurchargeField\n }\n payment {\n ...PaymentField\n }\n refund {\n ...RefundField\n }\n}\n\nfragment DiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment TaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment PaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}\n\nfragment HistoryEntryField on HistoryEntry {\n id\n createdAt\n updatedAt\n type\n isPublic\n data\n administrator {\n id\n }\n}";
200
+ export declare const adminAdjustOrderLinesDocument = "mutation AdjustOrderLines($input: AdjustOrderLinesInput!) {\n adjustOrderLines(input: $input) {\n order {\n ...OrderField\n }\n errors {\n index\n errorCode\n variables\n }\n }\n}\n\nfragment OrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n draftComplete\n preModificationState\n version\n billingAddress {\n ...OrderAddressField\n }\n shippingAddress {\n ...OrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...OrderLineField\n }\n payments {\n ...PaymentField\n }\n fulfillments {\n ...FulfillmentField\n }\n shippingLines {\n ...ShippingLineField\n }\n surcharges {\n ...SurchargeField\n }\n modifications {\n ...OrderModificationField\n }\n promotions {\n id\n }\n discounts {\n ...DiscountField\n }\n taxSummary {\n ...TaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...PaymentTokenField\n }\n history {\n items {\n ...HistoryEntryField\n }\n totalItems\n }\n}\n\nfragment OrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment OrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n snapshot {\n id\n createdAt\n updatedAt\n productName\n variantName\n sku\n imageUrl\n price\n priceWithTax\n }\n}\n\nfragment AdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment TaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment PaymentField on Payment {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n ...RefundField\n }\n}\n\nfragment RefundField on Refund {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n lines {\n ...RefundLineField\n }\n}\n\nfragment RefundLineField on RefundLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment FulfillmentField on Fulfillment {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n ...FulfillmentLineField\n }\n}\n\nfragment FulfillmentLineField on FulfillmentLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment SurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment OrderModificationField on OrderModification {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n ...SurchargeField\n }\n payment {\n ...PaymentField\n }\n refund {\n ...RefundField\n }\n}\n\nfragment DiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment TaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment PaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}\n\nfragment HistoryEntryField on HistoryEntry {\n id\n createdAt\n updatedAt\n type\n isPublic\n data\n administrator {\n id\n }\n}";
201
+ export declare const adminRemoveItemsFromOrderDocument = "mutation RemoveItemsFromOrder($input: RemoveItemsFromOrderInput!) {\n removeItemsFromOrder(input: $input) {\n order {\n ...OrderField\n }\n errors {\n index\n errorCode\n variables\n }\n }\n}\n\nfragment OrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n draftComplete\n preModificationState\n version\n billingAddress {\n ...OrderAddressField\n }\n shippingAddress {\n ...OrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...OrderLineField\n }\n payments {\n ...PaymentField\n }\n fulfillments {\n ...FulfillmentField\n }\n shippingLines {\n ...ShippingLineField\n }\n surcharges {\n ...SurchargeField\n }\n modifications {\n ...OrderModificationField\n }\n promotions {\n id\n }\n discounts {\n ...DiscountField\n }\n taxSummary {\n ...TaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...PaymentTokenField\n }\n history {\n items {\n ...HistoryEntryField\n }\n totalItems\n }\n}\n\nfragment OrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment OrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n snapshot {\n id\n createdAt\n updatedAt\n productName\n variantName\n sku\n imageUrl\n price\n priceWithTax\n }\n}\n\nfragment AdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment TaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment PaymentField on Payment {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n ...RefundField\n }\n}\n\nfragment RefundField on Refund {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n lines {\n ...RefundLineField\n }\n}\n\nfragment RefundLineField on RefundLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment FulfillmentField on Fulfillment {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n ...FulfillmentLineField\n }\n}\n\nfragment FulfillmentLineField on FulfillmentLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment SurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment OrderModificationField on OrderModification {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n ...SurchargeField\n }\n payment {\n ...PaymentField\n }\n refund {\n ...RefundField\n }\n}\n\nfragment DiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment TaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment PaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}\n\nfragment HistoryEntryField on HistoryEntry {\n id\n createdAt\n updatedAt\n type\n isPublic\n data\n administrator {\n id\n }\n}";
202
+ export declare const adminSetCustomerForOrderDocument = "mutation SetCustomerForOrder($input: SetCustomerForOrderInput!) {\n setCustomerForOrder(input: $input) {\n ...OrderField\n }\n}\n\nfragment OrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n draftComplete\n preModificationState\n version\n billingAddress {\n ...OrderAddressField\n }\n shippingAddress {\n ...OrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...OrderLineField\n }\n payments {\n ...PaymentField\n }\n fulfillments {\n ...FulfillmentField\n }\n shippingLines {\n ...ShippingLineField\n }\n surcharges {\n ...SurchargeField\n }\n modifications {\n ...OrderModificationField\n }\n promotions {\n id\n }\n discounts {\n ...DiscountField\n }\n taxSummary {\n ...TaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...PaymentTokenField\n }\n history {\n items {\n ...HistoryEntryField\n }\n totalItems\n }\n}\n\nfragment OrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment OrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n snapshot {\n id\n createdAt\n updatedAt\n productName\n variantName\n sku\n imageUrl\n price\n priceWithTax\n }\n}\n\nfragment AdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment TaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment PaymentField on Payment {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n ...RefundField\n }\n}\n\nfragment RefundField on Refund {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n lines {\n ...RefundLineField\n }\n}\n\nfragment RefundLineField on RefundLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment FulfillmentField on Fulfillment {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n ...FulfillmentLineField\n }\n}\n\nfragment FulfillmentLineField on FulfillmentLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment SurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment OrderModificationField on OrderModification {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n ...SurchargeField\n }\n payment {\n ...PaymentField\n }\n refund {\n ...RefundField\n }\n}\n\nfragment DiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment TaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment PaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}\n\nfragment HistoryEntryField on HistoryEntry {\n id\n createdAt\n updatedAt\n type\n isPublic\n data\n administrator {\n id\n }\n}";
203
+ export declare const adminSetCustomerForDraftOrderDocument = "mutation SetCustomerForDraftOrder($input: SetCustomerForDraftOrderInput!) {\n setCustomerForDraftOrder(input: $input) {\n ...OrderField\n }\n}\n\nfragment OrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n draftComplete\n preModificationState\n version\n billingAddress {\n ...OrderAddressField\n }\n shippingAddress {\n ...OrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...OrderLineField\n }\n payments {\n ...PaymentField\n }\n fulfillments {\n ...FulfillmentField\n }\n shippingLines {\n ...ShippingLineField\n }\n surcharges {\n ...SurchargeField\n }\n modifications {\n ...OrderModificationField\n }\n promotions {\n id\n }\n discounts {\n ...DiscountField\n }\n taxSummary {\n ...TaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...PaymentTokenField\n }\n history {\n items {\n ...HistoryEntryField\n }\n totalItems\n }\n}\n\nfragment OrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment OrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n snapshot {\n id\n createdAt\n updatedAt\n productName\n variantName\n sku\n imageUrl\n price\n priceWithTax\n }\n}\n\nfragment AdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment TaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment PaymentField on Payment {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n ...RefundField\n }\n}\n\nfragment RefundField on Refund {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n lines {\n ...RefundLineField\n }\n}\n\nfragment RefundLineField on RefundLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment FulfillmentField on Fulfillment {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n ...FulfillmentLineField\n }\n}\n\nfragment FulfillmentLineField on FulfillmentLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment SurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment OrderModificationField on OrderModification {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n ...SurchargeField\n }\n payment {\n ...PaymentField\n }\n refund {\n ...RefundField\n }\n}\n\nfragment DiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment TaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment PaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}\n\nfragment HistoryEntryField on HistoryEntry {\n id\n createdAt\n updatedAt\n type\n isPublic\n data\n administrator {\n id\n }\n}";
204
+ export declare const adminSetShippingAddressDocument = "mutation SetShippingAddress($input: SetShippingAddressInput!) {\n setShippingAddress(input: $input) {\n ...OrderField\n }\n}\n\nfragment OrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n draftComplete\n preModificationState\n version\n billingAddress {\n ...OrderAddressField\n }\n shippingAddress {\n ...OrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...OrderLineField\n }\n payments {\n ...PaymentField\n }\n fulfillments {\n ...FulfillmentField\n }\n shippingLines {\n ...ShippingLineField\n }\n surcharges {\n ...SurchargeField\n }\n modifications {\n ...OrderModificationField\n }\n promotions {\n id\n }\n discounts {\n ...DiscountField\n }\n taxSummary {\n ...TaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...PaymentTokenField\n }\n history {\n items {\n ...HistoryEntryField\n }\n totalItems\n }\n}\n\nfragment OrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment OrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n snapshot {\n id\n createdAt\n updatedAt\n productName\n variantName\n sku\n imageUrl\n price\n priceWithTax\n }\n}\n\nfragment AdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment TaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment PaymentField on Payment {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n ...RefundField\n }\n}\n\nfragment RefundField on Refund {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n lines {\n ...RefundLineField\n }\n}\n\nfragment RefundLineField on RefundLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment FulfillmentField on Fulfillment {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n ...FulfillmentLineField\n }\n}\n\nfragment FulfillmentLineField on FulfillmentLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment SurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment OrderModificationField on OrderModification {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n ...SurchargeField\n }\n payment {\n ...PaymentField\n }\n refund {\n ...RefundField\n }\n}\n\nfragment DiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment TaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment PaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}\n\nfragment HistoryEntryField on HistoryEntry {\n id\n createdAt\n updatedAt\n type\n isPublic\n data\n administrator {\n id\n }\n}";
205
+ export declare const adminUnsetShippingAddressDocument = "mutation UnsetShippingAddress($input: UnsetShippingAddressInput!) {\n unsetShippingAddress(input: $input) {\n ...OrderField\n }\n}\n\nfragment OrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n draftComplete\n preModificationState\n version\n billingAddress {\n ...OrderAddressField\n }\n shippingAddress {\n ...OrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...OrderLineField\n }\n payments {\n ...PaymentField\n }\n fulfillments {\n ...FulfillmentField\n }\n shippingLines {\n ...ShippingLineField\n }\n surcharges {\n ...SurchargeField\n }\n modifications {\n ...OrderModificationField\n }\n promotions {\n id\n }\n discounts {\n ...DiscountField\n }\n taxSummary {\n ...TaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...PaymentTokenField\n }\n history {\n items {\n ...HistoryEntryField\n }\n totalItems\n }\n}\n\nfragment OrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment OrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n snapshot {\n id\n createdAt\n updatedAt\n productName\n variantName\n sku\n imageUrl\n price\n priceWithTax\n }\n}\n\nfragment AdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment TaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment PaymentField on Payment {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n ...RefundField\n }\n}\n\nfragment RefundField on Refund {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n lines {\n ...RefundLineField\n }\n}\n\nfragment RefundLineField on RefundLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment FulfillmentField on Fulfillment {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n ...FulfillmentLineField\n }\n}\n\nfragment FulfillmentLineField on FulfillmentLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment SurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment OrderModificationField on OrderModification {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n ...SurchargeField\n }\n payment {\n ...PaymentField\n }\n refund {\n ...RefundField\n }\n}\n\nfragment DiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment TaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment PaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}\n\nfragment HistoryEntryField on HistoryEntry {\n id\n createdAt\n updatedAt\n type\n isPublic\n data\n administrator {\n id\n }\n}";
206
+ export declare const adminSetBillingAddressDocument = "mutation SetBillingAddress($input: SetBillingAddressInput!) {\n setBillingAddress(input: $input) {\n ...OrderField\n }\n}\n\nfragment OrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n draftComplete\n preModificationState\n version\n billingAddress {\n ...OrderAddressField\n }\n shippingAddress {\n ...OrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...OrderLineField\n }\n payments {\n ...PaymentField\n }\n fulfillments {\n ...FulfillmentField\n }\n shippingLines {\n ...ShippingLineField\n }\n surcharges {\n ...SurchargeField\n }\n modifications {\n ...OrderModificationField\n }\n promotions {\n id\n }\n discounts {\n ...DiscountField\n }\n taxSummary {\n ...TaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...PaymentTokenField\n }\n history {\n items {\n ...HistoryEntryField\n }\n totalItems\n }\n}\n\nfragment OrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment OrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n snapshot {\n id\n createdAt\n updatedAt\n productName\n variantName\n sku\n imageUrl\n price\n priceWithTax\n }\n}\n\nfragment AdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment TaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment PaymentField on Payment {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n ...RefundField\n }\n}\n\nfragment RefundField on Refund {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n lines {\n ...RefundLineField\n }\n}\n\nfragment RefundLineField on RefundLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment FulfillmentField on Fulfillment {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n ...FulfillmentLineField\n }\n}\n\nfragment FulfillmentLineField on FulfillmentLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment SurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment OrderModificationField on OrderModification {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n ...SurchargeField\n }\n payment {\n ...PaymentField\n }\n refund {\n ...RefundField\n }\n}\n\nfragment DiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment TaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment PaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}\n\nfragment HistoryEntryField on HistoryEntry {\n id\n createdAt\n updatedAt\n type\n isPublic\n data\n administrator {\n id\n }\n}";
207
+ export declare const adminUnsetBillingAddressDocument = "mutation UnsetBillingAddress($input: UnsetBillingAddressInput!) {\n unsetBillingAddress(input: $input) {\n ...OrderField\n }\n}\n\nfragment OrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n draftComplete\n preModificationState\n version\n billingAddress {\n ...OrderAddressField\n }\n shippingAddress {\n ...OrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...OrderLineField\n }\n payments {\n ...PaymentField\n }\n fulfillments {\n ...FulfillmentField\n }\n shippingLines {\n ...ShippingLineField\n }\n surcharges {\n ...SurchargeField\n }\n modifications {\n ...OrderModificationField\n }\n promotions {\n id\n }\n discounts {\n ...DiscountField\n }\n taxSummary {\n ...TaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...PaymentTokenField\n }\n history {\n items {\n ...HistoryEntryField\n }\n totalItems\n }\n}\n\nfragment OrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment OrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n snapshot {\n id\n createdAt\n updatedAt\n productName\n variantName\n sku\n imageUrl\n price\n priceWithTax\n }\n}\n\nfragment AdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment TaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment PaymentField on Payment {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n ...RefundField\n }\n}\n\nfragment RefundField on Refund {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n lines {\n ...RefundLineField\n }\n}\n\nfragment RefundLineField on RefundLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment FulfillmentField on Fulfillment {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n ...FulfillmentLineField\n }\n}\n\nfragment FulfillmentLineField on FulfillmentLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment SurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment OrderModificationField on OrderModification {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n ...SurchargeField\n }\n payment {\n ...PaymentField\n }\n refund {\n ...RefundField\n }\n}\n\nfragment DiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment TaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment PaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}\n\nfragment HistoryEntryField on HistoryEntry {\n id\n createdAt\n updatedAt\n type\n isPublic\n data\n administrator {\n id\n }\n}";
208
+ export declare const adminApplyCouponCodeDocument = "mutation ApplyCouponCode($input: OrderCouponCodeInput!) {\n applyCouponCode(input: $input) {\n ...OrderField\n }\n}\n\nfragment OrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n draftComplete\n preModificationState\n version\n billingAddress {\n ...OrderAddressField\n }\n shippingAddress {\n ...OrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...OrderLineField\n }\n payments {\n ...PaymentField\n }\n fulfillments {\n ...FulfillmentField\n }\n shippingLines {\n ...ShippingLineField\n }\n surcharges {\n ...SurchargeField\n }\n modifications {\n ...OrderModificationField\n }\n promotions {\n id\n }\n discounts {\n ...DiscountField\n }\n taxSummary {\n ...TaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...PaymentTokenField\n }\n history {\n items {\n ...HistoryEntryField\n }\n totalItems\n }\n}\n\nfragment OrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment OrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n snapshot {\n id\n createdAt\n updatedAt\n productName\n variantName\n sku\n imageUrl\n price\n priceWithTax\n }\n}\n\nfragment AdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment TaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment PaymentField on Payment {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n ...RefundField\n }\n}\n\nfragment RefundField on Refund {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n lines {\n ...RefundLineField\n }\n}\n\nfragment RefundLineField on RefundLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment FulfillmentField on Fulfillment {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n ...FulfillmentLineField\n }\n}\n\nfragment FulfillmentLineField on FulfillmentLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment SurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment OrderModificationField on OrderModification {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n ...SurchargeField\n }\n payment {\n ...PaymentField\n }\n refund {\n ...RefundField\n }\n}\n\nfragment DiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment TaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment PaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}\n\nfragment HistoryEntryField on HistoryEntry {\n id\n createdAt\n updatedAt\n type\n isPublic\n data\n administrator {\n id\n }\n}";
209
+ export declare const adminRemoveCouponCodeDocument = "mutation RemoveCouponCode($input: OrderCouponCodeInput!) {\n removeCouponCode(input: $input) {\n ...OrderField\n }\n}\n\nfragment OrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n draftComplete\n preModificationState\n version\n billingAddress {\n ...OrderAddressField\n }\n shippingAddress {\n ...OrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...OrderLineField\n }\n payments {\n ...PaymentField\n }\n fulfillments {\n ...FulfillmentField\n }\n shippingLines {\n ...ShippingLineField\n }\n surcharges {\n ...SurchargeField\n }\n modifications {\n ...OrderModificationField\n }\n promotions {\n id\n }\n discounts {\n ...DiscountField\n }\n taxSummary {\n ...TaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...PaymentTokenField\n }\n history {\n items {\n ...HistoryEntryField\n }\n totalItems\n }\n}\n\nfragment OrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment OrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n snapshot {\n id\n createdAt\n updatedAt\n productName\n variantName\n sku\n imageUrl\n price\n priceWithTax\n }\n}\n\nfragment AdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment TaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment PaymentField on Payment {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n ...RefundField\n }\n}\n\nfragment RefundField on Refund {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n lines {\n ...RefundLineField\n }\n}\n\nfragment RefundLineField on RefundLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment FulfillmentField on Fulfillment {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n ...FulfillmentLineField\n }\n}\n\nfragment FulfillmentLineField on FulfillmentLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment SurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment OrderModificationField on OrderModification {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n ...SurchargeField\n }\n payment {\n ...PaymentField\n }\n refund {\n ...RefundField\n }\n}\n\nfragment DiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment TaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment PaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}\n\nfragment HistoryEntryField on HistoryEntry {\n id\n createdAt\n updatedAt\n type\n isPublic\n data\n administrator {\n id\n }\n}";
210
+ export declare const adminOrderDetailDocument = "query OrderDetail($id: ID!) {\n order(id: $id) {\n ...OrderField\n }\n}\n\nfragment OrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n draftComplete\n preModificationState\n version\n billingAddress {\n ...OrderAddressField\n }\n shippingAddress {\n ...OrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...OrderLineField\n }\n payments {\n ...PaymentField\n }\n fulfillments {\n ...FulfillmentField\n }\n shippingLines {\n ...ShippingLineField\n }\n surcharges {\n ...SurchargeField\n }\n modifications {\n ...OrderModificationField\n }\n promotions {\n id\n }\n discounts {\n ...DiscountField\n }\n taxSummary {\n ...TaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...PaymentTokenField\n }\n history {\n items {\n ...HistoryEntryField\n }\n totalItems\n }\n}\n\nfragment OrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment OrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n snapshot {\n id\n createdAt\n updatedAt\n productName\n variantName\n sku\n imageUrl\n price\n priceWithTax\n }\n}\n\nfragment AdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment TaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment PaymentField on Payment {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n ...RefundField\n }\n}\n\nfragment RefundField on Refund {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n lines {\n ...RefundLineField\n }\n}\n\nfragment RefundLineField on RefundLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment FulfillmentField on Fulfillment {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n ...FulfillmentLineField\n }\n}\n\nfragment FulfillmentLineField on FulfillmentLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment SurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment OrderModificationField on OrderModification {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n ...SurchargeField\n }\n payment {\n ...PaymentField\n }\n refund {\n ...RefundField\n }\n}\n\nfragment DiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment TaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment PaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}\n\nfragment HistoryEntryField on HistoryEntry {\n id\n createdAt\n updatedAt\n type\n isPublic\n data\n administrator {\n id\n }\n}";
211
+ export declare const adminRefundPaymentDocument = "mutation RefundPayment($input: RefundPaymentInput!) {\n refundPayment(input: $input) {\n ...RefundField\n }\n}\n\nfragment RefundField on Refund {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n lines {\n ...RefundLineField\n }\n}\n\nfragment RefundLineField on RefundLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}";
212
+ export declare const adminGetPaymentGatewayTokensDocument = "query GetPaymentGatewayTokens($customerId: ID!) {\n getPaymentGatewayTokens(customerId: $customerId) {\n ...PaymentTokenField\n }\n}\n\nfragment PaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}";
213
+ export declare const adminSessionDocument = "query Session($sessionId: ID!) {\n paymentSession(sessionId: $sessionId) {\n ...PaymentSessionField\n }\n}\n\nfragment PaymentSessionField on PaymentGatewaySession {\n id\n extId\n clientSecret\n redirectUrl\n nonce\n status\n amount\n providerCode\n orderId\n createdAt\n updatedAt\n}";
214
+ export declare const adminEligibleProvidersDocument = "query EligibleProviders($orderId: ID!) {\n eligiblePaymentProviders(orderId: $orderId) {\n providerCode\n providerName\n isEligible\n eligibilityMessage\n }\n}";
215
+ export declare const adminRefundsDocument = "query Refunds($paymentId: ID!) {\n paymentGatewayRefunds(paymentId: $paymentId) {\n ...PaymentGatewayRefundField\n }\n}\n\nfragment PaymentGatewayRefundField on PaymentGatewayRefund {\n id\n extRefundId\n status\n amount\n reason\n providerCode\n paymentId\n createdAt\n updatedAt\n}";
216
+ export declare const adminCreateSessionDocument = "mutation CreateSession($input: CreateSessionInput!) {\n createPaymentSession(input: $input) {\n ...PaymentSessionField\n }\n}\n\nfragment PaymentSessionField on PaymentGatewaySession {\n id\n extId\n clientSecret\n redirectUrl\n nonce\n status\n amount\n providerCode\n orderId\n createdAt\n updatedAt\n}";
217
+ export declare const adminRefundSessionDocument = "mutation RefundSession($input: CreateRefundInput!) {\n refundPaymentSession(input: $input) {\n ...PaymentGatewayRefundField\n }\n}\n\nfragment PaymentGatewayRefundField on PaymentGatewayRefund {\n id\n extRefundId\n status\n amount\n reason\n providerCode\n paymentId\n createdAt\n updatedAt\n}";
218
+ export declare const adminConfirmSessionDocument = "mutation ConfirmSession($sessionId: ID!) {\n confirmPaymentSession(sessionId: $sessionId) {\n ...PaymentSessionField\n }\n}\n\nfragment PaymentSessionField on PaymentGatewaySession {\n id\n extId\n clientSecret\n redirectUrl\n nonce\n status\n amount\n providerCode\n orderId\n createdAt\n updatedAt\n}";
219
+ export declare const adminSaveTokenDocument = "mutation SaveToken($input: SaveTokenForCustomerInput!) {\n saveToken(input: $input) {\n ...PaymentTokenField\n }\n}\n\nfragment PaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}";
220
+ export declare const adminDeleteTokenDocument = "mutation DeleteToken($tokenId: ID!) {\n deleteToken(tokenId: $tokenId)\n}";
221
+ export declare const adminSetDefaultTokenDocument = "mutation SetDefaultToken($tokenId: ID!) {\n setDefaultToken(tokenId: $tokenId) {\n ...PaymentTokenField\n }\n}\n\nfragment PaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}";
222
+ export declare const adminCancelSessionDocument = "mutation CancelSession($sessionId: ID!) {\n cancelPaymentSession(sessionId: $sessionId) {\n ...PaymentSessionField\n }\n}\n\nfragment PaymentSessionField on PaymentGatewaySession {\n id\n extId\n clientSecret\n redirectUrl\n nonce\n status\n amount\n providerCode\n orderId\n createdAt\n updatedAt\n}";
223
+ export declare const adminGetTokenTemplateDocument = "query GetTokenTemplate($providerCode: String!) {\n getTokenTemplate(providerCode: $providerCode) {\n providerCode\n html\n scriptUrl\n config\n }\n}";
224
+ export declare const adminGetSessionTemplateDocument = "query GetSessionTemplate($orderId: ID!, $providerCode: String!) {\n getSessionTemplate(orderId: $orderId, providerCode: $providerCode) {\n providerCode\n html\n scriptUrl\n config\n }\n}";
225
+ export declare const adminGetSessionVariablesDocument = "query GetSessionVariables($orderId: ID!, $providerCode: String!) {\n getSessionVariables(orderId: $orderId, providerCode: $providerCode) {\n providerCode\n publishableKey\n scriptUrl\n amount\n currency\n config\n }\n}";
226
+ export declare const adminPluginManageablesDocument = "query PluginManageables {\n manageablePlugins {\n ...ManageablePluginFields\n }\n}\n\nfragment ManageablePluginFields on ManageablePlugin {\n id\n createdAt\n updatedAt\n name\n code\n description\n imageUrl\n toggable\n tags\n configItems {\n id\n code\n type\n translations {\n id\n languageCode\n name\n }\n }\n}";
227
+ export declare const adminPluginManageableDocument = "query PluginManageable($code: String!) {\n manageablePlugin(code: $code) {\n ...ManageablePluginFields\n }\n}\n\nfragment ManageablePluginFields on ManageablePlugin {\n id\n createdAt\n updatedAt\n name\n code\n description\n imageUrl\n toggable\n tags\n configItems {\n id\n code\n type\n translations {\n id\n languageCode\n name\n }\n }\n}";
228
+ export declare const adminPluginByTagManageableDocument = "query PluginByTagManageable($tag: String!) {\n manageablePluginsByTag(tag: $tag) {\n ...ManageablePluginFields\n }\n}\n\nfragment ManageablePluginFields on ManageablePlugin {\n id\n createdAt\n updatedAt\n name\n code\n description\n imageUrl\n toggable\n tags\n configItems {\n id\n code\n type\n translations {\n id\n languageCode\n name\n }\n }\n}";
229
+ export declare const adminPluginCreateManageableDocument = "mutation PluginCreateManageable($input: CreateManageablePluginInput!) {\n createManageablePlugin(input: $input) {\n ...ManageablePluginFields\n }\n}\n\nfragment ManageablePluginFields on ManageablePlugin {\n id\n createdAt\n updatedAt\n name\n code\n description\n imageUrl\n toggable\n tags\n configItems {\n id\n code\n type\n translations {\n id\n languageCode\n name\n }\n }\n}";
230
+ export declare const adminPluginUpdateManageableDocument = "mutation PluginUpdateManageable($input: UpdateManageablePluginInput!) {\n updateManageablePlugin(input: $input) {\n ...ManageablePluginFields\n }\n}\n\nfragment ManageablePluginFields on ManageablePlugin {\n id\n createdAt\n updatedAt\n name\n code\n description\n imageUrl\n toggable\n tags\n configItems {\n id\n code\n type\n translations {\n id\n languageCode\n name\n }\n }\n}";
231
+ export declare const adminPluginDeleteManageableDocument = "mutation PluginDeleteManageable($id: ID!) {\n deleteManageablePlugin(id: $id)\n}";
232
+ export declare const adminManageablePluginsDocument = "query ManageablePlugins {\n manageablePlugins {\n ...ManageablePluginFields\n }\n}\n\nfragment ManageablePluginFields on ManageablePlugin {\n id\n createdAt\n updatedAt\n name\n code\n description\n imageUrl\n toggable\n tags\n configItems {\n id\n code\n type\n translations {\n id\n languageCode\n name\n }\n }\n}";
233
+ export declare const adminManageablePluginDocument = "query ManageablePlugin($code: String!) {\n manageablePlugin(code: $code) {\n ...ManageablePluginFields\n }\n}\n\nfragment ManageablePluginFields on ManageablePlugin {\n id\n createdAt\n updatedAt\n name\n code\n description\n imageUrl\n toggable\n tags\n configItems {\n id\n code\n type\n translations {\n id\n languageCode\n name\n }\n }\n}";
234
+ export declare const adminChannelPluginsDocument = "query ChannelPlugins {\n channelPlugins {\n ...ChannelPluginFields\n }\n}\n\nfragment ChannelPluginFields on ChannelPlugin {\n id\n createdAt\n updatedAt\n name\n status\n configuration\n pluginId\n channelId\n plugin {\n id\n name\n code\n imageUrl\n description\n tags\n }\n}";
235
+ export declare const adminPluginConfigurationDocument = "query PluginConfiguration($id: ID!) {\n pluginConfiguration(id: $id)\n}";
236
+ export declare const adminConfigurationItemsDocument = "query ConfigurationItems($pluginId: ID!) {\n configurationItems(pluginId: $pluginId) {\n id\n code\n type\n translations {\n id\n languageCode\n name\n }\n }\n}";
237
+ export declare const adminConfigurationItemValueDocument = "query ConfigurationItemValue($input: ConfigurationItemValueInput!) {\n configurationItemValue(input: $input)\n}";
238
+ export declare const adminManageablePluginsByTagDocument = "query ManageablePluginsByTag($tag: String!) {\n manageablePluginsByTag(tag: $tag) {\n ...ManageablePluginFields\n }\n}\n\nfragment ManageablePluginFields on ManageablePlugin {\n id\n createdAt\n updatedAt\n name\n code\n description\n imageUrl\n toggable\n tags\n configItems {\n id\n code\n type\n translations {\n id\n languageCode\n name\n }\n }\n}";
239
+ export declare const adminCreateManageablePluginDocument = "mutation CreateManageablePlugin($input: CreateManageablePluginInput!) {\n createManageablePlugin(input: $input) {\n ...ManageablePluginFields\n }\n}\n\nfragment ManageablePluginFields on ManageablePlugin {\n id\n createdAt\n updatedAt\n name\n code\n description\n imageUrl\n toggable\n tags\n configItems {\n id\n code\n type\n translations {\n id\n languageCode\n name\n }\n }\n}";
240
+ export declare const adminUpdateManageablePluginDocument = "mutation UpdateManageablePlugin($input: UpdateManageablePluginInput!) {\n updateManageablePlugin(input: $input) {\n ...ManageablePluginFields\n }\n}\n\nfragment ManageablePluginFields on ManageablePlugin {\n id\n createdAt\n updatedAt\n name\n code\n description\n imageUrl\n toggable\n tags\n configItems {\n id\n code\n type\n translations {\n id\n languageCode\n name\n }\n }\n}";
241
+ export declare const adminDeleteManageablePluginDocument = "mutation DeleteManageablePlugin($id: ID!) {\n deleteManageablePlugin(id: $id)\n}";
242
+ export declare const adminActivatePluginDocument = "mutation ActivatePlugin($input: ActivatePluginInput!) {\n activatePlugin(input: $input) {\n ...ChannelPluginFields\n }\n}\n\nfragment ChannelPluginFields on ChannelPlugin {\n id\n createdAt\n updatedAt\n name\n status\n configuration\n pluginId\n channelId\n plugin {\n id\n name\n code\n imageUrl\n description\n tags\n }\n}";
243
+ export declare const adminEnablePluginDocument = "mutation EnablePlugin($id: ID!) {\n enablePlugin(id: $id) {\n ...ChannelPluginFields\n }\n}\n\nfragment ChannelPluginFields on ChannelPlugin {\n id\n createdAt\n updatedAt\n name\n status\n configuration\n pluginId\n channelId\n plugin {\n id\n name\n code\n imageUrl\n description\n tags\n }\n}";
244
+ export declare const adminDisablePluginDocument = "mutation DisablePlugin($id: ID!) {\n disablePlugin(id: $id) {\n ...ChannelPluginFields\n }\n}\n\nfragment ChannelPluginFields on ChannelPlugin {\n id\n createdAt\n updatedAt\n name\n status\n configuration\n pluginId\n channelId\n plugin {\n id\n name\n code\n imageUrl\n description\n tags\n }\n}";
245
+ export declare const adminDeleteChannelPluginDocument = "mutation DeleteChannelPlugin($id: ID!) {\n deleteChannelPlugin(id: $id)\n}";
246
+ export declare const adminUpdatePluginConfigurationDocument = "mutation UpdatePluginConfiguration($input: UpdateChannelPluginConfigInput!) {\n updatePluginConfiguration(input: $input) {\n ...ChannelPluginFields\n }\n}\n\nfragment ChannelPluginFields on ChannelPlugin {\n id\n createdAt\n updatedAt\n name\n status\n configuration\n pluginId\n channelId\n plugin {\n id\n name\n code\n imageUrl\n description\n tags\n }\n}";
247
+ export declare const adminSetConfigurationItemValueDocument = "mutation SetConfigurationItemValue($input: SetConfigurationValueInput!) {\n setConfigurationItemValue(input: $input)\n}";
248
+ export declare const adminProductOptionGroupDocument = "query ProductOptionGroup($id: ID!) {\n productOptionGroup(id: $id) {\n ...ProductOptionGroupField\n }\n}\n\nfragment ProductOptionGroupField on ProductOptionGroup {\n id\n code\n name\n options {\n id\n code\n name\n groupId\n }\n translations {\n ...ProductOptionGroupTranslationField\n }\n}\n\nfragment ProductOptionGroupTranslationField on ProductOptionGroupTranslation {\n id\n languageCode\n name\n}";
249
+ export declare const adminProductOptionGroupsDocument = "query ProductOptionGroups($productId: ID) {\n productOptionGroups(productId: $productId) {\n ...ProductOptionGroupField\n }\n}\n\nfragment ProductOptionGroupField on ProductOptionGroup {\n id\n code\n name\n options {\n id\n code\n name\n groupId\n }\n translations {\n ...ProductOptionGroupTranslationField\n }\n}\n\nfragment ProductOptionGroupTranslationField on ProductOptionGroupTranslation {\n id\n languageCode\n name\n}";
250
+ export declare const adminProductCreateOptionGroupDocument = "mutation ProductCreateOptionGroup($input: CreateProductOptionGroupInput!) {\n createProductOptionGroup(input: $input) {\n ...ProductOptionGroupField\n }\n}\n\nfragment ProductOptionGroupField on ProductOptionGroup {\n id\n code\n name\n options {\n id\n code\n name\n groupId\n }\n translations {\n ...ProductOptionGroupTranslationField\n }\n}\n\nfragment ProductOptionGroupTranslationField on ProductOptionGroupTranslation {\n id\n languageCode\n name\n}";
251
+ export declare const adminProductUpdateOptionGroupDocument = "mutation ProductUpdateOptionGroup($input: UpdateProductOptionGroupInput!) {\n updateProductOptionGroup(input: $input) {\n ...ProductOptionGroupField\n }\n}\n\nfragment ProductOptionGroupField on ProductOptionGroup {\n id\n code\n name\n options {\n id\n code\n name\n groupId\n }\n translations {\n ...ProductOptionGroupTranslationField\n }\n}\n\nfragment ProductOptionGroupTranslationField on ProductOptionGroupTranslation {\n id\n languageCode\n name\n}";
252
+ export declare const adminProductDeleteOptionGroupDocument = "mutation ProductDeleteOptionGroup($input: DeleteProductOptionGroupInput!) {\n deleteProductOptionGroup(input: $input) {\n result\n message\n }\n}";
253
+ export declare const adminProductAddOptionGroupDocument = "mutation ProductAddOptionGroup($input: AddOptionGroupToProductInput!) {\n addOptionGroupToProduct(input: $input) {\n ...ProductField\n }\n}\n\nfragment ProductField on Product {\n id\n createdAt\n updatedAt\n enabled\n isDigital\n trackInventory\n featuredAsset {\n ...AssetField\n }\n assets {\n ...AssetField\n }\n assets {\n id\n name\n type\n mimeType\n source\n preview\n fileSize\n width\n height\n }\n translations {\n ...ProductTranslationField\n }\n facetValues {\n id\n name\n code\n facetId\n }\n facetValues {\n id\n name\n code\n facetId\n }\n channels {\n id\n code\n token\n }\n optionGroups {\n ...ProductOptionGroupField\n }\n variants {\n ...ProductVariantField\n }\n}\n\nfragment AssetField on Asset {\n id\n name\n type\n mimeType\n source\n preview\n fileSize\n width\n height\n tags {\n id\n value\n }\n focalPoint {\n x\n y\n }\n}\n\nfragment ProductTranslationField on ProductTranslation {\n id\n languageCode\n name\n slug\n description\n}\n\nfragment ProductOptionGroupField on ProductOptionGroup {\n id\n code\n name\n options {\n id\n code\n name\n groupId\n }\n translations {\n ...ProductOptionGroupTranslationField\n }\n}\n\nfragment ProductOptionGroupTranslationField on ProductOptionGroupTranslation {\n id\n languageCode\n name\n}\n\nfragment ProductVariantField on ProductVariant {\n id\n sku\n name\n price\n priceWithTax\n stockOnHand\n stockAllocated\n trackInventory\n enabled\n productId\n featuredAsset {\n ...AssetField\n }\n assets {\n ...AssetField\n }\n options {\n id\n code\n name\n groupId\n }\n translations {\n ...ProductVariantTranslationField\n }\n weight {\n value\n unit\n }\n dimensions {\n length\n width\n height\n unit\n }\n customs {\n hsCode\n originCountryCode\n contentsType\n }\n}\n\nfragment ProductVariantTranslationField on ProductVariantTranslation {\n id\n languageCode\n name\n}";
254
+ export declare const adminProductRemoveOptionGroupDocument = "mutation ProductRemoveOptionGroup($input: RemoveOptionGroupFromProductInput!) {\n removeOptionGroupFromProduct(input: $input) {\n ...ProductField\n }\n}\n\nfragment ProductField on Product {\n id\n createdAt\n updatedAt\n enabled\n isDigital\n trackInventory\n featuredAsset {\n ...AssetField\n }\n assets {\n ...AssetField\n }\n assets {\n id\n name\n type\n mimeType\n source\n preview\n fileSize\n width\n height\n }\n translations {\n ...ProductTranslationField\n }\n facetValues {\n id\n name\n code\n facetId\n }\n facetValues {\n id\n name\n code\n facetId\n }\n channels {\n id\n code\n token\n }\n optionGroups {\n ...ProductOptionGroupField\n }\n variants {\n ...ProductVariantField\n }\n}\n\nfragment AssetField on Asset {\n id\n name\n type\n mimeType\n source\n preview\n fileSize\n width\n height\n tags {\n id\n value\n }\n focalPoint {\n x\n y\n }\n}\n\nfragment ProductTranslationField on ProductTranslation {\n id\n languageCode\n name\n slug\n description\n}\n\nfragment ProductOptionGroupField on ProductOptionGroup {\n id\n code\n name\n options {\n id\n code\n name\n groupId\n }\n translations {\n ...ProductOptionGroupTranslationField\n }\n}\n\nfragment ProductOptionGroupTranslationField on ProductOptionGroupTranslation {\n id\n languageCode\n name\n}\n\nfragment ProductVariantField on ProductVariant {\n id\n sku\n name\n price\n priceWithTax\n stockOnHand\n stockAllocated\n trackInventory\n enabled\n productId\n featuredAsset {\n ...AssetField\n }\n assets {\n ...AssetField\n }\n options {\n id\n code\n name\n groupId\n }\n translations {\n ...ProductVariantTranslationField\n }\n weight {\n value\n unit\n }\n dimensions {\n length\n width\n height\n unit\n }\n customs {\n hsCode\n originCountryCode\n contentsType\n }\n}\n\nfragment ProductVariantTranslationField on ProductVariantTranslation {\n id\n languageCode\n name\n}";
255
+ export declare const adminProductCreateOptionDocument = "mutation ProductCreateOption($input: CreateProductOptionInput!) {\n createProductOption(input: $input) {\n ...ProductOptionField\n }\n}\n\nfragment ProductOptionField on ProductOption {\n id\n code\n name\n groupId\n group {\n id\n code\n name\n }\n translations {\n ...ProductOptionTranslationField\n }\n}\n\nfragment ProductOptionTranslationField on ProductOptionTranslation {\n id\n languageCode\n name\n}";
256
+ export declare const adminProductUpdateOptionDocument = "mutation ProductUpdateOption($input: UpdateProductOptionInput!) {\n updateProductOption(input: $input) {\n ...ProductOptionField\n }\n}\n\nfragment ProductOptionField on ProductOption {\n id\n code\n name\n groupId\n group {\n id\n code\n name\n }\n translations {\n ...ProductOptionTranslationField\n }\n}\n\nfragment ProductOptionTranslationField on ProductOptionTranslation {\n id\n languageCode\n name\n}";
257
+ export declare const adminProductDeleteOptionDocument = "mutation ProductDeleteOption($id: ID!) {\n deleteProductOption(id: $id) {\n result\n message\n }\n}";
258
+ export declare const adminAdminProductOptionGroupDocument = "query AdminProductOptionGroup($id: ID!) {\n productOptionGroup(id: $id) {\n ...ProductOptionGroupField\n }\n}\n\nfragment ProductOptionGroupField on ProductOptionGroup {\n id\n code\n name\n options {\n id\n code\n name\n groupId\n }\n translations {\n ...ProductOptionGroupTranslationField\n }\n}\n\nfragment ProductOptionGroupTranslationField on ProductOptionGroupTranslation {\n id\n languageCode\n name\n}";
259
+ export declare const adminAdminProductOptionGroupsDocument = "query AdminProductOptionGroups($productId: ID) {\n productOptionGroups(productId: $productId) {\n ...ProductOptionGroupField\n }\n}\n\nfragment ProductOptionGroupField on ProductOptionGroup {\n id\n code\n name\n options {\n id\n code\n name\n groupId\n }\n translations {\n ...ProductOptionGroupTranslationField\n }\n}\n\nfragment ProductOptionGroupTranslationField on ProductOptionGroupTranslation {\n id\n languageCode\n name\n}";
260
+ export declare const adminCreateProductOptionGroupDocument = "mutation CreateProductOptionGroup($input: CreateProductOptionGroupInput!) {\n createProductOptionGroup(input: $input) {\n ...ProductOptionGroupField\n }\n}\n\nfragment ProductOptionGroupField on ProductOptionGroup {\n id\n code\n name\n options {\n id\n code\n name\n groupId\n }\n translations {\n ...ProductOptionGroupTranslationField\n }\n}\n\nfragment ProductOptionGroupTranslationField on ProductOptionGroupTranslation {\n id\n languageCode\n name\n}";
261
+ export declare const adminUpdateProductOptionGroupDocument = "mutation UpdateProductOptionGroup($input: UpdateProductOptionGroupInput!) {\n updateProductOptionGroup(input: $input) {\n ...ProductOptionGroupField\n }\n}\n\nfragment ProductOptionGroupField on ProductOptionGroup {\n id\n code\n name\n options {\n id\n code\n name\n groupId\n }\n translations {\n ...ProductOptionGroupTranslationField\n }\n}\n\nfragment ProductOptionGroupTranslationField on ProductOptionGroupTranslation {\n id\n languageCode\n name\n}";
262
+ export declare const adminDeleteProductOptionGroupDocument = "mutation DeleteProductOptionGroup($input: DeleteProductOptionGroupInput!) {\n deleteProductOptionGroup(input: $input) {\n result\n message\n }\n}";
263
+ export declare const adminCreateProductOptionDocument = "mutation CreateProductOption($input: CreateProductOptionInput!) {\n createProductOption(input: $input) {\n ...ProductOptionField\n }\n}\n\nfragment ProductOptionField on ProductOption {\n id\n code\n name\n groupId\n group {\n id\n code\n name\n }\n translations {\n ...ProductOptionTranslationField\n }\n}\n\nfragment ProductOptionTranslationField on ProductOptionTranslation {\n id\n languageCode\n name\n}";
264
+ export declare const adminUpdateProductOptionDocument = "mutation UpdateProductOption($input: UpdateProductOptionInput!) {\n updateProductOption(input: $input) {\n ...ProductOptionField\n }\n}\n\nfragment ProductOptionField on ProductOption {\n id\n code\n name\n groupId\n group {\n id\n code\n name\n }\n translations {\n ...ProductOptionTranslationField\n }\n}\n\nfragment ProductOptionTranslationField on ProductOptionTranslation {\n id\n languageCode\n name\n}";
265
+ export declare const adminDeleteProductOptionDocument = "mutation DeleteProductOption($id: ID!) {\n deleteProductOption(id: $id) {\n result\n message\n }\n}";
266
+ export declare const adminAddOptionGroupToProductDocument = "mutation AddOptionGroupToProduct($input: AddOptionGroupToProductInput!) {\n addOptionGroupToProduct(input: $input) {\n ...ProductField\n }\n}\n\nfragment ProductField on Product {\n id\n createdAt\n updatedAt\n enabled\n isDigital\n trackInventory\n featuredAsset {\n ...AssetField\n }\n assets {\n ...AssetField\n }\n assets {\n id\n name\n type\n mimeType\n source\n preview\n fileSize\n width\n height\n }\n translations {\n ...ProductTranslationField\n }\n facetValues {\n id\n name\n code\n facetId\n }\n facetValues {\n id\n name\n code\n facetId\n }\n channels {\n id\n code\n token\n }\n optionGroups {\n ...ProductOptionGroupField\n }\n variants {\n ...ProductVariantField\n }\n}\n\nfragment AssetField on Asset {\n id\n name\n type\n mimeType\n source\n preview\n fileSize\n width\n height\n tags {\n id\n value\n }\n focalPoint {\n x\n y\n }\n}\n\nfragment ProductTranslationField on ProductTranslation {\n id\n languageCode\n name\n slug\n description\n}\n\nfragment ProductOptionGroupField on ProductOptionGroup {\n id\n code\n name\n options {\n id\n code\n name\n groupId\n }\n translations {\n ...ProductOptionGroupTranslationField\n }\n}\n\nfragment ProductOptionGroupTranslationField on ProductOptionGroupTranslation {\n id\n languageCode\n name\n}\n\nfragment ProductVariantField on ProductVariant {\n id\n sku\n name\n price\n priceWithTax\n stockOnHand\n stockAllocated\n trackInventory\n enabled\n productId\n featuredAsset {\n ...AssetField\n }\n assets {\n ...AssetField\n }\n options {\n id\n code\n name\n groupId\n }\n translations {\n ...ProductVariantTranslationField\n }\n weight {\n value\n unit\n }\n dimensions {\n length\n width\n height\n unit\n }\n customs {\n hsCode\n originCountryCode\n contentsType\n }\n}\n\nfragment ProductVariantTranslationField on ProductVariantTranslation {\n id\n languageCode\n name\n}";
267
+ export declare const adminRemoveOptionGroupFromProductDocument = "mutation RemoveOptionGroupFromProduct($input: RemoveOptionGroupFromProductInput!) {\n removeOptionGroupFromProduct(input: $input) {\n ...ProductField\n }\n}\n\nfragment ProductField on Product {\n id\n createdAt\n updatedAt\n enabled\n isDigital\n trackInventory\n featuredAsset {\n ...AssetField\n }\n assets {\n ...AssetField\n }\n assets {\n id\n name\n type\n mimeType\n source\n preview\n fileSize\n width\n height\n }\n translations {\n ...ProductTranslationField\n }\n facetValues {\n id\n name\n code\n facetId\n }\n facetValues {\n id\n name\n code\n facetId\n }\n channels {\n id\n code\n token\n }\n optionGroups {\n ...ProductOptionGroupField\n }\n variants {\n ...ProductVariantField\n }\n}\n\nfragment AssetField on Asset {\n id\n name\n type\n mimeType\n source\n preview\n fileSize\n width\n height\n tags {\n id\n value\n }\n focalPoint {\n x\n y\n }\n}\n\nfragment ProductTranslationField on ProductTranslation {\n id\n languageCode\n name\n slug\n description\n}\n\nfragment ProductOptionGroupField on ProductOptionGroup {\n id\n code\n name\n options {\n id\n code\n name\n groupId\n }\n translations {\n ...ProductOptionGroupTranslationField\n }\n}\n\nfragment ProductOptionGroupTranslationField on ProductOptionGroupTranslation {\n id\n languageCode\n name\n}\n\nfragment ProductVariantField on ProductVariant {\n id\n sku\n name\n price\n priceWithTax\n stockOnHand\n stockAllocated\n trackInventory\n enabled\n productId\n featuredAsset {\n ...AssetField\n }\n assets {\n ...AssetField\n }\n options {\n id\n code\n name\n groupId\n }\n translations {\n ...ProductVariantTranslationField\n }\n weight {\n value\n unit\n }\n dimensions {\n length\n width\n height\n unit\n }\n customs {\n hsCode\n originCountryCode\n contentsType\n }\n}\n\nfragment ProductVariantTranslationField on ProductVariantTranslation {\n id\n languageCode\n name\n}";
268
+ export declare const adminAdminProductVariantDocument = "query AdminProductVariant($id: ID!) {\n productVariant(id: $id) {\n ...ProductVariantField\n }\n}\n\nfragment ProductVariantField on ProductVariant {\n id\n sku\n name\n price\n priceWithTax\n stockOnHand\n stockAllocated\n trackInventory\n enabled\n productId\n featuredAsset {\n ...AssetField\n }\n assets {\n ...AssetField\n }\n options {\n id\n code\n name\n groupId\n }\n translations {\n ...ProductVariantTranslationField\n }\n weight {\n value\n unit\n }\n dimensions {\n length\n width\n height\n unit\n }\n customs {\n hsCode\n originCountryCode\n contentsType\n }\n}\n\nfragment AssetField on Asset {\n id\n name\n type\n mimeType\n source\n preview\n fileSize\n width\n height\n tags {\n id\n value\n }\n focalPoint {\n x\n y\n }\n}\n\nfragment ProductVariantTranslationField on ProductVariantTranslation {\n id\n languageCode\n name\n}";
269
+ export declare const adminAdminProductVariantsDocument = "query AdminProductVariants($productId: ID!) {\n productVariants(productId: $productId) {\n ...ProductVariantField\n }\n}\n\nfragment ProductVariantField on ProductVariant {\n id\n sku\n name\n price\n priceWithTax\n stockOnHand\n stockAllocated\n trackInventory\n enabled\n productId\n featuredAsset {\n ...AssetField\n }\n assets {\n ...AssetField\n }\n options {\n id\n code\n name\n groupId\n }\n translations {\n ...ProductVariantTranslationField\n }\n weight {\n value\n unit\n }\n dimensions {\n length\n width\n height\n unit\n }\n customs {\n hsCode\n originCountryCode\n contentsType\n }\n}\n\nfragment AssetField on Asset {\n id\n name\n type\n mimeType\n source\n preview\n fileSize\n width\n height\n tags {\n id\n value\n }\n focalPoint {\n x\n y\n }\n}\n\nfragment ProductVariantTranslationField on ProductVariantTranslation {\n id\n languageCode\n name\n}";
270
+ export declare const adminCreateProductVariantsDocument = "mutation CreateProductVariants($input: [CreateProductVariantInput!]!) {\n createProductVariants(input: $input) {\n ...ProductVariantField\n }\n}\n\nfragment ProductVariantField on ProductVariant {\n id\n sku\n name\n price\n priceWithTax\n stockOnHand\n stockAllocated\n trackInventory\n enabled\n productId\n featuredAsset {\n ...AssetField\n }\n assets {\n ...AssetField\n }\n options {\n id\n code\n name\n groupId\n }\n translations {\n ...ProductVariantTranslationField\n }\n weight {\n value\n unit\n }\n dimensions {\n length\n width\n height\n unit\n }\n customs {\n hsCode\n originCountryCode\n contentsType\n }\n}\n\nfragment AssetField on Asset {\n id\n name\n type\n mimeType\n source\n preview\n fileSize\n width\n height\n tags {\n id\n value\n }\n focalPoint {\n x\n y\n }\n}\n\nfragment ProductVariantTranslationField on ProductVariantTranslation {\n id\n languageCode\n name\n}";
271
+ export declare const adminUpdateProductVariantsDocument = "mutation UpdateProductVariants($input: [UpdateProductVariantInput!]!) {\n updateProductVariants(input: $input) {\n ...ProductVariantField\n }\n}\n\nfragment ProductVariantField on ProductVariant {\n id\n sku\n name\n price\n priceWithTax\n stockOnHand\n stockAllocated\n trackInventory\n enabled\n productId\n featuredAsset {\n ...AssetField\n }\n assets {\n ...AssetField\n }\n options {\n id\n code\n name\n groupId\n }\n translations {\n ...ProductVariantTranslationField\n }\n weight {\n value\n unit\n }\n dimensions {\n length\n width\n height\n unit\n }\n customs {\n hsCode\n originCountryCode\n contentsType\n }\n}\n\nfragment AssetField on Asset {\n id\n name\n type\n mimeType\n source\n preview\n fileSize\n width\n height\n tags {\n id\n value\n }\n focalPoint {\n x\n y\n }\n}\n\nfragment ProductVariantTranslationField on ProductVariantTranslation {\n id\n languageCode\n name\n}";
272
+ export declare const adminDeleteProductVariantsDocument = "mutation DeleteProductVariants($ids: [ID!]!) {\n deleteProductVariants(ids: $ids) {\n result\n message\n }\n}";
273
+ export declare const adminAdminProductDocument = "query AdminProduct($id: ID!) {\n product(id: $id) {\n ...ProductField\n }\n}\n\nfragment ProductField on Product {\n id\n createdAt\n updatedAt\n enabled\n isDigital\n trackInventory\n featuredAsset {\n ...AssetField\n }\n assets {\n ...AssetField\n }\n assets {\n id\n name\n type\n mimeType\n source\n preview\n fileSize\n width\n height\n }\n translations {\n ...ProductTranslationField\n }\n facetValues {\n id\n name\n code\n facetId\n }\n facetValues {\n id\n name\n code\n facetId\n }\n channels {\n id\n code\n token\n }\n optionGroups {\n ...ProductOptionGroupField\n }\n variants {\n ...ProductVariantField\n }\n}\n\nfragment AssetField on Asset {\n id\n name\n type\n mimeType\n source\n preview\n fileSize\n width\n height\n tags {\n id\n value\n }\n focalPoint {\n x\n y\n }\n}\n\nfragment ProductTranslationField on ProductTranslation {\n id\n languageCode\n name\n slug\n description\n}\n\nfragment ProductOptionGroupField on ProductOptionGroup {\n id\n code\n name\n options {\n id\n code\n name\n groupId\n }\n translations {\n ...ProductOptionGroupTranslationField\n }\n}\n\nfragment ProductOptionGroupTranslationField on ProductOptionGroupTranslation {\n id\n languageCode\n name\n}\n\nfragment ProductVariantField on ProductVariant {\n id\n sku\n name\n price\n priceWithTax\n stockOnHand\n stockAllocated\n trackInventory\n enabled\n productId\n featuredAsset {\n ...AssetField\n }\n assets {\n ...AssetField\n }\n options {\n id\n code\n name\n groupId\n }\n translations {\n ...ProductVariantTranslationField\n }\n weight {\n value\n unit\n }\n dimensions {\n length\n width\n height\n unit\n }\n customs {\n hsCode\n originCountryCode\n contentsType\n }\n}\n\nfragment ProductVariantTranslationField on ProductVariantTranslation {\n id\n languageCode\n name\n}";
274
+ export declare const adminAdminProductsDocument = "query AdminProducts($options: ListQueryOptions) {\n products(options: $options) {\n items {\n ...ProductField\n }\n totalItems\n }\n}\n\nfragment ProductField on Product {\n id\n createdAt\n updatedAt\n enabled\n isDigital\n trackInventory\n featuredAsset {\n ...AssetField\n }\n assets {\n ...AssetField\n }\n assets {\n id\n name\n type\n mimeType\n source\n preview\n fileSize\n width\n height\n }\n translations {\n ...ProductTranslationField\n }\n facetValues {\n id\n name\n code\n facetId\n }\n facetValues {\n id\n name\n code\n facetId\n }\n channels {\n id\n code\n token\n }\n optionGroups {\n ...ProductOptionGroupField\n }\n variants {\n ...ProductVariantField\n }\n}\n\nfragment AssetField on Asset {\n id\n name\n type\n mimeType\n source\n preview\n fileSize\n width\n height\n tags {\n id\n value\n }\n focalPoint {\n x\n y\n }\n}\n\nfragment ProductTranslationField on ProductTranslation {\n id\n languageCode\n name\n slug\n description\n}\n\nfragment ProductOptionGroupField on ProductOptionGroup {\n id\n code\n name\n options {\n id\n code\n name\n groupId\n }\n translations {\n ...ProductOptionGroupTranslationField\n }\n}\n\nfragment ProductOptionGroupTranslationField on ProductOptionGroupTranslation {\n id\n languageCode\n name\n}\n\nfragment ProductVariantField on ProductVariant {\n id\n sku\n name\n price\n priceWithTax\n stockOnHand\n stockAllocated\n trackInventory\n enabled\n productId\n featuredAsset {\n ...AssetField\n }\n assets {\n ...AssetField\n }\n options {\n id\n code\n name\n groupId\n }\n translations {\n ...ProductVariantTranslationField\n }\n weight {\n value\n unit\n }\n dimensions {\n length\n width\n height\n unit\n }\n customs {\n hsCode\n originCountryCode\n contentsType\n }\n}\n\nfragment ProductVariantTranslationField on ProductVariantTranslation {\n id\n languageCode\n name\n}";
275
+ export declare const adminCreateProductDocument = "mutation CreateProduct($input: CreateProductInput!) {\n createProduct(input: $input) {\n ...ProductField\n }\n}\n\nfragment ProductField on Product {\n id\n createdAt\n updatedAt\n enabled\n isDigital\n trackInventory\n featuredAsset {\n ...AssetField\n }\n assets {\n ...AssetField\n }\n assets {\n id\n name\n type\n mimeType\n source\n preview\n fileSize\n width\n height\n }\n translations {\n ...ProductTranslationField\n }\n facetValues {\n id\n name\n code\n facetId\n }\n facetValues {\n id\n name\n code\n facetId\n }\n channels {\n id\n code\n token\n }\n optionGroups {\n ...ProductOptionGroupField\n }\n variants {\n ...ProductVariantField\n }\n}\n\nfragment AssetField on Asset {\n id\n name\n type\n mimeType\n source\n preview\n fileSize\n width\n height\n tags {\n id\n value\n }\n focalPoint {\n x\n y\n }\n}\n\nfragment ProductTranslationField on ProductTranslation {\n id\n languageCode\n name\n slug\n description\n}\n\nfragment ProductOptionGroupField on ProductOptionGroup {\n id\n code\n name\n options {\n id\n code\n name\n groupId\n }\n translations {\n ...ProductOptionGroupTranslationField\n }\n}\n\nfragment ProductOptionGroupTranslationField on ProductOptionGroupTranslation {\n id\n languageCode\n name\n}\n\nfragment ProductVariantField on ProductVariant {\n id\n sku\n name\n price\n priceWithTax\n stockOnHand\n stockAllocated\n trackInventory\n enabled\n productId\n featuredAsset {\n ...AssetField\n }\n assets {\n ...AssetField\n }\n options {\n id\n code\n name\n groupId\n }\n translations {\n ...ProductVariantTranslationField\n }\n weight {\n value\n unit\n }\n dimensions {\n length\n width\n height\n unit\n }\n customs {\n hsCode\n originCountryCode\n contentsType\n }\n}\n\nfragment ProductVariantTranslationField on ProductVariantTranslation {\n id\n languageCode\n name\n}";
276
+ export declare const adminUpdateProductDocument = "mutation UpdateProduct($input: UpdateProductInput!) {\n updateProduct(input: $input) {\n ...ProductField\n }\n}\n\nfragment ProductField on Product {\n id\n createdAt\n updatedAt\n enabled\n isDigital\n trackInventory\n featuredAsset {\n ...AssetField\n }\n assets {\n ...AssetField\n }\n assets {\n id\n name\n type\n mimeType\n source\n preview\n fileSize\n width\n height\n }\n translations {\n ...ProductTranslationField\n }\n facetValues {\n id\n name\n code\n facetId\n }\n facetValues {\n id\n name\n code\n facetId\n }\n channels {\n id\n code\n token\n }\n optionGroups {\n ...ProductOptionGroupField\n }\n variants {\n ...ProductVariantField\n }\n}\n\nfragment AssetField on Asset {\n id\n name\n type\n mimeType\n source\n preview\n fileSize\n width\n height\n tags {\n id\n value\n }\n focalPoint {\n x\n y\n }\n}\n\nfragment ProductTranslationField on ProductTranslation {\n id\n languageCode\n name\n slug\n description\n}\n\nfragment ProductOptionGroupField on ProductOptionGroup {\n id\n code\n name\n options {\n id\n code\n name\n groupId\n }\n translations {\n ...ProductOptionGroupTranslationField\n }\n}\n\nfragment ProductOptionGroupTranslationField on ProductOptionGroupTranslation {\n id\n languageCode\n name\n}\n\nfragment ProductVariantField on ProductVariant {\n id\n sku\n name\n price\n priceWithTax\n stockOnHand\n stockAllocated\n trackInventory\n enabled\n productId\n featuredAsset {\n ...AssetField\n }\n assets {\n ...AssetField\n }\n options {\n id\n code\n name\n groupId\n }\n translations {\n ...ProductVariantTranslationField\n }\n weight {\n value\n unit\n }\n dimensions {\n length\n width\n height\n unit\n }\n customs {\n hsCode\n originCountryCode\n contentsType\n }\n}\n\nfragment ProductVariantTranslationField on ProductVariantTranslation {\n id\n languageCode\n name\n}";
277
+ export declare const adminDeleteProductDocument = "mutation DeleteProduct($id: ID!) {\n deleteProduct(id: $id) {\n result\n message\n }\n}";
278
+ export declare const adminAssignProductsToChannelDocument = "mutation AssignProductsToChannel($input: AssignProductsToChannelInput!) {\n assignProductsToChannel(input: $input) {\n ...ProductField\n }\n}\n\nfragment ProductField on Product {\n id\n createdAt\n updatedAt\n enabled\n isDigital\n trackInventory\n featuredAsset {\n ...AssetField\n }\n assets {\n ...AssetField\n }\n assets {\n id\n name\n type\n mimeType\n source\n preview\n fileSize\n width\n height\n }\n translations {\n ...ProductTranslationField\n }\n facetValues {\n id\n name\n code\n facetId\n }\n facetValues {\n id\n name\n code\n facetId\n }\n channels {\n id\n code\n token\n }\n optionGroups {\n ...ProductOptionGroupField\n }\n variants {\n ...ProductVariantField\n }\n}\n\nfragment AssetField on Asset {\n id\n name\n type\n mimeType\n source\n preview\n fileSize\n width\n height\n tags {\n id\n value\n }\n focalPoint {\n x\n y\n }\n}\n\nfragment ProductTranslationField on ProductTranslation {\n id\n languageCode\n name\n slug\n description\n}\n\nfragment ProductOptionGroupField on ProductOptionGroup {\n id\n code\n name\n options {\n id\n code\n name\n groupId\n }\n translations {\n ...ProductOptionGroupTranslationField\n }\n}\n\nfragment ProductOptionGroupTranslationField on ProductOptionGroupTranslation {\n id\n languageCode\n name\n}\n\nfragment ProductVariantField on ProductVariant {\n id\n sku\n name\n price\n priceWithTax\n stockOnHand\n stockAllocated\n trackInventory\n enabled\n productId\n featuredAsset {\n ...AssetField\n }\n assets {\n ...AssetField\n }\n options {\n id\n code\n name\n groupId\n }\n translations {\n ...ProductVariantTranslationField\n }\n weight {\n value\n unit\n }\n dimensions {\n length\n width\n height\n unit\n }\n customs {\n hsCode\n originCountryCode\n contentsType\n }\n}\n\nfragment ProductVariantTranslationField on ProductVariantTranslation {\n id\n languageCode\n name\n}";
279
+ export declare const adminRemoveProductsFromChannelDocument = "mutation RemoveProductsFromChannel($input: RemoveProductsFromChannelInput!) {\n removeProductsFromChannel(input: $input) {\n ...ProductField\n }\n}\n\nfragment ProductField on Product {\n id\n createdAt\n updatedAt\n enabled\n isDigital\n trackInventory\n featuredAsset {\n ...AssetField\n }\n assets {\n ...AssetField\n }\n assets {\n id\n name\n type\n mimeType\n source\n preview\n fileSize\n width\n height\n }\n translations {\n ...ProductTranslationField\n }\n facetValues {\n id\n name\n code\n facetId\n }\n facetValues {\n id\n name\n code\n facetId\n }\n channels {\n id\n code\n token\n }\n optionGroups {\n ...ProductOptionGroupField\n }\n variants {\n ...ProductVariantField\n }\n}\n\nfragment AssetField on Asset {\n id\n name\n type\n mimeType\n source\n preview\n fileSize\n width\n height\n tags {\n id\n value\n }\n focalPoint {\n x\n y\n }\n}\n\nfragment ProductTranslationField on ProductTranslation {\n id\n languageCode\n name\n slug\n description\n}\n\nfragment ProductOptionGroupField on ProductOptionGroup {\n id\n code\n name\n options {\n id\n code\n name\n groupId\n }\n translations {\n ...ProductOptionGroupTranslationField\n }\n}\n\nfragment ProductOptionGroupTranslationField on ProductOptionGroupTranslation {\n id\n languageCode\n name\n}\n\nfragment ProductVariantField on ProductVariant {\n id\n sku\n name\n price\n priceWithTax\n stockOnHand\n stockAllocated\n trackInventory\n enabled\n productId\n featuredAsset {\n ...AssetField\n }\n assets {\n ...AssetField\n }\n options {\n id\n code\n name\n groupId\n }\n translations {\n ...ProductVariantTranslationField\n }\n weight {\n value\n unit\n }\n dimensions {\n length\n width\n height\n unit\n }\n customs {\n hsCode\n originCountryCode\n contentsType\n }\n}\n\nfragment ProductVariantTranslationField on ProductVariantTranslation {\n id\n languageCode\n name\n}";
280
+ export declare const adminPromotionDocument = "query Promotion($id: ID!) {\n promotion(id: $id) {\n ...PromotionField\n }\n}\n\nfragment PromotionField on Promotion {\n id\n createdAt\n updatedAt\n name\n enabled\n couponCode\n startsAt\n endsAt\n perCustomerUsageLimit\n usageLimit\n priorityScore\n conditions\n actions\n}";
281
+ export declare const adminPromotionsDocument = "query Promotions($options: ListQueryOptions) {\n promotions(options: $options) {\n items {\n ...PromotionField\n }\n totalItems\n }\n}\n\nfragment PromotionField on Promotion {\n id\n createdAt\n updatedAt\n name\n enabled\n couponCode\n startsAt\n endsAt\n perCustomerUsageLimit\n usageLimit\n priorityScore\n conditions\n actions\n}";
282
+ export declare const adminPromotionConditionsDocument = "query PromotionConditions {\n promotionConditions\n}";
283
+ export declare const adminPromotionActionsDocument = "query PromotionActions {\n promotionActions\n}";
284
+ export declare const adminCreatePromotionDocument = "mutation CreatePromotion($input: CreatePromotionInput!) {\n createPromotion(input: $input) {\n ...PromotionField\n }\n}\n\nfragment PromotionField on Promotion {\n id\n createdAt\n updatedAt\n name\n enabled\n couponCode\n startsAt\n endsAt\n perCustomerUsageLimit\n usageLimit\n priorityScore\n conditions\n actions\n}";
285
+ export declare const adminUpdatePromotionDocument = "mutation UpdatePromotion($input: UpdatePromotionInput!) {\n updatePromotion(input: $input) {\n ...PromotionField\n }\n}\n\nfragment PromotionField on Promotion {\n id\n createdAt\n updatedAt\n name\n enabled\n couponCode\n startsAt\n endsAt\n perCustomerUsageLimit\n usageLimit\n priorityScore\n conditions\n actions\n}";
286
+ export declare const adminDeletePromotionDocument = "mutation DeletePromotion($id: ID!) {\n deletePromotion(id: $id) {\n result\n message\n }\n}";
287
+ export declare const adminAssignPromotionToChannelDocument = "mutation AssignPromotionToChannel($input: AssignPromotionToChannelInput!) {\n assignPromotionToChannel(input: $input) {\n ...PromotionField\n }\n}\n\nfragment PromotionField on Promotion {\n id\n createdAt\n updatedAt\n name\n enabled\n couponCode\n startsAt\n endsAt\n perCustomerUsageLimit\n usageLimit\n priorityScore\n conditions\n actions\n}";
288
+ export declare const adminRemovePromotionFromChannelDocument = "mutation RemovePromotionFromChannel($input: RemovePromotionFromChannelInput!) {\n removePromotionFromChannel(input: $input) {\n ...PromotionField\n }\n}\n\nfragment PromotionField on Promotion {\n id\n createdAt\n updatedAt\n name\n enabled\n couponCode\n startsAt\n endsAt\n perCustomerUsageLimit\n usageLimit\n priorityScore\n conditions\n actions\n}";
289
+ export declare const adminRoleDocument = "query Role($id: ID!) {\n role(id: $id) {\n ...RoleField\n }\n}\n\nfragment RoleField on Role {\n id\n createdAt\n updatedAt\n name\n code\n description\n permissions\n}";
290
+ export declare const adminRolesDocument = "query Roles($options: ListQueryOptions) {\n roles(options: $options) {\n items {\n ...RoleField\n }\n totalItems\n }\n}\n\nfragment RoleField on Role {\n id\n createdAt\n updatedAt\n name\n code\n description\n permissions\n}";
291
+ export declare const adminCreateRoleDocument = "mutation CreateRole($input: CreateRoleInput!) {\n createRole(input: $input) {\n ...RoleField\n }\n}\n\nfragment RoleField on Role {\n id\n createdAt\n updatedAt\n name\n code\n description\n permissions\n}";
292
+ export declare const adminUpdateRoleDocument = "mutation UpdateRole($input: UpdateRoleInput!) {\n updateRole(input: $input) {\n ...RoleField\n }\n}\n\nfragment RoleField on Role {\n id\n createdAt\n updatedAt\n name\n code\n description\n permissions\n}";
293
+ export declare const adminDeleteRoleDocument = "mutation DeleteRole($input: DeleteRoleInput!) {\n deleteRole(input: $input) {\n result\n message\n }\n}";
294
+ export declare const adminAdminScheduledJobDocument = "query AdminScheduledJob($id: ID!) {\n scheduledJob(id: $id) {\n ...AdminScheduledJobFields\n }\n}\n\nfragment AdminScheduledJobFields on ScheduledJob {\n id\n code\n name\n handlerCode\n cronExpression\n timezone\n enabled\n lastRunAt\n nextRunAt\n createdAt\n updatedAt\n}";
295
+ export declare const adminAdminScheduledJobByCodeDocument = "query AdminScheduledJobByCode($code: String!) {\n scheduledJobByCode(code: $code) {\n ...AdminScheduledJobFields\n }\n}\n\nfragment AdminScheduledJobFields on ScheduledJob {\n id\n code\n name\n handlerCode\n cronExpression\n timezone\n enabled\n lastRunAt\n nextRunAt\n createdAt\n updatedAt\n}";
296
+ export declare const adminAdminScheduledJobsDocument = "query AdminScheduledJobs($options: ScheduledJobListOptions) {\n scheduledJobs(options: $options) {\n items {\n ...AdminScheduledJobFields\n }\n totalItems\n }\n}\n\nfragment AdminScheduledJobFields on ScheduledJob {\n id\n code\n name\n handlerCode\n cronExpression\n timezone\n enabled\n lastRunAt\n nextRunAt\n createdAt\n updatedAt\n}";
297
+ export declare const adminAdminScheduledJobRunsDocument = "query AdminScheduledJobRuns($options: ScheduledJobRunListOptions!) {\n scheduledJobRuns(options: $options) {\n items {\n ...AdminScheduledJobRunFields\n }\n totalItems\n }\n}\n\nfragment AdminScheduledJobRunFields on ScheduledJobRun {\n id\n jobId\n startedAt\n completedAt\n status\n durationMs\n error\n createdAt\n}";
298
+ export declare const adminAdminCreateScheduledJobDocument = "mutation AdminCreateScheduledJob($input: CreateScheduledJobInput!) {\n createScheduledJob(input: $input) {\n ...AdminScheduledJobFields\n }\n}\n\nfragment AdminScheduledJobFields on ScheduledJob {\n id\n code\n name\n handlerCode\n cronExpression\n timezone\n enabled\n lastRunAt\n nextRunAt\n createdAt\n updatedAt\n}";
299
+ export declare const adminAdminUpdateScheduledJobDocument = "mutation AdminUpdateScheduledJob($input: UpdateScheduledJobInput!) {\n updateScheduledJob(input: $input) {\n ...AdminScheduledJobFields\n }\n}\n\nfragment AdminScheduledJobFields on ScheduledJob {\n id\n code\n name\n handlerCode\n cronExpression\n timezone\n enabled\n lastRunAt\n nextRunAt\n createdAt\n updatedAt\n}";
300
+ export declare const adminAdminDeleteScheduledJobDocument = "mutation AdminDeleteScheduledJob($id: ID!) {\n deleteScheduledJob(id: $id) {\n ...AdminScheduledJobFields\n }\n}\n\nfragment AdminScheduledJobFields on ScheduledJob {\n id\n code\n name\n handlerCode\n cronExpression\n timezone\n enabled\n lastRunAt\n nextRunAt\n createdAt\n updatedAt\n}";
301
+ export declare const adminAdminTriggerScheduledJobDocument = "mutation AdminTriggerScheduledJob($id: ID!) {\n triggerScheduledJob(id: $id) {\n ...AdminScheduledJobRunFields\n }\n}\n\nfragment AdminScheduledJobRunFields on ScheduledJobRun {\n id\n jobId\n startedAt\n completedAt\n status\n durationMs\n error\n createdAt\n}";
302
+ export declare const adminAdminEnableScheduledJobDocument = "mutation AdminEnableScheduledJob($id: ID!) {\n enableScheduledJob(id: $id) {\n ...AdminScheduledJobFields\n }\n}\n\nfragment AdminScheduledJobFields on ScheduledJob {\n id\n code\n name\n handlerCode\n cronExpression\n timezone\n enabled\n lastRunAt\n nextRunAt\n createdAt\n updatedAt\n}";
303
+ export declare const adminAdminDisableScheduledJobDocument = "mutation AdminDisableScheduledJob($id: ID!) {\n disableScheduledJob(id: $id) {\n ...AdminScheduledJobFields\n }\n}\n\nfragment AdminScheduledJobFields on ScheduledJob {\n id\n code\n name\n handlerCode\n cronExpression\n timezone\n enabled\n lastRunAt\n nextRunAt\n createdAt\n updatedAt\n}";
304
+ export declare const adminAdminSearchDocument = "query AdminSearch($input: SearchInput!) {\n search(input: $input) {\n items {\n productId\n productName\n productVariantId\n productVariantName\n sku\n price {\n min\n max\n }\n inStock\n }\n totalItems\n }\n}";
305
+ export declare const adminReindexDocument = "mutation Reindex {\n reindex\n}";
306
+ export declare const adminSellerDocument = "query Seller($id: ID!) {\n seller(id: $id) {\n ...SellerField\n }\n}\n\nfragment SellerField on Seller {\n id\n createdAt\n updatedAt\n name\n}";
307
+ export declare const adminSellersDocument = "query Sellers($options: ListQueryOptions) {\n sellers(options: $options) {\n items {\n ...SellerField\n }\n totalItems\n }\n}\n\nfragment SellerField on Seller {\n id\n createdAt\n updatedAt\n name\n}";
308
+ export declare const adminCreateSellerDocument = "mutation CreateSeller($input: CreateSellerInput!) {\n createSeller(input: $input) {\n ...SellerField\n }\n}\n\nfragment SellerField on Seller {\n id\n createdAt\n updatedAt\n name\n}";
309
+ export declare const adminUpdateSellerDocument = "mutation UpdateSeller($input: UpdateSellerInput!) {\n updateSeller(input: $input) {\n ...SellerField\n }\n}\n\nfragment SellerField on Seller {\n id\n createdAt\n updatedAt\n name\n}";
310
+ export declare const adminDeleteSellerDocument = "mutation DeleteSeller($id: ID!) {\n deleteSeller(id: $id) {\n ...SellerField\n }\n}\n\nfragment SellerField on Seller {\n id\n createdAt\n updatedAt\n name\n}";
311
+ export declare const adminShippingLabelsDocument = "query ShippingLabels($orderId: ID!) {\n shippingLabels(orderId: $orderId) {\n ...ShippingLabelField\n }\n}\n\nfragment ShippingLabelField on ShippingGatewayLabel {\n id\n status\n trackingNumber\n carrier\n service\n providerCode\n labelUrl\n orderId\n fulfillmentId\n isReturnLabel\n}";
312
+ export declare const adminCarriersDocument = "query Carriers {\n carriers {\n ...ShippingCarrierField\n }\n}\n\nfragment ShippingCarrierField on ShippingGatewayCarrier {\n id\n name\n code\n providerCode\n enabled\n}";
313
+ export declare const adminCreateShippingLabelDocument = "mutation CreateShippingLabel($input: CreateLabelServiceInput!) {\n createShippingLabel(input: $input) {\n ...ShippingLabelField\n }\n}\n\nfragment ShippingLabelField on ShippingGatewayLabel {\n id\n status\n trackingNumber\n carrier\n service\n providerCode\n labelUrl\n orderId\n fulfillmentId\n isReturnLabel\n}";
314
+ export declare const adminVoidShippingLabelDocument = "mutation VoidShippingLabel($labelId: ID!) {\n voidShippingLabel(labelId: $labelId) {\n ...ShippingLabelField\n }\n}\n\nfragment ShippingLabelField on ShippingGatewayLabel {\n id\n status\n trackingNumber\n carrier\n service\n providerCode\n labelUrl\n orderId\n fulfillmentId\n isReturnLabel\n}";
315
+ export declare const adminCreateReturnLabelDocument = "mutation CreateReturnLabel($input: CreateReturnLabelServiceInput!) {\n createReturnLabel(input: $input) {\n ...ShippingLabelField\n }\n}\n\nfragment ShippingLabelField on ShippingGatewayLabel {\n id\n status\n trackingNumber\n carrier\n service\n providerCode\n labelUrl\n orderId\n fulfillmentId\n isReturnLabel\n}";
316
+ export declare const adminCreateCarrierDocument = "mutation CreateCarrier($input: CreateCarrierInput!) {\n createCarrier(input: $input) {\n ...ShippingCarrierField\n }\n}\n\nfragment ShippingCarrierField on ShippingGatewayCarrier {\n id\n name\n code\n providerCode\n enabled\n}";
317
+ export declare const adminUpdateCarrierDocument = "mutation UpdateCarrier($input: UpdateCarrierInput!) {\n updateCarrier(input: $input) {\n ...ShippingCarrierField\n }\n}\n\nfragment ShippingCarrierField on ShippingGatewayCarrier {\n id\n name\n code\n providerCode\n enabled\n}";
318
+ export declare const adminDeleteCarrierDocument = "mutation DeleteCarrier($id: ID!) {\n deleteCarrier(id: $id)\n}";
319
+ export declare const adminShippingRateGroupsDocument = "query ShippingRateGroups($orderId: ID!) {\n shippingRateGroups(orderId: $orderId) {\n ...ShippingRateGroupField\n }\n}\n\nfragment ShippingRateGroupField on ShippingGatewayRateGroup {\n id\n orderId\n stockLocationId\n stockLocationName\n orderLines {\n orderLineId\n productName\n variantName\n quantity\n weight\n weightUnit\n length\n width\n height\n dimensionUnit\n }\n rates {\n id\n extRateId\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n}";
320
+ export declare const adminRefreshShippingRateGroupsDocument = "mutation RefreshShippingRateGroups($input: RefreshShippingRateGroupsInput!) {\n refreshShippingRateGroups(input: $input) {\n ...ShippingRateGroupField\n }\n}\n\nfragment ShippingRateGroupField on ShippingGatewayRateGroup {\n id\n orderId\n stockLocationId\n stockLocationName\n orderLines {\n orderLineId\n productName\n variantName\n quantity\n weight\n weightUnit\n length\n width\n height\n dimensionUnit\n }\n rates {\n id\n extRateId\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n}";
321
+ export declare const adminSelectShippingRateDocument = "mutation SelectShippingRate($input: SelectShippingRateInput!) {\n selectShippingRate(input: $input) {\n ...OrderField\n }\n}\n\nfragment OrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n draftComplete\n preModificationState\n version\n billingAddress {\n ...OrderAddressField\n }\n shippingAddress {\n ...OrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...OrderLineField\n }\n payments {\n ...PaymentField\n }\n fulfillments {\n ...FulfillmentField\n }\n shippingLines {\n ...ShippingLineField\n }\n surcharges {\n ...SurchargeField\n }\n modifications {\n ...OrderModificationField\n }\n promotions {\n id\n }\n discounts {\n ...DiscountField\n }\n taxSummary {\n ...TaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...PaymentTokenField\n }\n history {\n items {\n ...HistoryEntryField\n }\n totalItems\n }\n}\n\nfragment OrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment OrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n snapshot {\n id\n createdAt\n updatedAt\n productName\n variantName\n sku\n imageUrl\n price\n priceWithTax\n }\n}\n\nfragment AdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment TaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment PaymentField on Payment {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n ...RefundField\n }\n}\n\nfragment RefundField on Refund {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n lines {\n ...RefundLineField\n }\n}\n\nfragment RefundLineField on RefundLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment FulfillmentField on Fulfillment {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n ...FulfillmentLineField\n }\n}\n\nfragment FulfillmentLineField on FulfillmentLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment SurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment OrderModificationField on OrderModification {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n ...SurchargeField\n }\n payment {\n ...PaymentField\n }\n refund {\n ...RefundField\n }\n}\n\nfragment DiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment TaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment PaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}\n\nfragment HistoryEntryField on HistoryEntry {\n id\n createdAt\n updatedAt\n type\n isPublic\n data\n administrator {\n id\n }\n}";
322
+ export declare const adminSetManualShippingRateDocument = "mutation SetManualShippingRate($input: SetManualShippingRateInput!) {\n setManualShippingRate(input: $input) {\n ...OrderField\n }\n}\n\nfragment OrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n draftComplete\n preModificationState\n version\n billingAddress {\n ...OrderAddressField\n }\n shippingAddress {\n ...OrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...OrderLineField\n }\n payments {\n ...PaymentField\n }\n fulfillments {\n ...FulfillmentField\n }\n shippingLines {\n ...ShippingLineField\n }\n surcharges {\n ...SurchargeField\n }\n modifications {\n ...OrderModificationField\n }\n promotions {\n id\n }\n discounts {\n ...DiscountField\n }\n taxSummary {\n ...TaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...PaymentTokenField\n }\n history {\n items {\n ...HistoryEntryField\n }\n totalItems\n }\n}\n\nfragment OrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment OrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n snapshot {\n id\n createdAt\n updatedAt\n productName\n variantName\n sku\n imageUrl\n price\n priceWithTax\n }\n}\n\nfragment AdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment TaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...AdjustmentField\n }\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment PaymentField on Payment {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n ...RefundField\n }\n}\n\nfragment RefundField on Refund {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n lines {\n ...RefundLineField\n }\n}\n\nfragment RefundLineField on RefundLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment FulfillmentField on Fulfillment {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n ...FulfillmentLineField\n }\n}\n\nfragment FulfillmentLineField on FulfillmentLine {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n}\n\nfragment SurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n taxLines {\n ...TaxLineField\n }\n}\n\nfragment OrderModificationField on OrderModification {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n ...SurchargeField\n }\n payment {\n ...PaymentField\n }\n refund {\n ...RefundField\n }\n}\n\nfragment DiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment TaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment PaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}\n\nfragment HistoryEntryField on HistoryEntry {\n id\n createdAt\n updatedAt\n type\n isPublic\n data\n administrator {\n id\n }\n}";
323
+ export declare const adminUpdateShippingLabelDocument = "mutation UpdateShippingLabel($input: UpdateShippingLabelInput!) {\n updateShippingLabel(input: $input) {\n ...ShippingLabelField\n }\n}\n\nfragment ShippingLabelField on ShippingGatewayLabel {\n id\n status\n trackingNumber\n carrier\n service\n providerCode\n labelUrl\n orderId\n fulfillmentId\n isReturnLabel\n}";
324
+ export declare const adminAvailableShippingProvidersDocument = "query AvailableShippingProviders {\n availableShippingProviders {\n code\n name\n pluginBacked\n }\n}";
325
+ export declare const adminStockLocationDocument = "query StockLocation($id: ID!) {\n stockLocation(id: $id) {\n ...StockLocationField\n }\n}\n\nfragment StockLocationField on StockLocation {\n id\n createdAt\n updatedAt\n name\n description\n locationType\n address {\n id\n createdAt\n updatedAt\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n countryCode\n phoneNumber\n }\n}";
326
+ export declare const adminStockLocationsDocument = "query StockLocations($options: ListQueryOptions) {\n stockLocations(options: $options) {\n items {\n ...StockLocationField\n }\n totalItems\n }\n}\n\nfragment StockLocationField on StockLocation {\n id\n createdAt\n updatedAt\n name\n description\n locationType\n address {\n id\n createdAt\n updatedAt\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n countryCode\n phoneNumber\n }\n}";
327
+ export declare const adminDefaultStockLocationDocument = "query DefaultStockLocation {\n defaultStockLocation {\n ...StockLocationField\n }\n}\n\nfragment StockLocationField on StockLocation {\n id\n createdAt\n updatedAt\n name\n description\n locationType\n address {\n id\n createdAt\n updatedAt\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n countryCode\n phoneNumber\n }\n}";
328
+ export declare const adminStockMovementsDocument = "query StockMovements($input: StockMovementsInput!) {\n stockMovements(input: $input) {\n items {\n ...StockMovementField\n }\n totalItems\n }\n}\n\nfragment StockMovementField on StockMovement {\n id\n createdAt\n updatedAt\n type\n quantity\n variantId\n stockLocationId\n orderLineId\n note\n}";
329
+ export declare const adminAvailableStockDocument = "query AvailableStock($input: AvailableStockInput!) {\n availableStock(input: $input)\n}";
330
+ export declare const adminCreateStockLocationDocument = "mutation CreateStockLocation($input: CreateStockLocationInput!) {\n createStockLocation(input: $input) {\n ...StockLocationField\n }\n}\n\nfragment StockLocationField on StockLocation {\n id\n createdAt\n updatedAt\n name\n description\n locationType\n address {\n id\n createdAt\n updatedAt\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n countryCode\n phoneNumber\n }\n}";
331
+ export declare const adminUpdateStockLocationDocument = "mutation UpdateStockLocation($input: UpdateStockLocationInput!) {\n updateStockLocation(input: $input) {\n ...StockLocationField\n }\n}\n\nfragment StockLocationField on StockLocation {\n id\n createdAt\n updatedAt\n name\n description\n locationType\n address {\n id\n createdAt\n updatedAt\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n countryCode\n phoneNumber\n }\n}";
332
+ export declare const adminDeleteStockLocationDocument = "mutation DeleteStockLocation($id: ID!) {\n deleteStockLocation(id: $id) {\n result\n message\n }\n}";
333
+ export declare const adminAssignStockLocationToChannelDocument = "mutation AssignStockLocationToChannel($input: AssignStockLocationToChannelInput!) {\n assignStockLocationToChannel(input: $input) {\n ...StockLocationField\n }\n}\n\nfragment StockLocationField on StockLocation {\n id\n createdAt\n updatedAt\n name\n description\n locationType\n address {\n id\n createdAt\n updatedAt\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n countryCode\n phoneNumber\n }\n}";
334
+ export declare const adminRemoveStockLocationFromChannelDocument = "mutation RemoveStockLocationFromChannel($input: RemoveStockLocationFromChannelInput!) {\n removeStockLocationFromChannel(input: $input) {\n ...StockLocationField\n }\n}\n\nfragment StockLocationField on StockLocation {\n id\n createdAt\n updatedAt\n name\n description\n locationType\n address {\n id\n createdAt\n updatedAt\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n countryCode\n phoneNumber\n }\n}";
335
+ export declare const adminAdjustStockDocument = "mutation AdjustStock($input: AdjustStockInput!) {\n adjustStock(input: $input) {\n ...StockMovementField\n }\n}\n\nfragment StockMovementField on StockMovement {\n id\n createdAt\n updatedAt\n type\n quantity\n variantId\n stockLocationId\n orderLineId\n note\n}";
336
+ export declare const adminVariantStockLevelsDocument = "query VariantStockLevels($input: VariantStockLevelsInput!) {\n variantStockLevels(input: $input) {\n stockLocationId\n stockLocationName\n stockOnHand\n stockAllocated\n stockReserved\n stockDamaged\n safetyStock\n stockInQualityControl\n stockIncoming\n available\n }\n}";
337
+ export declare const adminReserveStockDocument = "mutation ReserveStock($input: ReserveStockInput!) {\n reserveStock(input: $input) {\n ...StockMovementField\n }\n}\n\nfragment StockMovementField on StockMovement {\n id\n createdAt\n updatedAt\n type\n quantity\n variantId\n stockLocationId\n orderLineId\n note\n}";
338
+ export declare const adminUnreserveStockDocument = "mutation UnreserveStock($input: UnreserveStockInput!) {\n unreserveStock(input: $input) {\n ...StockMovementField\n }\n}\n\nfragment StockMovementField on StockMovement {\n id\n createdAt\n updatedAt\n type\n quantity\n variantId\n stockLocationId\n orderLineId\n note\n}";
339
+ export declare const adminReportDamagedStockDocument = "mutation ReportDamagedStock($input: ReportDamagedStockInput!) {\n reportDamagedStock(input: $input) {\n ...StockMovementField\n }\n}\n\nfragment StockMovementField on StockMovement {\n id\n createdAt\n updatedAt\n type\n quantity\n variantId\n stockLocationId\n orderLineId\n note\n}";
340
+ export declare const adminWriteOffDamagedStockDocument = "mutation WriteOffDamagedStock($input: WriteOffDamagedStockInput!) {\n writeOffDamagedStock(input: $input) {\n ...StockMovementField\n }\n}\n\nfragment StockMovementField on StockMovement {\n id\n createdAt\n updatedAt\n type\n quantity\n variantId\n stockLocationId\n orderLineId\n note\n}";
341
+ export declare const adminHoldForQualityControlDocument = "mutation HoldForQualityControl($input: HoldForQualityControlInput!) {\n holdForQualityControl(input: $input) {\n ...StockMovementField\n }\n}\n\nfragment StockMovementField on StockMovement {\n id\n createdAt\n updatedAt\n type\n quantity\n variantId\n stockLocationId\n orderLineId\n note\n}";
342
+ export declare const adminReleaseFromQualityControlDocument = "mutation ReleaseFromQualityControl($input: ReleaseFromQualityControlInput!) {\n releaseFromQualityControl(input: $input) {\n ...StockMovementField\n }\n}\n\nfragment StockMovementField on StockMovement {\n id\n createdAt\n updatedAt\n type\n quantity\n variantId\n stockLocationId\n orderLineId\n note\n}";
343
+ export declare const adminRecordIncomingStockDocument = "mutation RecordIncomingStock($input: RecordIncomingStockInput!) {\n recordIncomingStock(input: $input) {\n ...StockMovementField\n }\n}\n\nfragment StockMovementField on StockMovement {\n id\n createdAt\n updatedAt\n type\n quantity\n variantId\n stockLocationId\n orderLineId\n note\n}";
344
+ export declare const adminReceiveIncomingStockDocument = "mutation ReceiveIncomingStock($input: ReceiveIncomingStockInput!) {\n receiveIncomingStock(input: $input) {\n ...StockMovementField\n }\n}\n\nfragment StockMovementField on StockMovement {\n id\n createdAt\n updatedAt\n type\n quantity\n variantId\n stockLocationId\n orderLineId\n note\n}";
345
+ export declare const adminSetSafetyStockDocument = "mutation SetSafetyStock($input: SetSafetyStockInput!) {\n setSafetyStock(input: $input) {\n ...StockLevelField\n }\n}\n\nfragment StockLevelField on StockLevel {\n id\n variantId\n stockLocationId\n stockOnHand\n stockAllocated\n stockReserved\n stockDamaged\n safetyStock\n stockInQualityControl\n stockIncoming\n}";
346
+ export declare const adminSubscriptionDocument = "query Subscription($id: ID!) {\n subscription(id: $id) {\n ...BillingSubscriptionField\n }\n}\n\nfragment BillingSubscriptionField on BillingSubscription {\n id\n createdAt\n updatedAt\n code\n state\n billingInterval\n currencyCode\n anchorDate\n currentPeriodStart\n currentPeriodEnd\n trialEnd\n cancelledAt\n cancellationReason\n cancelAtPeriodEnd\n pausedAt\n resumeAt\n dunningAttemptCount\n customer {\n id\n firstName\n lastName\n emailAddress\n }\n items {\n id\n variant {\n id\n sku\n name\n }\n quantity\n unitPrice\n isDigital\n }\n creditBalances {\n id\n amountCents\n appliedCents\n reason\n sourceOrderId\n }\n}";
347
+ export declare const adminSubscriptionsDocument = "query Subscriptions($options: SubscriptionListOptions) {\n subscriptions(options: $options) {\n items {\n ...BillingSubscriptionField\n }\n totalItems\n }\n}\n\nfragment BillingSubscriptionField on BillingSubscription {\n id\n createdAt\n updatedAt\n code\n state\n billingInterval\n currencyCode\n anchorDate\n currentPeriodStart\n currentPeriodEnd\n trialEnd\n cancelledAt\n cancellationReason\n cancelAtPeriodEnd\n pausedAt\n resumeAt\n dunningAttemptCount\n customer {\n id\n firstName\n lastName\n emailAddress\n }\n items {\n id\n variant {\n id\n sku\n name\n }\n quantity\n unitPrice\n isDigital\n }\n creditBalances {\n id\n amountCents\n appliedCents\n reason\n sourceOrderId\n }\n}";
348
+ export declare const adminSubscriptionVariantConfigsDocument = "query SubscriptionVariantConfigs {\n subscriptionVariantConfigs {\n ...SubscriptionVariantConfigField\n }\n}\n\nfragment SubscriptionVariantConfigField on SubscriptionVariantConfig {\n id\n variant {\n id\n sku\n name\n }\n billingInterval\n trialPeriodDays\n prorationEnabled\n isDigital\n maxQuantity\n enabled\n metricAllowances {\n id\n metric {\n id\n code\n name\n }\n includedQuantity\n }\n}";
349
+ export declare const adminUsageMetricsDocument = "query UsageMetrics {\n usageMetrics {\n ...UsageMetricField\n }\n}\n\nfragment UsageMetricField on UsageMetric {\n id\n code\n name\n unitPriceCents\n aggregation\n enabled\n}";
350
+ export declare const adminUsageRecordsDocument = "query UsageRecords($subscriptionId: ID!, $options: UsageRecordListOptions) {\n usageRecords(subscriptionId: $subscriptionId, options: $options) {\n items {\n id\n subscription {\n id\n code\n }\n metric {\n id\n code\n name\n }\n quantity\n timestamp\n idempotencyKey\n billed\n }\n totalItems\n }\n}";
351
+ export declare const adminDunningAttemptsDocument = "query DunningAttempts($subscriptionId: ID!) {\n dunningAttempts(subscriptionId: $subscriptionId) {\n ...DunningAttemptField\n }\n}\n\nfragment DunningAttemptField on DunningAttempt {\n id\n attemptNumber\n state\n failureReason\n scheduledAt\n executedAt\n}";
352
+ export declare const adminDunningScheduleDocument = "query DunningSchedule {\n dunningSchedule {\n id\n gracePeriodDays\n exhaustedAction\n steps {\n id\n dayOffset\n notify\n sortOrder\n }\n }\n}";
353
+ export declare const adminCreateSubscriptionDocument = "mutation CreateSubscription($input: CreateSubscriptionInput!) {\n createSubscription(input: $input) {\n ...BillingSubscriptionField\n }\n}\n\nfragment BillingSubscriptionField on BillingSubscription {\n id\n createdAt\n updatedAt\n code\n state\n billingInterval\n currencyCode\n anchorDate\n currentPeriodStart\n currentPeriodEnd\n trialEnd\n cancelledAt\n cancellationReason\n cancelAtPeriodEnd\n pausedAt\n resumeAt\n dunningAttemptCount\n customer {\n id\n firstName\n lastName\n emailAddress\n }\n items {\n id\n variant {\n id\n sku\n name\n }\n quantity\n unitPrice\n isDigital\n }\n creditBalances {\n id\n amountCents\n appliedCents\n reason\n sourceOrderId\n }\n}";
354
+ export declare const adminCancelSubscriptionDocument = "mutation CancelSubscription($input: CancelSubscriptionInput!) {\n cancelSubscription(input: $input) {\n ...BillingSubscriptionField\n }\n}\n\nfragment BillingSubscriptionField on BillingSubscription {\n id\n createdAt\n updatedAt\n code\n state\n billingInterval\n currencyCode\n anchorDate\n currentPeriodStart\n currentPeriodEnd\n trialEnd\n cancelledAt\n cancellationReason\n cancelAtPeriodEnd\n pausedAt\n resumeAt\n dunningAttemptCount\n customer {\n id\n firstName\n lastName\n emailAddress\n }\n items {\n id\n variant {\n id\n sku\n name\n }\n quantity\n unitPrice\n isDigital\n }\n creditBalances {\n id\n amountCents\n appliedCents\n reason\n sourceOrderId\n }\n}";
355
+ export declare const adminPauseSubscriptionDocument = "mutation PauseSubscription($id: ID!) {\n pauseSubscription(id: $id) {\n ...BillingSubscriptionField\n }\n}\n\nfragment BillingSubscriptionField on BillingSubscription {\n id\n createdAt\n updatedAt\n code\n state\n billingInterval\n currencyCode\n anchorDate\n currentPeriodStart\n currentPeriodEnd\n trialEnd\n cancelledAt\n cancellationReason\n cancelAtPeriodEnd\n pausedAt\n resumeAt\n dunningAttemptCount\n customer {\n id\n firstName\n lastName\n emailAddress\n }\n items {\n id\n variant {\n id\n sku\n name\n }\n quantity\n unitPrice\n isDigital\n }\n creditBalances {\n id\n amountCents\n appliedCents\n reason\n sourceOrderId\n }\n}";
356
+ export declare const adminResumeSubscriptionDocument = "mutation ResumeSubscription($id: ID!) {\n resumeSubscription(id: $id) {\n ...BillingSubscriptionField\n }\n}\n\nfragment BillingSubscriptionField on BillingSubscription {\n id\n createdAt\n updatedAt\n code\n state\n billingInterval\n currencyCode\n anchorDate\n currentPeriodStart\n currentPeriodEnd\n trialEnd\n cancelledAt\n cancellationReason\n cancelAtPeriodEnd\n pausedAt\n resumeAt\n dunningAttemptCount\n customer {\n id\n firstName\n lastName\n emailAddress\n }\n items {\n id\n variant {\n id\n sku\n name\n }\n quantity\n unitPrice\n isDigital\n }\n creditBalances {\n id\n amountCents\n appliedCents\n reason\n sourceOrderId\n }\n}";
357
+ export declare const adminReactivateSubscriptionDocument = "mutation ReactivateSubscription($id: ID!) {\n reactivateSubscription(id: $id) {\n ...BillingSubscriptionField\n }\n}\n\nfragment BillingSubscriptionField on BillingSubscription {\n id\n createdAt\n updatedAt\n code\n state\n billingInterval\n currencyCode\n anchorDate\n currentPeriodStart\n currentPeriodEnd\n trialEnd\n cancelledAt\n cancellationReason\n cancelAtPeriodEnd\n pausedAt\n resumeAt\n dunningAttemptCount\n customer {\n id\n firstName\n lastName\n emailAddress\n }\n items {\n id\n variant {\n id\n sku\n name\n }\n quantity\n unitPrice\n isDigital\n }\n creditBalances {\n id\n amountCents\n appliedCents\n reason\n sourceOrderId\n }\n}";
358
+ export declare const adminChangeSubscriptionPlanDocument = "mutation ChangeSubscriptionPlan($input: ChangeSubscriptionPlanInput!) {\n changeSubscriptionPlan(input: $input) {\n ...BillingSubscriptionField\n }\n}\n\nfragment BillingSubscriptionField on BillingSubscription {\n id\n createdAt\n updatedAt\n code\n state\n billingInterval\n currencyCode\n anchorDate\n currentPeriodStart\n currentPeriodEnd\n trialEnd\n cancelledAt\n cancellationReason\n cancelAtPeriodEnd\n pausedAt\n resumeAt\n dunningAttemptCount\n customer {\n id\n firstName\n lastName\n emailAddress\n }\n items {\n id\n variant {\n id\n sku\n name\n }\n quantity\n unitPrice\n isDigital\n }\n creditBalances {\n id\n amountCents\n appliedCents\n reason\n sourceOrderId\n }\n}";
359
+ export declare const adminChangeSubscriptionQuantityDocument = "mutation ChangeSubscriptionQuantity($input: ChangeSubscriptionQuantityInput!) {\n changeSubscriptionQuantity(input: $input) {\n ...BillingSubscriptionField\n }\n}\n\nfragment BillingSubscriptionField on BillingSubscription {\n id\n createdAt\n updatedAt\n code\n state\n billingInterval\n currencyCode\n anchorDate\n currentPeriodStart\n currentPeriodEnd\n trialEnd\n cancelledAt\n cancellationReason\n cancelAtPeriodEnd\n pausedAt\n resumeAt\n dunningAttemptCount\n customer {\n id\n firstName\n lastName\n emailAddress\n }\n items {\n id\n variant {\n id\n sku\n name\n }\n quantity\n unitPrice\n isDigital\n }\n creditBalances {\n id\n amountCents\n appliedCents\n reason\n sourceOrderId\n }\n}";
360
+ export declare const adminCreateSubscriptionVariantConfigDocument = "mutation CreateSubscriptionVariantConfig($input: CreateSubscriptionVariantConfigInput!) {\n createSubscriptionVariantConfig(input: $input) {\n ...SubscriptionVariantConfigField\n }\n}\n\nfragment SubscriptionVariantConfigField on SubscriptionVariantConfig {\n id\n variant {\n id\n sku\n name\n }\n billingInterval\n trialPeriodDays\n prorationEnabled\n isDigital\n maxQuantity\n enabled\n metricAllowances {\n id\n metric {\n id\n code\n name\n }\n includedQuantity\n }\n}";
361
+ export declare const adminUpdateSubscriptionVariantConfigDocument = "mutation UpdateSubscriptionVariantConfig($input: UpdateSubscriptionVariantConfigInput!) {\n updateSubscriptionVariantConfig(input: $input) {\n ...SubscriptionVariantConfigField\n }\n}\n\nfragment SubscriptionVariantConfigField on SubscriptionVariantConfig {\n id\n variant {\n id\n sku\n name\n }\n billingInterval\n trialPeriodDays\n prorationEnabled\n isDigital\n maxQuantity\n enabled\n metricAllowances {\n id\n metric {\n id\n code\n name\n }\n includedQuantity\n }\n}";
362
+ export declare const adminDeleteSubscriptionVariantConfigDocument = "mutation DeleteSubscriptionVariantConfig($id: ID!) {\n deleteSubscriptionVariantConfig(id: $id) {\n ...SubscriptionVariantConfigField\n }\n}\n\nfragment SubscriptionVariantConfigField on SubscriptionVariantConfig {\n id\n variant {\n id\n sku\n name\n }\n billingInterval\n trialPeriodDays\n prorationEnabled\n isDigital\n maxQuantity\n enabled\n metricAllowances {\n id\n metric {\n id\n code\n name\n }\n includedQuantity\n }\n}";
363
+ export declare const adminCreateUsageMetricDocument = "mutation CreateUsageMetric($input: CreateUsageMetricInput!) {\n createUsageMetric(input: $input) {\n ...UsageMetricField\n }\n}\n\nfragment UsageMetricField on UsageMetric {\n id\n code\n name\n unitPriceCents\n aggregation\n enabled\n}";
364
+ export declare const adminUpdateUsageMetricDocument = "mutation UpdateUsageMetric($input: UpdateUsageMetricInput!) {\n updateUsageMetric(input: $input) {\n ...UsageMetricField\n }\n}\n\nfragment UsageMetricField on UsageMetric {\n id\n code\n name\n unitPriceCents\n aggregation\n enabled\n}";
365
+ export declare const adminAddSubscriptionCreditDocument = "mutation AddSubscriptionCredit($input: AddSubscriptionCreditInput!) {\n addSubscriptionCredit(input: $input) {\n ...SubscriptionCreditBalanceField\n }\n}\n\nfragment SubscriptionCreditBalanceField on SubscriptionCreditBalance {\n id\n amountCents\n appliedCents\n reason\n sourceOrderId\n}";
366
+ export declare const adminTaxCategoryDocument = "query TaxCategory($id: ID!) {\n taxCategory(id: $id) {\n ...TaxCategoryField\n }\n}\n\nfragment TaxCategoryField on TaxCategory {\n id\n createdAt\n updatedAt\n name\n isDefault\n}";
367
+ export declare const adminTaxCategoriesDocument = "query TaxCategories($options: ListQueryOptions) {\n taxCategories(options: $options) {\n items {\n ...TaxCategoryField\n }\n totalItems\n }\n}\n\nfragment TaxCategoryField on TaxCategory {\n id\n createdAt\n updatedAt\n name\n isDefault\n}";
368
+ export declare const adminTaxRateDocument = "query TaxRate($id: ID!) {\n taxRate(id: $id) {\n ...TaxRateField\n }\n}\n\nfragment TaxRateField on TaxRate {\n id\n createdAt\n updatedAt\n name\n value\n enabled\n zoneId\n categoryId\n zone {\n id\n name\n }\n category {\n id\n name\n }\n}";
369
+ export declare const adminTaxRatesDocument = "query TaxRates($options: ListQueryOptions) {\n taxRates(options: $options) {\n items {\n ...TaxRateField\n }\n totalItems\n }\n}\n\nfragment TaxRateField on TaxRate {\n id\n createdAt\n updatedAt\n name\n value\n enabled\n zoneId\n categoryId\n zone {\n id\n name\n }\n category {\n id\n name\n }\n}";
370
+ export declare const adminCreateTaxCategoryDocument = "mutation CreateTaxCategory($input: CreateTaxCategoryInput!) {\n createTaxCategory(input: $input) {\n ...TaxCategoryField\n }\n}\n\nfragment TaxCategoryField on TaxCategory {\n id\n createdAt\n updatedAt\n name\n isDefault\n}";
371
+ export declare const adminUpdateTaxCategoryDocument = "mutation UpdateTaxCategory($input: UpdateTaxCategoryInput!) {\n updateTaxCategory(input: $input) {\n ...TaxCategoryField\n }\n}\n\nfragment TaxCategoryField on TaxCategory {\n id\n createdAt\n updatedAt\n name\n isDefault\n}";
372
+ export declare const adminDeleteTaxCategoryDocument = "mutation DeleteTaxCategory($id: ID!) {\n deleteTaxCategory(id: $id) {\n result\n message\n }\n}";
373
+ export declare const adminCreateTaxRateDocument = "mutation CreateTaxRate($input: CreateTaxRateInput!) {\n createTaxRate(input: $input) {\n ...TaxRateField\n }\n}\n\nfragment TaxRateField on TaxRate {\n id\n createdAt\n updatedAt\n name\n value\n enabled\n zoneId\n categoryId\n zone {\n id\n name\n }\n category {\n id\n name\n }\n}";
374
+ export declare const adminUpdateTaxRateDocument = "mutation UpdateTaxRate($input: UpdateTaxRateInput!) {\n updateTaxRate(input: $input) {\n ...TaxRateField\n }\n}\n\nfragment TaxRateField on TaxRate {\n id\n createdAt\n updatedAt\n name\n value\n enabled\n zoneId\n categoryId\n zone {\n id\n name\n }\n category {\n id\n name\n }\n}";
375
+ export declare const adminDeleteTaxRateDocument = "mutation DeleteTaxRate($id: ID!) {\n deleteTaxRate(id: $id) {\n result\n message\n }\n}";
376
+ export declare const adminBeginTransactionDocument = "mutation BeginTransaction {\n beginTransaction {\n token\n }\n}";
377
+ export declare const adminCommitTransactionDocument = "mutation CommitTransaction($token: String!) {\n commitTransaction(token: $token) {\n result\n message\n }\n}";
378
+ export declare const adminRollbackTransactionDocument = "mutation RollbackTransaction($token: String!) {\n rollbackTransaction(token: $token) {\n result\n message\n }\n}";
379
+ export declare const adminZoneDocument = "query Zone($id: ID!) {\n zone(id: $id) {\n ...ZoneField\n }\n}\n\nfragment ZoneField on Zone {\n id\n createdAt\n updatedAt\n name\n province\n members {\n id\n code\n name\n enabled\n }\n}";
380
+ export declare const adminZonesDocument = "query Zones($options: ListQueryOptions) {\n zones(options: $options) {\n items {\n ...ZoneField\n }\n totalItems\n }\n}\n\nfragment ZoneField on Zone {\n id\n createdAt\n updatedAt\n name\n province\n members {\n id\n code\n name\n enabled\n }\n}";
381
+ export declare const adminUpdateZoneDocument = "mutation UpdateZone($input: UpdateZoneInput!) {\n updateZone(input: $input) {\n ...ZoneField\n }\n}\n\nfragment ZoneField on Zone {\n id\n createdAt\n updatedAt\n name\n province\n members {\n id\n code\n name\n enabled\n }\n}";
382
+ export declare const adminDeleteZoneDocument = "mutation DeleteZone($id: ID!) {\n deleteZone(id: $id) {\n result\n message\n }\n}";
383
+ export declare const adminAddMembersToZoneDocument = "mutation AddMembersToZone($input: AddMembersToZoneInput!) {\n addMembersToZone(input: $input) {\n ...ZoneField\n }\n}\n\nfragment ZoneField on Zone {\n id\n createdAt\n updatedAt\n name\n province\n members {\n id\n code\n name\n enabled\n }\n}";
384
+ export declare const adminRemoveMembersFromZoneDocument = "mutation RemoveMembersFromZone($input: RemoveMembersFromZoneInput!) {\n removeMembersFromZone(input: $input) {\n ...ZoneField\n }\n}\n\nfragment ZoneField on Zone {\n id\n createdAt\n updatedAt\n name\n province\n members {\n id\n code\n name\n enabled\n }\n}";
385
+ export declare const shopShopFieldDefinitionDocument = "query ShopFieldDefinition($code: String!) {\n fieldDefinition(code: $code) {\n id\n createdAt\n updatedAt\n code\n name\n kind\n icon\n source\n pluginCode\n maxDepth\n route\n capabilities {\n publishable\n translatable\n sortable\n searchable\n }\n fieldDefinitions {\n id\n createdAt\n updatedAt\n entityName\n fieldName\n category\n fieldGroupId\n sortOrder\n }\n }\n}";
386
+ export declare const shopShopEntryDocument = "query ShopEntry($definitionCode: String!, $id: ID!) {\n entry(definitionCode: $definitionCode, id: $id) {\n id\n createdAt\n updatedAt\n fields {\n ...ShopAcfFieldValueFields\n }\n groups {\n name\n entries {\n id\n sortOrder\n fields {\n ...ShopAcfFieldValueFields\n }\n }\n }\n }\n}\n\nfragment ShopAcfFieldValueFields on AcfFieldValueUnion {\n ... on AcfStringValue {\n __typename\n name\n stringValue\n }\n ... on AcfIntValue {\n __typename\n name\n intValue\n }\n ... on AcfFloatValue {\n __typename\n name\n floatValue\n }\n ... on AcfBoolValue {\n __typename\n name\n boolValue\n }\n ... on AcfDateValue {\n __typename\n name\n dateValue\n }\n ... on AcfIdValue {\n __typename\n name\n idValue\n }\n}";
387
+ export declare const shopShopEntriesDocument = "query ShopEntries($definitionCode: String!, $options: EntryListOptions) {\n entries(definitionCode: $definitionCode, options: $options) {\n items {\n id\n createdAt\n updatedAt\n fields {\n ...ShopAcfFieldValueFields\n }\n groups {\n name\n entries {\n id\n sortOrder\n fields {\n ...ShopAcfFieldValueFields\n }\n }\n }\n }\n totalItems\n }\n}\n\nfragment ShopAcfFieldValueFields on AcfFieldValueUnion {\n ... on AcfStringValue {\n __typename\n name\n stringValue\n }\n ... on AcfIntValue {\n __typename\n name\n intValue\n }\n ... on AcfFloatValue {\n __typename\n name\n floatValue\n }\n ... on AcfBoolValue {\n __typename\n name\n boolValue\n }\n ... on AcfDateValue {\n __typename\n name\n dateValue\n }\n ... on AcfIdValue {\n __typename\n name\n idValue\n }\n}";
388
+ export declare const shopExternalAuthenticationMethodsDocument = "query ExternalAuthenticationMethods {\n externalAuthenticationMethods {\n id\n }\n}";
389
+ export declare const shopLoginDocument = "mutation Login($input: NativeAuthInput!) {\n login(input: $input) {\n id\n token\n channels {\n id\n token\n code\n permissions\n }\n }\n}";
390
+ export declare const shopLogoutDocument = "mutation Logout {\n logout\n}";
391
+ export declare const shopAuthenticateWithExternalStrategyDocument = "mutation AuthenticateWithExternalStrategy($input: AuthenticateWithExternalStrategyInput!) {\n authenticateWithExternalStrategy(input: $input) {\n id\n token\n channels {\n id\n token\n code\n permissions\n }\n }\n}";
392
+ export declare const shopUnlinkExternalAuthenticationMethodDocument = "mutation UnlinkExternalAuthenticationMethod($strategy: String!) {\n unlinkExternalAuthenticationMethod(strategy: $strategy)\n}";
393
+ export declare const shopUpdateUserPreferencesDocument = "mutation UpdateUserPreferences($input: UpdateUserPreferencesInput!) {\n updateUserPreferences(input: $input) {\n preferredLanguageCode\n preferredTimezone\n }\n}";
394
+ export declare const shopAddItemToOrderDocument = "mutation AddItemToOrder($input: ShopAddItemToOrderInput!) {\n addItemToOrder(input: $input) {\n ...ShopOrderField\n }\n}\n\nfragment ShopOrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n version\n billingAddress {\n ...ShopOrderAddressField\n }\n shippingAddress {\n ...ShopOrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...ShopOrderLineField\n }\n payments {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n }\n }\n fulfillments {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n }\n }\n shippingLines {\n ...ShopShippingLineField\n }\n surcharges {\n ...ShopSurchargeField\n }\n modifications {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n id\n description\n listPrice\n }\n payment {\n id\n state\n amount\n }\n refund {\n id\n total\n state\n }\n }\n promotions {\n id\n }\n discounts {\n ...ShopDiscountField\n }\n taxSummary {\n ...ShopTaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...ShopPaymentTokenField\n }\n}\n\nfragment ShopOrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment ShopOrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...ShopAdjustmentField\n }\n taxLines {\n ...ShopTaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShopShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n}\n\nfragment ShopAdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment ShopTaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShopShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...ShopAdjustmentField\n }\n taxLines {\n ...ShopTaxLineField\n }\n}\n\nfragment ShopSurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n}\n\nfragment ShopDiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment ShopTaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment ShopPaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}";
395
+ export declare const shopAdjustOrderLineDocument = "mutation AdjustOrderLine($input: ShopAdjustOrderLineInput!) {\n adjustOrderLine(input: $input) {\n ...ShopOrderField\n }\n}\n\nfragment ShopOrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n version\n billingAddress {\n ...ShopOrderAddressField\n }\n shippingAddress {\n ...ShopOrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...ShopOrderLineField\n }\n payments {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n }\n }\n fulfillments {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n }\n }\n shippingLines {\n ...ShopShippingLineField\n }\n surcharges {\n ...ShopSurchargeField\n }\n modifications {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n id\n description\n listPrice\n }\n payment {\n id\n state\n amount\n }\n refund {\n id\n total\n state\n }\n }\n promotions {\n id\n }\n discounts {\n ...ShopDiscountField\n }\n taxSummary {\n ...ShopTaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...ShopPaymentTokenField\n }\n}\n\nfragment ShopOrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment ShopOrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...ShopAdjustmentField\n }\n taxLines {\n ...ShopTaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShopShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n}\n\nfragment ShopAdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment ShopTaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShopShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...ShopAdjustmentField\n }\n taxLines {\n ...ShopTaxLineField\n }\n}\n\nfragment ShopSurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n}\n\nfragment ShopDiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment ShopTaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment ShopPaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}";
396
+ export declare const shopRemoveOrderLineDocument = "mutation RemoveOrderLine($lineId: ID!) {\n removeOrderLine(lineId: $lineId) {\n ...ShopOrderField\n }\n}\n\nfragment ShopOrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n version\n billingAddress {\n ...ShopOrderAddressField\n }\n shippingAddress {\n ...ShopOrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...ShopOrderLineField\n }\n payments {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n }\n }\n fulfillments {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n }\n }\n shippingLines {\n ...ShopShippingLineField\n }\n surcharges {\n ...ShopSurchargeField\n }\n modifications {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n id\n description\n listPrice\n }\n payment {\n id\n state\n amount\n }\n refund {\n id\n total\n state\n }\n }\n promotions {\n id\n }\n discounts {\n ...ShopDiscountField\n }\n taxSummary {\n ...ShopTaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...ShopPaymentTokenField\n }\n}\n\nfragment ShopOrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment ShopOrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...ShopAdjustmentField\n }\n taxLines {\n ...ShopTaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShopShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n}\n\nfragment ShopAdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment ShopTaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShopShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...ShopAdjustmentField\n }\n taxLines {\n ...ShopTaxLineField\n }\n}\n\nfragment ShopSurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n}\n\nfragment ShopDiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment ShopTaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment ShopPaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}";
397
+ export declare const shopRemoveAllOrderLinesDocument = "mutation RemoveAllOrderLines {\n removeAllOrderLines {\n ...ShopOrderField\n }\n}\n\nfragment ShopOrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n version\n billingAddress {\n ...ShopOrderAddressField\n }\n shippingAddress {\n ...ShopOrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...ShopOrderLineField\n }\n payments {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n }\n }\n fulfillments {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n }\n }\n shippingLines {\n ...ShopShippingLineField\n }\n surcharges {\n ...ShopSurchargeField\n }\n modifications {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n id\n description\n listPrice\n }\n payment {\n id\n state\n amount\n }\n refund {\n id\n total\n state\n }\n }\n promotions {\n id\n }\n discounts {\n ...ShopDiscountField\n }\n taxSummary {\n ...ShopTaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...ShopPaymentTokenField\n }\n}\n\nfragment ShopOrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment ShopOrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...ShopAdjustmentField\n }\n taxLines {\n ...ShopTaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShopShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n}\n\nfragment ShopAdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment ShopTaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShopShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...ShopAdjustmentField\n }\n taxLines {\n ...ShopTaxLineField\n }\n}\n\nfragment ShopSurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n}\n\nfragment ShopDiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment ShopTaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment ShopPaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}";
398
+ export declare const shopApplyCouponCodeDocument = "mutation ApplyCouponCode($code: String!) {\n applyCouponCode(code: $code) {\n ...ShopOrderField\n }\n}\n\nfragment ShopOrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n version\n billingAddress {\n ...ShopOrderAddressField\n }\n shippingAddress {\n ...ShopOrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...ShopOrderLineField\n }\n payments {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n }\n }\n fulfillments {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n }\n }\n shippingLines {\n ...ShopShippingLineField\n }\n surcharges {\n ...ShopSurchargeField\n }\n modifications {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n id\n description\n listPrice\n }\n payment {\n id\n state\n amount\n }\n refund {\n id\n total\n state\n }\n }\n promotions {\n id\n }\n discounts {\n ...ShopDiscountField\n }\n taxSummary {\n ...ShopTaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...ShopPaymentTokenField\n }\n}\n\nfragment ShopOrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment ShopOrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...ShopAdjustmentField\n }\n taxLines {\n ...ShopTaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShopShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n}\n\nfragment ShopAdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment ShopTaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShopShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...ShopAdjustmentField\n }\n taxLines {\n ...ShopTaxLineField\n }\n}\n\nfragment ShopSurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n}\n\nfragment ShopDiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment ShopTaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment ShopPaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}";
399
+ export declare const shopRemoveCouponCodeDocument = "mutation RemoveCouponCode($code: String!) {\n removeCouponCode(code: $code) {\n ...ShopOrderField\n }\n}\n\nfragment ShopOrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n version\n billingAddress {\n ...ShopOrderAddressField\n }\n shippingAddress {\n ...ShopOrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...ShopOrderLineField\n }\n payments {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n }\n }\n fulfillments {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n }\n }\n shippingLines {\n ...ShopShippingLineField\n }\n surcharges {\n ...ShopSurchargeField\n }\n modifications {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n id\n description\n listPrice\n }\n payment {\n id\n state\n amount\n }\n refund {\n id\n total\n state\n }\n }\n promotions {\n id\n }\n discounts {\n ...ShopDiscountField\n }\n taxSummary {\n ...ShopTaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...ShopPaymentTokenField\n }\n}\n\nfragment ShopOrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment ShopOrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...ShopAdjustmentField\n }\n taxLines {\n ...ShopTaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShopShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n}\n\nfragment ShopAdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment ShopTaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShopShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...ShopAdjustmentField\n }\n taxLines {\n ...ShopTaxLineField\n }\n}\n\nfragment ShopSurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n}\n\nfragment ShopDiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment ShopTaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment ShopPaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}";
400
+ export declare const shopSetCustomerForOrderDocument = "mutation SetCustomerForOrder($input: SetCustomerInput!) {\n setCustomerForOrder(input: $input) {\n ...ShopOrderField\n }\n}\n\nfragment ShopOrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n version\n billingAddress {\n ...ShopOrderAddressField\n }\n shippingAddress {\n ...ShopOrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...ShopOrderLineField\n }\n payments {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n }\n }\n fulfillments {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n }\n }\n shippingLines {\n ...ShopShippingLineField\n }\n surcharges {\n ...ShopSurchargeField\n }\n modifications {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n id\n description\n listPrice\n }\n payment {\n id\n state\n amount\n }\n refund {\n id\n total\n state\n }\n }\n promotions {\n id\n }\n discounts {\n ...ShopDiscountField\n }\n taxSummary {\n ...ShopTaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...ShopPaymentTokenField\n }\n}\n\nfragment ShopOrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment ShopOrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...ShopAdjustmentField\n }\n taxLines {\n ...ShopTaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShopShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n}\n\nfragment ShopAdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment ShopTaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShopShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...ShopAdjustmentField\n }\n taxLines {\n ...ShopTaxLineField\n }\n}\n\nfragment ShopSurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n}\n\nfragment ShopDiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment ShopTaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment ShopPaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}";
401
+ export declare const shopAddItemsToOrderDocument = "mutation AddItemsToOrder($items: [AddItemToOrderInput!]!) {\n addItemsToOrder(items: $items) {\n order {\n ...ShopOrderField\n }\n errors {\n index\n errorCode\n variables\n }\n }\n}\n\nfragment ShopOrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n version\n billingAddress {\n ...ShopOrderAddressField\n }\n shippingAddress {\n ...ShopOrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...ShopOrderLineField\n }\n payments {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n }\n }\n fulfillments {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n }\n }\n shippingLines {\n ...ShopShippingLineField\n }\n surcharges {\n ...ShopSurchargeField\n }\n modifications {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n id\n description\n listPrice\n }\n payment {\n id\n state\n amount\n }\n refund {\n id\n total\n state\n }\n }\n promotions {\n id\n }\n discounts {\n ...ShopDiscountField\n }\n taxSummary {\n ...ShopTaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...ShopPaymentTokenField\n }\n}\n\nfragment ShopOrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment ShopOrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...ShopAdjustmentField\n }\n taxLines {\n ...ShopTaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShopShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n}\n\nfragment ShopAdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment ShopTaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShopShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...ShopAdjustmentField\n }\n taxLines {\n ...ShopTaxLineField\n }\n}\n\nfragment ShopSurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n}\n\nfragment ShopDiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment ShopTaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment ShopPaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}";
402
+ export declare const shopAdjustOrderLinesDocument = "mutation AdjustOrderLines($adjustments: [AdjustOrderLineInput!]!) {\n adjustOrderLines(adjustments: $adjustments) {\n order {\n ...ShopOrderField\n }\n errors {\n index\n errorCode\n variables\n }\n }\n}\n\nfragment ShopOrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n version\n billingAddress {\n ...ShopOrderAddressField\n }\n shippingAddress {\n ...ShopOrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...ShopOrderLineField\n }\n payments {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n }\n }\n fulfillments {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n }\n }\n shippingLines {\n ...ShopShippingLineField\n }\n surcharges {\n ...ShopSurchargeField\n }\n modifications {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n id\n description\n listPrice\n }\n payment {\n id\n state\n amount\n }\n refund {\n id\n total\n state\n }\n }\n promotions {\n id\n }\n discounts {\n ...ShopDiscountField\n }\n taxSummary {\n ...ShopTaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...ShopPaymentTokenField\n }\n}\n\nfragment ShopOrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment ShopOrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...ShopAdjustmentField\n }\n taxLines {\n ...ShopTaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShopShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n}\n\nfragment ShopAdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment ShopTaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShopShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...ShopAdjustmentField\n }\n taxLines {\n ...ShopTaxLineField\n }\n}\n\nfragment ShopSurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n}\n\nfragment ShopDiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment ShopTaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment ShopPaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}";
403
+ export declare const shopRemoveItemsFromOrderDocument = "mutation RemoveItemsFromOrder($orderLineIds: [ID!]!) {\n removeItemsFromOrder(orderLineIds: $orderLineIds) {\n order {\n ...ShopOrderField\n }\n errors {\n index\n errorCode\n variables\n }\n }\n}\n\nfragment ShopOrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n version\n billingAddress {\n ...ShopOrderAddressField\n }\n shippingAddress {\n ...ShopOrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...ShopOrderLineField\n }\n payments {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n }\n }\n fulfillments {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n }\n }\n shippingLines {\n ...ShopShippingLineField\n }\n surcharges {\n ...ShopSurchargeField\n }\n modifications {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n id\n description\n listPrice\n }\n payment {\n id\n state\n amount\n }\n refund {\n id\n total\n state\n }\n }\n promotions {\n id\n }\n discounts {\n ...ShopDiscountField\n }\n taxSummary {\n ...ShopTaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...ShopPaymentTokenField\n }\n}\n\nfragment ShopOrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment ShopOrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...ShopAdjustmentField\n }\n taxLines {\n ...ShopTaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShopShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n}\n\nfragment ShopAdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment ShopTaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShopShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...ShopAdjustmentField\n }\n taxLines {\n ...ShopTaxLineField\n }\n}\n\nfragment ShopSurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n}\n\nfragment ShopDiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment ShopTaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment ShopPaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}";
404
+ export declare const shopSetOrderShippingAddressDocument = "mutation SetOrderShippingAddress($input: CreateAddressInput!) {\n setOrderShippingAddress(input: $input) {\n ...ShopOrderField\n }\n}\n\nfragment ShopOrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n version\n billingAddress {\n ...ShopOrderAddressField\n }\n shippingAddress {\n ...ShopOrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...ShopOrderLineField\n }\n payments {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n }\n }\n fulfillments {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n }\n }\n shippingLines {\n ...ShopShippingLineField\n }\n surcharges {\n ...ShopSurchargeField\n }\n modifications {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n id\n description\n listPrice\n }\n payment {\n id\n state\n amount\n }\n refund {\n id\n total\n state\n }\n }\n promotions {\n id\n }\n discounts {\n ...ShopDiscountField\n }\n taxSummary {\n ...ShopTaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...ShopPaymentTokenField\n }\n}\n\nfragment ShopOrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment ShopOrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...ShopAdjustmentField\n }\n taxLines {\n ...ShopTaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShopShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n}\n\nfragment ShopAdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment ShopTaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShopShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...ShopAdjustmentField\n }\n taxLines {\n ...ShopTaxLineField\n }\n}\n\nfragment ShopSurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n}\n\nfragment ShopDiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment ShopTaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment ShopPaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}";
405
+ export declare const shopSetOrderBillingAddressDocument = "mutation SetOrderBillingAddress($input: CreateAddressInput!) {\n setOrderBillingAddress(input: $input) {\n ...ShopOrderField\n }\n}\n\nfragment ShopOrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n version\n billingAddress {\n ...ShopOrderAddressField\n }\n shippingAddress {\n ...ShopOrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...ShopOrderLineField\n }\n payments {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n }\n }\n fulfillments {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n }\n }\n shippingLines {\n ...ShopShippingLineField\n }\n surcharges {\n ...ShopSurchargeField\n }\n modifications {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n id\n description\n listPrice\n }\n payment {\n id\n state\n amount\n }\n refund {\n id\n total\n state\n }\n }\n promotions {\n id\n }\n discounts {\n ...ShopDiscountField\n }\n taxSummary {\n ...ShopTaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...ShopPaymentTokenField\n }\n}\n\nfragment ShopOrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment ShopOrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...ShopAdjustmentField\n }\n taxLines {\n ...ShopTaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShopShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n}\n\nfragment ShopAdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment ShopTaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShopShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...ShopAdjustmentField\n }\n taxLines {\n ...ShopTaxLineField\n }\n}\n\nfragment ShopSurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n}\n\nfragment ShopDiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment ShopTaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment ShopPaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}";
406
+ export declare const shopTransitionOrderToStateDocument = "mutation TransitionOrderToState($input: TransitionOrderStateInput!) {\n transitionOrderToState(input: $input) {\n ...ShopOrderField\n }\n}\n\nfragment ShopOrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n version\n billingAddress {\n ...ShopOrderAddressField\n }\n shippingAddress {\n ...ShopOrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...ShopOrderLineField\n }\n payments {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n }\n }\n fulfillments {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n }\n }\n shippingLines {\n ...ShopShippingLineField\n }\n surcharges {\n ...ShopSurchargeField\n }\n modifications {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n id\n description\n listPrice\n }\n payment {\n id\n state\n amount\n }\n refund {\n id\n total\n state\n }\n }\n promotions {\n id\n }\n discounts {\n ...ShopDiscountField\n }\n taxSummary {\n ...ShopTaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...ShopPaymentTokenField\n }\n}\n\nfragment ShopOrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment ShopOrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...ShopAdjustmentField\n }\n taxLines {\n ...ShopTaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShopShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n}\n\nfragment ShopAdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment ShopTaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShopShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...ShopAdjustmentField\n }\n taxLines {\n ...ShopTaxLineField\n }\n}\n\nfragment ShopSurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n}\n\nfragment ShopDiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment ShopTaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment ShopPaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}";
407
+ export declare const shopShopCollectionDocument = "query ShopCollection($input: CollectionInput!) {\n collection(input: $input) {\n ...ShopCollectionFields\n }\n}\n\nfragment ShopCollectionFields on Collection {\n id\n name\n slug\n description\n parentId\n featuredAsset {\n id\n name\n preview\n source\n }\n}";
408
+ export declare const shopShopCollectionsDocument = "query ShopCollections($options: ListQueryOptions) {\n collections(options: $options) {\n items {\n ...ShopCollectionFields\n }\n totalItems\n }\n}\n\nfragment ShopCollectionFields on Collection {\n id\n name\n slug\n description\n parentId\n featuredAsset {\n id\n name\n preview\n source\n }\n}";
409
+ export declare const shopActiveCustomerDocument = "query ActiveCustomer {\n activeCustomer {\n ...ShopCustomerField\n }\n}\n\nfragment ShopCustomerField on Customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n}";
410
+ export declare const shopActiveCustomerAddressesDocument = "query ActiveCustomerAddresses {\n activeCustomerAddresses {\n ...ShopCustomerAddressField\n }\n}\n\nfragment ShopCustomerAddressField on Address {\n id\n createdAt\n updatedAt\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n phoneNumber\n defaultShippingAddress\n defaultBillingAddress\n country {\n id\n code\n name\n }\n}";
411
+ export declare const shopShopUpdateCustomerDocument = "mutation ShopUpdateCustomer($input: UpdateCustomerShopInput!) {\n updateCustomer(input: $input) {\n ...ShopCustomerField\n }\n}\n\nfragment ShopCustomerField on Customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n}";
412
+ export declare const shopRegisterCustomerAccountDocument = "mutation RegisterCustomerAccount($input: RegisterCustomerInput!) {\n registerCustomerAccount(input: $input)\n}";
413
+ export declare const shopVerifyCustomerAccountDocument = "mutation VerifyCustomerAccount($token: String!) {\n verifyCustomerAccount(token: $token) {\n ...ShopCustomerField\n }\n}\n\nfragment ShopCustomerField on Customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n}";
414
+ export declare const shopRequestPasswordResetDocument = "mutation RequestPasswordReset($emailAddress: String!) {\n requestPasswordReset(emailAddress: $emailAddress)\n}";
415
+ export declare const shopResetPasswordDocument = "mutation ResetPassword($input: ResetPasswordInput!) {\n resetPassword(input: $input) {\n ...ShopCustomerField\n }\n}\n\nfragment ShopCustomerField on Customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n}";
416
+ export declare const shopCreateCustomerAddressDocument = "mutation CreateCustomerAddress($input: CreateAddressInput!) {\n createCustomerAddress(input: $input) {\n ...ShopCustomerAddressField\n }\n}\n\nfragment ShopCustomerAddressField on Address {\n id\n createdAt\n updatedAt\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n phoneNumber\n defaultShippingAddress\n defaultBillingAddress\n country {\n id\n code\n name\n }\n}";
417
+ export declare const shopUpdateCustomerAddressDocument = "mutation UpdateCustomerAddress($input: UpdateAddressInput!) {\n updateCustomerAddress(input: $input) {\n ...ShopCustomerAddressField\n }\n}\n\nfragment ShopCustomerAddressField on Address {\n id\n createdAt\n updatedAt\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n phoneNumber\n defaultShippingAddress\n defaultBillingAddress\n country {\n id\n code\n name\n }\n}";
418
+ export declare const shopDeleteCustomerAddressDocument = "mutation DeleteCustomerAddress($id: ID!) {\n deleteCustomerAddress(id: $id)\n}";
419
+ export declare const shopUpdateCustomerPasswordDocument = "mutation UpdateCustomerPassword($input: UpdateCustomerPasswordInput!) {\n updateCustomerPassword(input: $input)\n}";
420
+ export declare const shopRequestUpdateCustomerEmailAddressDocument = "mutation RequestUpdateCustomerEmailAddress($input: RequestUpdateCustomerEmailInput!) {\n requestUpdateCustomerEmailAddress(input: $input)\n}";
421
+ export declare const shopUpdateCustomerEmailAddressDocument = "mutation UpdateCustomerEmailAddress($token: String!) {\n updateCustomerEmailAddress(token: $token) {\n ...ShopCustomerField\n }\n}\n\nfragment ShopCustomerField on Customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n}";
422
+ export declare const shopRequestCustomerReVerificationDocument = "mutation RequestCustomerReVerification {\n requestCustomerReVerification\n}";
423
+ export declare const shopVerifyCustomerAccountWithPasswordDocument = "mutation VerifyCustomerAccountWithPassword($password: String!) {\n verifyCustomerAccountWithPassword(password: $password) {\n ...ShopCustomerField\n }\n}\n\nfragment ShopCustomerField on Customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n}";
424
+ export declare const shopShopFacetDocument = "query ShopFacet($id: ID!) {\n facet(id: $id) {\n ...ShopFacetFields\n }\n}\n\nfragment ShopFacetFields on Facet {\n id\n name\n code\n values {\n id\n name\n code\n }\n}";
425
+ export declare const shopShopFacetsDocument = "query ShopFacets($options: ListQueryOptions) {\n facets(options: $options) {\n items {\n ...ShopFacetFields\n }\n totalItems\n }\n}\n\nfragment ShopFacetFields on Facet {\n id\n name\n code\n values {\n id\n name\n code\n }\n}";
426
+ export declare const shopShopHookDispatchedDocument = "subscription ShopHookDispatched($hookPoints: [String!]!) {\n hookDispatched(hookPoints: $hookPoints) {\n id\n hookPoint\n transactionToken\n subscriberId\n args\n }\n}";
427
+ export declare const shopRespondToHookDispatchDocument = "mutation RespondToHookDispatch($input: RespondToHookDispatchInput!) {\n respondToHookDispatch(input: $input)\n}";
428
+ export declare const shopHookListenDocument = "subscription HookListen($hookPoints: [String!]!) {\n hookDispatched(hookPoints: $hookPoints) {\n id\n hookPoint\n transactionToken\n args\n }\n}";
429
+ export declare const shopHookRespondDocument = "mutation HookRespond($input: RespondToHookDispatchInput!) {\n respondToHookDispatch(input: $input)\n}";
430
+ export declare const shopShopTrackEventDocument = "mutation ShopTrackEvent($input: TrackEventInput!) {\n trackEvent(input: $input) {\n eventId\n accepted\n }\n}";
431
+ export declare const shopShopResolveMarketingIdentityDocument = "mutation ShopResolveMarketingIdentity {\n resolveMarketingIdentity {\n identityId\n isNew\n }\n}";
432
+ export declare const shopShopSetMarketingIdentifiersDocument = "mutation ShopSetMarketingIdentifiers($input: SetMarketingIdentifiersInput!) {\n setMarketingIdentifiers(input: $input) {\n identityId\n accepted\n rejected\n }\n}";
433
+ export declare const shopShopLinkMarketingEmailDocument = "mutation ShopLinkMarketingEmail($input: LinkMarketingEmailInput!) {\n linkMarketingEmail(input: $input) {\n identityId\n accepted\n }\n}";
434
+ export declare const shopActiveOrderDocument = "query ActiveOrder {\n activeOrder {\n ...ShopOrderField\n }\n}\n\nfragment ShopOrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n version\n billingAddress {\n ...ShopOrderAddressField\n }\n shippingAddress {\n ...ShopOrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...ShopOrderLineField\n }\n payments {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n }\n }\n fulfillments {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n }\n }\n shippingLines {\n ...ShopShippingLineField\n }\n surcharges {\n ...ShopSurchargeField\n }\n modifications {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n id\n description\n listPrice\n }\n payment {\n id\n state\n amount\n }\n refund {\n id\n total\n state\n }\n }\n promotions {\n id\n }\n discounts {\n ...ShopDiscountField\n }\n taxSummary {\n ...ShopTaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...ShopPaymentTokenField\n }\n}\n\nfragment ShopOrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment ShopOrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...ShopAdjustmentField\n }\n taxLines {\n ...ShopTaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShopShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n}\n\nfragment ShopAdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment ShopTaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShopShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...ShopAdjustmentField\n }\n taxLines {\n ...ShopTaxLineField\n }\n}\n\nfragment ShopSurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n}\n\nfragment ShopDiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment ShopTaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment ShopPaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}";
435
+ export declare const shopShopOrderByCodeDocument = "query ShopOrderByCode($code: String!) {\n orderByCode(code: $code) {\n ...ShopOrderField\n }\n}\n\nfragment ShopOrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n version\n billingAddress {\n ...ShopOrderAddressField\n }\n shippingAddress {\n ...ShopOrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...ShopOrderLineField\n }\n payments {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n }\n }\n fulfillments {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n }\n }\n shippingLines {\n ...ShopShippingLineField\n }\n surcharges {\n ...ShopSurchargeField\n }\n modifications {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n id\n description\n listPrice\n }\n payment {\n id\n state\n amount\n }\n refund {\n id\n total\n state\n }\n }\n promotions {\n id\n }\n discounts {\n ...ShopDiscountField\n }\n taxSummary {\n ...ShopTaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...ShopPaymentTokenField\n }\n}\n\nfragment ShopOrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment ShopOrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...ShopAdjustmentField\n }\n taxLines {\n ...ShopTaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShopShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n}\n\nfragment ShopAdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment ShopTaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShopShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...ShopAdjustmentField\n }\n taxLines {\n ...ShopTaxLineField\n }\n}\n\nfragment ShopSurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n}\n\nfragment ShopDiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment ShopTaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment ShopPaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}";
436
+ export declare const shopNextOrderStatesDocument = "query NextOrderStates {\n nextOrderStates\n}";
437
+ export declare const shopShopOrderNotesDocument = "query ShopOrderNotes($input: OrderNotesInput!) {\n orderNotes(input: $input) {\n items {\n id\n createdAt\n updatedAt\n type\n isPublic\n data\n administrator {\n id\n }\n }\n totalItems\n }\n}";
438
+ export declare const shopShopActiveOrderUpdatedDocument = "subscription ShopActiveOrderUpdated {\n activeOrderUpdated {\n ...ShopOrderField\n }\n}\n\nfragment ShopOrderField on Order {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n version\n billingAddress {\n ...ShopOrderAddressField\n }\n shippingAddress {\n ...ShopOrderAddressField\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n ...ShopOrderLineField\n }\n payments {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n }\n }\n fulfillments {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n }\n }\n shippingLines {\n ...ShopShippingLineField\n }\n surcharges {\n ...ShopSurchargeField\n }\n modifications {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n id\n description\n listPrice\n }\n payment {\n id\n state\n amount\n }\n refund {\n id\n total\n state\n }\n }\n promotions {\n id\n }\n discounts {\n ...ShopDiscountField\n }\n taxSummary {\n ...ShopTaxSummaryField\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n ...ShopPaymentTokenField\n }\n}\n\nfragment ShopOrderAddressField on OrderAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n}\n\nfragment ShopOrderLineField on OrderLine {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n ...ShopAdjustmentField\n }\n taxLines {\n ...ShopTaxLineField\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n ...ShopShippingLineField\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n}\n\nfragment ShopAdjustmentField on Adjustment {\n amount\n description\n orderLineId\n shippingLineId\n}\n\nfragment ShopTaxLineField on OrderTaxLine {\n taxRate\n description\n taxAmount\n}\n\nfragment ShopShippingLineField on ShippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n ...ShopAdjustmentField\n }\n taxLines {\n ...ShopTaxLineField\n }\n}\n\nfragment ShopSurchargeField on Surcharge {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n}\n\nfragment ShopDiscountField on OrderDiscount {\n description\n amount\n amountWithTax\n}\n\nfragment ShopTaxSummaryField on OrderTaxSummary {\n description\n taxRate\n taxBase\n taxTotal\n}\n\nfragment ShopPaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}";
439
+ export declare const shopShopEligiblePaymentProvidersDocument = "query ShopEligiblePaymentProviders($orderId: ID!) {\n eligiblePaymentProviders(orderId: $orderId) {\n providerCode\n providerName\n isEligible\n eligibilityMessage\n }\n}";
440
+ export declare const shopGetTokensDocument = "query GetTokens {\n getTokens {\n ...ShopPaymentTokenField\n }\n}\n\nfragment ShopPaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}";
441
+ export declare const shopCreatePaymentSessionDocument = "mutation CreatePaymentSession($input: CreateSessionInput!) {\n createPaymentSession(input: $input) {\n ...ShopPaymentSessionField\n }\n}\n\nfragment ShopPaymentSessionField on PaymentGatewaySession {\n id\n extId\n clientSecret\n redirectUrl\n nonce\n status\n amount\n providerCode\n orderId\n createdAt\n updatedAt\n}";
442
+ export declare const shopConfirmPaymentSessionDocument = "mutation ConfirmPaymentSession($sessionId: ID!) {\n confirmPaymentSession(sessionId: $sessionId) {\n ...ShopPaymentSessionField\n }\n}\n\nfragment ShopPaymentSessionField on PaymentGatewaySession {\n id\n extId\n clientSecret\n redirectUrl\n nonce\n status\n amount\n providerCode\n orderId\n createdAt\n updatedAt\n}";
443
+ export declare const shopCancelPaymentSessionDocument = "mutation CancelPaymentSession($sessionId: ID!) {\n cancelPaymentSession(sessionId: $sessionId) {\n ...ShopPaymentSessionField\n }\n}\n\nfragment ShopPaymentSessionField on PaymentGatewaySession {\n id\n extId\n clientSecret\n redirectUrl\n nonce\n status\n amount\n providerCode\n orderId\n createdAt\n updatedAt\n}";
444
+ export declare const shopDeleteTokenDocument = "mutation DeleteToken($tokenId: ID!) {\n deleteToken(tokenId: $tokenId)\n}";
445
+ export declare const shopSetDefaultTokenDocument = "mutation SetDefaultToken($tokenId: ID!) {\n setDefaultToken(tokenId: $tokenId) {\n ...ShopPaymentTokenField\n }\n}\n\nfragment ShopPaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}";
446
+ export declare const shopSaveTokenDocument = "mutation SaveToken($input: SaveTokenInput!) {\n saveToken(input: $input) {\n ...ShopPaymentTokenField\n }\n}\n\nfragment ShopPaymentTokenField on PaymentGatewayToken {\n id\n displayName\n type\n isDefault\n providerCode\n createdAt\n updatedAt\n}";
447
+ export declare const shopGetTokenTemplateDocument = "query GetTokenTemplate {\n getTokenTemplate {\n providerCode\n html\n scriptUrl\n config\n }\n}";
448
+ export declare const shopGetSessionTemplateDocument = "query GetSessionTemplate($orderId: ID!) {\n getSessionTemplate(orderId: $orderId) {\n providerCode\n html\n scriptUrl\n config\n }\n}";
449
+ export declare const shopGetSessionVariablesDocument = "query GetSessionVariables($orderId: ID!) {\n getSessionVariables(orderId: $orderId) {\n providerCode\n publishableKey\n scriptUrl\n amount\n currency\n config\n }\n}";
450
+ export declare const shopShopProductDocument = "query ShopProduct($id: ID, $slug: String) {\n product(id: $id, slug: $slug) {\n id\n optionGroups {\n id\n code\n name\n options {\n id\n code\n name\n groupId\n }\n translations {\n id\n languageCode\n name\n }\n }\n }\n}";
451
+ export declare const shopShopProductsDocument = "query ShopProducts($options: ListQueryOptions) {\n products(options: $options) {\n items {\n id\n optionGroups {\n id\n code\n name\n options {\n id\n code\n name\n groupId\n }\n translations {\n id\n languageCode\n name\n }\n }\n }\n totalItems\n }\n}";
452
+ export declare const shopShopProductOptionGroupsDocument = "query ShopProductOptionGroups($productId: ID!) {\n productOptionGroups(productId: $productId) {\n id\n code\n name\n options {\n id\n code\n name\n groupId\n }\n translations {\n id\n languageCode\n name\n }\n }\n}";
453
+ export declare const shopShopSearchDocument = "query ShopSearch($input: SearchInput!) {\n search(input: $input) {\n items {\n productId\n productName\n productVariantId\n slug\n price {\n min\n max\n }\n productAsset {\n id\n preview\n }\n inStock\n }\n totalItems\n }\n}";
454
+ export declare const shopSuggestDocument = "query Suggest($input: SearchInput!) {\n suggest(input: $input) {\n items {\n productId\n productName\n productVariantId\n productVariantName\n slug\n }\n totalItems\n }\n}";
455
+ export declare const shopShippingRateGroupsDocument = "query ShippingRateGroups {\n shippingRateGroups {\n id\n orderId\n stockLocationId\n rates {\n id\n extRateId\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n }\n}";
456
+ export declare const shopSelectShippingRateDocument = "mutation SelectShippingRate($input: SelectRateInput!) {\n selectShippingRate(input: $input) {\n id\n createdAt\n updatedAt\n code\n state\n active\n type\n orderPlacedAt\n currencyCode\n total\n totalQuantity\n totalWithTax\n subTotal\n subTotalWithTax\n shipping\n shippingWithTax\n couponCodes\n version\n billingAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n }\n shippingAddress {\n fullName\n company\n streetLine1\n streetLine2\n city\n province\n postalCode\n country {\n id\n code\n name\n }\n phoneNumber\n }\n customer {\n id\n createdAt\n updatedAt\n title\n firstName\n lastName\n phoneNumber\n emailAddress\n }\n lines {\n id\n createdAt\n updatedAt\n quantity\n productVariantId\n unitPrice\n unitPriceWithTax\n linePrice\n linePriceWithTax\n listPrice\n listPriceIncludesTax\n orderPlacedQuantity\n adjustments {\n amount\n description\n orderLineId\n shippingLineId\n }\n taxLines {\n taxRate\n description\n taxAmount\n }\n productVariant {\n id\n createdAt\n updatedAt\n sku\n name\n price\n priceWithTax\n stockOnHand\n enabled\n }\n shippingLine {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n }\n taxCategory {\n id\n }\n featuredAsset {\n id\n }\n }\n payments {\n id\n createdAt\n updatedAt\n state\n amount\n providerCode\n transactionId\n errorMessage\n metadata\n orderId\n refunds {\n id\n createdAt\n updatedAt\n total\n reason\n state\n transactionId\n method\n metadata\n paymentId\n }\n }\n fulfillments {\n id\n createdAt\n updatedAt\n state\n method\n trackingCode\n handlerCode\n lines {\n id\n createdAt\n updatedAt\n quantity\n orderLineId\n }\n }\n shippingLines {\n id\n createdAt\n updatedAt\n listPrice\n listPriceWithTax\n listPriceIncludesTax\n adjustments {\n amount\n description\n }\n taxLines {\n taxRate\n description\n taxAmount\n }\n }\n surcharges {\n id\n createdAt\n updatedAt\n description\n listPrice\n listPriceIncludesTax\n sku\n taxRate\n }\n modifications {\n id\n createdAt\n updatedAt\n priceChange\n note\n isSettled\n changes {\n orderLineId\n productVariantId\n type\n quantityBefore\n quantityAfter\n unitPriceBefore\n unitPriceAfter\n }\n surcharges {\n id\n description\n listPrice\n }\n payment {\n id\n state\n amount\n }\n refund {\n id\n total\n state\n }\n }\n promotions {\n id\n }\n discounts {\n description\n amount\n amountWithTax\n }\n taxSummary {\n description\n taxRate\n taxBase\n taxTotal\n }\n nextStates\n recentShippingMethod {\n id\n carrier\n service\n amount\n currency\n estimatedDays\n selected\n providerCode\n }\n recentToken {\n id\n displayName\n type\n isDefault\n providerCode\n }\n }\n}";
457
+ export declare const shopMySubscriptionsDocument = "query MySubscriptions {\n mySubscriptions {\n ...ShopBillingSubscriptionFields\n }\n}\n\nfragment ShopBillingSubscriptionFields on BillingSubscription {\n id\n createdAt\n updatedAt\n code\n state\n billingInterval\n currencyCode\n anchorDate\n currentPeriodStart\n currentPeriodEnd\n trialEnd\n cancelledAt\n cancellationReason\n cancelAtPeriodEnd\n pausedAt\n resumeAt\n dunningAttemptCount\n items {\n id\n variant {\n id\n sku\n name\n }\n quantity\n unitPrice\n isDigital\n }\n creditBalances {\n id\n amountCents\n appliedCents\n reason\n sourceOrderId\n }\n}";
458
+ export declare const shopMySubscriptionDocument = "query MySubscription($id: ID!) {\n mySubscription(id: $id) {\n ...ShopBillingSubscriptionFields\n }\n}\n\nfragment ShopBillingSubscriptionFields on BillingSubscription {\n id\n createdAt\n updatedAt\n code\n state\n billingInterval\n currencyCode\n anchorDate\n currentPeriodStart\n currentPeriodEnd\n trialEnd\n cancelledAt\n cancellationReason\n cancelAtPeriodEnd\n pausedAt\n resumeAt\n dunningAttemptCount\n items {\n id\n variant {\n id\n sku\n name\n }\n quantity\n unitPrice\n isDigital\n }\n creditBalances {\n id\n amountCents\n appliedCents\n reason\n sourceOrderId\n }\n}";
459
+ export declare const shopShopCreateSubscriptionDocument = "mutation ShopCreateSubscription($input: CreateShopSubscriptionInput!) {\n createSubscription(input: $input) {\n ...ShopBillingSubscriptionFields\n }\n}\n\nfragment ShopBillingSubscriptionFields on BillingSubscription {\n id\n createdAt\n updatedAt\n code\n state\n billingInterval\n currencyCode\n anchorDate\n currentPeriodStart\n currentPeriodEnd\n trialEnd\n cancelledAt\n cancellationReason\n cancelAtPeriodEnd\n pausedAt\n resumeAt\n dunningAttemptCount\n items {\n id\n variant {\n id\n sku\n name\n }\n quantity\n unitPrice\n isDigital\n }\n creditBalances {\n id\n amountCents\n appliedCents\n reason\n sourceOrderId\n }\n}";
460
+ export declare const shopShopCancelSubscriptionDocument = "mutation ShopCancelSubscription($input: CancelSubscriptionInput!) {\n cancelSubscription(input: $input) {\n ...ShopBillingSubscriptionFields\n }\n}\n\nfragment ShopBillingSubscriptionFields on BillingSubscription {\n id\n createdAt\n updatedAt\n code\n state\n billingInterval\n currencyCode\n anchorDate\n currentPeriodStart\n currentPeriodEnd\n trialEnd\n cancelledAt\n cancellationReason\n cancelAtPeriodEnd\n pausedAt\n resumeAt\n dunningAttemptCount\n items {\n id\n variant {\n id\n sku\n name\n }\n quantity\n unitPrice\n isDigital\n }\n creditBalances {\n id\n amountCents\n appliedCents\n reason\n sourceOrderId\n }\n}";
461
+ export declare const shopShopPauseSubscriptionDocument = "mutation ShopPauseSubscription($id: ID!) {\n pauseSubscription(id: $id) {\n ...ShopBillingSubscriptionFields\n }\n}\n\nfragment ShopBillingSubscriptionFields on BillingSubscription {\n id\n createdAt\n updatedAt\n code\n state\n billingInterval\n currencyCode\n anchorDate\n currentPeriodStart\n currentPeriodEnd\n trialEnd\n cancelledAt\n cancellationReason\n cancelAtPeriodEnd\n pausedAt\n resumeAt\n dunningAttemptCount\n items {\n id\n variant {\n id\n sku\n name\n }\n quantity\n unitPrice\n isDigital\n }\n creditBalances {\n id\n amountCents\n appliedCents\n reason\n sourceOrderId\n }\n}";
462
+ export declare const shopShopResumeSubscriptionDocument = "mutation ShopResumeSubscription($id: ID!) {\n resumeSubscription(id: $id) {\n ...ShopBillingSubscriptionFields\n }\n}\n\nfragment ShopBillingSubscriptionFields on BillingSubscription {\n id\n createdAt\n updatedAt\n code\n state\n billingInterval\n currencyCode\n anchorDate\n currentPeriodStart\n currentPeriodEnd\n trialEnd\n cancelledAt\n cancellationReason\n cancelAtPeriodEnd\n pausedAt\n resumeAt\n dunningAttemptCount\n items {\n id\n variant {\n id\n sku\n name\n }\n quantity\n unitPrice\n isDigital\n }\n creditBalances {\n id\n amountCents\n appliedCents\n reason\n sourceOrderId\n }\n}";
463
+ export declare const shopShopChangeSubscriptionPlanDocument = "mutation ShopChangeSubscriptionPlan($input: ChangeSubscriptionPlanInput!) {\n changeSubscriptionPlan(input: $input) {\n ...ShopBillingSubscriptionFields\n }\n}\n\nfragment ShopBillingSubscriptionFields on BillingSubscription {\n id\n createdAt\n updatedAt\n code\n state\n billingInterval\n currencyCode\n anchorDate\n currentPeriodStart\n currentPeriodEnd\n trialEnd\n cancelledAt\n cancellationReason\n cancelAtPeriodEnd\n pausedAt\n resumeAt\n dunningAttemptCount\n items {\n id\n variant {\n id\n sku\n name\n }\n quantity\n unitPrice\n isDigital\n }\n creditBalances {\n id\n amountCents\n appliedCents\n reason\n sourceOrderId\n }\n}";
464
+ export declare const shopShopChangeSubscriptionQuantityDocument = "mutation ShopChangeSubscriptionQuantity($input: ChangeSubscriptionQuantityInput!) {\n changeSubscriptionQuantity(input: $input) {\n ...ShopBillingSubscriptionFields\n }\n}\n\nfragment ShopBillingSubscriptionFields on BillingSubscription {\n id\n createdAt\n updatedAt\n code\n state\n billingInterval\n currencyCode\n anchorDate\n currentPeriodStart\n currentPeriodEnd\n trialEnd\n cancelledAt\n cancellationReason\n cancelAtPeriodEnd\n pausedAt\n resumeAt\n dunningAttemptCount\n items {\n id\n variant {\n id\n sku\n name\n }\n quantity\n unitPrice\n isDigital\n }\n creditBalances {\n id\n amountCents\n appliedCents\n reason\n sourceOrderId\n }\n}";
465
+ export declare const shopReportUsageDocument = "mutation ReportUsage($input: ReportUsageInput!) {\n reportUsage(input: $input) {\n id\n subscription {\n id\n code\n }\n metric {\n id\n code\n name\n }\n quantity\n timestamp\n idempotencyKey\n billed\n }\n}";