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