@forgecart/sdk 1.2.5 → 1.2.6

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