@wix/stores 1.0.129 → 1.0.131
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/build/cjs/context.d.ts +5 -0
- package/build/cjs/context.js +32 -0
- package/build/cjs/context.js.map +1 -0
- package/build/cjs/src/platform-v1-wishlist.context.d.ts +3 -0
- package/build/cjs/src/platform-v1-wishlist.context.js +16 -0
- package/build/cjs/src/platform-v1-wishlist.context.js.map +1 -0
- package/build/cjs/src/stores-catalog-v1-collection.context.d.ts +5 -0
- package/build/cjs/src/stores-catalog-v1-collection.context.js +38 -0
- package/build/cjs/src/stores-catalog-v1-collection.context.js.map +1 -0
- package/build/cjs/src/stores-catalog-v1-product.context.d.ts +35 -0
- package/build/cjs/src/stores-catalog-v1-product.context.js +368 -0
- package/build/cjs/src/stores-catalog-v1-product.context.js.map +1 -0
- package/build/cjs/src/stores-catalog-v1-product.universal.d.ts +84 -0
- package/build/cjs/src/stores-catalog-v1-product.universal.js +84 -0
- package/build/cjs/src/stores-catalog-v1-product.universal.js.map +1 -1
- package/build/cjs/src/stores-v1-subscription-option.context.d.ts +14 -0
- package/build/cjs/src/stores-v1-subscription-option.context.js +137 -0
- package/build/cjs/src/stores-v1-subscription-option.context.js.map +1 -0
- package/build/cjs/src/stores-v1-subscription-option.universal.d.ts +32 -0
- package/build/cjs/src/stores-v1-subscription-option.universal.js +32 -0
- package/build/cjs/src/stores-v1-subscription-option.universal.js.map +1 -1
- package/build/cjs/src/stores-v2-inventory.context.d.ts +7 -0
- package/build/cjs/src/stores-v2-inventory.context.js +60 -0
- package/build/cjs/src/stores-v2-inventory.context.js.map +1 -0
- package/build/cjs/src/stores-v2-inventory.universal.d.ts +14 -0
- package/build/cjs/src/stores-v2-inventory.universal.js +14 -0
- package/build/cjs/src/stores-v2-inventory.universal.js.map +1 -1
- package/build/es/context.d.ts +5 -0
- package/build/es/context.js +6 -0
- package/build/es/context.js.map +1 -0
- package/build/es/src/platform-v1-wishlist.context.d.ts +3 -0
- package/build/es/src/platform-v1-wishlist.context.js +12 -0
- package/build/es/src/platform-v1-wishlist.context.js.map +1 -0
- package/build/es/src/stores-catalog-v1-collection.context.d.ts +5 -0
- package/build/es/src/stores-catalog-v1-collection.context.js +32 -0
- package/build/es/src/stores-catalog-v1-collection.context.js.map +1 -0
- package/build/es/src/stores-catalog-v1-product.context.d.ts +35 -0
- package/build/es/src/stores-catalog-v1-product.context.js +332 -0
- package/build/es/src/stores-catalog-v1-product.context.js.map +1 -0
- package/build/es/src/stores-catalog-v1-product.universal.d.ts +84 -0
- package/build/es/src/stores-catalog-v1-product.universal.js +84 -0
- package/build/es/src/stores-catalog-v1-product.universal.js.map +1 -1
- package/build/es/src/stores-v1-subscription-option.context.d.ts +14 -0
- package/build/es/src/stores-v1-subscription-option.context.js +122 -0
- package/build/es/src/stores-v1-subscription-option.context.js.map +1 -0
- package/build/es/src/stores-v1-subscription-option.universal.d.ts +32 -0
- package/build/es/src/stores-v1-subscription-option.universal.js +32 -0
- package/build/es/src/stores-v1-subscription-option.universal.js.map +1 -1
- package/build/es/src/stores-v2-inventory.context.d.ts +7 -0
- package/build/es/src/stores-v2-inventory.context.js +52 -0
- package/build/es/src/stores-v2-inventory.context.js.map +1 -0
- package/build/es/src/stores-v2-inventory.universal.d.ts +14 -0
- package/build/es/src/stores-v2-inventory.universal.js +14 -0
- package/build/es/src/stores-v2-inventory.universal.js.map +1 -1
- package/context/package.json +6 -0
- package/package.json +6 -4
|
@@ -0,0 +1,332 @@
|
|
|
1
|
+
import { createProduct as publicCreateProduct, createProductPlatformized as publicCreateProductPlatformized, updateProduct as publicUpdateProduct, updateProductPlatformized as publicUpdateProductPlatformized, deleteProduct as publicDeleteProduct, deleteProductPlatformized as publicDeleteProductPlatformized, updateProductVariants as publicUpdateProductVariants, resetAllProductVariantData as publicResetAllProductVariantData, addProductsToCollection as publicAddProductsToCollection, removeProductsFromCollection as publicRemoveProductsFromCollection, addProductMedia as publicAddProductMedia, removeProductMedia as publicRemoveProductMedia, addProductMediaToChoices as publicAddProductMediaToChoices, removeProductMediaFromChoices as publicRemoveProductMediaFromChoices, deleteProductOptions as publicDeleteProductOptions, removeBrand as publicRemoveBrand, createCollection as publicCreateCollection, updateCollection as publicUpdateCollection, deleteCollection as publicDeleteCollection, removeRibbon as publicRemoveRibbon, bulkUpdateProductsProperty as publicBulkUpdateProductsProperty, bulkAdjustProductProperty as publicBulkAdjustProductProperty, writeProxyCreateProductPlatformized as publicWriteProxyCreateProductPlatformized, writeProxyUpdateProductPlatformized as publicWriteProxyUpdateProductPlatformized, writeProxyDeleteProductPlatformized as publicWriteProxyDeleteProductPlatformized, queryProducts as publicQueryProducts, getProduct as publicGetProduct, getProductPlatformized as publicGetProductPlatformized, getCollectionBySlug as publicGetCollectionBySlug, getProductOptionsAvailability as publicGetProductOptionsAvailability, queryProductVariants as publicQueryProductVariants, queryStoreVariants as publicQueryStoreVariants, getStoreVariant as publicGetStoreVariant, } from './stores-catalog-v1-product.public';
|
|
2
|
+
export const createProduct = (...args) => {
|
|
3
|
+
// @ts-expect-error
|
|
4
|
+
if (!globalThis.__wix_context__) {
|
|
5
|
+
throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
|
|
6
|
+
}
|
|
7
|
+
// @ts-expect-error
|
|
8
|
+
return globalThis.__wix_context__
|
|
9
|
+
.initWixModules(publicCreateProduct)
|
|
10
|
+
.apply(undefined, args);
|
|
11
|
+
};
|
|
12
|
+
export const createProductPlatformized = (...args) => {
|
|
13
|
+
// @ts-expect-error
|
|
14
|
+
if (!globalThis.__wix_context__) {
|
|
15
|
+
throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
|
|
16
|
+
}
|
|
17
|
+
// @ts-expect-error
|
|
18
|
+
return globalThis.__wix_context__
|
|
19
|
+
.initWixModules(publicCreateProductPlatformized)
|
|
20
|
+
.apply(undefined, args);
|
|
21
|
+
};
|
|
22
|
+
export const updateProduct = (...args) => {
|
|
23
|
+
// @ts-expect-error
|
|
24
|
+
if (!globalThis.__wix_context__) {
|
|
25
|
+
throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
|
|
26
|
+
}
|
|
27
|
+
// @ts-expect-error
|
|
28
|
+
return globalThis.__wix_context__
|
|
29
|
+
.initWixModules(publicUpdateProduct)
|
|
30
|
+
.apply(undefined, args);
|
|
31
|
+
};
|
|
32
|
+
export const updateProductPlatformized = (...args) => {
|
|
33
|
+
// @ts-expect-error
|
|
34
|
+
if (!globalThis.__wix_context__) {
|
|
35
|
+
throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
|
|
36
|
+
}
|
|
37
|
+
// @ts-expect-error
|
|
38
|
+
return globalThis.__wix_context__
|
|
39
|
+
.initWixModules(publicUpdateProductPlatformized)
|
|
40
|
+
.apply(undefined, args);
|
|
41
|
+
};
|
|
42
|
+
export const deleteProduct = (...args) => {
|
|
43
|
+
// @ts-expect-error
|
|
44
|
+
if (!globalThis.__wix_context__) {
|
|
45
|
+
throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
|
|
46
|
+
}
|
|
47
|
+
// @ts-expect-error
|
|
48
|
+
return globalThis.__wix_context__
|
|
49
|
+
.initWixModules(publicDeleteProduct)
|
|
50
|
+
.apply(undefined, args);
|
|
51
|
+
};
|
|
52
|
+
export const deleteProductPlatformized = (...args) => {
|
|
53
|
+
// @ts-expect-error
|
|
54
|
+
if (!globalThis.__wix_context__) {
|
|
55
|
+
throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
|
|
56
|
+
}
|
|
57
|
+
// @ts-expect-error
|
|
58
|
+
return globalThis.__wix_context__
|
|
59
|
+
.initWixModules(publicDeleteProductPlatformized)
|
|
60
|
+
.apply(undefined, args);
|
|
61
|
+
};
|
|
62
|
+
export const updateProductVariants = (...args) => {
|
|
63
|
+
// @ts-expect-error
|
|
64
|
+
if (!globalThis.__wix_context__) {
|
|
65
|
+
throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
|
|
66
|
+
}
|
|
67
|
+
// @ts-expect-error
|
|
68
|
+
return globalThis.__wix_context__
|
|
69
|
+
.initWixModules(publicUpdateProductVariants)
|
|
70
|
+
.apply(undefined, args);
|
|
71
|
+
};
|
|
72
|
+
export const resetAllProductVariantData = (...args) => {
|
|
73
|
+
// @ts-expect-error
|
|
74
|
+
if (!globalThis.__wix_context__) {
|
|
75
|
+
throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
|
|
76
|
+
}
|
|
77
|
+
// @ts-expect-error
|
|
78
|
+
return globalThis.__wix_context__
|
|
79
|
+
.initWixModules(publicResetAllProductVariantData)
|
|
80
|
+
.apply(undefined, args);
|
|
81
|
+
};
|
|
82
|
+
export const addProductsToCollection = (...args) => {
|
|
83
|
+
// @ts-expect-error
|
|
84
|
+
if (!globalThis.__wix_context__) {
|
|
85
|
+
throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
|
|
86
|
+
}
|
|
87
|
+
// @ts-expect-error
|
|
88
|
+
return globalThis.__wix_context__
|
|
89
|
+
.initWixModules(publicAddProductsToCollection)
|
|
90
|
+
.apply(undefined, args);
|
|
91
|
+
};
|
|
92
|
+
export const removeProductsFromCollection = (...args) => {
|
|
93
|
+
// @ts-expect-error
|
|
94
|
+
if (!globalThis.__wix_context__) {
|
|
95
|
+
throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
|
|
96
|
+
}
|
|
97
|
+
// @ts-expect-error
|
|
98
|
+
return globalThis.__wix_context__
|
|
99
|
+
.initWixModules(publicRemoveProductsFromCollection)
|
|
100
|
+
.apply(undefined, args);
|
|
101
|
+
};
|
|
102
|
+
export const addProductMedia = (...args) => {
|
|
103
|
+
// @ts-expect-error
|
|
104
|
+
if (!globalThis.__wix_context__) {
|
|
105
|
+
throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
|
|
106
|
+
}
|
|
107
|
+
// @ts-expect-error
|
|
108
|
+
return globalThis.__wix_context__
|
|
109
|
+
.initWixModules(publicAddProductMedia)
|
|
110
|
+
.apply(undefined, args);
|
|
111
|
+
};
|
|
112
|
+
export const removeProductMedia = (...args) => {
|
|
113
|
+
// @ts-expect-error
|
|
114
|
+
if (!globalThis.__wix_context__) {
|
|
115
|
+
throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
|
|
116
|
+
}
|
|
117
|
+
// @ts-expect-error
|
|
118
|
+
return globalThis.__wix_context__
|
|
119
|
+
.initWixModules(publicRemoveProductMedia)
|
|
120
|
+
.apply(undefined, args);
|
|
121
|
+
};
|
|
122
|
+
export const addProductMediaToChoices = (...args) => {
|
|
123
|
+
// @ts-expect-error
|
|
124
|
+
if (!globalThis.__wix_context__) {
|
|
125
|
+
throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
|
|
126
|
+
}
|
|
127
|
+
// @ts-expect-error
|
|
128
|
+
return globalThis.__wix_context__
|
|
129
|
+
.initWixModules(publicAddProductMediaToChoices)
|
|
130
|
+
.apply(undefined, args);
|
|
131
|
+
};
|
|
132
|
+
export const removeProductMediaFromChoices = (...args) => {
|
|
133
|
+
// @ts-expect-error
|
|
134
|
+
if (!globalThis.__wix_context__) {
|
|
135
|
+
throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
|
|
136
|
+
}
|
|
137
|
+
// @ts-expect-error
|
|
138
|
+
return globalThis.__wix_context__
|
|
139
|
+
.initWixModules(publicRemoveProductMediaFromChoices)
|
|
140
|
+
.apply(undefined, args);
|
|
141
|
+
};
|
|
142
|
+
export const deleteProductOptions = (...args) => {
|
|
143
|
+
// @ts-expect-error
|
|
144
|
+
if (!globalThis.__wix_context__) {
|
|
145
|
+
throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
|
|
146
|
+
}
|
|
147
|
+
// @ts-expect-error
|
|
148
|
+
return globalThis.__wix_context__
|
|
149
|
+
.initWixModules(publicDeleteProductOptions)
|
|
150
|
+
.apply(undefined, args);
|
|
151
|
+
};
|
|
152
|
+
export const removeBrand = (...args) => {
|
|
153
|
+
// @ts-expect-error
|
|
154
|
+
if (!globalThis.__wix_context__) {
|
|
155
|
+
throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
|
|
156
|
+
}
|
|
157
|
+
// @ts-expect-error
|
|
158
|
+
return globalThis.__wix_context__
|
|
159
|
+
.initWixModules(publicRemoveBrand)
|
|
160
|
+
.apply(undefined, args);
|
|
161
|
+
};
|
|
162
|
+
export const createCollection = (...args) => {
|
|
163
|
+
// @ts-expect-error
|
|
164
|
+
if (!globalThis.__wix_context__) {
|
|
165
|
+
throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
|
|
166
|
+
}
|
|
167
|
+
// @ts-expect-error
|
|
168
|
+
return globalThis.__wix_context__
|
|
169
|
+
.initWixModules(publicCreateCollection)
|
|
170
|
+
.apply(undefined, args);
|
|
171
|
+
};
|
|
172
|
+
export const updateCollection = (...args) => {
|
|
173
|
+
// @ts-expect-error
|
|
174
|
+
if (!globalThis.__wix_context__) {
|
|
175
|
+
throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
|
|
176
|
+
}
|
|
177
|
+
// @ts-expect-error
|
|
178
|
+
return globalThis.__wix_context__
|
|
179
|
+
.initWixModules(publicUpdateCollection)
|
|
180
|
+
.apply(undefined, args);
|
|
181
|
+
};
|
|
182
|
+
export const deleteCollection = (...args) => {
|
|
183
|
+
// @ts-expect-error
|
|
184
|
+
if (!globalThis.__wix_context__) {
|
|
185
|
+
throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
|
|
186
|
+
}
|
|
187
|
+
// @ts-expect-error
|
|
188
|
+
return globalThis.__wix_context__
|
|
189
|
+
.initWixModules(publicDeleteCollection)
|
|
190
|
+
.apply(undefined, args);
|
|
191
|
+
};
|
|
192
|
+
export const removeRibbon = (...args) => {
|
|
193
|
+
// @ts-expect-error
|
|
194
|
+
if (!globalThis.__wix_context__) {
|
|
195
|
+
throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
|
|
196
|
+
}
|
|
197
|
+
// @ts-expect-error
|
|
198
|
+
return globalThis.__wix_context__
|
|
199
|
+
.initWixModules(publicRemoveRibbon)
|
|
200
|
+
.apply(undefined, args);
|
|
201
|
+
};
|
|
202
|
+
export const bulkUpdateProductsProperty = (...args) => {
|
|
203
|
+
// @ts-expect-error
|
|
204
|
+
if (!globalThis.__wix_context__) {
|
|
205
|
+
throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
|
|
206
|
+
}
|
|
207
|
+
// @ts-expect-error
|
|
208
|
+
return globalThis.__wix_context__
|
|
209
|
+
.initWixModules(publicBulkUpdateProductsProperty)
|
|
210
|
+
.apply(undefined, args);
|
|
211
|
+
};
|
|
212
|
+
export const bulkAdjustProductProperty = (...args) => {
|
|
213
|
+
// @ts-expect-error
|
|
214
|
+
if (!globalThis.__wix_context__) {
|
|
215
|
+
throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
|
|
216
|
+
}
|
|
217
|
+
// @ts-expect-error
|
|
218
|
+
return globalThis.__wix_context__
|
|
219
|
+
.initWixModules(publicBulkAdjustProductProperty)
|
|
220
|
+
.apply(undefined, args);
|
|
221
|
+
};
|
|
222
|
+
export const writeProxyCreateProductPlatformized = (...args) => {
|
|
223
|
+
// @ts-expect-error
|
|
224
|
+
if (!globalThis.__wix_context__) {
|
|
225
|
+
throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
|
|
226
|
+
}
|
|
227
|
+
// @ts-expect-error
|
|
228
|
+
return globalThis.__wix_context__
|
|
229
|
+
.initWixModules(publicWriteProxyCreateProductPlatformized)
|
|
230
|
+
.apply(undefined, args);
|
|
231
|
+
};
|
|
232
|
+
export const writeProxyUpdateProductPlatformized = (...args) => {
|
|
233
|
+
// @ts-expect-error
|
|
234
|
+
if (!globalThis.__wix_context__) {
|
|
235
|
+
throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
|
|
236
|
+
}
|
|
237
|
+
// @ts-expect-error
|
|
238
|
+
return globalThis.__wix_context__
|
|
239
|
+
.initWixModules(publicWriteProxyUpdateProductPlatformized)
|
|
240
|
+
.apply(undefined, args);
|
|
241
|
+
};
|
|
242
|
+
export const writeProxyDeleteProductPlatformized = (...args) => {
|
|
243
|
+
// @ts-expect-error
|
|
244
|
+
if (!globalThis.__wix_context__) {
|
|
245
|
+
throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
|
|
246
|
+
}
|
|
247
|
+
// @ts-expect-error
|
|
248
|
+
return globalThis.__wix_context__
|
|
249
|
+
.initWixModules(publicWriteProxyDeleteProductPlatformized)
|
|
250
|
+
.apply(undefined, args);
|
|
251
|
+
};
|
|
252
|
+
export const queryProducts = (...args) => {
|
|
253
|
+
// @ts-expect-error
|
|
254
|
+
if (!globalThis.__wix_context__) {
|
|
255
|
+
throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
|
|
256
|
+
}
|
|
257
|
+
// @ts-expect-error
|
|
258
|
+
return globalThis.__wix_context__
|
|
259
|
+
.initWixModules(publicQueryProducts)
|
|
260
|
+
.apply(undefined, args);
|
|
261
|
+
};
|
|
262
|
+
export const getProduct = (...args) => {
|
|
263
|
+
// @ts-expect-error
|
|
264
|
+
if (!globalThis.__wix_context__) {
|
|
265
|
+
throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
|
|
266
|
+
}
|
|
267
|
+
// @ts-expect-error
|
|
268
|
+
return globalThis.__wix_context__
|
|
269
|
+
.initWixModules(publicGetProduct)
|
|
270
|
+
.apply(undefined, args);
|
|
271
|
+
};
|
|
272
|
+
export const getProductPlatformized = (...args) => {
|
|
273
|
+
// @ts-expect-error
|
|
274
|
+
if (!globalThis.__wix_context__) {
|
|
275
|
+
throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
|
|
276
|
+
}
|
|
277
|
+
// @ts-expect-error
|
|
278
|
+
return globalThis.__wix_context__
|
|
279
|
+
.initWixModules(publicGetProductPlatformized)
|
|
280
|
+
.apply(undefined, args);
|
|
281
|
+
};
|
|
282
|
+
export const getCollectionBySlug = (...args) => {
|
|
283
|
+
// @ts-expect-error
|
|
284
|
+
if (!globalThis.__wix_context__) {
|
|
285
|
+
throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
|
|
286
|
+
}
|
|
287
|
+
// @ts-expect-error
|
|
288
|
+
return globalThis.__wix_context__
|
|
289
|
+
.initWixModules(publicGetCollectionBySlug)
|
|
290
|
+
.apply(undefined, args);
|
|
291
|
+
};
|
|
292
|
+
export const getProductOptionsAvailability = (...args) => {
|
|
293
|
+
// @ts-expect-error
|
|
294
|
+
if (!globalThis.__wix_context__) {
|
|
295
|
+
throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
|
|
296
|
+
}
|
|
297
|
+
// @ts-expect-error
|
|
298
|
+
return globalThis.__wix_context__
|
|
299
|
+
.initWixModules(publicGetProductOptionsAvailability)
|
|
300
|
+
.apply(undefined, args);
|
|
301
|
+
};
|
|
302
|
+
export const queryProductVariants = (...args) => {
|
|
303
|
+
// @ts-expect-error
|
|
304
|
+
if (!globalThis.__wix_context__) {
|
|
305
|
+
throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
|
|
306
|
+
}
|
|
307
|
+
// @ts-expect-error
|
|
308
|
+
return globalThis.__wix_context__
|
|
309
|
+
.initWixModules(publicQueryProductVariants)
|
|
310
|
+
.apply(undefined, args);
|
|
311
|
+
};
|
|
312
|
+
export const queryStoreVariants = (...args) => {
|
|
313
|
+
// @ts-expect-error
|
|
314
|
+
if (!globalThis.__wix_context__) {
|
|
315
|
+
throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
|
|
316
|
+
}
|
|
317
|
+
// @ts-expect-error
|
|
318
|
+
return globalThis.__wix_context__
|
|
319
|
+
.initWixModules(publicQueryStoreVariants)
|
|
320
|
+
.apply(undefined, args);
|
|
321
|
+
};
|
|
322
|
+
export const getStoreVariant = (...args) => {
|
|
323
|
+
// @ts-expect-error
|
|
324
|
+
if (!globalThis.__wix_context__) {
|
|
325
|
+
throw new Error('Wix context is not available. Make sure to initialize the Wix context before using SDK modules');
|
|
326
|
+
}
|
|
327
|
+
// @ts-expect-error
|
|
328
|
+
return globalThis.__wix_context__
|
|
329
|
+
.initWixModules(publicGetStoreVariant)
|
|
330
|
+
.apply(undefined, args);
|
|
331
|
+
};
|
|
332
|
+
//# sourceMappingURL=stores-catalog-v1-product.context.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"stores-catalog-v1-product.context.js","sourceRoot":"","sources":["../../../src/stores-catalog-v1-product.context.ts"],"names":[],"mappings":"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"}
|