@shushed/helpers 0.0.247-cat-tree-schema-20260130105151 → 0.0.247-fh-20260130141017

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (32) hide show
  1. package/dist/cjs/contracts/product-draft.schema.json +14 -0
  2. package/dist/cjs/contracts/product.schema.json +119 -376
  3. package/dist/cjs/dist-dereferenced/category-tree.js +1 -1
  4. package/dist/cjs/dist-dereferenced/messages/product-draft.js +1 -1
  5. package/dist/cjs/dist-dereferenced/messages/product.js +1 -1
  6. package/dist/cjs/dist-dereferenced/product-draft.js +1 -1
  7. package/dist/cjs/dist-dereferenced/product.js +1 -1
  8. package/dist/cjs/src-public/env.js +2 -0
  9. package/dist/cjs/src-public/fredhopper/fredhopper.base.js +497 -0
  10. package/dist/cjs/src-public/fredhopper/fredhopper.js +105 -0
  11. package/dist/cjs/src-public/fredhopper/fredhopper.types.js +10 -0
  12. package/dist/cjs/src-public/fredhopper/index.js +10 -0
  13. package/dist/cjs/src-public/index.js +2 -3
  14. package/dist/package.json +1 -0
  15. package/dist/types/dist-dereferenced/category-tree.d.ts +0 -6
  16. package/dist/types/dist-dereferenced/messages/product-draft.d.ts +6 -0
  17. package/dist/types/dist-dereferenced/messages/product.d.ts +70 -196
  18. package/dist/types/dist-dereferenced/product-draft.d.ts +6 -0
  19. package/dist/types/dist-dereferenced/product.d.ts +70 -196
  20. package/dist/types/dist-types/category-tree.d.ts +0 -2
  21. package/dist/types/dist-types/messages/product-draft.d.ts +2 -0
  22. package/dist/types/dist-types/messages/product.d.ts +29 -66
  23. package/dist/types/dist-types/product-draft.d.ts +2 -0
  24. package/dist/types/dist-types/product.d.ts +29 -66
  25. package/dist/types/src-public/fredhopper/fredhopper.base.d.ts +59 -0
  26. package/dist/types/src-public/fredhopper/fredhopper.d.ts +21 -0
  27. package/dist/types/src-public/fredhopper/fredhopper.types.d.ts +70 -0
  28. package/dist/types/src-public/fredhopper/index.d.ts +2 -0
  29. package/dist/types/src-public/index.d.ts +1 -1
  30. package/package.json +2 -1
  31. package/dist/cjs/src-public/sitoo.js +0 -349
  32. package/dist/types/src-public/sitoo.d.ts +0 -254
@@ -10,9 +10,6 @@ declare const schema: {
10
10
  readonly slug: {
11
11
  readonly type: readonly ["string"];
12
12
  };
13
- readonly style_slug: {
14
- readonly type: readonly ["string"];
15
- };
16
13
  readonly style_id: {
17
14
  readonly type: readonly ["string"];
18
15
  };
@@ -22,11 +19,8 @@ declare const schema: {
22
19
  readonly style_name: {
23
20
  readonly type: "string";
24
21
  };
25
- readonly product_name: {
26
- readonly type: "string";
27
- };
28
22
  readonly display_name: {
29
- readonly type: readonly ["string", "null"];
23
+ readonly type: readonly ["string"];
30
24
  };
31
25
  readonly buffer_quantity: {
32
26
  readonly type: "integer";
@@ -40,30 +34,6 @@ declare const schema: {
40
34
  readonly type: readonly ["string", "null"];
41
35
  readonly format: "date";
42
36
  };
43
- readonly online_from: {
44
- readonly type: readonly ["string", "null"];
45
- readonly format: "date-time";
46
- };
47
- readonly online_to: {
48
- readonly type: readonly ["string", "null"];
49
- readonly format: "date-time";
50
- };
51
- readonly first_online_at: {
52
- readonly type: readonly ["string", "null"];
53
- readonly format: "date-time";
54
- };
55
- readonly last_online_at: {
56
- readonly type: readonly ["string", "null"];
57
- readonly format: "date-time";
58
- };
59
- readonly first_purchased_at: {
60
- readonly type: "string";
61
- readonly format: "date-time";
62
- };
63
- readonly first_markdown_at: {
64
- readonly type: readonly ["string", "null"];
65
- readonly format: "date-time";
66
- };
67
37
  readonly created_at: {
68
38
  readonly type: "string";
69
39
  readonly format: "date-time";
@@ -75,9 +45,6 @@ declare const schema: {
75
45
  readonly colour_family_name: {
76
46
  readonly type: "string";
77
47
  };
78
- readonly colour_code: {
79
- readonly type: "string";
80
- };
81
48
  readonly colour_name: {
82
49
  readonly type: "string";
83
50
  };
@@ -90,9 +57,6 @@ declare const schema: {
90
57
  readonly sizerange_code: {
91
58
  readonly type: "string";
92
59
  };
93
- readonly sizerange_name: {
94
- readonly type: "string";
95
- };
96
60
  readonly variants: {
97
61
  readonly type: "array";
98
62
  readonly items: {
@@ -104,25 +68,11 @@ declare const schema: {
104
68
  readonly name: {
105
69
  readonly type: readonly ["string"];
106
70
  };
107
- };
108
- readonly required: readonly ["code", "name"];
109
- };
110
- };
111
- readonly images: {
112
- readonly type: "array";
113
- readonly items: {
114
- readonly type: "object";
115
- readonly properties: {
116
- readonly type: {
117
- readonly type: "string";
118
- readonly enum: readonly ["Campaign", "Ecom", "Flatlay", "UGC", "AI"];
119
- };
120
- readonly url: {
121
- readonly type: "string";
122
- readonly format: "uri";
71
+ readonly ean: {
72
+ readonly type: readonly ["string", "null"];
123
73
  };
124
74
  };
125
- readonly required: readonly ["type", "url"];
75
+ readonly required: readonly ["code", "name"];
126
76
  };
127
77
  };
128
78
  readonly vat_rate_uk: {
@@ -147,17 +97,6 @@ declare const schema: {
147
97
  readonly port_of_origin: {
148
98
  readonly type: "string";
149
99
  };
150
- readonly supplier_id: {
151
- readonly type: "string";
152
- readonly pattern: "^SUP\\d{5}$";
153
- };
154
- readonly supplier_name: {
155
- readonly type: "string";
156
- };
157
- readonly factory_id: {
158
- readonly type: "string";
159
- readonly pattern: "^FAC\\d{5}$";
160
- };
161
100
  readonly packing_method: {
162
101
  readonly type: readonly ["string", "null"];
163
102
  readonly enum: readonly ["Standard", "Hanging"];
@@ -174,32 +113,12 @@ declare const schema: {
174
113
  readonly strategy_type: {
175
114
  readonly type: "string";
176
115
  };
177
- readonly product_type: {
178
- readonly type: "string";
179
- };
180
- readonly stock_type: {
181
- readonly type: "string";
182
- };
183
116
  readonly category: {
184
117
  readonly type: "string";
185
118
  };
186
119
  readonly subcategory: {
187
120
  readonly type: "string";
188
121
  };
189
- readonly range: {
190
- readonly type: readonly ["string", "null"];
191
- readonly enum: readonly ["Main Collection", "Seasonal"];
192
- };
193
- readonly channels_availability: {
194
- readonly type: readonly ["array"];
195
- readonly items: {
196
- readonly type: "string";
197
- readonly enum: readonly ["DIRECT-UK", "DIRECT-INT", "DIRECT-US", "JL-STORES", "JL-WEB", "NEXT", "MS", "FENWICK", "MORLEYS"];
198
- };
199
- };
200
- readonly collections: {
201
- readonly type: readonly ["string"];
202
- };
203
122
  readonly seasons: {
204
123
  readonly type: readonly ["array"];
205
124
  readonly items: {
@@ -212,22 +131,60 @@ declare const schema: {
212
131
  readonly type: "string";
213
132
  };
214
133
  };
215
- readonly fashionability: {
216
- readonly type: readonly ["string", "null"];
217
- };
218
134
  };
219
135
  readonly required: readonly [];
220
136
  };
137
+ readonly category_assignments: {
138
+ readonly type: "array";
139
+ readonly items: {
140
+ readonly type: "object";
141
+ readonly properties: {
142
+ readonly display_path: {
143
+ readonly type: "array";
144
+ readonly items: {
145
+ readonly type: "string";
146
+ };
147
+ };
148
+ readonly path: {
149
+ readonly type: "array";
150
+ readonly items: {
151
+ readonly type: "string";
152
+ };
153
+ };
154
+ readonly name: {
155
+ readonly type: "string";
156
+ };
157
+ readonly id: {
158
+ readonly type: "string";
159
+ };
160
+ };
161
+ };
162
+ };
221
163
  readonly attributes: {
222
164
  readonly type: "object";
223
165
  readonly properties: {
166
+ readonly stock_quantity_score: {
167
+ readonly type: "number";
168
+ };
169
+ readonly stock_availability: {
170
+ readonly type: "number";
171
+ };
172
+ readonly measurement_chart: {
173
+ readonly type: readonly ["string", "null"];
174
+ };
175
+ readonly sizeguide_type: {
176
+ readonly type: readonly ["string", "null"];
177
+ };
178
+ readonly brand: {
179
+ readonly type: readonly ["string", "null"];
180
+ };
181
+ readonly shoes_type: {
182
+ readonly type: readonly ["string", "null"];
183
+ };
224
184
  readonly seo_url_name: {
225
185
  readonly type: "string";
226
186
  readonly pattern: "^[a-z-]+$";
227
187
  };
228
- readonly embellishment: {
229
- readonly type: readonly ["string", "null"];
230
- };
231
188
  readonly seo_title: {
232
189
  readonly type: readonly ["string", "null"];
233
190
  };
@@ -240,125 +197,53 @@ declare const schema: {
240
197
  readonly fabric_care: {
241
198
  readonly type: readonly ["string", "null"];
242
199
  };
243
- readonly delivery_returns: {
244
- readonly type: readonly ["string", "null"];
245
- };
246
200
  readonly weight: {
247
201
  readonly type: readonly ["number", "null"];
248
202
  };
249
- readonly weight_statement: {
250
- readonly type: readonly ["string", "null"];
251
- };
252
203
  readonly main_fibre: {
253
204
  readonly type: readonly ["string", "null"];
254
205
  };
255
206
  readonly main_metal: {
256
207
  readonly type: readonly ["string", "null"];
257
208
  };
258
- readonly extra_selling_points: {
259
- readonly type: "array";
260
- readonly items: {
261
- readonly type: "string";
262
- };
263
- };
264
- readonly length_measurement: {
265
- readonly type: readonly ["string", "null"];
266
- };
267
- readonly measurement_table_code: {
268
- readonly type: readonly ["string"];
269
- };
270
- readonly fit: {
271
- readonly type: readonly ["string", "null"];
272
- };
273
- readonly pockets: {
274
- readonly type: readonly ["string", "null"];
275
- };
276
- readonly pleats_gathers: {
277
- readonly type: readonly ["string", "null"];
278
- };
279
- readonly lining: {
280
- readonly type: readonly ["string", "null"];
281
- };
282
- readonly bias_cut: {
283
- readonly type: readonly ["string", "null"];
284
- };
285
209
  readonly designer: {
286
210
  readonly type: readonly ["string", "null"];
287
211
  };
288
- readonly fabric: {
289
- readonly type: readonly ["string", "null"];
290
- };
291
- readonly fabric_composition: {
292
- readonly type: readonly ["string", "null"];
293
- };
294
212
  readonly certificate_code: {
295
213
  readonly type: readonly ["string", "null"];
296
214
  };
297
- readonly shape: {
298
- readonly type: readonly ["string", "null"];
299
- };
300
- readonly development_type: {
301
- readonly type: "string";
302
- };
303
- readonly occasion: {
304
- readonly type: readonly ["string", "null"];
305
- };
306
- readonly design: {
307
- readonly type: readonly ["string", "null"];
308
- };
309
- readonly block: {
310
- readonly type: readonly ["string", "null"];
311
- };
312
215
  readonly pattern_name: {
313
216
  readonly type: readonly ["string", "null"];
314
217
  };
315
218
  readonly fit_type: {
316
219
  readonly type: readonly ["string", "null"];
317
220
  };
318
- readonly neckline: {
319
- readonly type: readonly ["string", "null"];
320
- };
321
- readonly sleeve_length: {
322
- readonly type: readonly ["string", "null"];
323
- readonly nullable: true;
324
- };
325
- readonly sleeve_type: {
221
+ readonly trousers_fit: {
326
222
  readonly type: readonly ["string", "null"];
327
223
  readonly nullable: true;
328
224
  };
329
- readonly heel_height: {
225
+ readonly trousers_length: {
330
226
  readonly type: readonly ["string", "null"];
331
227
  };
332
- readonly heel_shape: {
228
+ readonly dresses_skirts_length: {
333
229
  readonly type: readonly ["string", "null"];
334
230
  };
335
- readonly toe_shape: {
231
+ readonly coats_jackets_type: {
336
232
  readonly type: readonly ["string", "null"];
337
233
  };
338
- readonly trouser_fit: {
234
+ readonly dresses_skirts_type: {
339
235
  readonly type: readonly ["string", "null"];
340
- readonly nullable: true;
341
236
  };
342
- readonly leg_length: {
237
+ readonly bag_type: {
343
238
  readonly type: readonly ["string", "null"];
344
239
  };
345
- readonly handle_straps: {
240
+ readonly product_category: {
346
241
  readonly type: readonly ["string", "null"];
347
242
  };
348
- readonly straps_features: {
243
+ readonly product_type: {
349
244
  readonly type: readonly ["string", "null"];
350
245
  };
351
- readonly fastening: {
352
- readonly anyOf: readonly [{
353
- readonly type: readonly ["array", "null"];
354
- readonly items: {
355
- readonly type: "string";
356
- };
357
- }, {
358
- readonly type: "null";
359
- }];
360
- };
361
- readonly sole_material: {
246
+ readonly metal: {
362
247
  readonly type: readonly ["string", "null"];
363
248
  };
364
249
  readonly care_instructions: {
@@ -370,7 +255,13 @@ declare const schema: {
370
255
  };
371
256
  readonly required: readonly [];
372
257
  };
373
- readonly presentations: {
258
+ readonly markets: {
259
+ readonly type: "array";
260
+ readonly items: {
261
+ readonly type: "string";
262
+ };
263
+ };
264
+ readonly markets_overrides: {
374
265
  readonly type: "object";
375
266
  readonly additionalProperties: false;
376
267
  readonly patternProperties: {
@@ -382,15 +273,12 @@ declare const schema: {
382
273
  readonly type: "string";
383
274
  readonly pattern: "^[a-z]{2}-[A-Z]{2}$";
384
275
  };
385
- readonly presentation_type: {
276
+ readonly market: {
386
277
  readonly type: "string";
387
278
  };
388
279
  readonly slug: {
389
280
  readonly $ref: "#/properties/slug";
390
281
  };
391
- readonly style_slug: {
392
- readonly $ref: "#/properties/style_slug";
393
- };
394
282
  readonly style_name: {
395
283
  readonly $ref: "#/properties/style_name";
396
284
  };
@@ -403,21 +291,6 @@ declare const schema: {
403
291
  readonly available_to_sell_from: {
404
292
  readonly $ref: "#/properties/available_to_sell_from";
405
293
  };
406
- readonly online_from: {
407
- readonly $ref: "#/properties/online_from";
408
- };
409
- readonly online_to: {
410
- readonly $ref: "#/properties/online_to";
411
- };
412
- readonly last_online_at: {
413
- readonly $ref: "#/properties/last_online_at";
414
- };
415
- readonly first_purchased_at: {
416
- readonly $ref: "#/properties/first_purchased_at";
417
- };
418
- readonly first_markdown_at: {
419
- readonly $ref: "#/properties/first_markdown_at";
420
- };
421
294
  readonly colour_family_name: {
422
295
  readonly $ref: "#/properties/colour_family_name";
423
296
  };
@@ -427,8 +300,9 @@ declare const schema: {
427
300
  readonly display_tags: {
428
301
  readonly $ref: "#/properties/display_tags";
429
302
  };
430
- readonly sizerange_name: {
431
- readonly $ref: "#/properties/sizerange_name";
303
+ readonly last_online_at: {
304
+ readonly type: readonly ["string", "null"];
305
+ readonly format: "date-time";
432
306
  };
433
307
  readonly variants: {
434
308
  readonly type: "array";
@@ -449,12 +323,12 @@ declare const schema: {
449
323
  readonly $ref: "#/properties/attributes";
450
324
  };
451
325
  };
452
- readonly required: readonly ["locale", "presentation_type"];
326
+ readonly required: readonly ["locale", "market"];
453
327
  };
454
328
  };
455
329
  };
456
330
  };
457
- readonly required: readonly ["product_id", "style_id", "product_name", "online_from"];
331
+ readonly required: readonly ["product_id", "style_id", "color_id", "display_name"];
458
332
  readonly $id: "https://shushed.example.com/product.schema.json";
459
333
  };
460
334
  export default schema;
@@ -6,8 +6,6 @@ export interface CategoryNode {
6
6
  branchId: string;
7
7
  name: string;
8
8
  path: string[];
9
- parentCategory?: (string | null);
10
- displayPath?: string;
11
9
  pathId: string[];
12
10
  children: CategoryNode[];
13
11
  }
@@ -85,6 +85,7 @@ export interface ProductDraft {
85
85
  strategy_type?: (string | null);
86
86
  pattern_name?: (string | null);
87
87
  neckline?: (string | null);
88
+ neckline_statement?: (string | null);
88
89
  sleeve_length?: (string | null);
89
90
  leg_length?: (string | null);
90
91
  heel_height?: (string | null);
@@ -99,6 +100,7 @@ export interface ProductDraft {
99
100
  weight_statement?: (string | null);
100
101
  weight?: (number | null);
101
102
  extra_selling_points?: string[];
103
+ length_statement?: (string | null);
102
104
  length_measurement?: (string | null);
103
105
  fabric_composition?: (string | null);
104
106
  };
@@ -4,38 +4,23 @@ export type Country = ("AF" | "AX" | "AL" | "DZ" | "AS" | "AD" | "AO" | "AI" | "
4
4
  export interface Product {
5
5
  product_id: string;
6
6
  slug?: string;
7
- style_slug?: string;
8
7
  style_id: string;
9
8
  colour_id?: string;
10
9
  style_name?: string;
11
- product_name: string;
12
- display_name?: (string | null);
10
+ display_name: string;
13
11
  buffer_quantity?: number;
14
12
  display_type?: ("Out-of-stock" | "Permanently-unavailable");
15
13
  available_to_sell_from?: (string | null);
16
- online_from: (string | null);
17
- online_to?: (string | null);
18
- first_online_at?: (string | null);
19
- last_online_at?: (string | null);
20
- first_purchased_at?: string;
21
- first_markdown_at?: (string | null);
22
14
  created_at?: string;
23
15
  last_modified_at?: string;
24
16
  colour_family_name?: string;
25
- colour_code?: string;
26
17
  colour_name?: string;
27
18
  display_tags?: DisplayTags;
28
19
  sizerange_code?: string;
29
- sizerange_name?: string;
30
20
  variants?: {
31
21
  code: string;
32
22
  name: string;
33
- [k: string]: unknown;
34
- }[];
35
- images?: {
36
- type: ("Campaign" | "Ecom" | "Flatlay" | "UGC" | "AI");
37
- url: string;
38
- description?: string;
23
+ ean?: (string | null);
39
24
  [k: string]: unknown;
40
25
  }[];
41
26
  vat_rate_uk?: (number | null);
@@ -44,47 +29,40 @@ export interface Product {
44
29
  commodity_code_ref?: string;
45
30
  country_of_origin?: Country;
46
31
  port_of_origin?: string;
47
- supplier_id?: string;
48
- supplier_name?: string;
49
- factory_id?: string;
50
32
  packing_method?: (("Standard" | "Hanging") | null);
51
33
  is_bought_in_product?: boolean;
52
34
  [k: string]: unknown;
53
35
  };
54
36
  merch?: {
55
37
  strategy_type?: string;
56
- product_type?: string;
57
- stock_type?: string;
58
38
  category?: string;
59
39
  subcategory?: string;
60
- range?: (("Main Collection" | "Seasonal") | null);
61
- channels_availability?: ("DIRECT-UK" | "DIRECT-INT" | "DIRECT-US" | "JL-STORES" | "JL-WEB" | "NEXT" | "MS" | "FENWICK" | "MORLEYS")[];
62
- collections?: string;
63
40
  seasons?: string[];
64
41
  drops?: string[];
65
- fashionability?: (string | null);
66
42
  [k: string]: unknown;
67
43
  };
44
+ category_assignments?: {
45
+ display_path?: string[];
46
+ path?: string[];
47
+ name?: string;
48
+ id?: string;
49
+ [k: string]: unknown;
50
+ }[];
68
51
  attributes?: Attributes;
69
- presentations?: {
52
+ markets?: string[];
53
+ markets_overrides?: {
70
54
  [k: string]: {
71
55
  locale: string;
72
- presentation_type: string;
56
+ market: string;
73
57
  slug?: string;
74
- style_slug?: string;
75
58
  style_name?: string;
76
- display_name?: (string | null);
59
+ display_name?: string;
77
60
  display_type?: ("Out-of-stock" | "Permanently-unavailable");
78
61
  available_to_sell_from?: (string | null);
79
- online_from?: (string | null);
80
- online_to?: (string | null);
81
- last_online_at?: (string | null);
82
- first_purchased_at?: string;
83
- first_markdown_at?: (string | null);
84
62
  colour_family_name?: string;
85
63
  colour_name?: string;
86
64
  display_tags?: DisplayTags;
87
- sizerange_name?: string;
65
+ last_online_at?: (string | null);
88
66
  variants?: {
89
67
  code: string;
90
68
  name: string;
@@ -95,49 +73,34 @@ export interface Product {
95
73
  };
96
74
  }
97
75
  export interface Attributes {
76
+ stock_quantity_score?: number;
77
+ stock_availability?: number;
78
+ measurement_chart?: (string | null);
79
+ sizeguide_type?: (string | null);
80
+ brand?: (string | null);
81
+ shoes_type?: (string | null);
98
82
  seo_url_name?: string;
99
- embellishment?: (string | null);
100
83
  seo_title?: (string | null);
101
84
  seo_description?: (string | null);
102
85
  fit_description?: (string | null);
103
86
  description?: (string | null);
104
87
  fabric_care?: (string | null);
105
- delivery_returns?: (string | null);
106
88
  weight?: (number | null);
107
- weight_statement?: (string | null);
108
89
  main_fibre?: (string | null);
109
90
  main_metal?: (string | null);
110
- extra_selling_points?: string[];
111
- length_measurement?: (string | null);
112
- measurement_table_code?: string;
113
- fit?: (string | null);
114
- pockets?: (string | null);
115
- pleats_gathers?: (string | null);
116
- lining?: (string | null);
117
- bias_cut?: (string | null);
118
91
  designer?: (string | null);
119
- fabric?: (string | null);
120
- fabric_composition?: (string | null);
121
92
  certificate_code?: (string | null);
122
- shape?: (string | null);
123
- development_type?: string;
124
- occasion?: (string | null);
125
- design?: (string | null);
126
- block?: (string | null);
127
93
  pattern_name?: (string | null);
128
94
  fit_type?: (string | null);
129
- neckline?: (string | null);
130
- sleeve_length?: (string | null);
131
- sleeve_type?: (string | null);
132
- heel_height?: (string | null);
133
- heel_shape?: (string | null);
134
- toe_shape?: (string | null);
135
- trouser_fit?: (string | null);
136
- leg_length?: (string | null);
137
- handle_straps?: (string | null);
138
- straps_features?: (string | null);
139
- fastening?: ((string[] | null) | null);
140
- sole_material?: (string | null);
95
+ trousers_fit?: (string | null);
96
+ trousers_length?: (string | null);
97
+ dresses_skirts_length?: (string | null);
98
+ coats_jackets_type?: (string | null);
99
+ dresses_skirts_type?: (string | null);
100
+ bag_type?: (string | null);
101
+ product_category?: (string | null);
102
+ product_type?: (string | null);
103
+ metal?: (string | null);
141
104
  care_instructions?: string[];
142
105
  [k: string]: unknown;
143
106
  }
@@ -84,6 +84,7 @@ export interface __MainSchema {
84
84
  strategy_type?: (string | null);
85
85
  pattern_name?: (string | null);
86
86
  neckline?: (string | null);
87
+ neckline_statement?: (string | null);
87
88
  sleeve_length?: (string | null);
88
89
  leg_length?: (string | null);
89
90
  heel_height?: (string | null);
@@ -98,6 +99,7 @@ export interface __MainSchema {
98
99
  weight_statement?: (string | null);
99
100
  weight?: (number | null);
100
101
  extra_selling_points?: string[];
102
+ length_statement?: (string | null);
101
103
  length_measurement?: (string | null);
102
104
  fabric_composition?: (string | null);
103
105
  };