@shushed/helpers 0.0.245 → 0.0.247-airtable-helper-views-20260130114104

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.
@@ -14,6 +14,9 @@ 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
+ };
17
20
  readonly style_id: {
18
21
  readonly type: readonly ["string"];
19
22
  };
@@ -23,8 +26,11 @@ declare const schema: {
23
26
  readonly style_name: {
24
27
  readonly type: "string";
25
28
  };
29
+ readonly product_name: {
30
+ readonly type: "string";
31
+ };
26
32
  readonly display_name: {
27
- readonly type: readonly ["string"];
33
+ readonly type: readonly ["string", "null"];
28
34
  };
29
35
  readonly buffer_quantity: {
30
36
  readonly type: "integer";
@@ -38,6 +44,30 @@ declare const schema: {
38
44
  readonly type: readonly ["string", "null"];
39
45
  readonly format: "date";
40
46
  };
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
+ };
41
71
  readonly created_at: {
42
72
  readonly type: "string";
43
73
  readonly format: "date-time";
@@ -49,6 +79,9 @@ declare const schema: {
49
79
  readonly colour_family_name: {
50
80
  readonly type: "string";
51
81
  };
82
+ readonly colour_code: {
83
+ readonly type: "string";
84
+ };
52
85
  readonly colour_name: {
53
86
  readonly type: "string";
54
87
  };
@@ -61,6 +94,9 @@ declare const schema: {
61
94
  readonly sizerange_code: {
62
95
  readonly type: "string";
63
96
  };
97
+ readonly sizerange_name: {
98
+ readonly type: "string";
99
+ };
64
100
  readonly variants: {
65
101
  readonly type: "array";
66
102
  readonly items: {
@@ -72,13 +108,27 @@ declare const schema: {
72
108
  readonly name: {
73
109
  readonly type: readonly ["string"];
74
110
  };
75
- readonly ean: {
76
- readonly type: readonly ["string", "null"];
77
- };
78
111
  };
79
112
  readonly required: readonly ["code", "name"];
80
113
  };
81
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";
127
+ };
128
+ };
129
+ readonly required: readonly ["type", "url"];
130
+ };
131
+ };
82
132
  readonly vat_rate_uk: {
83
133
  readonly type: readonly ["number", "null"];
84
134
  readonly minimum: 0;
@@ -101,6 +151,17 @@ declare const schema: {
101
151
  readonly port_of_origin: {
102
152
  readonly type: "string";
103
153
  };
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
+ };
104
165
  readonly packing_method: {
105
166
  readonly type: readonly ["string", "null"];
106
167
  readonly enum: readonly ["Standard", "Hanging"];
@@ -117,78 +178,60 @@ declare const schema: {
117
178
  readonly strategy_type: {
118
179
  readonly type: "string";
119
180
  };
181
+ readonly product_type: {
182
+ readonly type: "string";
183
+ };
184
+ readonly stock_type: {
185
+ readonly type: "string";
186
+ };
120
187
  readonly category: {
121
188
  readonly type: "string";
122
189
  };
123
190
  readonly subcategory: {
124
191
  readonly type: "string";
125
192
  };
126
- readonly seasons: {
193
+ readonly range: {
194
+ readonly type: readonly ["string", "null"];
195
+ readonly enum: readonly ["Main Collection", "Seasonal"];
196
+ };
197
+ readonly channels_availability: {
127
198
  readonly type: readonly ["array"];
128
199
  readonly items: {
129
200
  readonly type: "string";
201
+ readonly enum: readonly ["DIRECT-UK", "DIRECT-INT", "DIRECT-US", "JL-STORES", "JL-WEB", "NEXT", "MS", "FENWICK", "MORLEYS"];
130
202
  };
131
203
  };
132
- readonly drops: {
204
+ readonly collections: {
205
+ readonly type: readonly ["string"];
206
+ };
207
+ readonly seasons: {
133
208
  readonly type: readonly ["array"];
134
209
  readonly items: {
135
210
  readonly type: "string";
136
211
  };
137
212
  };
138
- };
139
- readonly required: readonly [];
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: {
213
+ readonly drops: {
214
+ readonly type: readonly ["array"];
215
+ readonly items: {
162
216
  readonly type: "string";
163
217
  };
164
218
  };
219
+ readonly fashionability: {
220
+ readonly type: readonly ["string", "null"];
221
+ };
165
222
  };
223
+ readonly required: readonly [];
166
224
  };
167
225
  readonly attributes: {
168
226
  readonly type: "object";
169
227
  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
- };
188
228
  readonly seo_url_name: {
189
229
  readonly type: "string";
190
230
  readonly pattern: "^[a-z-]+$";
191
231
  };
232
+ readonly embellishment: {
233
+ readonly type: readonly ["string", "null"];
234
+ };
192
235
  readonly seo_title: {
193
236
  readonly type: readonly ["string", "null"];
194
237
  };
@@ -201,50 +244,125 @@ declare const schema: {
201
244
  readonly fabric_care: {
202
245
  readonly type: readonly ["string", "null"];
203
246
  };
247
+ readonly delivery_returns: {
248
+ readonly type: readonly ["string", "null"];
249
+ };
204
250
  readonly weight: {
205
251
  readonly type: readonly ["number", "null"];
206
252
  };
253
+ readonly weight_statement: {
254
+ readonly type: readonly ["string", "null"];
255
+ };
207
256
  readonly main_fibre: {
208
257
  readonly type: readonly ["string", "null"];
209
258
  };
210
259
  readonly main_metal: {
211
260
  readonly type: readonly ["string", "null"];
212
261
  };
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
+ };
213
289
  readonly designer: {
214
290
  readonly type: readonly ["string", "null"];
215
291
  };
292
+ readonly fabric: {
293
+ readonly type: readonly ["string", "null"];
294
+ };
295
+ readonly fabric_composition: {
296
+ readonly type: readonly ["string", "null"];
297
+ };
216
298
  readonly certificate_code: {
217
299
  readonly type: readonly ["string", "null"];
218
300
  };
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
+ };
219
316
  readonly pattern_name: {
220
317
  readonly type: readonly ["string", "null"];
221
318
  };
222
319
  readonly fit_type: {
223
320
  readonly type: readonly ["string", "null"];
224
321
  };
225
- readonly trousers_fit: {
322
+ readonly neckline: {
323
+ readonly type: readonly ["string", "null"];
324
+ };
325
+ readonly sleeve_length: {
226
326
  readonly type: readonly ["string", "null"];
227
327
  readonly nullable: true;
228
328
  };
229
- readonly trousers_length: {
329
+ readonly sleeve_type: {
230
330
  readonly type: readonly ["string", "null"];
331
+ readonly nullable: true;
231
332
  };
232
- readonly dresses_skirts_length: {
333
+ readonly heel_height: {
233
334
  readonly type: readonly ["string", "null"];
234
335
  };
235
- readonly coats_jackets_type: {
336
+ readonly heel_shape: {
236
337
  readonly type: readonly ["string", "null"];
237
338
  };
238
- readonly dresses_skirts_type: {
339
+ readonly toe_shape: {
239
340
  readonly type: readonly ["string", "null"];
240
341
  };
241
- readonly bag_type: {
342
+ readonly trouser_fit: {
242
343
  readonly type: readonly ["string", "null"];
344
+ readonly nullable: true;
243
345
  };
244
- readonly product_category: {
346
+ readonly leg_length: {
245
347
  readonly type: readonly ["string", "null"];
246
348
  };
247
- readonly product_type: {
349
+ readonly handle_straps: {
350
+ readonly type: readonly ["string", "null"];
351
+ };
352
+ readonly straps_features: {
353
+ readonly type: readonly ["string", "null"];
354
+ };
355
+ readonly fastening: {
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: {
248
366
  readonly type: readonly ["string", "null"];
249
367
  };
250
368
  readonly care_instructions: {
@@ -256,13 +374,7 @@ declare const schema: {
256
374
  };
257
375
  readonly required: readonly [];
258
376
  };
259
- readonly markets: {
260
- readonly type: "array";
261
- readonly items: {
262
- readonly type: "string";
263
- };
264
- };
265
- readonly markets_overrides: {
377
+ readonly presentations: {
266
378
  readonly type: "object";
267
379
  readonly additionalProperties: false;
268
380
  readonly patternProperties: {
@@ -274,17 +386,20 @@ declare const schema: {
274
386
  readonly type: "string";
275
387
  readonly pattern: "^[a-z]{2}-[A-Z]{2}$";
276
388
  };
277
- readonly market: {
389
+ readonly presentation_type: {
278
390
  readonly type: "string";
279
391
  };
280
392
  readonly slug: {
281
393
  readonly type: readonly ["string"];
282
394
  };
395
+ readonly style_slug: {
396
+ readonly type: readonly ["string"];
397
+ };
283
398
  readonly style_name: {
284
399
  readonly type: "string";
285
400
  };
286
401
  readonly display_name: {
287
- readonly type: readonly ["string"];
402
+ readonly type: readonly ["string", "null"];
288
403
  };
289
404
  readonly display_type: {
290
405
  readonly type: "string";
@@ -294,6 +409,26 @@ declare const schema: {
294
409
  readonly type: readonly ["string", "null"];
295
410
  readonly format: "date";
296
411
  };
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
+ };
297
432
  readonly colour_family_name: {
298
433
  readonly type: "string";
299
434
  };
@@ -306,9 +441,8 @@ declare const schema: {
306
441
  readonly type: "string";
307
442
  };
308
443
  };
309
- readonly last_online_at: {
310
- readonly type: readonly ["string", "null"];
311
- readonly format: "date-time";
444
+ readonly sizerange_name: {
445
+ readonly type: "string";
312
446
  };
313
447
  readonly variants: {
314
448
  readonly type: "array";
@@ -328,28 +462,13 @@ declare const schema: {
328
462
  readonly attributes: {
329
463
  readonly type: "object";
330
464
  readonly properties: {
331
- readonly stock_quantity_score: {
332
- readonly type: "number";
333
- };
334
- readonly stock_availability: {
335
- readonly type: "number";
336
- };
337
- readonly measurement_chart: {
338
- readonly type: readonly ["string", "null"];
339
- };
340
- readonly sizeguide_type: {
341
- readonly type: readonly ["string", "null"];
342
- };
343
- readonly brand: {
344
- readonly type: readonly ["string", "null"];
345
- };
346
- readonly shoes_type: {
347
- readonly type: readonly ["string", "null"];
348
- };
349
465
  readonly seo_url_name: {
350
466
  readonly type: "string";
351
467
  readonly pattern: "^[a-z-]+$";
352
468
  };
469
+ readonly embellishment: {
470
+ readonly type: readonly ["string", "null"];
471
+ };
353
472
  readonly seo_title: {
354
473
  readonly type: readonly ["string", "null"];
355
474
  };
@@ -362,50 +481,125 @@ declare const schema: {
362
481
  readonly fabric_care: {
363
482
  readonly type: readonly ["string", "null"];
364
483
  };
484
+ readonly delivery_returns: {
485
+ readonly type: readonly ["string", "null"];
486
+ };
365
487
  readonly weight: {
366
488
  readonly type: readonly ["number", "null"];
367
489
  };
490
+ readonly weight_statement: {
491
+ readonly type: readonly ["string", "null"];
492
+ };
368
493
  readonly main_fibre: {
369
494
  readonly type: readonly ["string", "null"];
370
495
  };
371
496
  readonly main_metal: {
372
497
  readonly type: readonly ["string", "null"];
373
498
  };
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
+ };
374
526
  readonly designer: {
375
527
  readonly type: readonly ["string", "null"];
376
528
  };
529
+ readonly fabric: {
530
+ readonly type: readonly ["string", "null"];
531
+ };
532
+ readonly fabric_composition: {
533
+ readonly type: readonly ["string", "null"];
534
+ };
377
535
  readonly certificate_code: {
378
536
  readonly type: readonly ["string", "null"];
379
537
  };
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
+ };
380
553
  readonly pattern_name: {
381
554
  readonly type: readonly ["string", "null"];
382
555
  };
383
556
  readonly fit_type: {
384
557
  readonly type: readonly ["string", "null"];
385
558
  };
386
- readonly trousers_fit: {
559
+ readonly neckline: {
560
+ readonly type: readonly ["string", "null"];
561
+ };
562
+ readonly sleeve_length: {
387
563
  readonly type: readonly ["string", "null"];
388
564
  readonly nullable: true;
389
565
  };
390
- readonly trousers_length: {
566
+ readonly sleeve_type: {
567
+ readonly type: readonly ["string", "null"];
568
+ readonly nullable: true;
569
+ };
570
+ readonly heel_height: {
391
571
  readonly type: readonly ["string", "null"];
392
572
  };
393
- readonly dresses_skirts_length: {
573
+ readonly heel_shape: {
394
574
  readonly type: readonly ["string", "null"];
395
575
  };
396
- readonly coats_jackets_type: {
576
+ readonly toe_shape: {
397
577
  readonly type: readonly ["string", "null"];
398
578
  };
399
- readonly dresses_skirts_type: {
579
+ readonly trouser_fit: {
400
580
  readonly type: readonly ["string", "null"];
581
+ readonly nullable: true;
401
582
  };
402
- readonly bag_type: {
583
+ readonly leg_length: {
403
584
  readonly type: readonly ["string", "null"];
404
585
  };
405
- readonly product_category: {
586
+ readonly handle_straps: {
406
587
  readonly type: readonly ["string", "null"];
407
588
  };
408
- readonly product_type: {
589
+ readonly straps_features: {
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: {
409
603
  readonly type: readonly ["string", "null"];
410
604
  };
411
605
  readonly care_instructions: {
@@ -418,12 +612,12 @@ declare const schema: {
418
612
  readonly required: readonly [];
419
613
  };
420
614
  };
421
- readonly required: readonly ["locale", "market"];
615
+ readonly required: readonly ["locale", "presentation_type"];
422
616
  };
423
617
  };
424
618
  };
425
619
  };
426
- readonly required: readonly ["product_id", "style_id", "color_id", "product_name"];
620
+ readonly required: readonly ["product_id", "style_id", "product_name", "online_from"];
427
621
  }, {
428
622
  readonly type: "object";
429
623
  readonly additionalProperties: false;
@@ -321,9 +321,6 @@ 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
- };
327
324
  readonly sleeve_length: {
328
325
  readonly type: readonly ["string", "null"];
329
326
  };
@@ -377,9 +374,6 @@ declare const schema: {
377
374
  readonly type: "string";
378
375
  };
379
376
  };
380
- readonly length_statement: {
381
- readonly type: readonly ["string", "null"];
382
- };
383
377
  readonly length_measurement: {
384
378
  readonly type: readonly ["string", "null"];
385
379
  };