@shushed/helpers 0.0.247-airtable-helper-views-20260130120550 → 0.0.247-airtable-helper-views-20260130125302
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/dist/cjs/contracts/product-draft.schema.json +14 -0
- package/dist/cjs/contracts/product.schema.json +119 -376
- package/dist/cjs/dist-dereferenced/messages/product-draft.js +1 -1
- package/dist/cjs/dist-dereferenced/messages/product.js +1 -1
- package/dist/cjs/dist-dereferenced/product-draft.js +1 -1
- package/dist/cjs/dist-dereferenced/product.js +1 -1
- package/dist/types/dist-dereferenced/messages/product-draft.d.ts +6 -0
- package/dist/types/dist-dereferenced/messages/product.d.ts +98 -286
- package/dist/types/dist-dereferenced/product-draft.d.ts +6 -0
- package/dist/types/dist-dereferenced/product.d.ts +98 -286
- package/dist/types/dist-types/messages/product-draft.d.ts +2 -0
- package/dist/types/dist-types/messages/product.d.ts +30 -67
- package/dist/types/dist-types/product-draft.d.ts +2 -0
- package/dist/types/dist-types/product.d.ts +30 -67
- package/package.json +1 -1
|
@@ -14,9 +14,6 @@ declare const schema: {
|
|
|
14
14
|
readonly slug: {
|
|
15
15
|
readonly type: readonly ["string"];
|
|
16
16
|
};
|
|
17
|
-
readonly style_slug: {
|
|
18
|
-
readonly type: readonly ["string"];
|
|
19
|
-
};
|
|
20
17
|
readonly style_id: {
|
|
21
18
|
readonly type: readonly ["string"];
|
|
22
19
|
};
|
|
@@ -26,11 +23,8 @@ declare const schema: {
|
|
|
26
23
|
readonly style_name: {
|
|
27
24
|
readonly type: "string";
|
|
28
25
|
};
|
|
29
|
-
readonly product_name: {
|
|
30
|
-
readonly type: "string";
|
|
31
|
-
};
|
|
32
26
|
readonly display_name: {
|
|
33
|
-
readonly type: readonly ["string"
|
|
27
|
+
readonly type: readonly ["string"];
|
|
34
28
|
};
|
|
35
29
|
readonly buffer_quantity: {
|
|
36
30
|
readonly type: "integer";
|
|
@@ -44,30 +38,6 @@ declare const schema: {
|
|
|
44
38
|
readonly type: readonly ["string", "null"];
|
|
45
39
|
readonly format: "date";
|
|
46
40
|
};
|
|
47
|
-
readonly online_from: {
|
|
48
|
-
readonly type: readonly ["string", "null"];
|
|
49
|
-
readonly format: "date-time";
|
|
50
|
-
};
|
|
51
|
-
readonly online_to: {
|
|
52
|
-
readonly type: readonly ["string", "null"];
|
|
53
|
-
readonly format: "date-time";
|
|
54
|
-
};
|
|
55
|
-
readonly first_online_at: {
|
|
56
|
-
readonly type: readonly ["string", "null"];
|
|
57
|
-
readonly format: "date-time";
|
|
58
|
-
};
|
|
59
|
-
readonly last_online_at: {
|
|
60
|
-
readonly type: readonly ["string", "null"];
|
|
61
|
-
readonly format: "date-time";
|
|
62
|
-
};
|
|
63
|
-
readonly first_purchased_at: {
|
|
64
|
-
readonly type: "string";
|
|
65
|
-
readonly format: "date-time";
|
|
66
|
-
};
|
|
67
|
-
readonly first_markdown_at: {
|
|
68
|
-
readonly type: readonly ["string", "null"];
|
|
69
|
-
readonly format: "date-time";
|
|
70
|
-
};
|
|
71
41
|
readonly created_at: {
|
|
72
42
|
readonly type: "string";
|
|
73
43
|
readonly format: "date-time";
|
|
@@ -79,9 +49,6 @@ declare const schema: {
|
|
|
79
49
|
readonly colour_family_name: {
|
|
80
50
|
readonly type: "string";
|
|
81
51
|
};
|
|
82
|
-
readonly colour_code: {
|
|
83
|
-
readonly type: "string";
|
|
84
|
-
};
|
|
85
52
|
readonly colour_name: {
|
|
86
53
|
readonly type: "string";
|
|
87
54
|
};
|
|
@@ -94,9 +61,6 @@ declare const schema: {
|
|
|
94
61
|
readonly sizerange_code: {
|
|
95
62
|
readonly type: "string";
|
|
96
63
|
};
|
|
97
|
-
readonly sizerange_name: {
|
|
98
|
-
readonly type: "string";
|
|
99
|
-
};
|
|
100
64
|
readonly variants: {
|
|
101
65
|
readonly type: "array";
|
|
102
66
|
readonly items: {
|
|
@@ -108,25 +72,11 @@ declare const schema: {
|
|
|
108
72
|
readonly name: {
|
|
109
73
|
readonly type: readonly ["string"];
|
|
110
74
|
};
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
};
|
|
114
|
-
};
|
|
115
|
-
readonly images: {
|
|
116
|
-
readonly type: "array";
|
|
117
|
-
readonly items: {
|
|
118
|
-
readonly type: "object";
|
|
119
|
-
readonly properties: {
|
|
120
|
-
readonly type: {
|
|
121
|
-
readonly type: "string";
|
|
122
|
-
readonly enum: readonly ["Campaign", "Ecom", "Flatlay", "UGC", "AI"];
|
|
123
|
-
};
|
|
124
|
-
readonly url: {
|
|
125
|
-
readonly type: "string";
|
|
126
|
-
readonly format: "uri";
|
|
75
|
+
readonly ean: {
|
|
76
|
+
readonly type: readonly ["string", "null"];
|
|
127
77
|
};
|
|
128
78
|
};
|
|
129
|
-
readonly required: readonly ["
|
|
79
|
+
readonly required: readonly ["code", "name"];
|
|
130
80
|
};
|
|
131
81
|
};
|
|
132
82
|
readonly vat_rate_uk: {
|
|
@@ -151,17 +101,6 @@ declare const schema: {
|
|
|
151
101
|
readonly port_of_origin: {
|
|
152
102
|
readonly type: "string";
|
|
153
103
|
};
|
|
154
|
-
readonly supplier_id: {
|
|
155
|
-
readonly type: "string";
|
|
156
|
-
readonly pattern: "^SUP\\d{5}$";
|
|
157
|
-
};
|
|
158
|
-
readonly supplier_name: {
|
|
159
|
-
readonly type: "string";
|
|
160
|
-
};
|
|
161
|
-
readonly factory_id: {
|
|
162
|
-
readonly type: "string";
|
|
163
|
-
readonly pattern: "^FAC\\d{5}$";
|
|
164
|
-
};
|
|
165
104
|
readonly packing_method: {
|
|
166
105
|
readonly type: readonly ["string", "null"];
|
|
167
106
|
readonly enum: readonly ["Standard", "Hanging"];
|
|
@@ -178,32 +117,12 @@ declare const schema: {
|
|
|
178
117
|
readonly strategy_type: {
|
|
179
118
|
readonly type: "string";
|
|
180
119
|
};
|
|
181
|
-
readonly product_type: {
|
|
182
|
-
readonly type: "string";
|
|
183
|
-
};
|
|
184
|
-
readonly stock_type: {
|
|
185
|
-
readonly type: "string";
|
|
186
|
-
};
|
|
187
120
|
readonly category: {
|
|
188
121
|
readonly type: "string";
|
|
189
122
|
};
|
|
190
123
|
readonly subcategory: {
|
|
191
124
|
readonly type: "string";
|
|
192
125
|
};
|
|
193
|
-
readonly range: {
|
|
194
|
-
readonly type: readonly ["string", "null"];
|
|
195
|
-
readonly enum: readonly ["Main Collection", "Seasonal"];
|
|
196
|
-
};
|
|
197
|
-
readonly channels_availability: {
|
|
198
|
-
readonly type: readonly ["array"];
|
|
199
|
-
readonly items: {
|
|
200
|
-
readonly type: "string";
|
|
201
|
-
readonly enum: readonly ["DIRECT-UK", "DIRECT-INT", "DIRECT-US", "JL-STORES", "JL-WEB", "NEXT", "MS", "FENWICK", "MORLEYS"];
|
|
202
|
-
};
|
|
203
|
-
};
|
|
204
|
-
readonly collections: {
|
|
205
|
-
readonly type: readonly ["string"];
|
|
206
|
-
};
|
|
207
126
|
readonly seasons: {
|
|
208
127
|
readonly type: readonly ["array"];
|
|
209
128
|
readonly items: {
|
|
@@ -216,22 +135,60 @@ declare const schema: {
|
|
|
216
135
|
readonly type: "string";
|
|
217
136
|
};
|
|
218
137
|
};
|
|
219
|
-
readonly fashionability: {
|
|
220
|
-
readonly type: readonly ["string", "null"];
|
|
221
|
-
};
|
|
222
138
|
};
|
|
223
139
|
readonly required: readonly [];
|
|
224
140
|
};
|
|
141
|
+
readonly category_assignments: {
|
|
142
|
+
readonly type: "array";
|
|
143
|
+
readonly items: {
|
|
144
|
+
readonly type: "object";
|
|
145
|
+
readonly properties: {
|
|
146
|
+
readonly display_path: {
|
|
147
|
+
readonly type: "array";
|
|
148
|
+
readonly items: {
|
|
149
|
+
readonly type: "string";
|
|
150
|
+
};
|
|
151
|
+
};
|
|
152
|
+
readonly path: {
|
|
153
|
+
readonly type: "array";
|
|
154
|
+
readonly items: {
|
|
155
|
+
readonly type: "string";
|
|
156
|
+
};
|
|
157
|
+
};
|
|
158
|
+
readonly name: {
|
|
159
|
+
readonly type: "string";
|
|
160
|
+
};
|
|
161
|
+
readonly id: {
|
|
162
|
+
readonly type: "string";
|
|
163
|
+
};
|
|
164
|
+
};
|
|
165
|
+
};
|
|
166
|
+
};
|
|
225
167
|
readonly attributes: {
|
|
226
168
|
readonly type: "object";
|
|
227
169
|
readonly properties: {
|
|
170
|
+
readonly stock_quantity_score: {
|
|
171
|
+
readonly type: "number";
|
|
172
|
+
};
|
|
173
|
+
readonly stock_availability: {
|
|
174
|
+
readonly type: "number";
|
|
175
|
+
};
|
|
176
|
+
readonly measurement_chart: {
|
|
177
|
+
readonly type: readonly ["string", "null"];
|
|
178
|
+
};
|
|
179
|
+
readonly sizeguide_type: {
|
|
180
|
+
readonly type: readonly ["string", "null"];
|
|
181
|
+
};
|
|
182
|
+
readonly brand: {
|
|
183
|
+
readonly type: readonly ["string", "null"];
|
|
184
|
+
};
|
|
185
|
+
readonly shoes_type: {
|
|
186
|
+
readonly type: readonly ["string", "null"];
|
|
187
|
+
};
|
|
228
188
|
readonly seo_url_name: {
|
|
229
189
|
readonly type: "string";
|
|
230
190
|
readonly pattern: "^[a-z-]+$";
|
|
231
191
|
};
|
|
232
|
-
readonly embellishment: {
|
|
233
|
-
readonly type: readonly ["string", "null"];
|
|
234
|
-
};
|
|
235
192
|
readonly seo_title: {
|
|
236
193
|
readonly type: readonly ["string", "null"];
|
|
237
194
|
};
|
|
@@ -244,125 +201,53 @@ declare const schema: {
|
|
|
244
201
|
readonly fabric_care: {
|
|
245
202
|
readonly type: readonly ["string", "null"];
|
|
246
203
|
};
|
|
247
|
-
readonly delivery_returns: {
|
|
248
|
-
readonly type: readonly ["string", "null"];
|
|
249
|
-
};
|
|
250
204
|
readonly weight: {
|
|
251
205
|
readonly type: readonly ["number", "null"];
|
|
252
206
|
};
|
|
253
|
-
readonly weight_statement: {
|
|
254
|
-
readonly type: readonly ["string", "null"];
|
|
255
|
-
};
|
|
256
207
|
readonly main_fibre: {
|
|
257
208
|
readonly type: readonly ["string", "null"];
|
|
258
209
|
};
|
|
259
210
|
readonly main_metal: {
|
|
260
211
|
readonly type: readonly ["string", "null"];
|
|
261
212
|
};
|
|
262
|
-
readonly extra_selling_points: {
|
|
263
|
-
readonly type: "array";
|
|
264
|
-
readonly items: {
|
|
265
|
-
readonly type: "string";
|
|
266
|
-
};
|
|
267
|
-
};
|
|
268
|
-
readonly length_measurement: {
|
|
269
|
-
readonly type: readonly ["string", "null"];
|
|
270
|
-
};
|
|
271
|
-
readonly measurement_table_code: {
|
|
272
|
-
readonly type: readonly ["string"];
|
|
273
|
-
};
|
|
274
|
-
readonly fit: {
|
|
275
|
-
readonly type: readonly ["string", "null"];
|
|
276
|
-
};
|
|
277
|
-
readonly pockets: {
|
|
278
|
-
readonly type: readonly ["string", "null"];
|
|
279
|
-
};
|
|
280
|
-
readonly pleats_gathers: {
|
|
281
|
-
readonly type: readonly ["string", "null"];
|
|
282
|
-
};
|
|
283
|
-
readonly lining: {
|
|
284
|
-
readonly type: readonly ["string", "null"];
|
|
285
|
-
};
|
|
286
|
-
readonly bias_cut: {
|
|
287
|
-
readonly type: readonly ["string", "null"];
|
|
288
|
-
};
|
|
289
213
|
readonly designer: {
|
|
290
214
|
readonly type: readonly ["string", "null"];
|
|
291
215
|
};
|
|
292
|
-
readonly fabric: {
|
|
293
|
-
readonly type: readonly ["string", "null"];
|
|
294
|
-
};
|
|
295
|
-
readonly fabric_composition: {
|
|
296
|
-
readonly type: readonly ["string", "null"];
|
|
297
|
-
};
|
|
298
216
|
readonly certificate_code: {
|
|
299
217
|
readonly type: readonly ["string", "null"];
|
|
300
218
|
};
|
|
301
|
-
readonly shape: {
|
|
302
|
-
readonly type: readonly ["string", "null"];
|
|
303
|
-
};
|
|
304
|
-
readonly development_type: {
|
|
305
|
-
readonly type: "string";
|
|
306
|
-
};
|
|
307
|
-
readonly occasion: {
|
|
308
|
-
readonly type: readonly ["string", "null"];
|
|
309
|
-
};
|
|
310
|
-
readonly design: {
|
|
311
|
-
readonly type: readonly ["string", "null"];
|
|
312
|
-
};
|
|
313
|
-
readonly block: {
|
|
314
|
-
readonly type: readonly ["string", "null"];
|
|
315
|
-
};
|
|
316
219
|
readonly pattern_name: {
|
|
317
220
|
readonly type: readonly ["string", "null"];
|
|
318
221
|
};
|
|
319
222
|
readonly fit_type: {
|
|
320
223
|
readonly type: readonly ["string", "null"];
|
|
321
224
|
};
|
|
322
|
-
readonly
|
|
323
|
-
readonly type: readonly ["string", "null"];
|
|
324
|
-
};
|
|
325
|
-
readonly sleeve_length: {
|
|
326
|
-
readonly type: readonly ["string", "null"];
|
|
327
|
-
readonly nullable: true;
|
|
328
|
-
};
|
|
329
|
-
readonly sleeve_type: {
|
|
225
|
+
readonly trousers_fit: {
|
|
330
226
|
readonly type: readonly ["string", "null"];
|
|
331
227
|
readonly nullable: true;
|
|
332
228
|
};
|
|
333
|
-
readonly
|
|
229
|
+
readonly trousers_length: {
|
|
334
230
|
readonly type: readonly ["string", "null"];
|
|
335
231
|
};
|
|
336
|
-
readonly
|
|
232
|
+
readonly dresses_skirts_length: {
|
|
337
233
|
readonly type: readonly ["string", "null"];
|
|
338
234
|
};
|
|
339
|
-
readonly
|
|
235
|
+
readonly coats_jackets_type: {
|
|
340
236
|
readonly type: readonly ["string", "null"];
|
|
341
237
|
};
|
|
342
|
-
readonly
|
|
238
|
+
readonly dresses_skirts_type: {
|
|
343
239
|
readonly type: readonly ["string", "null"];
|
|
344
|
-
readonly nullable: true;
|
|
345
240
|
};
|
|
346
|
-
readonly
|
|
241
|
+
readonly bag_type: {
|
|
347
242
|
readonly type: readonly ["string", "null"];
|
|
348
243
|
};
|
|
349
|
-
readonly
|
|
244
|
+
readonly product_category: {
|
|
350
245
|
readonly type: readonly ["string", "null"];
|
|
351
246
|
};
|
|
352
|
-
readonly
|
|
247
|
+
readonly product_type: {
|
|
353
248
|
readonly type: readonly ["string", "null"];
|
|
354
249
|
};
|
|
355
|
-
readonly
|
|
356
|
-
readonly anyOf: readonly [{
|
|
357
|
-
readonly type: readonly ["array", "null"];
|
|
358
|
-
readonly items: {
|
|
359
|
-
readonly type: "string";
|
|
360
|
-
};
|
|
361
|
-
}, {
|
|
362
|
-
readonly type: "null";
|
|
363
|
-
}];
|
|
364
|
-
};
|
|
365
|
-
readonly sole_material: {
|
|
250
|
+
readonly metal: {
|
|
366
251
|
readonly type: readonly ["string", "null"];
|
|
367
252
|
};
|
|
368
253
|
readonly care_instructions: {
|
|
@@ -374,7 +259,13 @@ declare const schema: {
|
|
|
374
259
|
};
|
|
375
260
|
readonly required: readonly [];
|
|
376
261
|
};
|
|
377
|
-
readonly
|
|
262
|
+
readonly markets: {
|
|
263
|
+
readonly type: "array";
|
|
264
|
+
readonly items: {
|
|
265
|
+
readonly type: "string";
|
|
266
|
+
};
|
|
267
|
+
};
|
|
268
|
+
readonly markets_overrides: {
|
|
378
269
|
readonly type: "object";
|
|
379
270
|
readonly additionalProperties: false;
|
|
380
271
|
readonly patternProperties: {
|
|
@@ -386,20 +277,17 @@ declare const schema: {
|
|
|
386
277
|
readonly type: "string";
|
|
387
278
|
readonly pattern: "^[a-z]{2}-[A-Z]{2}$";
|
|
388
279
|
};
|
|
389
|
-
readonly
|
|
280
|
+
readonly market: {
|
|
390
281
|
readonly type: "string";
|
|
391
282
|
};
|
|
392
283
|
readonly slug: {
|
|
393
284
|
readonly type: readonly ["string"];
|
|
394
285
|
};
|
|
395
|
-
readonly style_slug: {
|
|
396
|
-
readonly type: readonly ["string"];
|
|
397
|
-
};
|
|
398
286
|
readonly style_name: {
|
|
399
287
|
readonly type: "string";
|
|
400
288
|
};
|
|
401
289
|
readonly display_name: {
|
|
402
|
-
readonly type: readonly ["string"
|
|
290
|
+
readonly type: readonly ["string"];
|
|
403
291
|
};
|
|
404
292
|
readonly display_type: {
|
|
405
293
|
readonly type: "string";
|
|
@@ -409,26 +297,6 @@ declare const schema: {
|
|
|
409
297
|
readonly type: readonly ["string", "null"];
|
|
410
298
|
readonly format: "date";
|
|
411
299
|
};
|
|
412
|
-
readonly online_from: {
|
|
413
|
-
readonly type: readonly ["string", "null"];
|
|
414
|
-
readonly format: "date-time";
|
|
415
|
-
};
|
|
416
|
-
readonly online_to: {
|
|
417
|
-
readonly type: readonly ["string", "null"];
|
|
418
|
-
readonly format: "date-time";
|
|
419
|
-
};
|
|
420
|
-
readonly last_online_at: {
|
|
421
|
-
readonly type: readonly ["string", "null"];
|
|
422
|
-
readonly format: "date-time";
|
|
423
|
-
};
|
|
424
|
-
readonly first_purchased_at: {
|
|
425
|
-
readonly type: "string";
|
|
426
|
-
readonly format: "date-time";
|
|
427
|
-
};
|
|
428
|
-
readonly first_markdown_at: {
|
|
429
|
-
readonly type: readonly ["string", "null"];
|
|
430
|
-
readonly format: "date-time";
|
|
431
|
-
};
|
|
432
300
|
readonly colour_family_name: {
|
|
433
301
|
readonly type: "string";
|
|
434
302
|
};
|
|
@@ -441,8 +309,9 @@ declare const schema: {
|
|
|
441
309
|
readonly type: "string";
|
|
442
310
|
};
|
|
443
311
|
};
|
|
444
|
-
readonly
|
|
445
|
-
readonly type: "string";
|
|
312
|
+
readonly last_online_at: {
|
|
313
|
+
readonly type: readonly ["string", "null"];
|
|
314
|
+
readonly format: "date-time";
|
|
446
315
|
};
|
|
447
316
|
readonly variants: {
|
|
448
317
|
readonly type: "array";
|
|
@@ -462,13 +331,28 @@ declare const schema: {
|
|
|
462
331
|
readonly attributes: {
|
|
463
332
|
readonly type: "object";
|
|
464
333
|
readonly properties: {
|
|
334
|
+
readonly stock_quantity_score: {
|
|
335
|
+
readonly type: "number";
|
|
336
|
+
};
|
|
337
|
+
readonly stock_availability: {
|
|
338
|
+
readonly type: "number";
|
|
339
|
+
};
|
|
340
|
+
readonly measurement_chart: {
|
|
341
|
+
readonly type: readonly ["string", "null"];
|
|
342
|
+
};
|
|
343
|
+
readonly sizeguide_type: {
|
|
344
|
+
readonly type: readonly ["string", "null"];
|
|
345
|
+
};
|
|
346
|
+
readonly brand: {
|
|
347
|
+
readonly type: readonly ["string", "null"];
|
|
348
|
+
};
|
|
349
|
+
readonly shoes_type: {
|
|
350
|
+
readonly type: readonly ["string", "null"];
|
|
351
|
+
};
|
|
465
352
|
readonly seo_url_name: {
|
|
466
353
|
readonly type: "string";
|
|
467
354
|
readonly pattern: "^[a-z-]+$";
|
|
468
355
|
};
|
|
469
|
-
readonly embellishment: {
|
|
470
|
-
readonly type: readonly ["string", "null"];
|
|
471
|
-
};
|
|
472
356
|
readonly seo_title: {
|
|
473
357
|
readonly type: readonly ["string", "null"];
|
|
474
358
|
};
|
|
@@ -481,125 +365,53 @@ declare const schema: {
|
|
|
481
365
|
readonly fabric_care: {
|
|
482
366
|
readonly type: readonly ["string", "null"];
|
|
483
367
|
};
|
|
484
|
-
readonly delivery_returns: {
|
|
485
|
-
readonly type: readonly ["string", "null"];
|
|
486
|
-
};
|
|
487
368
|
readonly weight: {
|
|
488
369
|
readonly type: readonly ["number", "null"];
|
|
489
370
|
};
|
|
490
|
-
readonly weight_statement: {
|
|
491
|
-
readonly type: readonly ["string", "null"];
|
|
492
|
-
};
|
|
493
371
|
readonly main_fibre: {
|
|
494
372
|
readonly type: readonly ["string", "null"];
|
|
495
373
|
};
|
|
496
374
|
readonly main_metal: {
|
|
497
375
|
readonly type: readonly ["string", "null"];
|
|
498
376
|
};
|
|
499
|
-
readonly extra_selling_points: {
|
|
500
|
-
readonly type: "array";
|
|
501
|
-
readonly items: {
|
|
502
|
-
readonly type: "string";
|
|
503
|
-
};
|
|
504
|
-
};
|
|
505
|
-
readonly length_measurement: {
|
|
506
|
-
readonly type: readonly ["string", "null"];
|
|
507
|
-
};
|
|
508
|
-
readonly measurement_table_code: {
|
|
509
|
-
readonly type: readonly ["string"];
|
|
510
|
-
};
|
|
511
|
-
readonly fit: {
|
|
512
|
-
readonly type: readonly ["string", "null"];
|
|
513
|
-
};
|
|
514
|
-
readonly pockets: {
|
|
515
|
-
readonly type: readonly ["string", "null"];
|
|
516
|
-
};
|
|
517
|
-
readonly pleats_gathers: {
|
|
518
|
-
readonly type: readonly ["string", "null"];
|
|
519
|
-
};
|
|
520
|
-
readonly lining: {
|
|
521
|
-
readonly type: readonly ["string", "null"];
|
|
522
|
-
};
|
|
523
|
-
readonly bias_cut: {
|
|
524
|
-
readonly type: readonly ["string", "null"];
|
|
525
|
-
};
|
|
526
377
|
readonly designer: {
|
|
527
378
|
readonly type: readonly ["string", "null"];
|
|
528
379
|
};
|
|
529
|
-
readonly fabric: {
|
|
530
|
-
readonly type: readonly ["string", "null"];
|
|
531
|
-
};
|
|
532
|
-
readonly fabric_composition: {
|
|
533
|
-
readonly type: readonly ["string", "null"];
|
|
534
|
-
};
|
|
535
380
|
readonly certificate_code: {
|
|
536
381
|
readonly type: readonly ["string", "null"];
|
|
537
382
|
};
|
|
538
|
-
readonly shape: {
|
|
539
|
-
readonly type: readonly ["string", "null"];
|
|
540
|
-
};
|
|
541
|
-
readonly development_type: {
|
|
542
|
-
readonly type: "string";
|
|
543
|
-
};
|
|
544
|
-
readonly occasion: {
|
|
545
|
-
readonly type: readonly ["string", "null"];
|
|
546
|
-
};
|
|
547
|
-
readonly design: {
|
|
548
|
-
readonly type: readonly ["string", "null"];
|
|
549
|
-
};
|
|
550
|
-
readonly block: {
|
|
551
|
-
readonly type: readonly ["string", "null"];
|
|
552
|
-
};
|
|
553
383
|
readonly pattern_name: {
|
|
554
384
|
readonly type: readonly ["string", "null"];
|
|
555
385
|
};
|
|
556
386
|
readonly fit_type: {
|
|
557
387
|
readonly type: readonly ["string", "null"];
|
|
558
388
|
};
|
|
559
|
-
readonly
|
|
560
|
-
readonly type: readonly ["string", "null"];
|
|
561
|
-
};
|
|
562
|
-
readonly sleeve_length: {
|
|
389
|
+
readonly trousers_fit: {
|
|
563
390
|
readonly type: readonly ["string", "null"];
|
|
564
391
|
readonly nullable: true;
|
|
565
392
|
};
|
|
566
|
-
readonly
|
|
393
|
+
readonly trousers_length: {
|
|
567
394
|
readonly type: readonly ["string", "null"];
|
|
568
|
-
readonly nullable: true;
|
|
569
395
|
};
|
|
570
|
-
readonly
|
|
396
|
+
readonly dresses_skirts_length: {
|
|
571
397
|
readonly type: readonly ["string", "null"];
|
|
572
398
|
};
|
|
573
|
-
readonly
|
|
399
|
+
readonly coats_jackets_type: {
|
|
574
400
|
readonly type: readonly ["string", "null"];
|
|
575
401
|
};
|
|
576
|
-
readonly
|
|
402
|
+
readonly dresses_skirts_type: {
|
|
577
403
|
readonly type: readonly ["string", "null"];
|
|
578
404
|
};
|
|
579
|
-
readonly
|
|
405
|
+
readonly bag_type: {
|
|
580
406
|
readonly type: readonly ["string", "null"];
|
|
581
|
-
readonly nullable: true;
|
|
582
407
|
};
|
|
583
|
-
readonly
|
|
408
|
+
readonly product_category: {
|
|
584
409
|
readonly type: readonly ["string", "null"];
|
|
585
410
|
};
|
|
586
|
-
readonly
|
|
411
|
+
readonly product_type: {
|
|
587
412
|
readonly type: readonly ["string", "null"];
|
|
588
413
|
};
|
|
589
|
-
readonly
|
|
590
|
-
readonly type: readonly ["string", "null"];
|
|
591
|
-
};
|
|
592
|
-
readonly fastening: {
|
|
593
|
-
readonly anyOf: readonly [{
|
|
594
|
-
readonly type: readonly ["array", "null"];
|
|
595
|
-
readonly items: {
|
|
596
|
-
readonly type: "string";
|
|
597
|
-
};
|
|
598
|
-
}, {
|
|
599
|
-
readonly type: "null";
|
|
600
|
-
}];
|
|
601
|
-
};
|
|
602
|
-
readonly sole_material: {
|
|
414
|
+
readonly metal: {
|
|
603
415
|
readonly type: readonly ["string", "null"];
|
|
604
416
|
};
|
|
605
417
|
readonly care_instructions: {
|
|
@@ -612,12 +424,12 @@ declare const schema: {
|
|
|
612
424
|
readonly required: readonly [];
|
|
613
425
|
};
|
|
614
426
|
};
|
|
615
|
-
readonly required: readonly ["locale", "
|
|
427
|
+
readonly required: readonly ["locale", "market"];
|
|
616
428
|
};
|
|
617
429
|
};
|
|
618
430
|
};
|
|
619
431
|
};
|
|
620
|
-
readonly required: readonly ["product_id", "style_id", "
|
|
432
|
+
readonly required: readonly ["product_id", "style_id", "colour_id", "display_name"];
|
|
621
433
|
}, {
|
|
622
434
|
readonly type: "object";
|
|
623
435
|
readonly additionalProperties: false;
|
|
@@ -321,6 +321,9 @@ declare const schema: {
|
|
|
321
321
|
readonly neckline: {
|
|
322
322
|
readonly type: readonly ["string", "null"];
|
|
323
323
|
};
|
|
324
|
+
readonly neckline_statement: {
|
|
325
|
+
readonly type: readonly ["string", "null"];
|
|
326
|
+
};
|
|
324
327
|
readonly sleeve_length: {
|
|
325
328
|
readonly type: readonly ["string", "null"];
|
|
326
329
|
};
|
|
@@ -374,6 +377,9 @@ declare const schema: {
|
|
|
374
377
|
readonly type: "string";
|
|
375
378
|
};
|
|
376
379
|
};
|
|
380
|
+
readonly length_statement: {
|
|
381
|
+
readonly type: readonly ["string", "null"];
|
|
382
|
+
};
|
|
377
383
|
readonly length_measurement: {
|
|
378
384
|
readonly type: readonly ["string", "null"];
|
|
379
385
|
};
|