@shushed/helpers 0.0.246 → 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,53 +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: {
326
+ readonly type: readonly ["string", "null"];
327
+ readonly nullable: true;
328
+ };
329
+ readonly sleeve_type: {
226
330
  readonly type: readonly ["string", "null"];
227
331
  readonly nullable: true;
228
332
  };
229
- readonly trousers_length: {
333
+ readonly heel_height: {
230
334
  readonly type: readonly ["string", "null"];
231
335
  };
232
- readonly dresses_skirts_length: {
336
+ readonly heel_shape: {
233
337
  readonly type: readonly ["string", "null"];
234
338
  };
235
- readonly coats_jackets_type: {
339
+ readonly toe_shape: {
236
340
  readonly type: readonly ["string", "null"];
237
341
  };
238
- readonly dresses_skirts_type: {
342
+ readonly trouser_fit: {
239
343
  readonly type: readonly ["string", "null"];
344
+ readonly nullable: true;
240
345
  };
241
- readonly bag_type: {
346
+ readonly leg_length: {
242
347
  readonly type: readonly ["string", "null"];
243
348
  };
244
- readonly product_category: {
349
+ readonly handle_straps: {
245
350
  readonly type: readonly ["string", "null"];
246
351
  };
247
- readonly product_type: {
352
+ readonly straps_features: {
248
353
  readonly type: readonly ["string", "null"];
249
354
  };
250
- readonly metal: {
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: {
251
366
  readonly type: readonly ["string", "null"];
252
367
  };
253
368
  readonly care_instructions: {
@@ -259,13 +374,7 @@ declare const schema: {
259
374
  };
260
375
  readonly required: readonly [];
261
376
  };
262
- readonly markets: {
263
- readonly type: "array";
264
- readonly items: {
265
- readonly type: "string";
266
- };
267
- };
268
- readonly markets_overrides: {
377
+ readonly presentations: {
269
378
  readonly type: "object";
270
379
  readonly additionalProperties: false;
271
380
  readonly patternProperties: {
@@ -277,17 +386,20 @@ declare const schema: {
277
386
  readonly type: "string";
278
387
  readonly pattern: "^[a-z]{2}-[A-Z]{2}$";
279
388
  };
280
- readonly market: {
389
+ readonly presentation_type: {
281
390
  readonly type: "string";
282
391
  };
283
392
  readonly slug: {
284
393
  readonly type: readonly ["string"];
285
394
  };
395
+ readonly style_slug: {
396
+ readonly type: readonly ["string"];
397
+ };
286
398
  readonly style_name: {
287
399
  readonly type: "string";
288
400
  };
289
401
  readonly display_name: {
290
- readonly type: readonly ["string"];
402
+ readonly type: readonly ["string", "null"];
291
403
  };
292
404
  readonly display_type: {
293
405
  readonly type: "string";
@@ -297,6 +409,26 @@ declare const schema: {
297
409
  readonly type: readonly ["string", "null"];
298
410
  readonly format: "date";
299
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
+ };
300
432
  readonly colour_family_name: {
301
433
  readonly type: "string";
302
434
  };
@@ -309,9 +441,8 @@ declare const schema: {
309
441
  readonly type: "string";
310
442
  };
311
443
  };
312
- readonly last_online_at: {
313
- readonly type: readonly ["string", "null"];
314
- readonly format: "date-time";
444
+ readonly sizerange_name: {
445
+ readonly type: "string";
315
446
  };
316
447
  readonly variants: {
317
448
  readonly type: "array";
@@ -331,28 +462,13 @@ declare const schema: {
331
462
  readonly attributes: {
332
463
  readonly type: "object";
333
464
  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
- };
352
465
  readonly seo_url_name: {
353
466
  readonly type: "string";
354
467
  readonly pattern: "^[a-z-]+$";
355
468
  };
469
+ readonly embellishment: {
470
+ readonly type: readonly ["string", "null"];
471
+ };
356
472
  readonly seo_title: {
357
473
  readonly type: readonly ["string", "null"];
358
474
  };
@@ -365,53 +481,125 @@ declare const schema: {
365
481
  readonly fabric_care: {
366
482
  readonly type: readonly ["string", "null"];
367
483
  };
484
+ readonly delivery_returns: {
485
+ readonly type: readonly ["string", "null"];
486
+ };
368
487
  readonly weight: {
369
488
  readonly type: readonly ["number", "null"];
370
489
  };
490
+ readonly weight_statement: {
491
+ readonly type: readonly ["string", "null"];
492
+ };
371
493
  readonly main_fibre: {
372
494
  readonly type: readonly ["string", "null"];
373
495
  };
374
496
  readonly main_metal: {
375
497
  readonly type: readonly ["string", "null"];
376
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
+ };
377
526
  readonly designer: {
378
527
  readonly type: readonly ["string", "null"];
379
528
  };
529
+ readonly fabric: {
530
+ readonly type: readonly ["string", "null"];
531
+ };
532
+ readonly fabric_composition: {
533
+ readonly type: readonly ["string", "null"];
534
+ };
380
535
  readonly certificate_code: {
381
536
  readonly type: readonly ["string", "null"];
382
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
+ };
383
553
  readonly pattern_name: {
384
554
  readonly type: readonly ["string", "null"];
385
555
  };
386
556
  readonly fit_type: {
387
557
  readonly type: readonly ["string", "null"];
388
558
  };
389
- readonly trousers_fit: {
559
+ readonly neckline: {
560
+ readonly type: readonly ["string", "null"];
561
+ };
562
+ readonly sleeve_length: {
390
563
  readonly type: readonly ["string", "null"];
391
564
  readonly nullable: true;
392
565
  };
393
- readonly trousers_length: {
566
+ readonly sleeve_type: {
394
567
  readonly type: readonly ["string", "null"];
568
+ readonly nullable: true;
395
569
  };
396
- readonly dresses_skirts_length: {
570
+ readonly heel_height: {
397
571
  readonly type: readonly ["string", "null"];
398
572
  };
399
- readonly coats_jackets_type: {
573
+ readonly heel_shape: {
400
574
  readonly type: readonly ["string", "null"];
401
575
  };
402
- readonly dresses_skirts_type: {
576
+ readonly toe_shape: {
403
577
  readonly type: readonly ["string", "null"];
404
578
  };
405
- readonly bag_type: {
579
+ readonly trouser_fit: {
406
580
  readonly type: readonly ["string", "null"];
581
+ readonly nullable: true;
407
582
  };
408
- readonly product_category: {
583
+ readonly leg_length: {
409
584
  readonly type: readonly ["string", "null"];
410
585
  };
411
- readonly product_type: {
586
+ readonly handle_straps: {
412
587
  readonly type: readonly ["string", "null"];
413
588
  };
414
- readonly metal: {
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: {
415
603
  readonly type: readonly ["string", "null"];
416
604
  };
417
605
  readonly care_instructions: {
@@ -424,12 +612,12 @@ declare const schema: {
424
612
  readonly required: readonly [];
425
613
  };
426
614
  };
427
- readonly required: readonly ["locale", "market"];
615
+ readonly required: readonly ["locale", "presentation_type"];
428
616
  };
429
617
  };
430
618
  };
431
619
  };
432
- readonly required: readonly ["product_id", "style_id", "color_id", "display_name"];
620
+ readonly required: readonly ["product_id", "style_id", "product_name", "online_from"];
433
621
  }, {
434
622
  readonly type: "object";
435
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
  };