@forgecart/sdk 1.2.3 → 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 -2664
  48. package/dist/admin-namespace.js +0 -9638
  49. package/dist/admin-types.d.ts +0 -16191
  50. package/dist/shop-namespace.d.ts +0 -694
  51. package/dist/shop-namespace.js +0 -3071
  52. package/dist/shop-types.d.ts +0 -6310
  53. package/src/admin-namespace.ts +0 -11372
  54. package/src/admin-types.ts +0 -10804
  55. package/src/shop-namespace.ts +0 -3491
  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
@@ -1,2664 +0,0 @@
1
- /**
2
- * @forgecart/sdk - Auto-generated TypeScript SDK
3
- *
4
- * This file was automatically generated and should not be manually edited.
5
- * To regenerate, run: npm run codegen:ts
6
- *
7
- * Generated at: 2025-12-15T13:49:08.285Z
8
- * Generator version: 1.0.0
9
- *
10
- * 🤖 Generated with ForgeCart SDK Generator
11
- */
12
- import * as Types from './admin-types.js';
13
- import { RequestDocument, Variables } from 'graphql-request';
14
- /**
15
- * SDK Configuration
16
- */
17
- export interface SDKConfig {
18
- /** GraphQL HTTP endpoint */
19
- endpoint?: string;
20
- /** WebSocket endpoint for subscriptions */
21
- wsEndpoint?: string;
22
- /** Custom HTTP headers */
23
- headers?: Record<string, string>;
24
- /** Custom WebSocket implementation (optional, auto-detected if not provided) */
25
- webSocketImpl?: unknown;
26
- /** Use HTTP only, skip WebSocket initialization (default: false) */
27
- httpOnly?: boolean;
28
- /** Enable debug logging with request timing (default: false) */
29
- debug?: boolean;
30
- }
31
- export type ActiveAdministratorQueryVariables = Types.ActiveAdministratorQueryVariables;
32
- export type ActiveAdministratorQuery = Types.ActiveAdministratorQuery;
33
- export type ActiveAdministratorQueryResult = Types.ActiveAdministratorQuery;
34
- export type AdministratorQueryVariables = Types.AdministratorQueryVariables;
35
- export type AdministratorQuery = Types.AdministratorQuery;
36
- export type AdministratorQueryResult = Types.AdministratorQuery;
37
- export type AdministratorsQueryVariables = Types.AdministratorsQueryVariables;
38
- export type AdministratorsQuery = Types.AdministratorsQuery;
39
- export type AdministratorsQueryResult = Types.AdministratorsQuery;
40
- export type MeQueryVariables = Types.MeQueryVariables;
41
- export type MeQuery = Types.MeQuery;
42
- export type MeQueryResult = Types.MeQuery;
43
- export type AuthenticateMutationVariables = Types.AuthenticateMutationVariables;
44
- export type AuthenticateMutation = Types.AuthenticateMutation;
45
- export type AuthenticateMutationResult = Types.AuthenticateMutation;
46
- export type LoginMutationVariables = Types.LoginMutationVariables;
47
- export type LoginMutation = Types.LoginMutation;
48
- export type LoginMutationResult = Types.LoginMutation;
49
- export type LogoutMutationVariables = Types.LogoutMutationVariables;
50
- export type LogoutMutation = Types.LogoutMutation;
51
- export type LogoutMutationResult = Types.LogoutMutation;
52
- export type RegisterMutationVariables = Types.RegisterMutationVariables;
53
- export type RegisterMutation = Types.RegisterMutation;
54
- export type RegisterMutationResult = Types.RegisterMutation;
55
- export type VerifyMutationVariables = Types.VerifyMutationVariables;
56
- export type VerifyMutation = Types.VerifyMutation;
57
- export type VerifyMutationResult = Types.VerifyMutation;
58
- export type CreateAdministratorMutationVariables = Types.CreateAdministratorMutationVariables;
59
- export type CreateAdministratorMutation = Types.CreateAdministratorMutation;
60
- export type CreateAdministratorMutationResult = Types.CreateAdministratorMutation;
61
- export type UpdateAdministratorMutationVariables = Types.UpdateAdministratorMutationVariables;
62
- export type UpdateAdministratorMutation = Types.UpdateAdministratorMutation;
63
- export type UpdateAdministratorMutationResult = Types.UpdateAdministratorMutation;
64
- export type UpdateActiveAdministratorMutationVariables = Types.UpdateActiveAdministratorMutationVariables;
65
- export type UpdateActiveAdministratorMutation = Types.UpdateActiveAdministratorMutation;
66
- export type UpdateActiveAdministratorMutationResult = Types.UpdateActiveAdministratorMutation;
67
- export type DeleteAdministratorMutationVariables = Types.DeleteAdministratorMutationVariables;
68
- export type DeleteAdministratorMutation = Types.DeleteAdministratorMutation;
69
- export type DeleteAdministratorMutationResult = Types.DeleteAdministratorMutation;
70
- export type DeleteAdministratorsMutationVariables = Types.DeleteAdministratorsMutationVariables;
71
- export type DeleteAdministratorsMutation = Types.DeleteAdministratorsMutation;
72
- export type DeleteAdministratorsMutationResult = Types.DeleteAdministratorsMutation;
73
- export type InviteAdministratorMutationVariables = Types.InviteAdministratorMutationVariables;
74
- export type InviteAdministratorMutation = Types.InviteAdministratorMutation;
75
- export type InviteAdministratorMutationResult = Types.InviteAdministratorMutation;
76
- export type AssignRoleToAdministratorMutationVariables = Types.AssignRoleToAdministratorMutationVariables;
77
- export type AssignRoleToAdministratorMutation = Types.AssignRoleToAdministratorMutation;
78
- export type AssignRoleToAdministratorMutationResult = Types.AssignRoleToAdministratorMutation;
79
- export type AssetQueryVariables = Types.AssetQueryVariables;
80
- export type AssetQuery = Types.AssetQuery;
81
- export type AssetQueryResult = Types.AssetQuery;
82
- export type AssetsQueryVariables = Types.AssetsQueryVariables;
83
- export type AssetsQuery = Types.AssetsQuery;
84
- export type AssetsQueryResult = Types.AssetsQuery;
85
- export type CreateAssetsMutationVariables = Types.CreateAssetsMutationVariables;
86
- export type CreateAssetsMutation = Types.CreateAssetsMutation;
87
- export type CreateAssetsMutationResult = Types.CreateAssetsMutation;
88
- export type UpdateAssetMutationVariables = Types.UpdateAssetMutationVariables;
89
- export type UpdateAssetMutation = Types.UpdateAssetMutation;
90
- export type UpdateAssetMutationResult = Types.UpdateAssetMutation;
91
- export type DeleteAssetMutationVariables = Types.DeleteAssetMutationVariables;
92
- export type DeleteAssetMutation = Types.DeleteAssetMutation;
93
- export type DeleteAssetMutationResult = Types.DeleteAssetMutation;
94
- export type DeleteAssetsMutationVariables = Types.DeleteAssetsMutationVariables;
95
- export type DeleteAssetsMutation = Types.DeleteAssetsMutation;
96
- export type DeleteAssetsMutationResult = Types.DeleteAssetsMutation;
97
- export type AssignAssetsToChannelMutationVariables = Types.AssignAssetsToChannelMutationVariables;
98
- export type AssignAssetsToChannelMutation = Types.AssignAssetsToChannelMutation;
99
- export type AssignAssetsToChannelMutationResult = Types.AssignAssetsToChannelMutation;
100
- export type BlogPostsQueryVariables = Types.BlogPostsQueryVariables;
101
- export type BlogPostsQuery = Types.BlogPostsQuery;
102
- export type BlogPostsQueryResult = Types.BlogPostsQuery;
103
- export type BlogPostQueryVariables = Types.BlogPostQueryVariables;
104
- export type BlogPostQuery = Types.BlogPostQuery;
105
- export type BlogPostQueryResult = Types.BlogPostQuery;
106
- export type CreateBlogPostMutationVariables = Types.CreateBlogPostMutationVariables;
107
- export type CreateBlogPostMutation = Types.CreateBlogPostMutation;
108
- export type CreateBlogPostMutationResult = Types.CreateBlogPostMutation;
109
- export type UpdateBlogPostMutationVariables = Types.UpdateBlogPostMutationVariables;
110
- export type UpdateBlogPostMutation = Types.UpdateBlogPostMutation;
111
- export type UpdateBlogPostMutationResult = Types.UpdateBlogPostMutation;
112
- export type DeleteBlogPostMutationVariables = Types.DeleteBlogPostMutationVariables;
113
- export type DeleteBlogPostMutation = Types.DeleteBlogPostMutation;
114
- export type DeleteBlogPostMutationResult = Types.DeleteBlogPostMutation;
115
- export type PublishBlogPostMutationVariables = Types.PublishBlogPostMutationVariables;
116
- export type PublishBlogPostMutation = Types.PublishBlogPostMutation;
117
- export type PublishBlogPostMutationResult = Types.PublishBlogPostMutation;
118
- export type UnpublishBlogPostMutationVariables = Types.UnpublishBlogPostMutationVariables;
119
- export type UnpublishBlogPostMutation = Types.UnpublishBlogPostMutation;
120
- export type UnpublishBlogPostMutationResult = Types.UnpublishBlogPostMutation;
121
- export type ListChannelPluginsQueryVariables = Types.ListChannelPluginsQueryVariables;
122
- export type ListChannelPluginsQuery = Types.ListChannelPluginsQuery;
123
- export type ListChannelPluginsQueryResult = Types.ListChannelPluginsQuery;
124
- export type ListManageablePluginsQueryVariables = Types.ListManageablePluginsQueryVariables;
125
- export type ListManageablePluginsQuery = Types.ListManageablePluginsQuery;
126
- export type ListManageablePluginsQueryResult = Types.ListManageablePluginsQuery;
127
- export type GetChannelPluginConfigurationItemValueQueryVariables = Types.GetChannelPluginConfigurationItemValueQueryVariables;
128
- export type GetChannelPluginConfigurationItemValueQuery = Types.GetChannelPluginConfigurationItemValueQuery;
129
- export type GetChannelPluginConfigurationItemValueQueryResult = Types.GetChannelPluginConfigurationItemValueQuery;
130
- export type CreateChannelPluginMutationVariables = Types.CreateChannelPluginMutationVariables;
131
- export type CreateChannelPluginMutation = Types.CreateChannelPluginMutation;
132
- export type CreateChannelPluginMutationResult = Types.CreateChannelPluginMutation;
133
- export type UpdateChannelPluginConfigurationMutationVariables = Types.UpdateChannelPluginConfigurationMutationVariables;
134
- export type UpdateChannelPluginConfigurationMutation = Types.UpdateChannelPluginConfigurationMutation;
135
- export type UpdateChannelPluginConfigurationMutationResult = Types.UpdateChannelPluginConfigurationMutation;
136
- export type EnableChannelPluginMutationVariables = Types.EnableChannelPluginMutationVariables;
137
- export type EnableChannelPluginMutation = Types.EnableChannelPluginMutation;
138
- export type EnableChannelPluginMutationResult = Types.EnableChannelPluginMutation;
139
- export type DisableChannelPluginMutationVariables = Types.DisableChannelPluginMutationVariables;
140
- export type DisableChannelPluginMutation = Types.DisableChannelPluginMutation;
141
- export type DisableChannelPluginMutationResult = Types.DisableChannelPluginMutation;
142
- export type DeleteChannelPluginMutationVariables = Types.DeleteChannelPluginMutationVariables;
143
- export type DeleteChannelPluginMutation = Types.DeleteChannelPluginMutation;
144
- export type DeleteChannelPluginMutationResult = Types.DeleteChannelPluginMutation;
145
- export type ActiveChannelQueryVariables = Types.ActiveChannelQueryVariables;
146
- export type ActiveChannelQuery = Types.ActiveChannelQuery;
147
- export type ActiveChannelQueryResult = Types.ActiveChannelQuery;
148
- export type ChannelQueryVariables = Types.ChannelQueryVariables;
149
- export type ChannelQuery = Types.ChannelQuery;
150
- export type ChannelQueryResult = Types.ChannelQuery;
151
- export type ChannelsQueryVariables = Types.ChannelsQueryVariables;
152
- export type ChannelsQuery = Types.ChannelsQuery;
153
- export type ChannelsQueryResult = Types.ChannelsQuery;
154
- export type ChannelFulfillmentsQueryVariables = Types.ChannelFulfillmentsQueryVariables;
155
- export type ChannelFulfillmentsQuery = Types.ChannelFulfillmentsQuery;
156
- export type ChannelFulfillmentsQueryResult = Types.ChannelFulfillmentsQuery;
157
- export type CreateChannelMutationVariables = Types.CreateChannelMutationVariables;
158
- export type CreateChannelMutation = Types.CreateChannelMutation;
159
- export type CreateChannelMutationResult = Types.CreateChannelMutation;
160
- export type UpdateChannelMutationVariables = Types.UpdateChannelMutationVariables;
161
- export type UpdateChannelMutation = Types.UpdateChannelMutation;
162
- export type UpdateChannelMutationResult = Types.UpdateChannelMutation;
163
- export type UpdateChannelSettingsMutationVariables = Types.UpdateChannelSettingsMutationVariables;
164
- export type UpdateChannelSettingsMutation = Types.UpdateChannelSettingsMutation;
165
- export type UpdateChannelSettingsMutationResult = Types.UpdateChannelSettingsMutation;
166
- export type DeleteChannelMutationVariables = Types.DeleteChannelMutationVariables;
167
- export type DeleteChannelMutation = Types.DeleteChannelMutation;
168
- export type DeleteChannelMutationResult = Types.DeleteChannelMutation;
169
- export type DeleteChannelsMutationVariables = Types.DeleteChannelsMutationVariables;
170
- export type DeleteChannelsMutation = Types.DeleteChannelsMutation;
171
- export type DeleteChannelsMutationResult = Types.DeleteChannelsMutation;
172
- export type AssignCollectionsToChannelMutationVariables = Types.AssignCollectionsToChannelMutationVariables;
173
- export type AssignCollectionsToChannelMutation = Types.AssignCollectionsToChannelMutation;
174
- export type AssignCollectionsToChannelMutationResult = Types.AssignCollectionsToChannelMutation;
175
- export type RemoveCollectionsFromChannelMutationVariables = Types.RemoveCollectionsFromChannelMutationVariables;
176
- export type RemoveCollectionsFromChannelMutation = Types.RemoveCollectionsFromChannelMutation;
177
- export type RemoveCollectionsFromChannelMutationResult = Types.RemoveCollectionsFromChannelMutation;
178
- export type AssignFacetsToChannelMutationVariables = Types.AssignFacetsToChannelMutationVariables;
179
- export type AssignFacetsToChannelMutation = Types.AssignFacetsToChannelMutation;
180
- export type AssignFacetsToChannelMutationResult = Types.AssignFacetsToChannelMutation;
181
- export type RemoveFacetsFromChannelMutationVariables = Types.RemoveFacetsFromChannelMutationVariables;
182
- export type RemoveFacetsFromChannelMutation = Types.RemoveFacetsFromChannelMutation;
183
- export type RemoveFacetsFromChannelMutationResult = Types.RemoveFacetsFromChannelMutation;
184
- export type AssignPaymentMethodsToChannelMutationVariables = Types.AssignPaymentMethodsToChannelMutationVariables;
185
- export type AssignPaymentMethodsToChannelMutation = Types.AssignPaymentMethodsToChannelMutation;
186
- export type AssignPaymentMethodsToChannelMutationResult = Types.AssignPaymentMethodsToChannelMutation;
187
- export type RemovePaymentMethodsFromChannelMutationVariables = Types.RemovePaymentMethodsFromChannelMutationVariables;
188
- export type RemovePaymentMethodsFromChannelMutation = Types.RemovePaymentMethodsFromChannelMutation;
189
- export type RemovePaymentMethodsFromChannelMutationResult = Types.RemovePaymentMethodsFromChannelMutation;
190
- export type AssignProductVariantsToChannelMutationVariables = Types.AssignProductVariantsToChannelMutationVariables;
191
- export type AssignProductVariantsToChannelMutation = Types.AssignProductVariantsToChannelMutation;
192
- export type AssignProductVariantsToChannelMutationResult = Types.AssignProductVariantsToChannelMutation;
193
- export type RemoveProductVariantsFromChannelMutationVariables = Types.RemoveProductVariantsFromChannelMutationVariables;
194
- export type RemoveProductVariantsFromChannelMutation = Types.RemoveProductVariantsFromChannelMutation;
195
- export type RemoveProductVariantsFromChannelMutationResult = Types.RemoveProductVariantsFromChannelMutation;
196
- export type AssignProductsToChannelMutationVariables = Types.AssignProductsToChannelMutationVariables;
197
- export type AssignProductsToChannelMutation = Types.AssignProductsToChannelMutation;
198
- export type AssignProductsToChannelMutationResult = Types.AssignProductsToChannelMutation;
199
- export type RemoveProductsFromChannelMutationVariables = Types.RemoveProductsFromChannelMutationVariables;
200
- export type RemoveProductsFromChannelMutation = Types.RemoveProductsFromChannelMutation;
201
- export type RemoveProductsFromChannelMutationResult = Types.RemoveProductsFromChannelMutation;
202
- export type AssignPromotionsToChannelMutationVariables = Types.AssignPromotionsToChannelMutationVariables;
203
- export type AssignPromotionsToChannelMutation = Types.AssignPromotionsToChannelMutation;
204
- export type AssignPromotionsToChannelMutationResult = Types.AssignPromotionsToChannelMutation;
205
- export type RemovePromotionsFromChannelMutationVariables = Types.RemovePromotionsFromChannelMutationVariables;
206
- export type RemovePromotionsFromChannelMutation = Types.RemovePromotionsFromChannelMutation;
207
- export type RemovePromotionsFromChannelMutationResult = Types.RemovePromotionsFromChannelMutation;
208
- export type AssignShippingMethodsToChannelMutationVariables = Types.AssignShippingMethodsToChannelMutationVariables;
209
- export type AssignShippingMethodsToChannelMutation = Types.AssignShippingMethodsToChannelMutation;
210
- export type AssignShippingMethodsToChannelMutationResult = Types.AssignShippingMethodsToChannelMutation;
211
- export type RemoveShippingMethodsFromChannelMutationVariables = Types.RemoveShippingMethodsFromChannelMutationVariables;
212
- export type RemoveShippingMethodsFromChannelMutation = Types.RemoveShippingMethodsFromChannelMutation;
213
- export type RemoveShippingMethodsFromChannelMutationResult = Types.RemoveShippingMethodsFromChannelMutation;
214
- export type AssignStockLocationsToChannelMutationVariables = Types.AssignStockLocationsToChannelMutationVariables;
215
- export type AssignStockLocationsToChannelMutation = Types.AssignStockLocationsToChannelMutation;
216
- export type AssignStockLocationsToChannelMutationResult = Types.AssignStockLocationsToChannelMutation;
217
- export type RemoveStockLocationsFromChannelMutationVariables = Types.RemoveStockLocationsFromChannelMutationVariables;
218
- export type RemoveStockLocationsFromChannelMutation = Types.RemoveStockLocationsFromChannelMutation;
219
- export type RemoveStockLocationsFromChannelMutationResult = Types.RemoveStockLocationsFromChannelMutation;
220
- export type CollectionQueryVariables = Types.CollectionQueryVariables;
221
- export type CollectionQuery = Types.CollectionQuery;
222
- export type CollectionQueryResult = Types.CollectionQuery;
223
- export type CollectionsQueryVariables = Types.CollectionsQueryVariables;
224
- export type CollectionsQuery = Types.CollectionsQuery;
225
- export type CollectionsQueryResult = Types.CollectionsQuery;
226
- export type CollectionFiltersQueryVariables = Types.CollectionFiltersQueryVariables;
227
- export type CollectionFiltersQuery = Types.CollectionFiltersQuery;
228
- export type CollectionFiltersQueryResult = Types.CollectionFiltersQuery;
229
- export type PreviewCollectionVariantsQueryVariables = Types.PreviewCollectionVariantsQueryVariables;
230
- export type PreviewCollectionVariantsQuery = Types.PreviewCollectionVariantsQuery;
231
- export type PreviewCollectionVariantsQueryResult = Types.PreviewCollectionVariantsQuery;
232
- export type CreateCollectionMutationVariables = Types.CreateCollectionMutationVariables;
233
- export type CreateCollectionMutation = Types.CreateCollectionMutation;
234
- export type CreateCollectionMutationResult = Types.CreateCollectionMutation;
235
- export type UpdateCollectionMutationVariables = Types.UpdateCollectionMutationVariables;
236
- export type UpdateCollectionMutation = Types.UpdateCollectionMutation;
237
- export type UpdateCollectionMutationResult = Types.UpdateCollectionMutation;
238
- export type MoveCollectionMutationVariables = Types.MoveCollectionMutationVariables;
239
- export type MoveCollectionMutation = Types.MoveCollectionMutation;
240
- export type MoveCollectionMutationResult = Types.MoveCollectionMutation;
241
- export type DeleteCollectionMutationVariables = Types.DeleteCollectionMutationVariables;
242
- export type DeleteCollectionMutation = Types.DeleteCollectionMutation;
243
- export type DeleteCollectionMutationResult = Types.DeleteCollectionMutation;
244
- export type DeleteCollectionsMutationVariables = Types.DeleteCollectionsMutationVariables;
245
- export type DeleteCollectionsMutation = Types.DeleteCollectionsMutation;
246
- export type DeleteCollectionsMutationResult = Types.DeleteCollectionsMutation;
247
- export type CountryQueryVariables = Types.CountryQueryVariables;
248
- export type CountryQuery = Types.CountryQuery;
249
- export type CountryQueryResult = Types.CountryQuery;
250
- export type CountriesQueryVariables = Types.CountriesQueryVariables;
251
- export type CountriesQuery = Types.CountriesQuery;
252
- export type CountriesQueryResult = Types.CountriesQuery;
253
- export type ProvinceQueryVariables = Types.ProvinceQueryVariables;
254
- export type ProvinceQuery = Types.ProvinceQuery;
255
- export type ProvinceQueryResult = Types.ProvinceQuery;
256
- export type ProvincesQueryVariables = Types.ProvincesQueryVariables;
257
- export type ProvincesQuery = Types.ProvincesQuery;
258
- export type ProvincesQueryResult = Types.ProvincesQuery;
259
- export type CreateCountryMutationVariables = Types.CreateCountryMutationVariables;
260
- export type CreateCountryMutation = Types.CreateCountryMutation;
261
- export type CreateCountryMutationResult = Types.CreateCountryMutation;
262
- export type UpdateCountryMutationVariables = Types.UpdateCountryMutationVariables;
263
- export type UpdateCountryMutation = Types.UpdateCountryMutation;
264
- export type UpdateCountryMutationResult = Types.UpdateCountryMutation;
265
- export type DeleteCountryMutationVariables = Types.DeleteCountryMutationVariables;
266
- export type DeleteCountryMutation = Types.DeleteCountryMutation;
267
- export type DeleteCountryMutationResult = Types.DeleteCountryMutation;
268
- export type DeleteCountriesMutationVariables = Types.DeleteCountriesMutationVariables;
269
- export type DeleteCountriesMutation = Types.DeleteCountriesMutation;
270
- export type DeleteCountriesMutationResult = Types.DeleteCountriesMutation;
271
- export type CreateProvinceMutationVariables = Types.CreateProvinceMutationVariables;
272
- export type CreateProvinceMutation = Types.CreateProvinceMutation;
273
- export type CreateProvinceMutationResult = Types.CreateProvinceMutation;
274
- export type UpdateProvinceMutationVariables = Types.UpdateProvinceMutationVariables;
275
- export type UpdateProvinceMutation = Types.UpdateProvinceMutation;
276
- export type UpdateProvinceMutationResult = Types.UpdateProvinceMutation;
277
- export type DeleteProvinceMutationVariables = Types.DeleteProvinceMutationVariables;
278
- export type DeleteProvinceMutation = Types.DeleteProvinceMutation;
279
- export type DeleteProvinceMutationResult = Types.DeleteProvinceMutation;
280
- export type GetAllFieldsQueryVariables = Types.GetAllFieldsQueryVariables;
281
- export type GetAllFieldsQuery = Types.GetAllFieldsQuery;
282
- export type GetAllFieldsQueryResult = Types.GetAllFieldsQuery;
283
- export type GetAllValuesQueryVariables = Types.GetAllValuesQueryVariables;
284
- export type GetAllValuesQuery = Types.GetAllValuesQuery;
285
- export type GetAllValuesQueryResult = Types.GetAllValuesQuery;
286
- export type GetBooleanValueQueryVariables = Types.GetBooleanValueQueryVariables;
287
- export type GetBooleanValueQuery = Types.GetBooleanValueQuery;
288
- export type GetBooleanValueQueryResult = Types.GetBooleanValueQuery;
289
- export type GetDateValueQueryVariables = Types.GetDateValueQueryVariables;
290
- export type GetDateValueQuery = Types.GetDateValueQuery;
291
- export type GetDateValueQueryResult = Types.GetDateValueQuery;
292
- export type GetFloatValueQueryVariables = Types.GetFloatValueQueryVariables;
293
- export type GetFloatValueQuery = Types.GetFloatValueQuery;
294
- export type GetFloatValueQueryResult = Types.GetFloatValueQuery;
295
- export type GetGroupFieldDefinitionByIdQueryVariables = Types.GetGroupFieldDefinitionByIdQueryVariables;
296
- export type GetGroupFieldDefinitionByIdQuery = Types.GetGroupFieldDefinitionByIdQuery;
297
- export type GetGroupFieldDefinitionByIdQueryResult = Types.GetGroupFieldDefinitionByIdQuery;
298
- export type GetGroupValueQueryVariables = Types.GetGroupValueQueryVariables;
299
- export type GetGroupValueQuery = Types.GetGroupValueQuery;
300
- export type GetGroupValueQueryResult = Types.GetGroupValueQuery;
301
- export type GetIntegerValueQueryVariables = Types.GetIntegerValueQueryVariables;
302
- export type GetIntegerValueQuery = Types.GetIntegerValueQuery;
303
- export type GetIntegerValueQueryResult = Types.GetIntegerValueQuery;
304
- export type GetRelationValueQueryVariables = Types.GetRelationValueQueryVariables;
305
- export type GetRelationValueQuery = Types.GetRelationValueQuery;
306
- export type GetRelationValueQueryResult = Types.GetRelationValueQuery;
307
- export type GetRichTextValueQueryVariables = Types.GetRichTextValueQueryVariables;
308
- export type GetRichTextValueQuery = Types.GetRichTextValueQuery;
309
- export type GetRichTextValueQueryResult = Types.GetRichTextValueQuery;
310
- export type GetStringValueQueryVariables = Types.GetStringValueQueryVariables;
311
- export type GetStringValueQuery = Types.GetStringValueQuery;
312
- export type GetStringValueQueryResult = Types.GetStringValueQuery;
313
- export type GetTemplatesByEntityIdQueryVariables = Types.GetTemplatesByEntityIdQueryVariables;
314
- export type GetTemplatesByEntityIdQuery = Types.GetTemplatesByEntityIdQuery;
315
- export type GetTemplatesByEntityIdQueryResult = Types.GetTemplatesByEntityIdQuery;
316
- export type GetUniqueTemplatesQueryVariables = Types.GetUniqueTemplatesQueryVariables;
317
- export type GetUniqueTemplatesQuery = Types.GetUniqueTemplatesQuery;
318
- export type GetUniqueTemplatesQueryResult = Types.GetUniqueTemplatesQuery;
319
- export type InsertBooleanFieldDefinitionMutationVariables = Types.InsertBooleanFieldDefinitionMutationVariables;
320
- export type InsertBooleanFieldDefinitionMutation = Types.InsertBooleanFieldDefinitionMutation;
321
- export type InsertBooleanFieldDefinitionMutationResult = Types.InsertBooleanFieldDefinitionMutation;
322
- export type InsertDateFieldDefinitionMutationVariables = Types.InsertDateFieldDefinitionMutationVariables;
323
- export type InsertDateFieldDefinitionMutation = Types.InsertDateFieldDefinitionMutation;
324
- export type InsertDateFieldDefinitionMutationResult = Types.InsertDateFieldDefinitionMutation;
325
- export type InsertFloatFieldDefinitionMutationVariables = Types.InsertFloatFieldDefinitionMutationVariables;
326
- export type InsertFloatFieldDefinitionMutation = Types.InsertFloatFieldDefinitionMutation;
327
- export type InsertFloatFieldDefinitionMutationResult = Types.InsertFloatFieldDefinitionMutation;
328
- export type InsertGroupFieldDefinitionMutationVariables = Types.InsertGroupFieldDefinitionMutationVariables;
329
- export type InsertGroupFieldDefinitionMutation = Types.InsertGroupFieldDefinitionMutation;
330
- export type InsertGroupFieldDefinitionMutationResult = Types.InsertGroupFieldDefinitionMutation;
331
- export type InsertIntegerFieldDefinitionMutationVariables = Types.InsertIntegerFieldDefinitionMutationVariables;
332
- export type InsertIntegerFieldDefinitionMutation = Types.InsertIntegerFieldDefinitionMutation;
333
- export type InsertIntegerFieldDefinitionMutationResult = Types.InsertIntegerFieldDefinitionMutation;
334
- export type InsertRelationFieldDefinitionMutationVariables = Types.InsertRelationFieldDefinitionMutationVariables;
335
- export type InsertRelationFieldDefinitionMutation = Types.InsertRelationFieldDefinitionMutation;
336
- export type InsertRelationFieldDefinitionMutationResult = Types.InsertRelationFieldDefinitionMutation;
337
- export type InsertRichTextFieldDefinitionMutationVariables = Types.InsertRichTextFieldDefinitionMutationVariables;
338
- export type InsertRichTextFieldDefinitionMutation = Types.InsertRichTextFieldDefinitionMutation;
339
- export type InsertRichTextFieldDefinitionMutationResult = Types.InsertRichTextFieldDefinitionMutation;
340
- export type InsertStringFieldDefinitionMutationVariables = Types.InsertStringFieldDefinitionMutationVariables;
341
- export type InsertStringFieldDefinitionMutation = Types.InsertStringFieldDefinitionMutation;
342
- export type InsertStringFieldDefinitionMutationResult = Types.InsertStringFieldDefinitionMutation;
343
- export type DeleteGroupFieldDefinitionMutationVariables = Types.DeleteGroupFieldDefinitionMutationVariables;
344
- export type DeleteGroupFieldDefinitionMutation = Types.DeleteGroupFieldDefinitionMutation;
345
- export type DeleteGroupFieldDefinitionMutationResult = Types.DeleteGroupFieldDefinitionMutation;
346
- export type CreateGroupValueMutationVariables = Types.CreateGroupValueMutationVariables;
347
- export type CreateGroupValueMutation = Types.CreateGroupValueMutation;
348
- export type CreateGroupValueMutationResult = Types.CreateGroupValueMutation;
349
- export type UpsertBooleanValueMutationVariables = Types.UpsertBooleanValueMutationVariables;
350
- export type UpsertBooleanValueMutation = Types.UpsertBooleanValueMutation;
351
- export type UpsertBooleanValueMutationResult = Types.UpsertBooleanValueMutation;
352
- export type UpsertDateValueMutationVariables = Types.UpsertDateValueMutationVariables;
353
- export type UpsertDateValueMutation = Types.UpsertDateValueMutation;
354
- export type UpsertDateValueMutationResult = Types.UpsertDateValueMutation;
355
- export type UpsertFloatValueMutationVariables = Types.UpsertFloatValueMutationVariables;
356
- export type UpsertFloatValueMutation = Types.UpsertFloatValueMutation;
357
- export type UpsertFloatValueMutationResult = Types.UpsertFloatValueMutation;
358
- export type UpsertGroupValueMutationVariables = Types.UpsertGroupValueMutationVariables;
359
- export type UpsertGroupValueMutation = Types.UpsertGroupValueMutation;
360
- export type UpsertGroupValueMutationResult = Types.UpsertGroupValueMutation;
361
- export type UpsertGroupMemberMutationVariables = Types.UpsertGroupMemberMutationVariables;
362
- export type UpsertGroupMemberMutation = Types.UpsertGroupMemberMutation;
363
- export type UpsertGroupMemberMutationResult = Types.UpsertGroupMemberMutation;
364
- export type UpsertIntegerValueMutationVariables = Types.UpsertIntegerValueMutationVariables;
365
- export type UpsertIntegerValueMutation = Types.UpsertIntegerValueMutation;
366
- export type UpsertIntegerValueMutationResult = Types.UpsertIntegerValueMutation;
367
- export type UpsertRelationValueMutationVariables = Types.UpsertRelationValueMutationVariables;
368
- export type UpsertRelationValueMutation = Types.UpsertRelationValueMutation;
369
- export type UpsertRelationValueMutationResult = Types.UpsertRelationValueMutation;
370
- export type UpsertRichTextValueMutationVariables = Types.UpsertRichTextValueMutationVariables;
371
- export type UpsertRichTextValueMutation = Types.UpsertRichTextValueMutation;
372
- export type UpsertRichTextValueMutationResult = Types.UpsertRichTextValueMutation;
373
- export type UpsertStringValueMutationVariables = Types.UpsertStringValueMutationVariables;
374
- export type UpsertStringValueMutation = Types.UpsertStringValueMutation;
375
- export type UpsertStringValueMutationResult = Types.UpsertStringValueMutation;
376
- export type UpdateGroupMembersMutationVariables = Types.UpdateGroupMembersMutationVariables;
377
- export type UpdateGroupMembersMutation = Types.UpdateGroupMembersMutation;
378
- export type UpdateGroupMembersMutationResult = Types.UpdateGroupMembersMutation;
379
- export type DeleteBooleanValueMutationVariables = Types.DeleteBooleanValueMutationVariables;
380
- export type DeleteBooleanValueMutation = Types.DeleteBooleanValueMutation;
381
- export type DeleteBooleanValueMutationResult = Types.DeleteBooleanValueMutation;
382
- export type DeleteDateValueMutationVariables = Types.DeleteDateValueMutationVariables;
383
- export type DeleteDateValueMutation = Types.DeleteDateValueMutation;
384
- export type DeleteDateValueMutationResult = Types.DeleteDateValueMutation;
385
- export type DeleteFloatValueMutationVariables = Types.DeleteFloatValueMutationVariables;
386
- export type DeleteFloatValueMutation = Types.DeleteFloatValueMutation;
387
- export type DeleteFloatValueMutationResult = Types.DeleteFloatValueMutation;
388
- export type DeleteGroupValueMutationVariables = Types.DeleteGroupValueMutationVariables;
389
- export type DeleteGroupValueMutation = Types.DeleteGroupValueMutation;
390
- export type DeleteGroupValueMutationResult = Types.DeleteGroupValueMutation;
391
- export type DeleteIntegerValueMutationVariables = Types.DeleteIntegerValueMutationVariables;
392
- export type DeleteIntegerValueMutation = Types.DeleteIntegerValueMutation;
393
- export type DeleteIntegerValueMutationResult = Types.DeleteIntegerValueMutation;
394
- export type DeleteRelationValueMutationVariables = Types.DeleteRelationValueMutationVariables;
395
- export type DeleteRelationValueMutation = Types.DeleteRelationValueMutation;
396
- export type DeleteRelationValueMutationResult = Types.DeleteRelationValueMutation;
397
- export type DeleteRichTextValueMutationVariables = Types.DeleteRichTextValueMutationVariables;
398
- export type DeleteRichTextValueMutation = Types.DeleteRichTextValueMutation;
399
- export type DeleteRichTextValueMutationResult = Types.DeleteRichTextValueMutation;
400
- export type DeleteStringValueMutationVariables = Types.DeleteStringValueMutationVariables;
401
- export type DeleteStringValueMutation = Types.DeleteStringValueMutation;
402
- export type DeleteStringValueMutationResult = Types.DeleteStringValueMutation;
403
- export type CustomerGroupQueryVariables = Types.CustomerGroupQueryVariables;
404
- export type CustomerGroupQuery = Types.CustomerGroupQuery;
405
- export type CustomerGroupQueryResult = Types.CustomerGroupQuery;
406
- export type CustomerGroupsQueryVariables = Types.CustomerGroupsQueryVariables;
407
- export type CustomerGroupsQuery = Types.CustomerGroupsQuery;
408
- export type CustomerGroupsQueryResult = Types.CustomerGroupsQuery;
409
- export type CreateCustomerGroupMutationVariables = Types.CreateCustomerGroupMutationVariables;
410
- export type CreateCustomerGroupMutation = Types.CreateCustomerGroupMutation;
411
- export type CreateCustomerGroupMutationResult = Types.CreateCustomerGroupMutation;
412
- export type UpdateCustomerGroupMutationVariables = Types.UpdateCustomerGroupMutationVariables;
413
- export type UpdateCustomerGroupMutation = Types.UpdateCustomerGroupMutation;
414
- export type UpdateCustomerGroupMutationResult = Types.UpdateCustomerGroupMutation;
415
- export type DeleteCustomerGroupMutationVariables = Types.DeleteCustomerGroupMutationVariables;
416
- export type DeleteCustomerGroupMutation = Types.DeleteCustomerGroupMutation;
417
- export type DeleteCustomerGroupMutationResult = Types.DeleteCustomerGroupMutation;
418
- export type DeleteCustomerGroupsMutationVariables = Types.DeleteCustomerGroupsMutationVariables;
419
- export type DeleteCustomerGroupsMutation = Types.DeleteCustomerGroupsMutation;
420
- export type DeleteCustomerGroupsMutationResult = Types.DeleteCustomerGroupsMutation;
421
- export type AddCustomersToGroupMutationVariables = Types.AddCustomersToGroupMutationVariables;
422
- export type AddCustomersToGroupMutation = Types.AddCustomersToGroupMutation;
423
- export type AddCustomersToGroupMutationResult = Types.AddCustomersToGroupMutation;
424
- export type RemoveCustomersFromGroupMutationVariables = Types.RemoveCustomersFromGroupMutationVariables;
425
- export type RemoveCustomersFromGroupMutation = Types.RemoveCustomersFromGroupMutation;
426
- export type RemoveCustomersFromGroupMutationResult = Types.RemoveCustomersFromGroupMutation;
427
- export type CustomerQueryVariables = Types.CustomerQueryVariables;
428
- export type CustomerQuery = Types.CustomerQuery;
429
- export type CustomerQueryResult = Types.CustomerQuery;
430
- export type CustomersQueryVariables = Types.CustomersQueryVariables;
431
- export type CustomersQuery = Types.CustomersQuery;
432
- export type CustomersQueryResult = Types.CustomersQuery;
433
- export type CreateCustomerMutationVariables = Types.CreateCustomerMutationVariables;
434
- export type CreateCustomerMutation = Types.CreateCustomerMutation;
435
- export type CreateCustomerMutationResult = Types.CreateCustomerMutation;
436
- export type UpdateCustomerMutationVariables = Types.UpdateCustomerMutationVariables;
437
- export type UpdateCustomerMutation = Types.UpdateCustomerMutation;
438
- export type UpdateCustomerMutationResult = Types.UpdateCustomerMutation;
439
- export type DeleteCustomerMutationVariables = Types.DeleteCustomerMutationVariables;
440
- export type DeleteCustomerMutation = Types.DeleteCustomerMutation;
441
- export type DeleteCustomerMutationResult = Types.DeleteCustomerMutation;
442
- export type DeleteCustomersMutationVariables = Types.DeleteCustomersMutationVariables;
443
- export type DeleteCustomersMutation = Types.DeleteCustomersMutation;
444
- export type DeleteCustomersMutationResult = Types.DeleteCustomersMutation;
445
- export type CreateCustomerAddressMutationVariables = Types.CreateCustomerAddressMutationVariables;
446
- export type CreateCustomerAddressMutation = Types.CreateCustomerAddressMutation;
447
- export type CreateCustomerAddressMutationResult = Types.CreateCustomerAddressMutation;
448
- export type UpdateCustomerAddressMutationVariables = Types.UpdateCustomerAddressMutationVariables;
449
- export type UpdateCustomerAddressMutation = Types.UpdateCustomerAddressMutation;
450
- export type UpdateCustomerAddressMutationResult = Types.UpdateCustomerAddressMutation;
451
- export type DeleteCustomerAddressMutationVariables = Types.DeleteCustomerAddressMutationVariables;
452
- export type DeleteCustomerAddressMutation = Types.DeleteCustomerAddressMutation;
453
- export type DeleteCustomerAddressMutationResult = Types.DeleteCustomerAddressMutation;
454
- export type AddNoteToCustomerMutationVariables = Types.AddNoteToCustomerMutationVariables;
455
- export type AddNoteToCustomerMutation = Types.AddNoteToCustomerMutation;
456
- export type AddNoteToCustomerMutationResult = Types.AddNoteToCustomerMutation;
457
- export type UpdateCustomerNoteMutationVariables = Types.UpdateCustomerNoteMutationVariables;
458
- export type UpdateCustomerNoteMutation = Types.UpdateCustomerNoteMutation;
459
- export type UpdateCustomerNoteMutationResult = Types.UpdateCustomerNoteMutation;
460
- export type DeleteCustomerNoteMutationVariables = Types.DeleteCustomerNoteMutationVariables;
461
- export type DeleteCustomerNoteMutation = Types.DeleteCustomerNoteMutation;
462
- export type DeleteCustomerNoteMutationResult = Types.DeleteCustomerNoteMutation;
463
- export type DeploymentsQueryVariables = Types.DeploymentsQueryVariables;
464
- export type DeploymentsQuery = Types.DeploymentsQuery;
465
- export type DeploymentsQueryResult = Types.DeploymentsQuery;
466
- export type DeploymentQueryVariables = Types.DeploymentQueryVariables;
467
- export type DeploymentQuery = Types.DeploymentQuery;
468
- export type DeploymentQueryResult = Types.DeploymentQuery;
469
- export type DeploymentEnvQueryVariables = Types.DeploymentEnvQueryVariables;
470
- export type DeploymentEnvQuery = Types.DeploymentEnvQuery;
471
- export type DeploymentEnvQueryResult = Types.DeploymentEnvQuery;
472
- export type ChannelInfoQueryVariables = Types.ChannelInfoQueryVariables;
473
- export type ChannelInfoQuery = Types.ChannelInfoQuery;
474
- export type ChannelInfoQueryResult = Types.ChannelInfoQuery;
475
- export type ValidateChannelTokenQueryVariables = Types.ValidateChannelTokenQueryVariables;
476
- export type ValidateChannelTokenQuery = Types.ValidateChannelTokenQuery;
477
- export type ValidateChannelTokenQueryResult = Types.ValidateChannelTokenQuery;
478
- export type CreateDeploymentMutationVariables = Types.CreateDeploymentMutationVariables;
479
- export type CreateDeploymentMutation = Types.CreateDeploymentMutation;
480
- export type CreateDeploymentMutationResult = Types.CreateDeploymentMutation;
481
- export type DeleteDeploymentMutationVariables = Types.DeleteDeploymentMutationVariables;
482
- export type DeleteDeploymentMutation = Types.DeleteDeploymentMutation;
483
- export type DeleteDeploymentMutationResult = Types.DeleteDeploymentMutation;
484
- export type ScaleDeploymentMutationVariables = Types.ScaleDeploymentMutationVariables;
485
- export type ScaleDeploymentMutation = Types.ScaleDeploymentMutation;
486
- export type ScaleDeploymentMutationResult = Types.ScaleDeploymentMutation;
487
- export type SetDeploymentEnvMutationVariables = Types.SetDeploymentEnvMutationVariables;
488
- export type SetDeploymentEnvMutation = Types.SetDeploymentEnvMutation;
489
- export type SetDeploymentEnvMutationResult = Types.SetDeploymentEnvMutation;
490
- export type UnsetDeploymentEnvMutationVariables = Types.UnsetDeploymentEnvMutationVariables;
491
- export type UnsetDeploymentEnvMutation = Types.UnsetDeploymentEnvMutation;
492
- export type UnsetDeploymentEnvMutationResult = Types.UnsetDeploymentEnvMutation;
493
- export type RefreshDeploymentStatusMutationVariables = Types.RefreshDeploymentStatusMutationVariables;
494
- export type RefreshDeploymentStatusMutation = Types.RefreshDeploymentStatusMutation;
495
- export type RefreshDeploymentStatusMutationResult = Types.RefreshDeploymentStatusMutation;
496
- export type DeploymentLogsSubscriptionVariables = Types.DeploymentLogsSubscriptionVariables;
497
- export type DeploymentLogsSubscription = Types.DeploymentLogsSubscription;
498
- export type DeploymentLogsSubscriptionResult = Types.DeploymentLogsSubscription;
499
- export type EntityDuplicatorsQueryVariables = Types.EntityDuplicatorsQueryVariables;
500
- export type EntityDuplicatorsQuery = Types.EntityDuplicatorsQuery;
501
- export type EntityDuplicatorsQueryResult = Types.EntityDuplicatorsQuery;
502
- export type DuplicateEntityMutationVariables = Types.DuplicateEntityMutationVariables;
503
- export type DuplicateEntityMutation = Types.DuplicateEntityMutation;
504
- export type DuplicateEntityMutationResult = Types.DuplicateEntityMutation;
505
- export type EntityEventSubscriptionVariables = Types.EntityEventSubscriptionVariables;
506
- export type EntityEventSubscription = Types.EntityEventSubscription;
507
- export type EntityEventSubscriptionResult = Types.EntityEventSubscription;
508
- export type FacetQueryVariables = Types.FacetQueryVariables;
509
- export type FacetQuery = Types.FacetQuery;
510
- export type FacetQueryResult = Types.FacetQuery;
511
- export type FacetsQueryVariables = Types.FacetsQueryVariables;
512
- export type FacetsQuery = Types.FacetsQuery;
513
- export type FacetsQueryResult = Types.FacetsQuery;
514
- export type FacetValuesQueryVariables = Types.FacetValuesQueryVariables;
515
- export type FacetValuesQuery = Types.FacetValuesQuery;
516
- export type FacetValuesQueryResult = Types.FacetValuesQuery;
517
- export type CreateFacetMutationVariables = Types.CreateFacetMutationVariables;
518
- export type CreateFacetMutation = Types.CreateFacetMutation;
519
- export type CreateFacetMutationResult = Types.CreateFacetMutation;
520
- export type UpdateFacetMutationVariables = Types.UpdateFacetMutationVariables;
521
- export type UpdateFacetMutation = Types.UpdateFacetMutation;
522
- export type UpdateFacetMutationResult = Types.UpdateFacetMutation;
523
- export type DeleteFacetMutationVariables = Types.DeleteFacetMutationVariables;
524
- export type DeleteFacetMutation = Types.DeleteFacetMutation;
525
- export type DeleteFacetMutationResult = Types.DeleteFacetMutation;
526
- export type DeleteFacetsMutationVariables = Types.DeleteFacetsMutationVariables;
527
- export type DeleteFacetsMutation = Types.DeleteFacetsMutation;
528
- export type DeleteFacetsMutationResult = Types.DeleteFacetsMutation;
529
- export type CreateFacetValuesMutationVariables = Types.CreateFacetValuesMutationVariables;
530
- export type CreateFacetValuesMutation = Types.CreateFacetValuesMutation;
531
- export type CreateFacetValuesMutationResult = Types.CreateFacetValuesMutation;
532
- export type UpdateFacetValuesMutationVariables = Types.UpdateFacetValuesMutationVariables;
533
- export type UpdateFacetValuesMutation = Types.UpdateFacetValuesMutation;
534
- export type UpdateFacetValuesMutationResult = Types.UpdateFacetValuesMutation;
535
- export type DeleteFacetValuesMutationVariables = Types.DeleteFacetValuesMutationVariables;
536
- export type DeleteFacetValuesMutation = Types.DeleteFacetValuesMutation;
537
- export type DeleteFacetValuesMutationResult = Types.DeleteFacetValuesMutation;
538
- export type FulfillmentHandlersQueryVariables = Types.FulfillmentHandlersQueryVariables;
539
- export type FulfillmentHandlersQuery = Types.FulfillmentHandlersQuery;
540
- export type FulfillmentHandlersQueryResult = Types.FulfillmentHandlersQuery;
541
- export type GlobalSettingsQueryVariables = Types.GlobalSettingsQueryVariables;
542
- export type GlobalSettingsQuery = Types.GlobalSettingsQuery;
543
- export type GlobalSettingsQueryResult = Types.GlobalSettingsQuery;
544
- export type UpdateGlobalSettingsMutationVariables = Types.UpdateGlobalSettingsMutationVariables;
545
- export type UpdateGlobalSettingsMutation = Types.UpdateGlobalSettingsMutation;
546
- export type UpdateGlobalSettingsMutationResult = Types.UpdateGlobalSettingsMutation;
547
- export type ImportProductsMutationVariables = Types.ImportProductsMutationVariables;
548
- export type ImportProductsMutation = Types.ImportProductsMutation;
549
- export type ImportProductsMutationResult = Types.ImportProductsMutation;
550
- export type JobQueryVariables = Types.JobQueryVariables;
551
- export type JobQuery = Types.JobQuery;
552
- export type JobQueryResult = Types.JobQuery;
553
- export type JobsQueryVariables = Types.JobsQueryVariables;
554
- export type JobsQuery = Types.JobsQuery;
555
- export type JobsQueryResult = Types.JobsQuery;
556
- export type JobsByIdQueryVariables = Types.JobsByIdQueryVariables;
557
- export type JobsByIdQuery = Types.JobsByIdQuery;
558
- export type JobsByIdQueryResult = Types.JobsByIdQuery;
559
- export type JobQueuesQueryVariables = Types.JobQueuesQueryVariables;
560
- export type JobQueuesQuery = Types.JobQueuesQuery;
561
- export type JobQueuesQueryResult = Types.JobQueuesQuery;
562
- export type JobBufferSizeQueryVariables = Types.JobBufferSizeQueryVariables;
563
- export type JobBufferSizeQuery = Types.JobBufferSizeQuery;
564
- export type JobBufferSizeQueryResult = Types.JobBufferSizeQuery;
565
- export type ScheduledTasksQueryVariables = Types.ScheduledTasksQueryVariables;
566
- export type ScheduledTasksQuery = Types.ScheduledTasksQuery;
567
- export type ScheduledTasksQueryResult = Types.ScheduledTasksQuery;
568
- export type CancelJobMutationVariables = Types.CancelJobMutationVariables;
569
- export type CancelJobMutation = Types.CancelJobMutation;
570
- export type CancelJobMutationResult = Types.CancelJobMutation;
571
- export type FlushBufferedJobsMutationVariables = Types.FlushBufferedJobsMutationVariables;
572
- export type FlushBufferedJobsMutation = Types.FlushBufferedJobsMutation;
573
- export type FlushBufferedJobsMutationResult = Types.FlushBufferedJobsMutation;
574
- export type RemoveSettledJobsMutationVariables = Types.RemoveSettledJobsMutationVariables;
575
- export type RemoveSettledJobsMutation = Types.RemoveSettledJobsMutation;
576
- export type RemoveSettledJobsMutationResult = Types.RemoveSettledJobsMutation;
577
- export type RunScheduledTaskMutationVariables = Types.RunScheduledTaskMutationVariables;
578
- export type RunScheduledTaskMutation = Types.RunScheduledTaskMutation;
579
- export type RunScheduledTaskMutationResult = Types.RunScheduledTaskMutation;
580
- export type UpdateScheduledTaskMutationVariables = Types.UpdateScheduledTaskMutationVariables;
581
- export type UpdateScheduledTaskMutation = Types.UpdateScheduledTaskMutation;
582
- export type UpdateScheduledTaskMutationResult = Types.UpdateScheduledTaskMutation;
583
- export type SubmitLandingContactFormMutationVariables = Types.SubmitLandingContactFormMutationVariables;
584
- export type SubmitLandingContactFormMutation = Types.SubmitLandingContactFormMutation;
585
- export type SubmitLandingContactFormMutationResult = Types.SubmitLandingContactFormMutation;
586
- export type NotificationsQueryVariables = Types.NotificationsQueryVariables;
587
- export type NotificationsQuery = Types.NotificationsQuery;
588
- export type NotificationsQueryResult = Types.NotificationsQuery;
589
- export type NotificationSubscriptionVariables = Types.NotificationSubscriptionVariables;
590
- export type NotificationSubscription = Types.NotificationSubscription;
591
- export type NotificationSubscriptionResult = Types.NotificationSubscription;
592
- export type MarkAsReadMutationVariables = Types.MarkAsReadMutationVariables;
593
- export type MarkAsReadMutation = Types.MarkAsReadMutation;
594
- export type MarkAsReadMutationResult = Types.MarkAsReadMutation;
595
- export type OrderQueryVariables = Types.OrderQueryVariables;
596
- export type OrderQuery = Types.OrderQuery;
597
- export type OrderQueryResult = Types.OrderQuery;
598
- export type OrdersQueryVariables = Types.OrdersQueryVariables;
599
- export type OrdersQuery = Types.OrdersQuery;
600
- export type OrdersQueryResult = Types.OrdersQuery;
601
- export type EligibleShippingMethodsForDraftOrderQueryVariables = Types.EligibleShippingMethodsForDraftOrderQueryVariables;
602
- export type EligibleShippingMethodsForDraftOrderQuery = Types.EligibleShippingMethodsForDraftOrderQuery;
603
- export type EligibleShippingMethodsForDraftOrderQueryResult = Types.EligibleShippingMethodsForDraftOrderQuery;
604
- export type CreateDraftOrderMutationVariables = Types.CreateDraftOrderMutationVariables;
605
- export type CreateDraftOrderMutation = Types.CreateDraftOrderMutation;
606
- export type CreateDraftOrderMutationResult = Types.CreateDraftOrderMutation;
607
- export type DeleteDraftOrderMutationVariables = Types.DeleteDraftOrderMutationVariables;
608
- export type DeleteDraftOrderMutation = Types.DeleteDraftOrderMutation;
609
- export type DeleteDraftOrderMutationResult = Types.DeleteDraftOrderMutation;
610
- export type AddItemToDraftOrderMutationVariables = Types.AddItemToDraftOrderMutationVariables;
611
- export type AddItemToDraftOrderMutation = Types.AddItemToDraftOrderMutation;
612
- export type AddItemToDraftOrderMutationResult = Types.AddItemToDraftOrderMutation;
613
- export type AdjustDraftOrderLineMutationVariables = Types.AdjustDraftOrderLineMutationVariables;
614
- export type AdjustDraftOrderLineMutation = Types.AdjustDraftOrderLineMutation;
615
- export type AdjustDraftOrderLineMutationResult = Types.AdjustDraftOrderLineMutation;
616
- export type RemoveDraftOrderLineMutationVariables = Types.RemoveDraftOrderLineMutationVariables;
617
- export type RemoveDraftOrderLineMutation = Types.RemoveDraftOrderLineMutation;
618
- export type RemoveDraftOrderLineMutationResult = Types.RemoveDraftOrderLineMutation;
619
- export type ApplyCouponCodeToDraftOrderMutationVariables = Types.ApplyCouponCodeToDraftOrderMutationVariables;
620
- export type ApplyCouponCodeToDraftOrderMutation = Types.ApplyCouponCodeToDraftOrderMutation;
621
- export type ApplyCouponCodeToDraftOrderMutationResult = Types.ApplyCouponCodeToDraftOrderMutation;
622
- export type RemoveCouponCodeFromDraftOrderMutationVariables = Types.RemoveCouponCodeFromDraftOrderMutationVariables;
623
- export type RemoveCouponCodeFromDraftOrderMutation = Types.RemoveCouponCodeFromDraftOrderMutation;
624
- export type RemoveCouponCodeFromDraftOrderMutationResult = Types.RemoveCouponCodeFromDraftOrderMutation;
625
- export type SetCustomerForDraftOrderMutationVariables = Types.SetCustomerForDraftOrderMutationVariables;
626
- export type SetCustomerForDraftOrderMutation = Types.SetCustomerForDraftOrderMutation;
627
- export type SetCustomerForDraftOrderMutationResult = Types.SetCustomerForDraftOrderMutation;
628
- export type SetDraftOrderBillingAddressMutationVariables = Types.SetDraftOrderBillingAddressMutationVariables;
629
- export type SetDraftOrderBillingAddressMutation = Types.SetDraftOrderBillingAddressMutation;
630
- export type SetDraftOrderBillingAddressMutationResult = Types.SetDraftOrderBillingAddressMutation;
631
- export type SetDraftOrderShippingAddressMutationVariables = Types.SetDraftOrderShippingAddressMutationVariables;
632
- export type SetDraftOrderShippingAddressMutation = Types.SetDraftOrderShippingAddressMutation;
633
- export type SetDraftOrderShippingAddressMutationResult = Types.SetDraftOrderShippingAddressMutation;
634
- export type UnsetDraftOrderBillingAddressMutationVariables = Types.UnsetDraftOrderBillingAddressMutationVariables;
635
- export type UnsetDraftOrderBillingAddressMutation = Types.UnsetDraftOrderBillingAddressMutation;
636
- export type UnsetDraftOrderBillingAddressMutationResult = Types.UnsetDraftOrderBillingAddressMutation;
637
- export type UnsetDraftOrderShippingAddressMutationVariables = Types.UnsetDraftOrderShippingAddressMutationVariables;
638
- export type UnsetDraftOrderShippingAddressMutation = Types.UnsetDraftOrderShippingAddressMutation;
639
- export type UnsetDraftOrderShippingAddressMutationResult = Types.UnsetDraftOrderShippingAddressMutation;
640
- export type SetDraftOrderShippingMethodMutationVariables = Types.SetDraftOrderShippingMethodMutationVariables;
641
- export type SetDraftOrderShippingMethodMutation = Types.SetDraftOrderShippingMethodMutation;
642
- export type SetDraftOrderShippingMethodMutationResult = Types.SetDraftOrderShippingMethodMutation;
643
- export type SetDraftOrderCustomFieldsMutationVariables = Types.SetDraftOrderCustomFieldsMutationVariables;
644
- export type SetDraftOrderCustomFieldsMutation = Types.SetDraftOrderCustomFieldsMutation;
645
- export type SetDraftOrderCustomFieldsMutationResult = Types.SetDraftOrderCustomFieldsMutation;
646
- export type AddNoteToOrderMutationVariables = Types.AddNoteToOrderMutationVariables;
647
- export type AddNoteToOrderMutation = Types.AddNoteToOrderMutation;
648
- export type AddNoteToOrderMutationResult = Types.AddNoteToOrderMutation;
649
- export type UpdateOrderNoteMutationVariables = Types.UpdateOrderNoteMutationVariables;
650
- export type UpdateOrderNoteMutation = Types.UpdateOrderNoteMutation;
651
- export type UpdateOrderNoteMutationResult = Types.UpdateOrderNoteMutation;
652
- export type DeleteOrderNoteMutationVariables = Types.DeleteOrderNoteMutationVariables;
653
- export type DeleteOrderNoteMutation = Types.DeleteOrderNoteMutation;
654
- export type DeleteOrderNoteMutationResult = Types.DeleteOrderNoteMutation;
655
- export type SetOrderCustomFieldsMutationVariables = Types.SetOrderCustomFieldsMutationVariables;
656
- export type SetOrderCustomFieldsMutation = Types.SetOrderCustomFieldsMutation;
657
- export type SetOrderCustomFieldsMutationResult = Types.SetOrderCustomFieldsMutation;
658
- export type SetOrderCustomerMutationVariables = Types.SetOrderCustomerMutationVariables;
659
- export type SetOrderCustomerMutation = Types.SetOrderCustomerMutation;
660
- export type SetOrderCustomerMutationResult = Types.SetOrderCustomerMutation;
661
- export type ModifyOrderMutationVariables = Types.ModifyOrderMutationVariables;
662
- export type ModifyOrderMutation = Types.ModifyOrderMutation;
663
- export type ModifyOrderMutationResult = Types.ModifyOrderMutation;
664
- export type CancelOrderMutationVariables = Types.CancelOrderMutationVariables;
665
- export type CancelOrderMutation = Types.CancelOrderMutation;
666
- export type CancelOrderMutationResult = Types.CancelOrderMutation;
667
- export type TransitionOrderToStateMutationVariables = Types.TransitionOrderToStateMutationVariables;
668
- export type TransitionOrderToStateMutation = Types.TransitionOrderToStateMutation;
669
- export type TransitionOrderToStateMutationResult = Types.TransitionOrderToStateMutation;
670
- export type AddFulfillmentToOrderMutationVariables = Types.AddFulfillmentToOrderMutationVariables;
671
- export type AddFulfillmentToOrderMutation = Types.AddFulfillmentToOrderMutation;
672
- export type AddFulfillmentToOrderMutationResult = Types.AddFulfillmentToOrderMutation;
673
- export type TransitionFulfillmentToStateMutationVariables = Types.TransitionFulfillmentToStateMutationVariables;
674
- export type TransitionFulfillmentToStateMutation = Types.TransitionFulfillmentToStateMutation;
675
- export type TransitionFulfillmentToStateMutationResult = Types.TransitionFulfillmentToStateMutation;
676
- export type AddManualPaymentToOrderMutationVariables = Types.AddManualPaymentToOrderMutationVariables;
677
- export type AddManualPaymentToOrderMutation = Types.AddManualPaymentToOrderMutation;
678
- export type AddManualPaymentToOrderMutationResult = Types.AddManualPaymentToOrderMutation;
679
- export type CancelPaymentMutationVariables = Types.CancelPaymentMutationVariables;
680
- export type CancelPaymentMutation = Types.CancelPaymentMutation;
681
- export type CancelPaymentMutationResult = Types.CancelPaymentMutation;
682
- export type SettlePaymentMutationVariables = Types.SettlePaymentMutationVariables;
683
- export type SettlePaymentMutation = Types.SettlePaymentMutation;
684
- export type SettlePaymentMutationResult = Types.SettlePaymentMutation;
685
- export type TransitionPaymentToStateMutationVariables = Types.TransitionPaymentToStateMutationVariables;
686
- export type TransitionPaymentToStateMutation = Types.TransitionPaymentToStateMutation;
687
- export type TransitionPaymentToStateMutationResult = Types.TransitionPaymentToStateMutation;
688
- export type RefundOrderMutationVariables = Types.RefundOrderMutationVariables;
689
- export type RefundOrderMutation = Types.RefundOrderMutation;
690
- export type RefundOrderMutationResult = Types.RefundOrderMutation;
691
- export type SettleRefundMutationVariables = Types.SettleRefundMutationVariables;
692
- export type SettleRefundMutation = Types.SettleRefundMutation;
693
- export type SettleRefundMutationResult = Types.SettleRefundMutation;
694
- export type PaymentMethodsQueryVariables = Types.PaymentMethodsQueryVariables;
695
- export type PaymentMethodsQuery = Types.PaymentMethodsQuery;
696
- export type PaymentMethodsQueryResult = Types.PaymentMethodsQuery;
697
- export type PaymentMethodQueryVariables = Types.PaymentMethodQueryVariables;
698
- export type PaymentMethodQuery = Types.PaymentMethodQuery;
699
- export type PaymentMethodQueryResult = Types.PaymentMethodQuery;
700
- export type PaymentMethodEligibilityCheckersQueryVariables = Types.PaymentMethodEligibilityCheckersQueryVariables;
701
- export type PaymentMethodEligibilityCheckersQuery = Types.PaymentMethodEligibilityCheckersQuery;
702
- export type PaymentMethodEligibilityCheckersQueryResult = Types.PaymentMethodEligibilityCheckersQuery;
703
- export type PaymentMethodHandlersQueryVariables = Types.PaymentMethodHandlersQueryVariables;
704
- export type PaymentMethodHandlersQuery = Types.PaymentMethodHandlersQuery;
705
- export type PaymentMethodHandlersQueryResult = Types.PaymentMethodHandlersQuery;
706
- export type CreatePaymentMethodMutationVariables = Types.CreatePaymentMethodMutationVariables;
707
- export type CreatePaymentMethodMutation = Types.CreatePaymentMethodMutation;
708
- export type CreatePaymentMethodMutationResult = Types.CreatePaymentMethodMutation;
709
- export type UpdatePaymentMethodMutationVariables = Types.UpdatePaymentMethodMutationVariables;
710
- export type UpdatePaymentMethodMutation = Types.UpdatePaymentMethodMutation;
711
- export type UpdatePaymentMethodMutationResult = Types.UpdatePaymentMethodMutation;
712
- export type DeletePaymentMethodMutationVariables = Types.DeletePaymentMethodMutationVariables;
713
- export type DeletePaymentMethodMutation = Types.DeletePaymentMethodMutation;
714
- export type DeletePaymentMethodMutationResult = Types.DeletePaymentMethodMutation;
715
- export type DeletePaymentMethodsMutationVariables = Types.DeletePaymentMethodsMutationVariables;
716
- export type DeletePaymentMethodsMutation = Types.DeletePaymentMethodsMutation;
717
- export type DeletePaymentMethodsMutationResult = Types.DeletePaymentMethodsMutation;
718
- export type ProductOptionGroupQueryVariables = Types.ProductOptionGroupQueryVariables;
719
- export type ProductOptionGroupQuery = Types.ProductOptionGroupQuery;
720
- export type ProductOptionGroupQueryResult = Types.ProductOptionGroupQuery;
721
- export type ProductOptionGroupsQueryVariables = Types.ProductOptionGroupsQueryVariables;
722
- export type ProductOptionGroupsQuery = Types.ProductOptionGroupsQuery;
723
- export type ProductOptionGroupsQueryResult = Types.ProductOptionGroupsQuery;
724
- export type CreateProductOptionMutationVariables = Types.CreateProductOptionMutationVariables;
725
- export type CreateProductOptionMutation = Types.CreateProductOptionMutation;
726
- export type CreateProductOptionMutationResult = Types.CreateProductOptionMutation;
727
- export type CreateProductOptionGroupMutationVariables = Types.CreateProductOptionGroupMutationVariables;
728
- export type CreateProductOptionGroupMutation = Types.CreateProductOptionGroupMutation;
729
- export type CreateProductOptionGroupMutationResult = Types.CreateProductOptionGroupMutation;
730
- export type UpdateProductOptionMutationVariables = Types.UpdateProductOptionMutationVariables;
731
- export type UpdateProductOptionMutation = Types.UpdateProductOptionMutation;
732
- export type UpdateProductOptionMutationResult = Types.UpdateProductOptionMutation;
733
- export type UpdateProductOptionGroupMutationVariables = Types.UpdateProductOptionGroupMutationVariables;
734
- export type UpdateProductOptionGroupMutation = Types.UpdateProductOptionGroupMutation;
735
- export type UpdateProductOptionGroupMutationResult = Types.UpdateProductOptionGroupMutation;
736
- export type DeleteProductOptionMutationVariables = Types.DeleteProductOptionMutationVariables;
737
- export type DeleteProductOptionMutation = Types.DeleteProductOptionMutation;
738
- export type DeleteProductOptionMutationResult = Types.DeleteProductOptionMutation;
739
- export type AddOptionGroupToProductMutationVariables = Types.AddOptionGroupToProductMutationVariables;
740
- export type AddOptionGroupToProductMutation = Types.AddOptionGroupToProductMutation;
741
- export type AddOptionGroupToProductMutationResult = Types.AddOptionGroupToProductMutation;
742
- export type RemoveOptionGroupFromProductMutationVariables = Types.RemoveOptionGroupFromProductMutationVariables;
743
- export type RemoveOptionGroupFromProductMutation = Types.RemoveOptionGroupFromProductMutation;
744
- export type RemoveOptionGroupFromProductMutationResult = Types.RemoveOptionGroupFromProductMutation;
745
- export type ProductVariantQueryVariables = Types.ProductVariantQueryVariables;
746
- export type ProductVariantQuery = Types.ProductVariantQuery;
747
- export type ProductVariantQueryResult = Types.ProductVariantQuery;
748
- export type ProductVariantsQueryVariables = Types.ProductVariantsQueryVariables;
749
- export type ProductVariantsQuery = Types.ProductVariantsQuery;
750
- export type ProductVariantsQueryResult = Types.ProductVariantsQuery;
751
- export type CreateProductVariantsMutationVariables = Types.CreateProductVariantsMutationVariables;
752
- export type CreateProductVariantsMutation = Types.CreateProductVariantsMutation;
753
- export type CreateProductVariantsMutationResult = Types.CreateProductVariantsMutation;
754
- export type UpdateProductVariantMutationVariables = Types.UpdateProductVariantMutationVariables;
755
- export type UpdateProductVariantMutation = Types.UpdateProductVariantMutation;
756
- export type UpdateProductVariantMutationResult = Types.UpdateProductVariantMutation;
757
- export type UpdateProductVariantsMutationVariables = Types.UpdateProductVariantsMutationVariables;
758
- export type UpdateProductVariantsMutation = Types.UpdateProductVariantsMutation;
759
- export type UpdateProductVariantsMutationResult = Types.UpdateProductVariantsMutation;
760
- export type DeleteProductVariantMutationVariables = Types.DeleteProductVariantMutationVariables;
761
- export type DeleteProductVariantMutation = Types.DeleteProductVariantMutation;
762
- export type DeleteProductVariantMutationResult = Types.DeleteProductVariantMutation;
763
- export type DeleteProductVariantsMutationVariables = Types.DeleteProductVariantsMutationVariables;
764
- export type DeleteProductVariantsMutation = Types.DeleteProductVariantsMutation;
765
- export type DeleteProductVariantsMutationResult = Types.DeleteProductVariantsMutation;
766
- export type ProductsQueryVariables = Types.ProductsQueryVariables;
767
- export type ProductsQuery = Types.ProductsQuery;
768
- export type ProductsQueryResult = Types.ProductsQuery;
769
- export type ProductQueryVariables = Types.ProductQueryVariables;
770
- export type ProductQuery = Types.ProductQuery;
771
- export type ProductQueryResult = Types.ProductQuery;
772
- export type CreateProductMutationVariables = Types.CreateProductMutationVariables;
773
- export type CreateProductMutation = Types.CreateProductMutation;
774
- export type CreateProductMutationResult = Types.CreateProductMutation;
775
- export type UpdateProductMutationVariables = Types.UpdateProductMutationVariables;
776
- export type UpdateProductMutation = Types.UpdateProductMutation;
777
- export type UpdateProductMutationResult = Types.UpdateProductMutation;
778
- export type DeleteProductMutationVariables = Types.DeleteProductMutationVariables;
779
- export type DeleteProductMutation = Types.DeleteProductMutation;
780
- export type DeleteProductMutationResult = Types.DeleteProductMutation;
781
- export type PromotionQueryVariables = Types.PromotionQueryVariables;
782
- export type PromotionQuery = Types.PromotionQuery;
783
- export type PromotionQueryResult = Types.PromotionQuery;
784
- export type PromotionsQueryVariables = Types.PromotionsQueryVariables;
785
- export type PromotionsQuery = Types.PromotionsQuery;
786
- export type PromotionsQueryResult = Types.PromotionsQuery;
787
- export type PromotionActionsQueryVariables = Types.PromotionActionsQueryVariables;
788
- export type PromotionActionsQuery = Types.PromotionActionsQuery;
789
- export type PromotionActionsQueryResult = Types.PromotionActionsQuery;
790
- export type PromotionConditionsQueryVariables = Types.PromotionConditionsQueryVariables;
791
- export type PromotionConditionsQuery = Types.PromotionConditionsQuery;
792
- export type PromotionConditionsQueryResult = Types.PromotionConditionsQuery;
793
- export type CreatePromotionMutationVariables = Types.CreatePromotionMutationVariables;
794
- export type CreatePromotionMutation = Types.CreatePromotionMutation;
795
- export type CreatePromotionMutationResult = Types.CreatePromotionMutation;
796
- export type UpdatePromotionMutationVariables = Types.UpdatePromotionMutationVariables;
797
- export type UpdatePromotionMutation = Types.UpdatePromotionMutation;
798
- export type UpdatePromotionMutationResult = Types.UpdatePromotionMutation;
799
- export type DeletePromotionMutationVariables = Types.DeletePromotionMutationVariables;
800
- export type DeletePromotionMutation = Types.DeletePromotionMutation;
801
- export type DeletePromotionMutationResult = Types.DeletePromotionMutation;
802
- export type DeletePromotionsMutationVariables = Types.DeletePromotionsMutationVariables;
803
- export type DeletePromotionsMutation = Types.DeletePromotionsMutation;
804
- export type DeletePromotionsMutationResult = Types.DeletePromotionsMutation;
805
- export type RoleQueryVariables = Types.RoleQueryVariables;
806
- export type RoleQuery = Types.RoleQuery;
807
- export type RoleQueryResult = Types.RoleQuery;
808
- export type RolesQueryVariables = Types.RolesQueryVariables;
809
- export type RolesQuery = Types.RolesQuery;
810
- export type RolesQueryResult = Types.RolesQuery;
811
- export type CreateRoleMutationVariables = Types.CreateRoleMutationVariables;
812
- export type CreateRoleMutation = Types.CreateRoleMutation;
813
- export type CreateRoleMutationResult = Types.CreateRoleMutation;
814
- export type UpdateRoleMutationVariables = Types.UpdateRoleMutationVariables;
815
- export type UpdateRoleMutation = Types.UpdateRoleMutation;
816
- export type UpdateRoleMutationResult = Types.UpdateRoleMutation;
817
- export type DeleteRoleMutationVariables = Types.DeleteRoleMutationVariables;
818
- export type DeleteRoleMutation = Types.DeleteRoleMutation;
819
- export type DeleteRoleMutationResult = Types.DeleteRoleMutation;
820
- export type DeleteRolesMutationVariables = Types.DeleteRolesMutationVariables;
821
- export type DeleteRolesMutation = Types.DeleteRolesMutation;
822
- export type DeleteRolesMutationResult = Types.DeleteRolesMutation;
823
- export type SearchQueryVariables = Types.SearchQueryVariables;
824
- export type SearchQuery = Types.SearchQuery;
825
- export type SearchQueryResult = Types.SearchQuery;
826
- export type PendingSearchIndexUpdatesQueryVariables = Types.PendingSearchIndexUpdatesQueryVariables;
827
- export type PendingSearchIndexUpdatesQuery = Types.PendingSearchIndexUpdatesQuery;
828
- export type PendingSearchIndexUpdatesQueryResult = Types.PendingSearchIndexUpdatesQuery;
829
- export type RunPendingSearchIndexUpdatesMutationVariables = Types.RunPendingSearchIndexUpdatesMutationVariables;
830
- export type RunPendingSearchIndexUpdatesMutation = Types.RunPendingSearchIndexUpdatesMutation;
831
- export type RunPendingSearchIndexUpdatesMutationResult = Types.RunPendingSearchIndexUpdatesMutation;
832
- export type ReindexMutationVariables = Types.ReindexMutationVariables;
833
- export type ReindexMutation = Types.ReindexMutation;
834
- export type ReindexMutationResult = Types.ReindexMutation;
835
- export type SellerQueryVariables = Types.SellerQueryVariables;
836
- export type SellerQuery = Types.SellerQuery;
837
- export type SellerQueryResult = Types.SellerQuery;
838
- export type SellersQueryVariables = Types.SellersQueryVariables;
839
- export type SellersQuery = Types.SellersQuery;
840
- export type SellersQueryResult = Types.SellersQuery;
841
- export type CreateSellerMutationVariables = Types.CreateSellerMutationVariables;
842
- export type CreateSellerMutation = Types.CreateSellerMutation;
843
- export type CreateSellerMutationResult = Types.CreateSellerMutation;
844
- export type UpdateSellerMutationVariables = Types.UpdateSellerMutationVariables;
845
- export type UpdateSellerMutation = Types.UpdateSellerMutation;
846
- export type UpdateSellerMutationResult = Types.UpdateSellerMutation;
847
- export type DeleteSellerMutationVariables = Types.DeleteSellerMutationVariables;
848
- export type DeleteSellerMutation = Types.DeleteSellerMutation;
849
- export type DeleteSellerMutationResult = Types.DeleteSellerMutation;
850
- export type DeleteSellersMutationVariables = Types.DeleteSellersMutationVariables;
851
- export type DeleteSellersMutation = Types.DeleteSellersMutation;
852
- export type DeleteSellersMutationResult = Types.DeleteSellersMutation;
853
- export type ShippingMethodQueryVariables = Types.ShippingMethodQueryVariables;
854
- export type ShippingMethodQuery = Types.ShippingMethodQuery;
855
- export type ShippingMethodQueryResult = Types.ShippingMethodQuery;
856
- export type ShippingMethodsQueryVariables = Types.ShippingMethodsQueryVariables;
857
- export type ShippingMethodsQuery = Types.ShippingMethodsQuery;
858
- export type ShippingMethodsQueryResult = Types.ShippingMethodsQuery;
859
- export type ShippingCalculatorsQueryVariables = Types.ShippingCalculatorsQueryVariables;
860
- export type ShippingCalculatorsQuery = Types.ShippingCalculatorsQuery;
861
- export type ShippingCalculatorsQueryResult = Types.ShippingCalculatorsQuery;
862
- export type ShippingEligibilityCheckersQueryVariables = Types.ShippingEligibilityCheckersQueryVariables;
863
- export type ShippingEligibilityCheckersQuery = Types.ShippingEligibilityCheckersQuery;
864
- export type ShippingEligibilityCheckersQueryResult = Types.ShippingEligibilityCheckersQuery;
865
- export type CreateShippingMethodMutationVariables = Types.CreateShippingMethodMutationVariables;
866
- export type CreateShippingMethodMutation = Types.CreateShippingMethodMutation;
867
- export type CreateShippingMethodMutationResult = Types.CreateShippingMethodMutation;
868
- export type UpdateShippingMethodMutationVariables = Types.UpdateShippingMethodMutationVariables;
869
- export type UpdateShippingMethodMutation = Types.UpdateShippingMethodMutation;
870
- export type UpdateShippingMethodMutationResult = Types.UpdateShippingMethodMutation;
871
- export type DeleteShippingMethodMutationVariables = Types.DeleteShippingMethodMutationVariables;
872
- export type DeleteShippingMethodMutation = Types.DeleteShippingMethodMutation;
873
- export type DeleteShippingMethodMutationResult = Types.DeleteShippingMethodMutation;
874
- export type DeleteShippingMethodsMutationVariables = Types.DeleteShippingMethodsMutationVariables;
875
- export type DeleteShippingMethodsMutation = Types.DeleteShippingMethodsMutation;
876
- export type DeleteShippingMethodsMutationResult = Types.DeleteShippingMethodsMutation;
877
- export type TestShippingMethodQueryVariables = Types.TestShippingMethodQueryVariables;
878
- export type TestShippingMethodQuery = Types.TestShippingMethodQuery;
879
- export type TestShippingMethodQueryResult = Types.TestShippingMethodQuery;
880
- export type TestEligibleShippingMethodsQueryVariables = Types.TestEligibleShippingMethodsQueryVariables;
881
- export type TestEligibleShippingMethodsQuery = Types.TestEligibleShippingMethodsQuery;
882
- export type TestEligibleShippingMethodsQueryResult = Types.TestEligibleShippingMethodsQuery;
883
- export type StockLocationQueryVariables = Types.StockLocationQueryVariables;
884
- export type StockLocationQuery = Types.StockLocationQuery;
885
- export type StockLocationQueryResult = Types.StockLocationQuery;
886
- export type StockLocationsQueryVariables = Types.StockLocationsQueryVariables;
887
- export type StockLocationsQuery = Types.StockLocationsQuery;
888
- export type StockLocationsQueryResult = Types.StockLocationsQuery;
889
- export type StockLocationProductsQueryVariables = Types.StockLocationProductsQueryVariables;
890
- export type StockLocationProductsQuery = Types.StockLocationProductsQuery;
891
- export type StockLocationProductsQueryResult = Types.StockLocationProductsQuery;
892
- export type CreateStockLocationMutationVariables = Types.CreateStockLocationMutationVariables;
893
- export type CreateStockLocationMutation = Types.CreateStockLocationMutation;
894
- export type CreateStockLocationMutationResult = Types.CreateStockLocationMutation;
895
- export type UpdateStockLocationMutationVariables = Types.UpdateStockLocationMutationVariables;
896
- export type UpdateStockLocationMutation = Types.UpdateStockLocationMutation;
897
- export type UpdateStockLocationMutationResult = Types.UpdateStockLocationMutation;
898
- export type DeleteStockLocationMutationVariables = Types.DeleteStockLocationMutationVariables;
899
- export type DeleteStockLocationMutation = Types.DeleteStockLocationMutation;
900
- export type DeleteStockLocationMutationResult = Types.DeleteStockLocationMutation;
901
- export type DeleteStockLocationsMutationVariables = Types.DeleteStockLocationsMutationVariables;
902
- export type DeleteStockLocationsMutation = Types.DeleteStockLocationsMutation;
903
- export type DeleteStockLocationsMutationResult = Types.DeleteStockLocationsMutation;
904
- export type TagQueryVariables = Types.TagQueryVariables;
905
- export type TagQuery = Types.TagQuery;
906
- export type TagQueryResult = Types.TagQuery;
907
- export type TagsQueryVariables = Types.TagsQueryVariables;
908
- export type TagsQuery = Types.TagsQuery;
909
- export type TagsQueryResult = Types.TagsQuery;
910
- export type CreateTagMutationVariables = Types.CreateTagMutationVariables;
911
- export type CreateTagMutation = Types.CreateTagMutation;
912
- export type CreateTagMutationResult = Types.CreateTagMutation;
913
- export type UpdateTagMutationVariables = Types.UpdateTagMutationVariables;
914
- export type UpdateTagMutation = Types.UpdateTagMutation;
915
- export type UpdateTagMutationResult = Types.UpdateTagMutation;
916
- export type DeleteTagMutationVariables = Types.DeleteTagMutationVariables;
917
- export type DeleteTagMutation = Types.DeleteTagMutation;
918
- export type DeleteTagMutationResult = Types.DeleteTagMutation;
919
- export type TaxRateQueryVariables = Types.TaxRateQueryVariables;
920
- export type TaxRateQuery = Types.TaxRateQuery;
921
- export type TaxRateQueryResult = Types.TaxRateQuery;
922
- export type TaxRatesQueryVariables = Types.TaxRatesQueryVariables;
923
- export type TaxRatesQuery = Types.TaxRatesQuery;
924
- export type TaxRatesQueryResult = Types.TaxRatesQuery;
925
- export type CreateTaxRateMutationVariables = Types.CreateTaxRateMutationVariables;
926
- export type CreateTaxRateMutation = Types.CreateTaxRateMutation;
927
- export type CreateTaxRateMutationResult = Types.CreateTaxRateMutation;
928
- export type UpdateTaxRateMutationVariables = Types.UpdateTaxRateMutationVariables;
929
- export type UpdateTaxRateMutation = Types.UpdateTaxRateMutation;
930
- export type UpdateTaxRateMutationResult = Types.UpdateTaxRateMutation;
931
- export type DeleteTaxRateMutationVariables = Types.DeleteTaxRateMutationVariables;
932
- export type DeleteTaxRateMutation = Types.DeleteTaxRateMutation;
933
- export type DeleteTaxRateMutationResult = Types.DeleteTaxRateMutation;
934
- export type DeleteTaxRatesMutationVariables = Types.DeleteTaxRatesMutationVariables;
935
- export type DeleteTaxRatesMutation = Types.DeleteTaxRatesMutation;
936
- export type DeleteTaxRatesMutationResult = Types.DeleteTaxRatesMutation;
937
- export type TaxCategoryQueryVariables = Types.TaxCategoryQueryVariables;
938
- export type TaxCategoryQuery = Types.TaxCategoryQuery;
939
- export type TaxCategoryQueryResult = Types.TaxCategoryQuery;
940
- export type TaxCategoriesQueryVariables = Types.TaxCategoriesQueryVariables;
941
- export type TaxCategoriesQuery = Types.TaxCategoriesQuery;
942
- export type TaxCategoriesQueryResult = Types.TaxCategoriesQuery;
943
- export type CreateTaxCategoryMutationVariables = Types.CreateTaxCategoryMutationVariables;
944
- export type CreateTaxCategoryMutation = Types.CreateTaxCategoryMutation;
945
- export type CreateTaxCategoryMutationResult = Types.CreateTaxCategoryMutation;
946
- export type UpdateTaxCategoryMutationVariables = Types.UpdateTaxCategoryMutationVariables;
947
- export type UpdateTaxCategoryMutation = Types.UpdateTaxCategoryMutation;
948
- export type UpdateTaxCategoryMutationResult = Types.UpdateTaxCategoryMutation;
949
- export type DeleteTaxCategoryMutationVariables = Types.DeleteTaxCategoryMutationVariables;
950
- export type DeleteTaxCategoryMutation = Types.DeleteTaxCategoryMutation;
951
- export type DeleteTaxCategoryMutationResult = Types.DeleteTaxCategoryMutation;
952
- export type DeleteTaxCategoriesMutationVariables = Types.DeleteTaxCategoriesMutationVariables;
953
- export type DeleteTaxCategoriesMutation = Types.DeleteTaxCategoriesMutation;
954
- export type DeleteTaxCategoriesMutationResult = Types.DeleteTaxCategoriesMutation;
955
- export type ZoneQueryVariables = Types.ZoneQueryVariables;
956
- export type ZoneQuery = Types.ZoneQuery;
957
- export type ZoneQueryResult = Types.ZoneQuery;
958
- export type ZonesQueryVariables = Types.ZonesQueryVariables;
959
- export type ZonesQuery = Types.ZonesQuery;
960
- export type ZonesQueryResult = Types.ZonesQuery;
961
- export type CreateZoneMutationVariables = Types.CreateZoneMutationVariables;
962
- export type CreateZoneMutation = Types.CreateZoneMutation;
963
- export type CreateZoneMutationResult = Types.CreateZoneMutation;
964
- export type UpdateZoneMutationVariables = Types.UpdateZoneMutationVariables;
965
- export type UpdateZoneMutation = Types.UpdateZoneMutation;
966
- export type UpdateZoneMutationResult = Types.UpdateZoneMutation;
967
- export type DeleteZoneMutationVariables = Types.DeleteZoneMutationVariables;
968
- export type DeleteZoneMutation = Types.DeleteZoneMutation;
969
- export type DeleteZoneMutationResult = Types.DeleteZoneMutation;
970
- export type DeleteZonesMutationVariables = Types.DeleteZonesMutationVariables;
971
- export type DeleteZonesMutation = Types.DeleteZonesMutation;
972
- export type DeleteZonesMutationResult = Types.DeleteZonesMutation;
973
- export type AddMembersToZoneMutationVariables = Types.AddMembersToZoneMutationVariables;
974
- export type AddMembersToZoneMutation = Types.AddMembersToZoneMutation;
975
- export type AddMembersToZoneMutationResult = Types.AddMembersToZoneMutation;
976
- export type RemoveMembersFromZoneMutationVariables = Types.RemoveMembersFromZoneMutationVariables;
977
- export type RemoveMembersFromZoneMutation = Types.RemoveMembersFromZoneMutation;
978
- export type RemoveMembersFromZoneMutationResult = Types.RemoveMembersFromZoneMutation;
979
- /**
980
- * Base GraphQL Client
981
- * Uses WebSocket as primary layer with HTTP fallback
982
- * Handles queries, mutations, and subscriptions over WebSocket when available
983
- */
984
- declare class BaseGraphQLClient {
985
- private httpClient;
986
- private wsClient;
987
- private wsConnected;
988
- private wsInitializing;
989
- private isDisposing;
990
- private authToken;
991
- private endpoint;
992
- private wsEndpoint;
993
- private config;
994
- constructor(config: SDKConfig);
995
- /**
996
- * Extract operation name from GraphQL document
997
- */
998
- private getOperationName;
999
- /**
1000
- * Execute a GraphQL query or mutation
1001
- * Uses WebSocket if available, falls back to HTTP
1002
- */
1003
- request<T = unknown, V extends Variables = Variables>(document: RequestDocument, variables?: V): Promise<T>;
1004
- /**
1005
- * Execute request via WebSocket
1006
- * @private
1007
- */
1008
- private requestViaWebSocket;
1009
- /**
1010
- * Handle GraphQL errors
1011
- */
1012
- private handleError;
1013
- /**
1014
- * Get WebSocket implementation for current environment
1015
- */
1016
- private getWebSocketImpl;
1017
- /**
1018
- * Initialize WebSocket client
1019
- * Connects immediately and tracks connection state
1020
- */
1021
- private initializeWebSocket;
1022
- /**
1023
- * Subscribe to a GraphQL subscription
1024
- */
1025
- subscribe<T = unknown>(document: RequestDocument, variables?: Variables): AsyncIterableIterator<T>;
1026
- /**
1027
- * Set authentication token
1028
- * Updates both HTTP and WebSocket connections
1029
- */
1030
- setAuthToken(token: string): void;
1031
- /**
1032
- * Clear authentication token
1033
- * Updates both HTTP and WebSocket connections
1034
- */
1035
- clearAuthToken(): void;
1036
- /**
1037
- * Dispose of the client and close all connections
1038
- */
1039
- dispose(): void;
1040
- }
1041
- export type EventCallback<T = EntityEventPayload> = (event: T) => void;
1042
- export type BlockingEventCallback<T = EntityEventPayload> = (event: T) => Promise<void>;
1043
- export interface EventSubscription {
1044
- unsubscribe: () => void;
1045
- }
1046
- export interface EntityEventPayload {
1047
- channelId: string;
1048
- eventName: string;
1049
- eventClass: string;
1050
- type: string;
1051
- entityId: string | null;
1052
- entity: unknown;
1053
- input: unknown;
1054
- timestamp: string;
1055
- }
1056
- export declare const ProductEvents: readonly ["product.created", "product.updated", "product.deleted", "product.variant.created", "product.variant.updated", "product.variant.deleted", "product.option.created", "product.option.updated", "product.option.deleted", "product.optionGroup.created", "product.optionGroup.updated", "product.optionGroup.deleted", "product.variant.price.updated"];
1057
- export declare const OrderEvents: readonly ["order.stateTransition", "order.placementStateTransition", "order.line.event", "order.paymentStateTransition", "order.refundStateTransition", "order.coupon.applied", "order.coupon.removed"];
1058
- export declare const CustomerEvents: readonly ["customer.created", "customer.updated", "customer.deleted", "customer.address.created", "customer.address.updated", "customer.address.deleted", "customer.groupChange", "customer.login", "customer.loginfail"];
1059
- export declare const FulfillmentEvents: readonly ["fulfillment.created", "fulfillment.stateTransition"];
1060
- export declare const PaymentEvents: readonly ["payment.stateTransition", "payment.method.created", "payment.method.updated", "payment.method.deleted"];
1061
- export declare const CatalogEvents: readonly ["collection.created", "collection.updated", "collection.deleted", "collection.modification", "facet.created", "facet.updated", "facet.deleted", "facetValue.created", "facetValue.updated", "facetValue.deleted", "asset.created", "asset.updated", "asset.deleted"];
1062
- export declare const AllEvents: readonly ["product.created", "product.updated", "product.deleted", "product.variant.created", "product.variant.updated", "product.variant.deleted", "product.option.created", "product.option.updated", "product.option.deleted", "product.optionGroup.created", "product.optionGroup.updated", "product.optionGroup.deleted", "product.variant.price.updated", "order.stateTransition", "order.placementStateTransition", "order.line.event", "order.paymentStateTransition", "order.refundStateTransition", "order.coupon.applied", "order.coupon.removed", "customer.created", "customer.updated", "customer.deleted", "customer.address.created", "customer.address.updated", "customer.address.deleted", "customer.groupChange", "customer.login", "customer.loginfail", "fulfillment.created", "fulfillment.stateTransition", "payment.stateTransition", "payment.method.created", "payment.method.updated", "payment.method.deleted", "collection.created", "collection.updated", "collection.deleted", "collection.modification", "facet.created", "facet.updated", "facet.deleted", "facetValue.created", "facetValue.updated", "facetValue.deleted", "asset.created", "asset.updated", "asset.deleted"];
1063
- /**
1064
- * Administrator operations
1065
- */
1066
- declare class AdministratorOperations {
1067
- private client;
1068
- constructor(client: BaseGraphQLClient);
1069
- /**
1070
- * activeAdministrator query
1071
- */
1072
- activeAdministrator(): Promise<Types.ActiveAdministratorQuery>;
1073
- /**
1074
- * administrator query
1075
- */
1076
- administrator(variables: Types.AdministratorQueryVariables): Promise<Types.AdministratorQuery>;
1077
- /**
1078
- * administrators query
1079
- */
1080
- administrators(variables: Types.AdministratorsQueryVariables): Promise<Types.AdministratorsQuery>;
1081
- /**
1082
- * me query
1083
- */
1084
- me(): Promise<Types.MeQuery>;
1085
- /**
1086
- * authenticate mutation
1087
- */
1088
- authenticate(variables: Types.AuthenticateMutationVariables): Promise<Types.AuthenticateMutation>;
1089
- /**
1090
- * login mutation
1091
- * Automatically sets the auth token on successful login
1092
- */
1093
- login(variables: Types.LoginMutationVariables): Promise<Types.LoginMutation>;
1094
- /**
1095
- * logout mutation
1096
- */
1097
- logout(): Promise<Types.LogoutMutation>;
1098
- /**
1099
- * register mutation
1100
- */
1101
- register(variables: Types.RegisterMutationVariables): Promise<Types.RegisterMutation>;
1102
- /**
1103
- * verify mutation
1104
- */
1105
- verify(variables: Types.VerifyMutationVariables): Promise<Types.VerifyMutation>;
1106
- /**
1107
- * createAdministrator mutation
1108
- */
1109
- createAdministrator(variables: Types.CreateAdministratorMutationVariables): Promise<Types.CreateAdministratorMutation>;
1110
- /**
1111
- * updateAdministrator mutation
1112
- */
1113
- updateAdministrator(variables: Types.UpdateAdministratorMutationVariables): Promise<Types.UpdateAdministratorMutation>;
1114
- /**
1115
- * updateActiveAdministrator mutation
1116
- */
1117
- updateActiveAdministrator(variables: Types.UpdateActiveAdministratorMutationVariables): Promise<Types.UpdateActiveAdministratorMutation>;
1118
- /**
1119
- * deleteAdministrator mutation
1120
- */
1121
- deleteAdministrator(variables: Types.DeleteAdministratorMutationVariables): Promise<Types.DeleteAdministratorMutation>;
1122
- /**
1123
- * deleteAdministrators mutation
1124
- */
1125
- deleteAdministrators(variables: Types.DeleteAdministratorsMutationVariables): Promise<Types.DeleteAdministratorsMutation>;
1126
- /**
1127
- * inviteAdministrator mutation
1128
- */
1129
- inviteAdministrator(variables: Types.InviteAdministratorMutationVariables): Promise<Types.InviteAdministratorMutation>;
1130
- /**
1131
- * assignRoleToAdministrator mutation
1132
- */
1133
- assignRoleToAdministrator(variables: Types.AssignRoleToAdministratorMutationVariables): Promise<Types.AssignRoleToAdministratorMutation>;
1134
- }
1135
- /**
1136
- * Asset operations
1137
- */
1138
- declare class AssetOperations {
1139
- private client;
1140
- constructor(client: BaseGraphQLClient);
1141
- /**
1142
- * asset query
1143
- */
1144
- asset(variables: Types.AssetQueryVariables): Promise<Types.AssetQuery>;
1145
- /**
1146
- * assets query
1147
- */
1148
- assets(variables: Types.AssetsQueryVariables): Promise<Types.AssetsQuery>;
1149
- /**
1150
- * createAssets mutation
1151
- */
1152
- createAssets(variables: Types.CreateAssetsMutationVariables): Promise<Types.CreateAssetsMutation>;
1153
- /**
1154
- * updateAsset mutation
1155
- */
1156
- updateAsset(variables: Types.UpdateAssetMutationVariables): Promise<Types.UpdateAssetMutation>;
1157
- /**
1158
- * deleteAsset mutation
1159
- */
1160
- deleteAsset(variables: Types.DeleteAssetMutationVariables): Promise<Types.DeleteAssetMutation>;
1161
- /**
1162
- * deleteAssets mutation
1163
- */
1164
- deleteAssets(variables: Types.DeleteAssetsMutationVariables): Promise<Types.DeleteAssetsMutation>;
1165
- /**
1166
- * assignAssetsToChannel mutation
1167
- */
1168
- assignAssetsToChannel(variables: Types.AssignAssetsToChannelMutationVariables): Promise<Types.AssignAssetsToChannelMutation>;
1169
- }
1170
- /**
1171
- * Blog operations
1172
- */
1173
- declare class BlogOperations {
1174
- private client;
1175
- constructor(client: BaseGraphQLClient);
1176
- /**
1177
- * blogPosts query
1178
- */
1179
- blogPosts(variables: Types.BlogPostsQueryVariables): Promise<Types.BlogPostsQuery>;
1180
- /**
1181
- * blogPost query
1182
- */
1183
- blogPost(variables: Types.BlogPostQueryVariables): Promise<Types.BlogPostQuery>;
1184
- /**
1185
- * createBlogPost mutation
1186
- */
1187
- createBlogPost(variables: Types.CreateBlogPostMutationVariables): Promise<Types.CreateBlogPostMutation>;
1188
- /**
1189
- * updateBlogPost mutation
1190
- */
1191
- updateBlogPost(variables: Types.UpdateBlogPostMutationVariables): Promise<Types.UpdateBlogPostMutation>;
1192
- /**
1193
- * deleteBlogPost mutation
1194
- */
1195
- deleteBlogPost(variables: Types.DeleteBlogPostMutationVariables): Promise<Types.DeleteBlogPostMutation>;
1196
- /**
1197
- * publishBlogPost mutation
1198
- */
1199
- publishBlogPost(variables: Types.PublishBlogPostMutationVariables): Promise<Types.PublishBlogPostMutation>;
1200
- /**
1201
- * unpublishBlogPost mutation
1202
- */
1203
- unpublishBlogPost(variables: Types.UnpublishBlogPostMutationVariables): Promise<Types.UnpublishBlogPostMutation>;
1204
- }
1205
- /**
1206
- * ChannelPlugin operations
1207
- */
1208
- declare class ChannelPluginOperations {
1209
- private client;
1210
- constructor(client: BaseGraphQLClient);
1211
- /**
1212
- * listChannelPlugins query
1213
- */
1214
- listChannelPlugins(): Promise<Types.ListChannelPluginsQuery>;
1215
- /**
1216
- * listManageablePlugins query
1217
- */
1218
- listManageablePlugins(): Promise<Types.ListManageablePluginsQuery>;
1219
- /**
1220
- * getChannelPluginConfigurationItemValue query
1221
- */
1222
- getChannelPluginConfigurationItemValue(variables: Types.GetChannelPluginConfigurationItemValueQueryVariables): Promise<Types.GetChannelPluginConfigurationItemValueQuery>;
1223
- /**
1224
- * createChannelPlugin mutation
1225
- */
1226
- createChannelPlugin(variables: Types.CreateChannelPluginMutationVariables): Promise<Types.CreateChannelPluginMutation>;
1227
- /**
1228
- * updateChannelPluginConfiguration mutation
1229
- */
1230
- updateChannelPluginConfiguration(variables: Types.UpdateChannelPluginConfigurationMutationVariables): Promise<Types.UpdateChannelPluginConfigurationMutation>;
1231
- /**
1232
- * enableChannelPlugin mutation
1233
- */
1234
- enableChannelPlugin(variables: Types.EnableChannelPluginMutationVariables): Promise<Types.EnableChannelPluginMutation>;
1235
- /**
1236
- * disableChannelPlugin mutation
1237
- */
1238
- disableChannelPlugin(variables: Types.DisableChannelPluginMutationVariables): Promise<Types.DisableChannelPluginMutation>;
1239
- /**
1240
- * deleteChannelPlugin mutation
1241
- */
1242
- deleteChannelPlugin(variables: Types.DeleteChannelPluginMutationVariables): Promise<Types.DeleteChannelPluginMutation>;
1243
- }
1244
- /**
1245
- * Channel operations
1246
- */
1247
- declare class ChannelOperations {
1248
- private client;
1249
- constructor(client: BaseGraphQLClient);
1250
- /**
1251
- * activeChannel query
1252
- */
1253
- activeChannel(): Promise<Types.ActiveChannelQuery>;
1254
- /**
1255
- * channel query
1256
- */
1257
- channel(variables: Types.ChannelQueryVariables): Promise<Types.ChannelQuery>;
1258
- /**
1259
- * channels query
1260
- */
1261
- channels(variables: Types.ChannelsQueryVariables): Promise<Types.ChannelsQuery>;
1262
- /**
1263
- * channelFulfillments query
1264
- */
1265
- channelFulfillments(variables: Types.ChannelFulfillmentsQueryVariables): Promise<Types.ChannelFulfillmentsQuery>;
1266
- /**
1267
- * createChannel mutation
1268
- */
1269
- createChannel(variables: Types.CreateChannelMutationVariables): Promise<Types.CreateChannelMutation>;
1270
- /**
1271
- * updateChannel mutation
1272
- */
1273
- updateChannel(variables: Types.UpdateChannelMutationVariables): Promise<Types.UpdateChannelMutation>;
1274
- /**
1275
- * updateChannelSettings mutation
1276
- */
1277
- updateChannelSettings(variables: Types.UpdateChannelSettingsMutationVariables): Promise<Types.UpdateChannelSettingsMutation>;
1278
- /**
1279
- * deleteChannel mutation
1280
- */
1281
- deleteChannel(variables: Types.DeleteChannelMutationVariables): Promise<Types.DeleteChannelMutation>;
1282
- /**
1283
- * deleteChannels mutation
1284
- */
1285
- deleteChannels(variables: Types.DeleteChannelsMutationVariables): Promise<Types.DeleteChannelsMutation>;
1286
- /**
1287
- * assignCollectionsToChannel mutation
1288
- */
1289
- assignCollectionsToChannel(variables: Types.AssignCollectionsToChannelMutationVariables): Promise<Types.AssignCollectionsToChannelMutation>;
1290
- /**
1291
- * removeCollectionsFromChannel mutation
1292
- */
1293
- removeCollectionsFromChannel(variables: Types.RemoveCollectionsFromChannelMutationVariables): Promise<Types.RemoveCollectionsFromChannelMutation>;
1294
- /**
1295
- * assignFacetsToChannel mutation
1296
- */
1297
- assignFacetsToChannel(variables: Types.AssignFacetsToChannelMutationVariables): Promise<Types.AssignFacetsToChannelMutation>;
1298
- /**
1299
- * removeFacetsFromChannel mutation
1300
- */
1301
- removeFacetsFromChannel(variables: Types.RemoveFacetsFromChannelMutationVariables): Promise<Types.RemoveFacetsFromChannelMutation>;
1302
- /**
1303
- * assignPaymentMethodsToChannel mutation
1304
- */
1305
- assignPaymentMethodsToChannel(variables: Types.AssignPaymentMethodsToChannelMutationVariables): Promise<Types.AssignPaymentMethodsToChannelMutation>;
1306
- /**
1307
- * removePaymentMethodsFromChannel mutation
1308
- */
1309
- removePaymentMethodsFromChannel(variables: Types.RemovePaymentMethodsFromChannelMutationVariables): Promise<Types.RemovePaymentMethodsFromChannelMutation>;
1310
- /**
1311
- * assignProductVariantsToChannel mutation
1312
- */
1313
- assignProductVariantsToChannel(variables: Types.AssignProductVariantsToChannelMutationVariables): Promise<Types.AssignProductVariantsToChannelMutation>;
1314
- /**
1315
- * removeProductVariantsFromChannel mutation
1316
- */
1317
- removeProductVariantsFromChannel(variables: Types.RemoveProductVariantsFromChannelMutationVariables): Promise<Types.RemoveProductVariantsFromChannelMutation>;
1318
- /**
1319
- * assignProductsToChannel mutation
1320
- */
1321
- assignProductsToChannel(variables: Types.AssignProductsToChannelMutationVariables): Promise<Types.AssignProductsToChannelMutation>;
1322
- /**
1323
- * removeProductsFromChannel mutation
1324
- */
1325
- removeProductsFromChannel(variables: Types.RemoveProductsFromChannelMutationVariables): Promise<Types.RemoveProductsFromChannelMutation>;
1326
- /**
1327
- * assignPromotionsToChannel mutation
1328
- */
1329
- assignPromotionsToChannel(variables: Types.AssignPromotionsToChannelMutationVariables): Promise<Types.AssignPromotionsToChannelMutation>;
1330
- /**
1331
- * removePromotionsFromChannel mutation
1332
- */
1333
- removePromotionsFromChannel(variables: Types.RemovePromotionsFromChannelMutationVariables): Promise<Types.RemovePromotionsFromChannelMutation>;
1334
- /**
1335
- * assignShippingMethodsToChannel mutation
1336
- */
1337
- assignShippingMethodsToChannel(variables: Types.AssignShippingMethodsToChannelMutationVariables): Promise<Types.AssignShippingMethodsToChannelMutation>;
1338
- /**
1339
- * removeShippingMethodsFromChannel mutation
1340
- */
1341
- removeShippingMethodsFromChannel(variables: Types.RemoveShippingMethodsFromChannelMutationVariables): Promise<Types.RemoveShippingMethodsFromChannelMutation>;
1342
- /**
1343
- * assignStockLocationsToChannel mutation
1344
- */
1345
- assignStockLocationsToChannel(variables: Types.AssignStockLocationsToChannelMutationVariables): Promise<Types.AssignStockLocationsToChannelMutation>;
1346
- /**
1347
- * removeStockLocationsFromChannel mutation
1348
- */
1349
- removeStockLocationsFromChannel(variables: Types.RemoveStockLocationsFromChannelMutationVariables): Promise<Types.RemoveStockLocationsFromChannelMutation>;
1350
- }
1351
- /**
1352
- * Collection operations
1353
- */
1354
- declare class CollectionOperations {
1355
- private client;
1356
- constructor(client: BaseGraphQLClient);
1357
- /**
1358
- * collection query
1359
- */
1360
- collection(variables: Types.CollectionQueryVariables): Promise<Types.CollectionQuery>;
1361
- /**
1362
- * collections query
1363
- */
1364
- collections(variables: Types.CollectionsQueryVariables): Promise<Types.CollectionsQuery>;
1365
- /**
1366
- * collectionFilters query
1367
- */
1368
- collectionFilters(): Promise<Types.CollectionFiltersQuery>;
1369
- /**
1370
- * previewCollectionVariants query
1371
- */
1372
- previewCollectionVariants(variables: Types.PreviewCollectionVariantsQueryVariables): Promise<Types.PreviewCollectionVariantsQuery>;
1373
- /**
1374
- * createCollection mutation
1375
- */
1376
- createCollection(variables: Types.CreateCollectionMutationVariables): Promise<Types.CreateCollectionMutation>;
1377
- /**
1378
- * updateCollection mutation
1379
- */
1380
- updateCollection(variables: Types.UpdateCollectionMutationVariables): Promise<Types.UpdateCollectionMutation>;
1381
- /**
1382
- * moveCollection mutation
1383
- */
1384
- moveCollection(variables: Types.MoveCollectionMutationVariables): Promise<Types.MoveCollectionMutation>;
1385
- /**
1386
- * deleteCollection mutation
1387
- */
1388
- deleteCollection(variables: Types.DeleteCollectionMutationVariables): Promise<Types.DeleteCollectionMutation>;
1389
- /**
1390
- * deleteCollections mutation
1391
- */
1392
- deleteCollections(variables: Types.DeleteCollectionsMutationVariables): Promise<Types.DeleteCollectionsMutation>;
1393
- }
1394
- /**
1395
- * Country operations
1396
- */
1397
- declare class CountryOperations {
1398
- private client;
1399
- constructor(client: BaseGraphQLClient);
1400
- /**
1401
- * country query
1402
- */
1403
- country(variables: Types.CountryQueryVariables): Promise<Types.CountryQuery>;
1404
- /**
1405
- * countries query
1406
- */
1407
- countries(variables: Types.CountriesQueryVariables): Promise<Types.CountriesQuery>;
1408
- /**
1409
- * province query
1410
- */
1411
- province(variables: Types.ProvinceQueryVariables): Promise<Types.ProvinceQuery>;
1412
- /**
1413
- * provinces query
1414
- */
1415
- provinces(variables: Types.ProvincesQueryVariables): Promise<Types.ProvincesQuery>;
1416
- /**
1417
- * createCountry mutation
1418
- */
1419
- createCountry(variables: Types.CreateCountryMutationVariables): Promise<Types.CreateCountryMutation>;
1420
- /**
1421
- * updateCountry mutation
1422
- */
1423
- updateCountry(variables: Types.UpdateCountryMutationVariables): Promise<Types.UpdateCountryMutation>;
1424
- /**
1425
- * deleteCountry mutation
1426
- */
1427
- deleteCountry(variables: Types.DeleteCountryMutationVariables): Promise<Types.DeleteCountryMutation>;
1428
- /**
1429
- * deleteCountries mutation
1430
- */
1431
- deleteCountries(variables: Types.DeleteCountriesMutationVariables): Promise<Types.DeleteCountriesMutation>;
1432
- /**
1433
- * createProvince mutation
1434
- */
1435
- createProvince(variables: Types.CreateProvinceMutationVariables): Promise<Types.CreateProvinceMutation>;
1436
- /**
1437
- * updateProvince mutation
1438
- */
1439
- updateProvince(variables: Types.UpdateProvinceMutationVariables): Promise<Types.UpdateProvinceMutation>;
1440
- /**
1441
- * deleteProvince mutation
1442
- */
1443
- deleteProvince(variables: Types.DeleteProvinceMutationVariables): Promise<Types.DeleteProvinceMutation>;
1444
- }
1445
- /**
1446
- * CustomFields operations
1447
- */
1448
- declare class CustomFieldsOperations {
1449
- private client;
1450
- constructor(client: BaseGraphQLClient);
1451
- /**
1452
- * getAllFields query
1453
- */
1454
- getAllFields(variables: Types.GetAllFieldsQueryVariables): Promise<Types.GetAllFieldsQuery>;
1455
- /**
1456
- * getAllValues query
1457
- */
1458
- getAllValues(variables: Types.GetAllValuesQueryVariables): Promise<Types.GetAllValuesQuery>;
1459
- /**
1460
- * getBooleanValue query
1461
- */
1462
- getBooleanValue(variables: Types.GetBooleanValueQueryVariables): Promise<Types.GetBooleanValueQuery>;
1463
- /**
1464
- * getDateValue query
1465
- */
1466
- getDateValue(variables: Types.GetDateValueQueryVariables): Promise<Types.GetDateValueQuery>;
1467
- /**
1468
- * getFloatValue query
1469
- */
1470
- getFloatValue(variables: Types.GetFloatValueQueryVariables): Promise<Types.GetFloatValueQuery>;
1471
- /**
1472
- * getGroupFieldDefinitionById query
1473
- */
1474
- getGroupFieldDefinitionById(variables: Types.GetGroupFieldDefinitionByIdQueryVariables): Promise<Types.GetGroupFieldDefinitionByIdQuery>;
1475
- /**
1476
- * getGroupValue query
1477
- */
1478
- getGroupValue(variables: Types.GetGroupValueQueryVariables): Promise<Types.GetGroupValueQuery>;
1479
- /**
1480
- * getIntegerValue query
1481
- */
1482
- getIntegerValue(variables: Types.GetIntegerValueQueryVariables): Promise<Types.GetIntegerValueQuery>;
1483
- /**
1484
- * getRelationValue query
1485
- */
1486
- getRelationValue(variables: Types.GetRelationValueQueryVariables): Promise<Types.GetRelationValueQuery>;
1487
- /**
1488
- * getRichTextValue query
1489
- */
1490
- getRichTextValue(variables: Types.GetRichTextValueQueryVariables): Promise<Types.GetRichTextValueQuery>;
1491
- /**
1492
- * getStringValue query
1493
- */
1494
- getStringValue(variables: Types.GetStringValueQueryVariables): Promise<Types.GetStringValueQuery>;
1495
- /**
1496
- * getTemplatesByEntityId query
1497
- */
1498
- getTemplatesByEntityId(variables: Types.GetTemplatesByEntityIdQueryVariables): Promise<Types.GetTemplatesByEntityIdQuery>;
1499
- /**
1500
- * getUniqueTemplates query
1501
- */
1502
- getUniqueTemplates(variables: Types.GetUniqueTemplatesQueryVariables): Promise<Types.GetUniqueTemplatesQuery>;
1503
- /**
1504
- * insertBooleanFieldDefinition mutation
1505
- */
1506
- insertBooleanFieldDefinition(variables: Types.InsertBooleanFieldDefinitionMutationVariables): Promise<Types.InsertBooleanFieldDefinitionMutation>;
1507
- /**
1508
- * insertDateFieldDefinition mutation
1509
- */
1510
- insertDateFieldDefinition(variables: Types.InsertDateFieldDefinitionMutationVariables): Promise<Types.InsertDateFieldDefinitionMutation>;
1511
- /**
1512
- * insertFloatFieldDefinition mutation
1513
- */
1514
- insertFloatFieldDefinition(variables: Types.InsertFloatFieldDefinitionMutationVariables): Promise<Types.InsertFloatFieldDefinitionMutation>;
1515
- /**
1516
- * insertGroupFieldDefinition mutation
1517
- */
1518
- insertGroupFieldDefinition(variables: Types.InsertGroupFieldDefinitionMutationVariables): Promise<Types.InsertGroupFieldDefinitionMutation>;
1519
- /**
1520
- * insertIntegerFieldDefinition mutation
1521
- */
1522
- insertIntegerFieldDefinition(variables: Types.InsertIntegerFieldDefinitionMutationVariables): Promise<Types.InsertIntegerFieldDefinitionMutation>;
1523
- /**
1524
- * insertRelationFieldDefinition mutation
1525
- */
1526
- insertRelationFieldDefinition(variables: Types.InsertRelationFieldDefinitionMutationVariables): Promise<Types.InsertRelationFieldDefinitionMutation>;
1527
- /**
1528
- * insertRichTextFieldDefinition mutation
1529
- */
1530
- insertRichTextFieldDefinition(variables: Types.InsertRichTextFieldDefinitionMutationVariables): Promise<Types.InsertRichTextFieldDefinitionMutation>;
1531
- /**
1532
- * insertStringFieldDefinition mutation
1533
- */
1534
- insertStringFieldDefinition(variables: Types.InsertStringFieldDefinitionMutationVariables): Promise<Types.InsertStringFieldDefinitionMutation>;
1535
- /**
1536
- * deleteGroupFieldDefinition mutation
1537
- */
1538
- deleteGroupFieldDefinition(variables: Types.DeleteGroupFieldDefinitionMutationVariables): Promise<Types.DeleteGroupFieldDefinitionMutation>;
1539
- /**
1540
- * createGroupValue mutation
1541
- */
1542
- createGroupValue(variables: Types.CreateGroupValueMutationVariables): Promise<Types.CreateGroupValueMutation>;
1543
- /**
1544
- * upsertBooleanValue mutation
1545
- */
1546
- upsertBooleanValue(variables: Types.UpsertBooleanValueMutationVariables): Promise<Types.UpsertBooleanValueMutation>;
1547
- /**
1548
- * upsertDateValue mutation
1549
- */
1550
- upsertDateValue(variables: Types.UpsertDateValueMutationVariables): Promise<Types.UpsertDateValueMutation>;
1551
- /**
1552
- * upsertFloatValue mutation
1553
- */
1554
- upsertFloatValue(variables: Types.UpsertFloatValueMutationVariables): Promise<Types.UpsertFloatValueMutation>;
1555
- /**
1556
- * upsertGroupValue mutation
1557
- */
1558
- upsertGroupValue(variables: Types.UpsertGroupValueMutationVariables): Promise<Types.UpsertGroupValueMutation>;
1559
- /**
1560
- * upsertGroupMember mutation
1561
- */
1562
- upsertGroupMember(variables: Types.UpsertGroupMemberMutationVariables): Promise<Types.UpsertGroupMemberMutation>;
1563
- /**
1564
- * upsertIntegerValue mutation
1565
- */
1566
- upsertIntegerValue(variables: Types.UpsertIntegerValueMutationVariables): Promise<Types.UpsertIntegerValueMutation>;
1567
- /**
1568
- * upsertRelationValue mutation
1569
- */
1570
- upsertRelationValue(variables: Types.UpsertRelationValueMutationVariables): Promise<Types.UpsertRelationValueMutation>;
1571
- /**
1572
- * upsertRichTextValue mutation
1573
- */
1574
- upsertRichTextValue(variables: Types.UpsertRichTextValueMutationVariables): Promise<Types.UpsertRichTextValueMutation>;
1575
- /**
1576
- * upsertStringValue mutation
1577
- */
1578
- upsertStringValue(variables: Types.UpsertStringValueMutationVariables): Promise<Types.UpsertStringValueMutation>;
1579
- /**
1580
- * updateGroupMembers mutation
1581
- */
1582
- updateGroupMembers(variables: Types.UpdateGroupMembersMutationVariables): Promise<Types.UpdateGroupMembersMutation>;
1583
- /**
1584
- * deleteBooleanValue mutation
1585
- */
1586
- deleteBooleanValue(variables: Types.DeleteBooleanValueMutationVariables): Promise<Types.DeleteBooleanValueMutation>;
1587
- /**
1588
- * deleteDateValue mutation
1589
- */
1590
- deleteDateValue(variables: Types.DeleteDateValueMutationVariables): Promise<Types.DeleteDateValueMutation>;
1591
- /**
1592
- * deleteFloatValue mutation
1593
- */
1594
- deleteFloatValue(variables: Types.DeleteFloatValueMutationVariables): Promise<Types.DeleteFloatValueMutation>;
1595
- /**
1596
- * deleteGroupValue mutation
1597
- */
1598
- deleteGroupValue(variables: Types.DeleteGroupValueMutationVariables): Promise<Types.DeleteGroupValueMutation>;
1599
- /**
1600
- * deleteIntegerValue mutation
1601
- */
1602
- deleteIntegerValue(variables: Types.DeleteIntegerValueMutationVariables): Promise<Types.DeleteIntegerValueMutation>;
1603
- /**
1604
- * deleteRelationValue mutation
1605
- */
1606
- deleteRelationValue(variables: Types.DeleteRelationValueMutationVariables): Promise<Types.DeleteRelationValueMutation>;
1607
- /**
1608
- * deleteRichTextValue mutation
1609
- */
1610
- deleteRichTextValue(variables: Types.DeleteRichTextValueMutationVariables): Promise<Types.DeleteRichTextValueMutation>;
1611
- /**
1612
- * deleteStringValue mutation
1613
- */
1614
- deleteStringValue(variables: Types.DeleteStringValueMutationVariables): Promise<Types.DeleteStringValueMutation>;
1615
- }
1616
- /**
1617
- * CustomerGroup operations
1618
- */
1619
- declare class CustomerGroupOperations {
1620
- private client;
1621
- constructor(client: BaseGraphQLClient);
1622
- /**
1623
- * customerGroup query
1624
- */
1625
- customerGroup(variables: Types.CustomerGroupQueryVariables): Promise<Types.CustomerGroupQuery>;
1626
- /**
1627
- * customerGroups query
1628
- */
1629
- customerGroups(variables: Types.CustomerGroupsQueryVariables): Promise<Types.CustomerGroupsQuery>;
1630
- /**
1631
- * createCustomerGroup mutation
1632
- */
1633
- createCustomerGroup(variables: Types.CreateCustomerGroupMutationVariables): Promise<Types.CreateCustomerGroupMutation>;
1634
- /**
1635
- * updateCustomerGroup mutation
1636
- */
1637
- updateCustomerGroup(variables: Types.UpdateCustomerGroupMutationVariables): Promise<Types.UpdateCustomerGroupMutation>;
1638
- /**
1639
- * deleteCustomerGroup mutation
1640
- */
1641
- deleteCustomerGroup(variables: Types.DeleteCustomerGroupMutationVariables): Promise<Types.DeleteCustomerGroupMutation>;
1642
- /**
1643
- * deleteCustomerGroups mutation
1644
- */
1645
- deleteCustomerGroups(variables: Types.DeleteCustomerGroupsMutationVariables): Promise<Types.DeleteCustomerGroupsMutation>;
1646
- /**
1647
- * addCustomersToGroup mutation
1648
- */
1649
- addCustomersToGroup(variables: Types.AddCustomersToGroupMutationVariables): Promise<Types.AddCustomersToGroupMutation>;
1650
- /**
1651
- * removeCustomersFromGroup mutation
1652
- */
1653
- removeCustomersFromGroup(variables: Types.RemoveCustomersFromGroupMutationVariables): Promise<Types.RemoveCustomersFromGroupMutation>;
1654
- }
1655
- /**
1656
- * Customer operations
1657
- */
1658
- declare class CustomerOperations {
1659
- private client;
1660
- constructor(client: BaseGraphQLClient);
1661
- /**
1662
- * customer query
1663
- */
1664
- customer(variables: Types.CustomerQueryVariables): Promise<Types.CustomerQuery>;
1665
- /**
1666
- * customers query
1667
- */
1668
- customers(variables: Types.CustomersQueryVariables): Promise<Types.CustomersQuery>;
1669
- /**
1670
- * createCustomer mutation
1671
- */
1672
- createCustomer(variables: Types.CreateCustomerMutationVariables): Promise<Types.CreateCustomerMutation>;
1673
- /**
1674
- * updateCustomer mutation
1675
- */
1676
- updateCustomer(variables: Types.UpdateCustomerMutationVariables): Promise<Types.UpdateCustomerMutation>;
1677
- /**
1678
- * deleteCustomer mutation
1679
- */
1680
- deleteCustomer(variables: Types.DeleteCustomerMutationVariables): Promise<Types.DeleteCustomerMutation>;
1681
- /**
1682
- * deleteCustomers mutation
1683
- */
1684
- deleteCustomers(variables: Types.DeleteCustomersMutationVariables): Promise<Types.DeleteCustomersMutation>;
1685
- /**
1686
- * createCustomerAddress mutation
1687
- */
1688
- createCustomerAddress(variables: Types.CreateCustomerAddressMutationVariables): Promise<Types.CreateCustomerAddressMutation>;
1689
- /**
1690
- * updateCustomerAddress mutation
1691
- */
1692
- updateCustomerAddress(variables: Types.UpdateCustomerAddressMutationVariables): Promise<Types.UpdateCustomerAddressMutation>;
1693
- /**
1694
- * deleteCustomerAddress mutation
1695
- */
1696
- deleteCustomerAddress(variables: Types.DeleteCustomerAddressMutationVariables): Promise<Types.DeleteCustomerAddressMutation>;
1697
- /**
1698
- * addNoteToCustomer mutation
1699
- */
1700
- addNoteToCustomer(variables: Types.AddNoteToCustomerMutationVariables): Promise<Types.AddNoteToCustomerMutation>;
1701
- /**
1702
- * updateCustomerNote mutation
1703
- */
1704
- updateCustomerNote(variables: Types.UpdateCustomerNoteMutationVariables): Promise<Types.UpdateCustomerNoteMutation>;
1705
- /**
1706
- * deleteCustomerNote mutation
1707
- */
1708
- deleteCustomerNote(variables: Types.DeleteCustomerNoteMutationVariables): Promise<Types.DeleteCustomerNoteMutation>;
1709
- }
1710
- /**
1711
- * Deployment operations
1712
- */
1713
- declare class DeploymentOperations {
1714
- private client;
1715
- constructor(client: BaseGraphQLClient);
1716
- /**
1717
- * Deployments query
1718
- */
1719
- deployments(): Promise<Types.DeploymentsQuery>;
1720
- /**
1721
- * Deployment query
1722
- */
1723
- deployment(variables: Types.DeploymentQueryVariables): Promise<Types.DeploymentQuery>;
1724
- /**
1725
- * DeploymentEnv query
1726
- */
1727
- deploymentEnv(variables: Types.DeploymentEnvQueryVariables): Promise<Types.DeploymentEnvQuery>;
1728
- /**
1729
- * ChannelInfo query
1730
- */
1731
- channelInfo(): Promise<Types.ChannelInfoQuery>;
1732
- /**
1733
- * ValidateChannelToken query
1734
- */
1735
- validateChannelToken(): Promise<Types.ValidateChannelTokenQuery>;
1736
- /**
1737
- * CreateDeployment mutation
1738
- */
1739
- createDeployment(variables: Types.CreateDeploymentMutationVariables): Promise<Types.CreateDeploymentMutation>;
1740
- /**
1741
- * DeleteDeployment mutation
1742
- */
1743
- deleteDeployment(variables: Types.DeleteDeploymentMutationVariables): Promise<Types.DeleteDeploymentMutation>;
1744
- /**
1745
- * ScaleDeployment mutation
1746
- */
1747
- scaleDeployment(variables: Types.ScaleDeploymentMutationVariables): Promise<Types.ScaleDeploymentMutation>;
1748
- /**
1749
- * SetDeploymentEnv mutation
1750
- */
1751
- setDeploymentEnv(variables: Types.SetDeploymentEnvMutationVariables): Promise<Types.SetDeploymentEnvMutation>;
1752
- /**
1753
- * UnsetDeploymentEnv mutation
1754
- */
1755
- unsetDeploymentEnv(variables: Types.UnsetDeploymentEnvMutationVariables): Promise<Types.UnsetDeploymentEnvMutation>;
1756
- /**
1757
- * RefreshDeploymentStatus mutation
1758
- */
1759
- refreshDeploymentStatus(variables: Types.RefreshDeploymentStatusMutationVariables): Promise<Types.RefreshDeploymentStatusMutation>;
1760
- /**
1761
- * DeploymentLogs subscription
1762
- */
1763
- deploymentLogs(variables: Types.DeploymentLogsSubscriptionVariables): AsyncIterableIterator<Types.DeploymentLogsSubscription>;
1764
- }
1765
- /**
1766
- * EntityDuplication operations
1767
- */
1768
- declare class EntityDuplicationOperations {
1769
- private client;
1770
- constructor(client: BaseGraphQLClient);
1771
- /**
1772
- * entityDuplicators query
1773
- */
1774
- entityDuplicators(): Promise<Types.EntityDuplicatorsQuery>;
1775
- /**
1776
- * duplicateEntity mutation
1777
- */
1778
- duplicateEntity(variables: Types.DuplicateEntityMutationVariables): Promise<Types.DuplicateEntityMutation>;
1779
- }
1780
- /**
1781
- * EntityEvents operations
1782
- */
1783
- declare class EntityEventsOperations {
1784
- private client;
1785
- constructor(client: BaseGraphQLClient);
1786
- /**
1787
- * entityEvent subscription
1788
- */
1789
- entityEvent(variables: Types.EntityEventSubscriptionVariables): AsyncIterableIterator<Types.EntityEventSubscription>;
1790
- }
1791
- /**
1792
- * Facet operations
1793
- */
1794
- declare class FacetOperations {
1795
- private client;
1796
- constructor(client: BaseGraphQLClient);
1797
- /**
1798
- * facet query
1799
- */
1800
- facet(variables: Types.FacetQueryVariables): Promise<Types.FacetQuery>;
1801
- /**
1802
- * facets query
1803
- */
1804
- facets(variables: Types.FacetsQueryVariables): Promise<Types.FacetsQuery>;
1805
- /**
1806
- * facetValues query
1807
- */
1808
- facetValues(variables: Types.FacetValuesQueryVariables): Promise<Types.FacetValuesQuery>;
1809
- /**
1810
- * createFacet mutation
1811
- */
1812
- createFacet(variables: Types.CreateFacetMutationVariables): Promise<Types.CreateFacetMutation>;
1813
- /**
1814
- * updateFacet mutation
1815
- */
1816
- updateFacet(variables: Types.UpdateFacetMutationVariables): Promise<Types.UpdateFacetMutation>;
1817
- /**
1818
- * deleteFacet mutation
1819
- */
1820
- deleteFacet(variables: Types.DeleteFacetMutationVariables): Promise<Types.DeleteFacetMutation>;
1821
- /**
1822
- * deleteFacets mutation
1823
- */
1824
- deleteFacets(variables: Types.DeleteFacetsMutationVariables): Promise<Types.DeleteFacetsMutation>;
1825
- /**
1826
- * createFacetValues mutation
1827
- */
1828
- createFacetValues(variables: Types.CreateFacetValuesMutationVariables): Promise<Types.CreateFacetValuesMutation>;
1829
- /**
1830
- * updateFacetValues mutation
1831
- */
1832
- updateFacetValues(variables: Types.UpdateFacetValuesMutationVariables): Promise<Types.UpdateFacetValuesMutation>;
1833
- /**
1834
- * deleteFacetValues mutation
1835
- */
1836
- deleteFacetValues(variables: Types.DeleteFacetValuesMutationVariables): Promise<Types.DeleteFacetValuesMutation>;
1837
- }
1838
- /**
1839
- * Fulfillment operations
1840
- */
1841
- declare class FulfillmentOperations {
1842
- private client;
1843
- constructor(client: BaseGraphQLClient);
1844
- /**
1845
- * fulfillmentHandlers query
1846
- */
1847
- fulfillmentHandlers(): Promise<Types.FulfillmentHandlersQuery>;
1848
- }
1849
- /**
1850
- * GlobalSettings operations
1851
- */
1852
- declare class GlobalSettingsOperations {
1853
- private client;
1854
- constructor(client: BaseGraphQLClient);
1855
- /**
1856
- * globalSettings query
1857
- */
1858
- globalSettings(): Promise<Types.GlobalSettingsQuery>;
1859
- /**
1860
- * updateGlobalSettings mutation
1861
- */
1862
- updateGlobalSettings(variables: Types.UpdateGlobalSettingsMutationVariables): Promise<Types.UpdateGlobalSettingsMutation>;
1863
- }
1864
- /**
1865
- * ImportExport operations
1866
- */
1867
- declare class ImportExportOperations {
1868
- private client;
1869
- constructor(client: BaseGraphQLClient);
1870
- /**
1871
- * importProducts mutation
1872
- */
1873
- importProducts(variables: Types.ImportProductsMutationVariables): Promise<Types.ImportProductsMutation>;
1874
- }
1875
- /**
1876
- * Job operations
1877
- */
1878
- declare class JobOperations {
1879
- private client;
1880
- constructor(client: BaseGraphQLClient);
1881
- /**
1882
- * job query
1883
- */
1884
- job(variables: Types.JobQueryVariables): Promise<Types.JobQuery>;
1885
- /**
1886
- * jobs query
1887
- */
1888
- jobs(variables: Types.JobsQueryVariables): Promise<Types.JobsQuery>;
1889
- /**
1890
- * jobsById query
1891
- */
1892
- jobsById(variables: Types.JobsByIdQueryVariables): Promise<Types.JobsByIdQuery>;
1893
- /**
1894
- * jobQueues query
1895
- */
1896
- jobQueues(): Promise<Types.JobQueuesQuery>;
1897
- /**
1898
- * jobBufferSize query
1899
- */
1900
- jobBufferSize(variables: Types.JobBufferSizeQueryVariables): Promise<Types.JobBufferSizeQuery>;
1901
- /**
1902
- * scheduledTasks query
1903
- */
1904
- scheduledTasks(): Promise<Types.ScheduledTasksQuery>;
1905
- /**
1906
- * cancelJob mutation
1907
- */
1908
- cancelJob(variables: Types.CancelJobMutationVariables): Promise<Types.CancelJobMutation>;
1909
- /**
1910
- * flushBufferedJobs mutation
1911
- */
1912
- flushBufferedJobs(variables: Types.FlushBufferedJobsMutationVariables): Promise<Types.FlushBufferedJobsMutation>;
1913
- /**
1914
- * removeSettledJobs mutation
1915
- */
1916
- removeSettledJobs(variables: Types.RemoveSettledJobsMutationVariables): Promise<Types.RemoveSettledJobsMutation>;
1917
- /**
1918
- * runScheduledTask mutation
1919
- */
1920
- runScheduledTask(variables: Types.RunScheduledTaskMutationVariables): Promise<Types.RunScheduledTaskMutation>;
1921
- /**
1922
- * updateScheduledTask mutation
1923
- */
1924
- updateScheduledTask(variables: Types.UpdateScheduledTaskMutationVariables): Promise<Types.UpdateScheduledTaskMutation>;
1925
- }
1926
- /**
1927
- * Landing operations
1928
- */
1929
- declare class LandingOperations {
1930
- private client;
1931
- constructor(client: BaseGraphQLClient);
1932
- /**
1933
- * submitLandingContactForm mutation
1934
- */
1935
- submitLandingContactForm(variables: Types.SubmitLandingContactFormMutationVariables): Promise<Types.SubmitLandingContactFormMutation>;
1936
- }
1937
- /**
1938
- * Notifications operations
1939
- */
1940
- declare class NotificationsOperations {
1941
- private client;
1942
- constructor(client: BaseGraphQLClient);
1943
- /**
1944
- * notifications query
1945
- */
1946
- notifications(): Promise<Types.NotificationsQuery>;
1947
- /**
1948
- * notification subscription
1949
- */
1950
- notification(): AsyncIterableIterator<Types.NotificationSubscription>;
1951
- /**
1952
- * markAsRead mutation
1953
- */
1954
- markAsRead(variables: Types.MarkAsReadMutationVariables): Promise<Types.MarkAsReadMutation>;
1955
- }
1956
- /**
1957
- * Order operations
1958
- */
1959
- declare class OrderOperations {
1960
- private client;
1961
- constructor(client: BaseGraphQLClient);
1962
- /**
1963
- * order query
1964
- */
1965
- order(variables: Types.OrderQueryVariables): Promise<Types.OrderQuery>;
1966
- /**
1967
- * orders query
1968
- */
1969
- orders(variables: Types.OrdersQueryVariables): Promise<Types.OrdersQuery>;
1970
- /**
1971
- * eligibleShippingMethodsForDraftOrder query
1972
- */
1973
- eligibleShippingMethodsForDraftOrder(variables: Types.EligibleShippingMethodsForDraftOrderQueryVariables): Promise<Types.EligibleShippingMethodsForDraftOrderQuery>;
1974
- /**
1975
- * createDraftOrder mutation
1976
- */
1977
- createDraftOrder(): Promise<Types.CreateDraftOrderMutation>;
1978
- /**
1979
- * deleteDraftOrder mutation
1980
- */
1981
- deleteDraftOrder(variables: Types.DeleteDraftOrderMutationVariables): Promise<Types.DeleteDraftOrderMutation>;
1982
- /**
1983
- * addItemToDraftOrder mutation
1984
- */
1985
- addItemToDraftOrder(variables: Types.AddItemToDraftOrderMutationVariables): Promise<Types.AddItemToDraftOrderMutation>;
1986
- /**
1987
- * adjustDraftOrderLine mutation
1988
- */
1989
- adjustDraftOrderLine(variables: Types.AdjustDraftOrderLineMutationVariables): Promise<Types.AdjustDraftOrderLineMutation>;
1990
- /**
1991
- * removeDraftOrderLine mutation
1992
- */
1993
- removeDraftOrderLine(variables: Types.RemoveDraftOrderLineMutationVariables): Promise<Types.RemoveDraftOrderLineMutation>;
1994
- /**
1995
- * applyCouponCodeToDraftOrder mutation
1996
- */
1997
- applyCouponCodeToDraftOrder(variables: Types.ApplyCouponCodeToDraftOrderMutationVariables): Promise<Types.ApplyCouponCodeToDraftOrderMutation>;
1998
- /**
1999
- * removeCouponCodeFromDraftOrder mutation
2000
- */
2001
- removeCouponCodeFromDraftOrder(variables: Types.RemoveCouponCodeFromDraftOrderMutationVariables): Promise<Types.RemoveCouponCodeFromDraftOrderMutation>;
2002
- /**
2003
- * setCustomerForDraftOrder mutation
2004
- */
2005
- setCustomerForDraftOrder(variables: Types.SetCustomerForDraftOrderMutationVariables): Promise<Types.SetCustomerForDraftOrderMutation>;
2006
- /**
2007
- * setDraftOrderBillingAddress mutation
2008
- */
2009
- setDraftOrderBillingAddress(variables: Types.SetDraftOrderBillingAddressMutationVariables): Promise<Types.SetDraftOrderBillingAddressMutation>;
2010
- /**
2011
- * setDraftOrderShippingAddress mutation
2012
- */
2013
- setDraftOrderShippingAddress(variables: Types.SetDraftOrderShippingAddressMutationVariables): Promise<Types.SetDraftOrderShippingAddressMutation>;
2014
- /**
2015
- * unsetDraftOrderBillingAddress mutation
2016
- */
2017
- unsetDraftOrderBillingAddress(variables: Types.UnsetDraftOrderBillingAddressMutationVariables): Promise<Types.UnsetDraftOrderBillingAddressMutation>;
2018
- /**
2019
- * unsetDraftOrderShippingAddress mutation
2020
- */
2021
- unsetDraftOrderShippingAddress(variables: Types.UnsetDraftOrderShippingAddressMutationVariables): Promise<Types.UnsetDraftOrderShippingAddressMutation>;
2022
- /**
2023
- * setDraftOrderShippingMethod mutation
2024
- */
2025
- setDraftOrderShippingMethod(variables: Types.SetDraftOrderShippingMethodMutationVariables): Promise<Types.SetDraftOrderShippingMethodMutation>;
2026
- /**
2027
- * setDraftOrderCustomFields mutation
2028
- */
2029
- setDraftOrderCustomFields(variables: Types.SetDraftOrderCustomFieldsMutationVariables): Promise<Types.SetDraftOrderCustomFieldsMutation>;
2030
- /**
2031
- * addNoteToOrder mutation
2032
- */
2033
- addNoteToOrder(variables: Types.AddNoteToOrderMutationVariables): Promise<Types.AddNoteToOrderMutation>;
2034
- /**
2035
- * updateOrderNote mutation
2036
- */
2037
- updateOrderNote(variables: Types.UpdateOrderNoteMutationVariables): Promise<Types.UpdateOrderNoteMutation>;
2038
- /**
2039
- * deleteOrderNote mutation
2040
- */
2041
- deleteOrderNote(variables: Types.DeleteOrderNoteMutationVariables): Promise<Types.DeleteOrderNoteMutation>;
2042
- /**
2043
- * setOrderCustomFields mutation
2044
- */
2045
- setOrderCustomFields(variables: Types.SetOrderCustomFieldsMutationVariables): Promise<Types.SetOrderCustomFieldsMutation>;
2046
- /**
2047
- * setOrderCustomer mutation
2048
- */
2049
- setOrderCustomer(variables: Types.SetOrderCustomerMutationVariables): Promise<Types.SetOrderCustomerMutation>;
2050
- /**
2051
- * modifyOrder mutation
2052
- */
2053
- modifyOrder(variables: Types.ModifyOrderMutationVariables): Promise<Types.ModifyOrderMutation>;
2054
- /**
2055
- * cancelOrder mutation
2056
- */
2057
- cancelOrder(variables: Types.CancelOrderMutationVariables): Promise<Types.CancelOrderMutation>;
2058
- /**
2059
- * transitionOrderToState mutation
2060
- */
2061
- transitionOrderToState(variables: Types.TransitionOrderToStateMutationVariables): Promise<Types.TransitionOrderToStateMutation>;
2062
- /**
2063
- * addFulfillmentToOrder mutation
2064
- */
2065
- addFulfillmentToOrder(variables: Types.AddFulfillmentToOrderMutationVariables): Promise<Types.AddFulfillmentToOrderMutation>;
2066
- /**
2067
- * transitionFulfillmentToState mutation
2068
- */
2069
- transitionFulfillmentToState(variables: Types.TransitionFulfillmentToStateMutationVariables): Promise<Types.TransitionFulfillmentToStateMutation>;
2070
- /**
2071
- * addManualPaymentToOrder mutation
2072
- */
2073
- addManualPaymentToOrder(variables: Types.AddManualPaymentToOrderMutationVariables): Promise<Types.AddManualPaymentToOrderMutation>;
2074
- /**
2075
- * cancelPayment mutation
2076
- */
2077
- cancelPayment(variables: Types.CancelPaymentMutationVariables): Promise<Types.CancelPaymentMutation>;
2078
- /**
2079
- * settlePayment mutation
2080
- */
2081
- settlePayment(variables: Types.SettlePaymentMutationVariables): Promise<Types.SettlePaymentMutation>;
2082
- /**
2083
- * transitionPaymentToState mutation
2084
- */
2085
- transitionPaymentToState(variables: Types.TransitionPaymentToStateMutationVariables): Promise<Types.TransitionPaymentToStateMutation>;
2086
- /**
2087
- * refundOrder mutation
2088
- */
2089
- refundOrder(variables: Types.RefundOrderMutationVariables): Promise<Types.RefundOrderMutation>;
2090
- /**
2091
- * settleRefund mutation
2092
- */
2093
- settleRefund(variables: Types.SettleRefundMutationVariables): Promise<Types.SettleRefundMutation>;
2094
- }
2095
- /**
2096
- * PaymentMethod operations
2097
- */
2098
- declare class PaymentMethodOperations {
2099
- private client;
2100
- constructor(client: BaseGraphQLClient);
2101
- /**
2102
- * paymentMethods query
2103
- */
2104
- paymentMethods(variables: Types.PaymentMethodsQueryVariables): Promise<Types.PaymentMethodsQuery>;
2105
- /**
2106
- * paymentMethod query
2107
- */
2108
- paymentMethod(variables: Types.PaymentMethodQueryVariables): Promise<Types.PaymentMethodQuery>;
2109
- /**
2110
- * paymentMethodEligibilityCheckers query
2111
- */
2112
- paymentMethodEligibilityCheckers(): Promise<Types.PaymentMethodEligibilityCheckersQuery>;
2113
- /**
2114
- * paymentMethodHandlers query
2115
- */
2116
- paymentMethodHandlers(): Promise<Types.PaymentMethodHandlersQuery>;
2117
- /**
2118
- * createPaymentMethod mutation
2119
- */
2120
- createPaymentMethod(variables: Types.CreatePaymentMethodMutationVariables): Promise<Types.CreatePaymentMethodMutation>;
2121
- /**
2122
- * updatePaymentMethod mutation
2123
- */
2124
- updatePaymentMethod(variables: Types.UpdatePaymentMethodMutationVariables): Promise<Types.UpdatePaymentMethodMutation>;
2125
- /**
2126
- * deletePaymentMethod mutation
2127
- */
2128
- deletePaymentMethod(variables: Types.DeletePaymentMethodMutationVariables): Promise<Types.DeletePaymentMethodMutation>;
2129
- /**
2130
- * deletePaymentMethods mutation
2131
- */
2132
- deletePaymentMethods(variables: Types.DeletePaymentMethodsMutationVariables): Promise<Types.DeletePaymentMethodsMutation>;
2133
- }
2134
- /**
2135
- * ProductOption operations
2136
- */
2137
- declare class ProductOptionOperations {
2138
- private client;
2139
- constructor(client: BaseGraphQLClient);
2140
- /**
2141
- * productOptionGroup query
2142
- */
2143
- productOptionGroup(variables: Types.ProductOptionGroupQueryVariables): Promise<Types.ProductOptionGroupQuery>;
2144
- /**
2145
- * productOptionGroups query
2146
- */
2147
- productOptionGroups(variables: Types.ProductOptionGroupsQueryVariables): Promise<Types.ProductOptionGroupsQuery>;
2148
- /**
2149
- * createProductOption mutation
2150
- */
2151
- createProductOption(variables: Types.CreateProductOptionMutationVariables): Promise<Types.CreateProductOptionMutation>;
2152
- /**
2153
- * createProductOptionGroup mutation
2154
- */
2155
- createProductOptionGroup(variables: Types.CreateProductOptionGroupMutationVariables): Promise<Types.CreateProductOptionGroupMutation>;
2156
- /**
2157
- * updateProductOption mutation
2158
- */
2159
- updateProductOption(variables: Types.UpdateProductOptionMutationVariables): Promise<Types.UpdateProductOptionMutation>;
2160
- /**
2161
- * updateProductOptionGroup mutation
2162
- */
2163
- updateProductOptionGroup(variables: Types.UpdateProductOptionGroupMutationVariables): Promise<Types.UpdateProductOptionGroupMutation>;
2164
- /**
2165
- * deleteProductOption mutation
2166
- */
2167
- deleteProductOption(variables: Types.DeleteProductOptionMutationVariables): Promise<Types.DeleteProductOptionMutation>;
2168
- /**
2169
- * addOptionGroupToProduct mutation
2170
- */
2171
- addOptionGroupToProduct(variables: Types.AddOptionGroupToProductMutationVariables): Promise<Types.AddOptionGroupToProductMutation>;
2172
- /**
2173
- * removeOptionGroupFromProduct mutation
2174
- */
2175
- removeOptionGroupFromProduct(variables: Types.RemoveOptionGroupFromProductMutationVariables): Promise<Types.RemoveOptionGroupFromProductMutation>;
2176
- }
2177
- /**
2178
- * ProductVariant operations
2179
- */
2180
- declare class ProductVariantOperations {
2181
- private client;
2182
- constructor(client: BaseGraphQLClient);
2183
- /**
2184
- * productVariant query
2185
- */
2186
- productVariant(variables: Types.ProductVariantQueryVariables): Promise<Types.ProductVariantQuery>;
2187
- /**
2188
- * productVariants query
2189
- */
2190
- productVariants(variables: Types.ProductVariantsQueryVariables): Promise<Types.ProductVariantsQuery>;
2191
- /**
2192
- * createProductVariants mutation
2193
- */
2194
- createProductVariants(variables: Types.CreateProductVariantsMutationVariables): Promise<Types.CreateProductVariantsMutation>;
2195
- /**
2196
- * updateProductVariant mutation
2197
- */
2198
- updateProductVariant(variables: Types.UpdateProductVariantMutationVariables): Promise<Types.UpdateProductVariantMutation>;
2199
- /**
2200
- * updateProductVariants mutation
2201
- */
2202
- updateProductVariants(variables: Types.UpdateProductVariantsMutationVariables): Promise<Types.UpdateProductVariantsMutation>;
2203
- /**
2204
- * deleteProductVariant mutation
2205
- */
2206
- deleteProductVariant(variables: Types.DeleteProductVariantMutationVariables): Promise<Types.DeleteProductVariantMutation>;
2207
- /**
2208
- * deleteProductVariants mutation
2209
- */
2210
- deleteProductVariants(variables: Types.DeleteProductVariantsMutationVariables): Promise<Types.DeleteProductVariantsMutation>;
2211
- }
2212
- /**
2213
- * Products operations
2214
- */
2215
- declare class ProductsOperations {
2216
- private client;
2217
- constructor(client: BaseGraphQLClient);
2218
- /**
2219
- * products query
2220
- */
2221
- products(variables: Types.ProductsQueryVariables): Promise<Types.ProductsQuery>;
2222
- /**
2223
- * product query
2224
- */
2225
- product(variables: Types.ProductQueryVariables): Promise<Types.ProductQuery>;
2226
- /**
2227
- * createProduct mutation
2228
- */
2229
- createProduct(variables: Types.CreateProductMutationVariables): Promise<Types.CreateProductMutation>;
2230
- /**
2231
- * updateProduct mutation
2232
- */
2233
- updateProduct(variables: Types.UpdateProductMutationVariables): Promise<Types.UpdateProductMutation>;
2234
- /**
2235
- * deleteProduct mutation
2236
- */
2237
- deleteProduct(variables: Types.DeleteProductMutationVariables): Promise<Types.DeleteProductMutation>;
2238
- }
2239
- /**
2240
- * Promotion operations
2241
- */
2242
- declare class PromotionOperations {
2243
- private client;
2244
- constructor(client: BaseGraphQLClient);
2245
- /**
2246
- * promotion query
2247
- */
2248
- promotion(variables: Types.PromotionQueryVariables): Promise<Types.PromotionQuery>;
2249
- /**
2250
- * promotions query
2251
- */
2252
- promotions(variables: Types.PromotionsQueryVariables): Promise<Types.PromotionsQuery>;
2253
- /**
2254
- * promotionActions query
2255
- */
2256
- promotionActions(): Promise<Types.PromotionActionsQuery>;
2257
- /**
2258
- * promotionConditions query
2259
- */
2260
- promotionConditions(): Promise<Types.PromotionConditionsQuery>;
2261
- /**
2262
- * createPromotion mutation
2263
- */
2264
- createPromotion(variables: Types.CreatePromotionMutationVariables): Promise<Types.CreatePromotionMutation>;
2265
- /**
2266
- * updatePromotion mutation
2267
- */
2268
- updatePromotion(variables: Types.UpdatePromotionMutationVariables): Promise<Types.UpdatePromotionMutation>;
2269
- /**
2270
- * deletePromotion mutation
2271
- */
2272
- deletePromotion(variables: Types.DeletePromotionMutationVariables): Promise<Types.DeletePromotionMutation>;
2273
- /**
2274
- * deletePromotions mutation
2275
- */
2276
- deletePromotions(variables: Types.DeletePromotionsMutationVariables): Promise<Types.DeletePromotionsMutation>;
2277
- }
2278
- /**
2279
- * Role operations
2280
- */
2281
- declare class RoleOperations {
2282
- private client;
2283
- constructor(client: BaseGraphQLClient);
2284
- /**
2285
- * role query
2286
- */
2287
- role(variables: Types.RoleQueryVariables): Promise<Types.RoleQuery>;
2288
- /**
2289
- * roles query
2290
- */
2291
- roles(variables: Types.RolesQueryVariables): Promise<Types.RolesQuery>;
2292
- /**
2293
- * createRole mutation
2294
- */
2295
- createRole(variables: Types.CreateRoleMutationVariables): Promise<Types.CreateRoleMutation>;
2296
- /**
2297
- * updateRole mutation
2298
- */
2299
- updateRole(variables: Types.UpdateRoleMutationVariables): Promise<Types.UpdateRoleMutation>;
2300
- /**
2301
- * deleteRole mutation
2302
- */
2303
- deleteRole(variables: Types.DeleteRoleMutationVariables): Promise<Types.DeleteRoleMutation>;
2304
- /**
2305
- * deleteRoles mutation
2306
- */
2307
- deleteRoles(variables: Types.DeleteRolesMutationVariables): Promise<Types.DeleteRolesMutation>;
2308
- }
2309
- /**
2310
- * Search operations
2311
- */
2312
- declare class SearchOperations {
2313
- private client;
2314
- constructor(client: BaseGraphQLClient);
2315
- /**
2316
- * search query
2317
- */
2318
- search(variables: Types.SearchQueryVariables): Promise<Types.SearchQuery>;
2319
- /**
2320
- * pendingSearchIndexUpdates query
2321
- */
2322
- pendingSearchIndexUpdates(): Promise<Types.PendingSearchIndexUpdatesQuery>;
2323
- /**
2324
- * runPendingSearchIndexUpdates mutation
2325
- */
2326
- runPendingSearchIndexUpdates(): Promise<Types.RunPendingSearchIndexUpdatesMutation>;
2327
- /**
2328
- * reindex mutation
2329
- */
2330
- reindex(): Promise<Types.ReindexMutation>;
2331
- }
2332
- /**
2333
- * Seller operations
2334
- */
2335
- declare class SellerOperations {
2336
- private client;
2337
- constructor(client: BaseGraphQLClient);
2338
- /**
2339
- * seller query
2340
- */
2341
- seller(variables: Types.SellerQueryVariables): Promise<Types.SellerQuery>;
2342
- /**
2343
- * sellers query
2344
- */
2345
- sellers(variables: Types.SellersQueryVariables): Promise<Types.SellersQuery>;
2346
- /**
2347
- * createSeller mutation
2348
- */
2349
- createSeller(variables: Types.CreateSellerMutationVariables): Promise<Types.CreateSellerMutation>;
2350
- /**
2351
- * updateSeller mutation
2352
- */
2353
- updateSeller(variables: Types.UpdateSellerMutationVariables): Promise<Types.UpdateSellerMutation>;
2354
- /**
2355
- * deleteSeller mutation
2356
- */
2357
- deleteSeller(variables: Types.DeleteSellerMutationVariables): Promise<Types.DeleteSellerMutation>;
2358
- /**
2359
- * deleteSellers mutation
2360
- */
2361
- deleteSellers(variables: Types.DeleteSellersMutationVariables): Promise<Types.DeleteSellersMutation>;
2362
- }
2363
- /**
2364
- * ShippingMethod operations
2365
- */
2366
- declare class ShippingMethodOperations {
2367
- private client;
2368
- constructor(client: BaseGraphQLClient);
2369
- /**
2370
- * shippingMethod query
2371
- */
2372
- shippingMethod(variables: Types.ShippingMethodQueryVariables): Promise<Types.ShippingMethodQuery>;
2373
- /**
2374
- * shippingMethods query
2375
- */
2376
- shippingMethods(variables: Types.ShippingMethodsQueryVariables): Promise<Types.ShippingMethodsQuery>;
2377
- /**
2378
- * shippingCalculators query
2379
- */
2380
- shippingCalculators(): Promise<Types.ShippingCalculatorsQuery>;
2381
- /**
2382
- * shippingEligibilityCheckers query
2383
- */
2384
- shippingEligibilityCheckers(): Promise<Types.ShippingEligibilityCheckersQuery>;
2385
- /**
2386
- * createShippingMethod mutation
2387
- */
2388
- createShippingMethod(variables: Types.CreateShippingMethodMutationVariables): Promise<Types.CreateShippingMethodMutation>;
2389
- /**
2390
- * updateShippingMethod mutation
2391
- */
2392
- updateShippingMethod(variables: Types.UpdateShippingMethodMutationVariables): Promise<Types.UpdateShippingMethodMutation>;
2393
- /**
2394
- * deleteShippingMethod mutation
2395
- */
2396
- deleteShippingMethod(variables: Types.DeleteShippingMethodMutationVariables): Promise<Types.DeleteShippingMethodMutation>;
2397
- /**
2398
- * deleteShippingMethods mutation
2399
- */
2400
- deleteShippingMethods(variables: Types.DeleteShippingMethodsMutationVariables): Promise<Types.DeleteShippingMethodsMutation>;
2401
- /**
2402
- * testShippingMethod query
2403
- */
2404
- testShippingMethod(variables: Types.TestShippingMethodQueryVariables): Promise<Types.TestShippingMethodQuery>;
2405
- /**
2406
- * testEligibleShippingMethods query
2407
- */
2408
- testEligibleShippingMethods(variables: Types.TestEligibleShippingMethodsQueryVariables): Promise<Types.TestEligibleShippingMethodsQuery>;
2409
- }
2410
- /**
2411
- * StockLocation operations
2412
- */
2413
- declare class StockLocationOperations {
2414
- private client;
2415
- constructor(client: BaseGraphQLClient);
2416
- /**
2417
- * stockLocation query
2418
- */
2419
- stockLocation(variables: Types.StockLocationQueryVariables): Promise<Types.StockLocationQuery>;
2420
- /**
2421
- * stockLocations query
2422
- */
2423
- stockLocations(variables: Types.StockLocationsQueryVariables): Promise<Types.StockLocationsQuery>;
2424
- /**
2425
- * stockLocationProducts query
2426
- */
2427
- stockLocationProducts(variables: Types.StockLocationProductsQueryVariables): Promise<Types.StockLocationProductsQuery>;
2428
- /**
2429
- * createStockLocation mutation
2430
- */
2431
- createStockLocation(variables: Types.CreateStockLocationMutationVariables): Promise<Types.CreateStockLocationMutation>;
2432
- /**
2433
- * updateStockLocation mutation
2434
- */
2435
- updateStockLocation(variables: Types.UpdateStockLocationMutationVariables): Promise<Types.UpdateStockLocationMutation>;
2436
- /**
2437
- * deleteStockLocation mutation
2438
- */
2439
- deleteStockLocation(variables: Types.DeleteStockLocationMutationVariables): Promise<Types.DeleteStockLocationMutation>;
2440
- /**
2441
- * deleteStockLocations mutation
2442
- */
2443
- deleteStockLocations(variables: Types.DeleteStockLocationsMutationVariables): Promise<Types.DeleteStockLocationsMutation>;
2444
- }
2445
- /**
2446
- * Tags operations
2447
- */
2448
- declare class TagsOperations {
2449
- private client;
2450
- constructor(client: BaseGraphQLClient);
2451
- /**
2452
- * tag query
2453
- */
2454
- tag(variables: Types.TagQueryVariables): Promise<Types.TagQuery>;
2455
- /**
2456
- * tags query
2457
- */
2458
- tags(variables: Types.TagsQueryVariables): Promise<Types.TagsQuery>;
2459
- /**
2460
- * createTag mutation
2461
- */
2462
- createTag(variables: Types.CreateTagMutationVariables): Promise<Types.CreateTagMutation>;
2463
- /**
2464
- * updateTag mutation
2465
- */
2466
- updateTag(variables: Types.UpdateTagMutationVariables): Promise<Types.UpdateTagMutation>;
2467
- /**
2468
- * deleteTag mutation
2469
- */
2470
- deleteTag(variables: Types.DeleteTagMutationVariables): Promise<Types.DeleteTagMutation>;
2471
- }
2472
- /**
2473
- * TaxRate operations
2474
- */
2475
- declare class TaxRateOperations {
2476
- private client;
2477
- constructor(client: BaseGraphQLClient);
2478
- /**
2479
- * taxRate query
2480
- */
2481
- taxRate(variables: Types.TaxRateQueryVariables): Promise<Types.TaxRateQuery>;
2482
- /**
2483
- * taxRates query
2484
- */
2485
- taxRates(variables: Types.TaxRatesQueryVariables): Promise<Types.TaxRatesQuery>;
2486
- /**
2487
- * createTaxRate mutation
2488
- */
2489
- createTaxRate(variables: Types.CreateTaxRateMutationVariables): Promise<Types.CreateTaxRateMutation>;
2490
- /**
2491
- * updateTaxRate mutation
2492
- */
2493
- updateTaxRate(variables: Types.UpdateTaxRateMutationVariables): Promise<Types.UpdateTaxRateMutation>;
2494
- /**
2495
- * deleteTaxRate mutation
2496
- */
2497
- deleteTaxRate(variables: Types.DeleteTaxRateMutationVariables): Promise<Types.DeleteTaxRateMutation>;
2498
- /**
2499
- * deleteTaxRates mutation
2500
- */
2501
- deleteTaxRates(variables: Types.DeleteTaxRatesMutationVariables): Promise<Types.DeleteTaxRatesMutation>;
2502
- }
2503
- /**
2504
- * Tax operations
2505
- */
2506
- declare class TaxOperations {
2507
- private client;
2508
- constructor(client: BaseGraphQLClient);
2509
- /**
2510
- * taxCategory query
2511
- */
2512
- taxCategory(variables: Types.TaxCategoryQueryVariables): Promise<Types.TaxCategoryQuery>;
2513
- /**
2514
- * taxCategories query
2515
- */
2516
- taxCategories(variables: Types.TaxCategoriesQueryVariables): Promise<Types.TaxCategoriesQuery>;
2517
- /**
2518
- * createTaxCategory mutation
2519
- */
2520
- createTaxCategory(variables: Types.CreateTaxCategoryMutationVariables): Promise<Types.CreateTaxCategoryMutation>;
2521
- /**
2522
- * updateTaxCategory mutation
2523
- */
2524
- updateTaxCategory(variables: Types.UpdateTaxCategoryMutationVariables): Promise<Types.UpdateTaxCategoryMutation>;
2525
- /**
2526
- * deleteTaxCategory mutation
2527
- */
2528
- deleteTaxCategory(variables: Types.DeleteTaxCategoryMutationVariables): Promise<Types.DeleteTaxCategoryMutation>;
2529
- /**
2530
- * deleteTaxCategories mutation
2531
- */
2532
- deleteTaxCategories(variables: Types.DeleteTaxCategoriesMutationVariables): Promise<Types.DeleteTaxCategoriesMutation>;
2533
- }
2534
- /**
2535
- * Zone operations
2536
- */
2537
- declare class ZoneOperations {
2538
- private client;
2539
- constructor(client: BaseGraphQLClient);
2540
- /**
2541
- * zone query
2542
- */
2543
- zone(variables: Types.ZoneQueryVariables): Promise<Types.ZoneQuery>;
2544
- /**
2545
- * zones query
2546
- */
2547
- zones(variables: Types.ZonesQueryVariables): Promise<Types.ZonesQuery>;
2548
- /**
2549
- * createZone mutation
2550
- */
2551
- createZone(variables: Types.CreateZoneMutationVariables): Promise<Types.CreateZoneMutation>;
2552
- /**
2553
- * updateZone mutation
2554
- */
2555
- updateZone(variables: Types.UpdateZoneMutationVariables): Promise<Types.UpdateZoneMutation>;
2556
- /**
2557
- * deleteZone mutation
2558
- */
2559
- deleteZone(variables: Types.DeleteZoneMutationVariables): Promise<Types.DeleteZoneMutation>;
2560
- /**
2561
- * deleteZones mutation
2562
- */
2563
- deleteZones(variables: Types.DeleteZonesMutationVariables): Promise<Types.DeleteZonesMutation>;
2564
- /**
2565
- * addMembersToZone mutation
2566
- */
2567
- addMembersToZone(variables: Types.AddMembersToZoneMutationVariables): Promise<Types.AddMembersToZoneMutation>;
2568
- /**
2569
- * removeMembersFromZone mutation
2570
- */
2571
- removeMembersFromZone(variables: Types.RemoveMembersFromZoneMutationVariables): Promise<Types.RemoveMembersFromZoneMutation>;
2572
- }
2573
- /**
2574
- * Admin namespace
2575
- * Contains categorized operations for admin API
2576
- */
2577
- export declare class AdminNamespace {
2578
- private client;
2579
- readonly administrator: AdministratorOperations;
2580
- readonly asset: AssetOperations;
2581
- readonly blog: BlogOperations;
2582
- readonly channelPlugin: ChannelPluginOperations;
2583
- readonly channel: ChannelOperations;
2584
- readonly collection: CollectionOperations;
2585
- readonly country: CountryOperations;
2586
- readonly customFields: CustomFieldsOperations;
2587
- readonly customerGroup: CustomerGroupOperations;
2588
- readonly customer: CustomerOperations;
2589
- readonly deployment: DeploymentOperations;
2590
- readonly entityDuplication: EntityDuplicationOperations;
2591
- readonly entityEvents: EntityEventsOperations;
2592
- readonly facet: FacetOperations;
2593
- readonly fulfillment: FulfillmentOperations;
2594
- readonly globalSettings: GlobalSettingsOperations;
2595
- readonly importExport: ImportExportOperations;
2596
- readonly job: JobOperations;
2597
- readonly landing: LandingOperations;
2598
- readonly notifications: NotificationsOperations;
2599
- readonly order: OrderOperations;
2600
- readonly paymentMethod: PaymentMethodOperations;
2601
- readonly productOption: ProductOptionOperations;
2602
- readonly productVariant: ProductVariantOperations;
2603
- readonly products: ProductsOperations;
2604
- readonly promotion: PromotionOperations;
2605
- readonly role: RoleOperations;
2606
- readonly search: SearchOperations;
2607
- readonly seller: SellerOperations;
2608
- readonly shippingMethod: ShippingMethodOperations;
2609
- readonly stockLocation: StockLocationOperations;
2610
- readonly tags: TagsOperations;
2611
- readonly taxRate: TaxRateOperations;
2612
- readonly tax: TaxOperations;
2613
- readonly zone: ZoneOperations;
2614
- private eventRegistry;
2615
- private eventSubscription;
2616
- private isListening;
2617
- private retryCount;
2618
- private abortController;
2619
- private static readonly RECONNECT_CONFIG;
2620
- private static readonly BLOCKING_TIMEOUT_MS;
2621
- constructor(config: SDKConfig);
2622
- /**
2623
- * Set authentication token
2624
- * Updates the client with the new token
2625
- */
2626
- setAuthToken(token: string): void;
2627
- /**
2628
- * Clear authentication token
2629
- */
2630
- clearAuthToken(): void;
2631
- /**
2632
- * Dispose of the namespace and close all connections
2633
- */
2634
- dispose(): void;
2635
- /**
2636
- * Register a non-blocking event handler
2637
- * The callback will be called for each matching event without waiting
2638
- */
2639
- registerEventHandler(eventName: string, callback: EventCallback): EventSubscription;
2640
- /**
2641
- * Register a blocking event handler
2642
- * The callback must complete within 1000ms or it will timeout
2643
- */
2644
- registerBlockingEventHandler(eventName: string, callback: BlockingEventCallback): EventSubscription;
2645
- /**
2646
- * Start listening to events with retry logic
2647
- */
2648
- private ensureEventListening;
2649
- private startSubscription;
2650
- private handleReconnect;
2651
- /**
2652
- * Dispatch event to registered handlers
2653
- */
2654
- private dispatchEvent;
2655
- /**
2656
- * Execute promise with timeout
2657
- */
2658
- private executeWithTimeout;
2659
- /**
2660
- * Stop all event listening
2661
- */
2662
- stopEventListening(): void;
2663
- }
2664
- export {};