@compassdigital/sdk.typescript 4.4.1 → 4.6.0
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/lib/base.d.ts.map +1 -1
- package/lib/base.js +2 -1
- package/lib/base.js.map +1 -1
- package/lib/index.d.ts +8 -1
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +9 -0
- package/lib/index.js.map +1 -1
- package/lib/interface/ai.d.ts +3 -3
- package/lib/interface/ai.d.ts.map +1 -1
- package/lib/interface/announcement.d.ts +2 -2
- package/lib/interface/announcement.d.ts.map +1 -1
- package/lib/interface/calendar.d.ts +1 -1
- package/lib/interface/calendar.d.ts.map +1 -1
- package/lib/interface/centricos.d.ts +3 -3
- package/lib/interface/centricos.d.ts.map +1 -1
- package/lib/interface/compassconnect.d.ts +1 -1
- package/lib/interface/compassconnect.d.ts.map +1 -1
- package/lib/interface/config.d.ts +75 -15
- package/lib/interface/config.d.ts.map +1 -1
- package/lib/interface/datalake.d.ts +2 -2
- package/lib/interface/datalake.d.ts.map +1 -1
- package/lib/interface/delivery.d.ts +3 -3
- package/lib/interface/delivery.d.ts.map +1 -1
- package/lib/interface/email.d.ts +2 -2
- package/lib/interface/email.d.ts.map +1 -1
- package/lib/interface/file.d.ts +1 -1
- package/lib/interface/file.d.ts.map +1 -1
- package/lib/interface/frictionless.d.ts +1 -1
- package/lib/interface/frictionless.d.ts.map +1 -1
- package/lib/interface/kds.d.ts +1 -1
- package/lib/interface/kds.d.ts.map +1 -1
- package/lib/interface/location.d.ts +12 -21
- package/lib/interface/location.d.ts.map +1 -1
- package/lib/interface/location.js +0 -12
- package/lib/interface/location.js.map +1 -1
- package/lib/interface/mealplan.d.ts +1 -1
- package/lib/interface/mealplan.d.ts.map +1 -1
- package/lib/interface/menu.d.ts +241 -246
- package/lib/interface/menu.d.ts.map +1 -1
- package/lib/interface/menu.js +0 -6
- package/lib/interface/menu.js.map +1 -1
- package/lib/interface/notification.d.ts +2 -2
- package/lib/interface/notification.d.ts.map +1 -1
- package/lib/interface/order.d.ts +3 -3
- package/lib/interface/order.d.ts.map +1 -1
- package/lib/interface/partner.d.ts +17 -22
- package/lib/interface/partner.d.ts.map +1 -1
- package/lib/interface/partner.js +0 -6
- package/lib/interface/partner.js.map +1 -1
- package/lib/interface/payment.d.ts +12 -4
- package/lib/interface/payment.d.ts.map +1 -1
- package/lib/interface/promo.d.ts +5 -12
- package/lib/interface/promo.d.ts.map +1 -1
- package/lib/interface/promo.js +0 -8
- package/lib/interface/promo.js.map +1 -1
- package/lib/interface/report.d.ts +1 -1
- package/lib/interface/report.d.ts.map +1 -1
- package/lib/interface/shoppingcart.d.ts +8 -12
- package/lib/interface/shoppingcart.d.ts.map +1 -1
- package/lib/interface/shoppingcart.js +0 -5
- package/lib/interface/shoppingcart.js.map +1 -1
- package/lib/interface/task.d.ts +5 -5
- package/lib/interface/task.d.ts.map +1 -1
- package/lib/interface/user.d.ts +4 -4
- package/lib/interface/user.d.ts.map +1 -1
- package/lib/interface/vendor.d.ts +1 -1
- package/lib/interface/vendor.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/base.ts +2 -1
- package/src/index.ts +22 -0
- package/src/interface/ai.ts +3 -3
- package/src/interface/announcement.ts +2 -2
- package/src/interface/calendar.ts +1 -1
- package/src/interface/centricos.ts +3 -3
- package/src/interface/compassconnect.ts +1 -1
- package/src/interface/config.ts +81 -15
- package/src/interface/datalake.ts +2 -2
- package/src/interface/delivery.ts +3 -3
- package/src/interface/email.ts +2 -2
- package/src/interface/file.ts +1 -1
- package/src/interface/frictionless.ts +1 -1
- package/src/interface/kds.ts +1 -1
- package/src/interface/location.ts +12 -20
- package/src/interface/mealplan.ts +1 -1
- package/src/interface/menu.ts +241 -245
- package/src/interface/notification.ts +2 -2
- package/src/interface/order.ts +3 -3
- package/src/interface/partner.ts +17 -21
- package/src/interface/payment.ts +17 -4
- package/src/interface/promo.ts +5 -11
- package/src/interface/report.ts +1 -1
- package/src/interface/shoppingcart.ts +8 -11
- package/src/interface/task.ts +5 -5
- package/src/interface/user.ts +4 -4
- package/src/interface/vendor.ts +1 -1
- package/test/client.test.ts +2 -0
package/lib/interface/menu.d.ts
CHANGED
|
@@ -54,7 +54,7 @@ export interface Item {
|
|
|
54
54
|
currency?: string;
|
|
55
55
|
};
|
|
56
56
|
unit?: number;
|
|
57
|
-
ingredients?: any[];
|
|
57
|
+
ingredients?: Record<string, any>[];
|
|
58
58
|
amount_off_exclusions?: AmountOffExclusionTypes[];
|
|
59
59
|
nutrition?: {
|
|
60
60
|
kcal?: number;
|
|
@@ -245,13 +245,9 @@ export interface Success {
|
|
|
245
245
|
export interface Error {
|
|
246
246
|
error?: string;
|
|
247
247
|
code?: number;
|
|
248
|
-
data?: any
|
|
249
|
-
}
|
|
250
|
-
declare enum AmountOffExclusionTypes {
|
|
251
|
-
LOYALTY = "loyalty",
|
|
252
|
-
DISCOUNT = "discount",
|
|
253
|
-
PROMO = "promo"
|
|
248
|
+
data?: Record<string, any>;
|
|
254
249
|
}
|
|
250
|
+
export type AmountOffExclusionTypes = "loyalty" | "discount" | "promo";
|
|
255
251
|
export interface Menus {
|
|
256
252
|
menus?: Menu[];
|
|
257
253
|
}
|
|
@@ -274,7 +270,7 @@ export interface GlobalMenuGroupDTO {
|
|
|
274
270
|
is_active?: boolean;
|
|
275
271
|
posid_segment?: string;
|
|
276
272
|
id?: string;
|
|
277
|
-
permissions?: any
|
|
273
|
+
permissions?: Record<string, any>;
|
|
278
274
|
[index: string]: any;
|
|
279
275
|
}
|
|
280
276
|
export interface DraftBrandDTO {
|
|
@@ -287,7 +283,7 @@ export interface DraftBrandDTO {
|
|
|
287
283
|
local_menu_group_id?: string;
|
|
288
284
|
global_menu_group_id?: string;
|
|
289
285
|
posid_segment?: string;
|
|
290
|
-
permissions?: any
|
|
286
|
+
permissions?: Record<string, any>;
|
|
291
287
|
[index: string]: any;
|
|
292
288
|
}
|
|
293
289
|
export interface PublishedBrandDTO {
|
|
@@ -300,7 +296,7 @@ export interface PublishedBrandDTO {
|
|
|
300
296
|
local_menu_group_id?: string;
|
|
301
297
|
global_menu_group_id?: string;
|
|
302
298
|
posid_segment?: string;
|
|
303
|
-
permissions?: any
|
|
299
|
+
permissions?: Record<string, any>;
|
|
304
300
|
[index: string]: any;
|
|
305
301
|
}
|
|
306
302
|
export interface VendorMetadataDTO {
|
|
@@ -319,7 +315,7 @@ export interface VendorMetadataDTO {
|
|
|
319
315
|
modifier_group_id?: string;
|
|
320
316
|
modifier_group_to_modifier_relationship_id?: string;
|
|
321
317
|
modifier_id?: string;
|
|
322
|
-
permissions?: any
|
|
318
|
+
permissions?: Record<string, any>;
|
|
323
319
|
[index: string]: any;
|
|
324
320
|
}
|
|
325
321
|
export interface InvalidInputErrorDTO {
|
|
@@ -395,7 +391,7 @@ export interface LocalMenuGroupDTO {
|
|
|
395
391
|
deleted_at?: string;
|
|
396
392
|
version?: number;
|
|
397
393
|
vendor_metadata?: VendorMetadataDTO[];
|
|
398
|
-
permissions?: any
|
|
394
|
+
permissions?: Record<string, any>;
|
|
399
395
|
[index: string]: any;
|
|
400
396
|
}
|
|
401
397
|
export interface DraftBrandDraftBrandDTO {
|
|
@@ -412,22 +408,22 @@ export interface DraftBrandDraftBrandDTO {
|
|
|
412
408
|
created_at?: FilterFieldDTO;
|
|
413
409
|
updated_at?: FilterFieldDTO;
|
|
414
410
|
deleted_at?: FilterFieldDTO;
|
|
415
|
-
parent?: any
|
|
416
|
-
children?: any[];
|
|
411
|
+
parent?: Record<string, any>;
|
|
412
|
+
children?: Record<string, any>[];
|
|
417
413
|
changes?: BrandChangeDTO[];
|
|
418
414
|
local_menu_group?: LocalMenuGroupDTO;
|
|
419
415
|
global_menu_group?: GlobalMenuGroupDTO;
|
|
420
416
|
menus?: DraftMenuDTO[];
|
|
421
|
-
categories?: any[];
|
|
422
|
-
category_to_item_relationships?: any[];
|
|
423
|
-
items?: any[];
|
|
424
|
-
item_to_modifier_group_relationships?: any[];
|
|
425
|
-
modifier_groups?: any[];
|
|
426
|
-
modifier_group_to_modifier_relationships?: any[];
|
|
427
|
-
modifiers?: any[];
|
|
417
|
+
categories?: Record<string, any>[];
|
|
418
|
+
category_to_item_relationships?: Record<string, any>[];
|
|
419
|
+
items?: Record<string, any>[];
|
|
420
|
+
item_to_modifier_group_relationships?: Record<string, any>[];
|
|
421
|
+
modifier_groups?: Record<string, any>[];
|
|
422
|
+
modifier_group_to_modifier_relationships?: Record<string, any>[];
|
|
423
|
+
modifiers?: Record<string, any>[];
|
|
428
424
|
statuses?: BrandStatusDTO[];
|
|
429
425
|
vendor_metadata?: VendorMetadataDTO[];
|
|
430
|
-
attachments?: any
|
|
426
|
+
attachments?: Record<string, any>;
|
|
431
427
|
permissions?: FilterFieldDTO;
|
|
432
428
|
[index: string]: any;
|
|
433
429
|
}
|
|
@@ -436,28 +432,28 @@ export interface BrandChangeDTO {
|
|
|
436
432
|
insert?: FilterFieldDTO;
|
|
437
433
|
delete?: FilterFieldDTO;
|
|
438
434
|
snapshot_entity_id?: FilterFieldDTO;
|
|
439
|
-
snapshot_entity?: any
|
|
435
|
+
snapshot_entity?: Record<string, any>;
|
|
440
436
|
permissions?: FilterFieldDTO;
|
|
441
437
|
[index: string]: any;
|
|
442
438
|
}
|
|
443
439
|
export interface DraftMenuDTO {
|
|
444
|
-
parent?: any
|
|
445
|
-
children?: any[];
|
|
440
|
+
parent?: Record<string, any>;
|
|
441
|
+
children?: Record<string, any>[];
|
|
446
442
|
categories?: DraftCategoryDTO[];
|
|
447
443
|
id?: string;
|
|
448
444
|
parent_id?: string;
|
|
449
445
|
name?: string;
|
|
450
446
|
brand_id?: string;
|
|
451
447
|
applied_diff_snapshot?: FilterFieldDTO;
|
|
452
|
-
brand?: any
|
|
448
|
+
brand?: Record<string, any>;
|
|
453
449
|
changes?: MenuChangeDTO[];
|
|
454
450
|
vendor_metadata?: VendorMetadataDTO[];
|
|
455
451
|
permissions?: FilterFieldDTO;
|
|
456
452
|
[index: string]: any;
|
|
457
453
|
}
|
|
458
454
|
export interface DraftCategoryDTO {
|
|
459
|
-
parent?: any
|
|
460
|
-
children?: any[];
|
|
455
|
+
parent?: Record<string, any>;
|
|
456
|
+
children?: Record<string, any>[];
|
|
461
457
|
id?: string;
|
|
462
458
|
parent_id?: string;
|
|
463
459
|
name?: string;
|
|
@@ -467,17 +463,17 @@ export interface DraftCategoryDTO {
|
|
|
467
463
|
brand_id?: string;
|
|
468
464
|
menu_id?: string;
|
|
469
465
|
applied_diff_snapshot?: FilterFieldDTO;
|
|
470
|
-
menu?: any
|
|
466
|
+
menu?: Record<string, any>;
|
|
471
467
|
items?: DraftCategoryToItemRelationshipDTO[];
|
|
472
|
-
brand?: any
|
|
468
|
+
brand?: Record<string, any>;
|
|
473
469
|
changes?: CategoryChangeDTO[];
|
|
474
470
|
vendor_metadata?: VendorMetadataDTO[];
|
|
475
471
|
permissions?: FilterFieldDTO;
|
|
476
472
|
[index: string]: any;
|
|
477
473
|
}
|
|
478
474
|
export interface DraftCategoryToItemRelationshipDTO {
|
|
479
|
-
parent?: any
|
|
480
|
-
children?: any[];
|
|
475
|
+
parent?: Record<string, any>;
|
|
476
|
+
children?: Record<string, any>[];
|
|
481
477
|
id?: string;
|
|
482
478
|
parent_id?: string;
|
|
483
479
|
item_id?: string;
|
|
@@ -485,24 +481,24 @@ export interface DraftCategoryToItemRelationshipDTO {
|
|
|
485
481
|
brand_id?: FilterFieldDTO;
|
|
486
482
|
sequence?: number;
|
|
487
483
|
applied_diff_snapshot?: FilterFieldDTO;
|
|
488
|
-
category?: any
|
|
484
|
+
category?: Record<string, any>;
|
|
489
485
|
item?: DraftItemDTO;
|
|
490
|
-
brand?: any
|
|
486
|
+
brand?: Record<string, any>;
|
|
491
487
|
changes?: CategoryToItemRelationshipChangeDTO[];
|
|
492
488
|
vendor_metadata?: VendorMetadataDTO[];
|
|
493
489
|
permissions?: FilterFieldDTO;
|
|
494
490
|
[index: string]: any;
|
|
495
491
|
}
|
|
496
492
|
export interface DraftItemDTO {
|
|
497
|
-
parent?: any
|
|
498
|
-
children?: any[];
|
|
493
|
+
parent?: Record<string, any>;
|
|
494
|
+
children?: Record<string, any>[];
|
|
499
495
|
modifier_groups?: DraftItemToModifierGroupRelationshipDTO[];
|
|
500
496
|
id?: string;
|
|
501
497
|
parent_id?: string;
|
|
502
498
|
name?: string;
|
|
503
499
|
label?: string;
|
|
504
500
|
description?: string;
|
|
505
|
-
reporting?: any
|
|
501
|
+
reporting?: Record<string, any>;
|
|
506
502
|
price?: number;
|
|
507
503
|
barcode?: string;
|
|
508
504
|
calories?: number;
|
|
@@ -513,18 +509,18 @@ export interface DraftItemDTO {
|
|
|
513
509
|
line_route?: FilterFieldDTO;
|
|
514
510
|
posid_segment?: FilterFieldDTO;
|
|
515
511
|
applied_diff_snapshot?: FilterFieldDTO;
|
|
516
|
-
brand?: any
|
|
517
|
-
categories?: any[];
|
|
512
|
+
brand?: Record<string, any>;
|
|
513
|
+
categories?: Record<string, any>[];
|
|
518
514
|
changes?: ItemChangeDTO[];
|
|
519
515
|
vendor_metadata?: VendorMetadataDTO[];
|
|
520
516
|
attachments?: FileAttachmentsDTO;
|
|
521
|
-
weight?: any
|
|
517
|
+
weight?: Record<string, any>;
|
|
522
518
|
permissions?: FilterFieldDTO;
|
|
523
519
|
[index: string]: any;
|
|
524
520
|
}
|
|
525
521
|
export interface DraftItemToModifierGroupRelationshipDTO {
|
|
526
|
-
parent?: any
|
|
527
|
-
children?: any[];
|
|
522
|
+
parent?: Record<string, any>;
|
|
523
|
+
children?: Record<string, any>[];
|
|
528
524
|
id?: string;
|
|
529
525
|
parent_id?: string;
|
|
530
526
|
modifier_group_id?: string;
|
|
@@ -532,19 +528,19 @@ export interface DraftItemToModifierGroupRelationshipDTO {
|
|
|
532
528
|
brand_id?: FilterFieldDTO;
|
|
533
529
|
sequence?: number;
|
|
534
530
|
applied_diff_snapshot?: FilterFieldDTO;
|
|
535
|
-
item?: any
|
|
531
|
+
item?: Record<string, any>;
|
|
536
532
|
modifier_group?: DraftModifierGroupDTO;
|
|
537
|
-
brand?: any
|
|
533
|
+
brand?: Record<string, any>;
|
|
538
534
|
changes?: ItemToModifierGroupRelationshipChangeDTO[];
|
|
539
535
|
vendor_metadata?: VendorMetadataDTO[];
|
|
540
536
|
permissions?: FilterFieldDTO;
|
|
541
537
|
[index: string]: any;
|
|
542
538
|
}
|
|
543
539
|
export interface DraftModifierGroupDTO {
|
|
544
|
-
parent?: any
|
|
545
|
-
children?: any[];
|
|
540
|
+
parent?: Record<string, any>;
|
|
541
|
+
children?: Record<string, any>[];
|
|
546
542
|
modifiers?: DraftModifierGroupToModifierRelationshipDTO[];
|
|
547
|
-
items?: any[];
|
|
543
|
+
items?: Record<string, any>[];
|
|
548
544
|
id?: string;
|
|
549
545
|
parent_id?: string;
|
|
550
546
|
name?: string;
|
|
@@ -554,15 +550,15 @@ export interface DraftModifierGroupDTO {
|
|
|
554
550
|
is_active?: boolean;
|
|
555
551
|
brand_id?: string;
|
|
556
552
|
applied_diff_snapshot?: FilterFieldDTO;
|
|
557
|
-
brand?: any
|
|
553
|
+
brand?: Record<string, any>;
|
|
558
554
|
changes?: ModifierGroupChangeDTO[];
|
|
559
555
|
vendor_metadata?: VendorMetadataDTO[];
|
|
560
556
|
permissions?: FilterFieldDTO;
|
|
561
557
|
[index: string]: any;
|
|
562
558
|
}
|
|
563
559
|
export interface DraftModifierGroupToModifierRelationshipDTO {
|
|
564
|
-
parent?: any
|
|
565
|
-
children?: any[];
|
|
560
|
+
parent?: Record<string, any>;
|
|
561
|
+
children?: Record<string, any>[];
|
|
566
562
|
id?: string;
|
|
567
563
|
parent_id?: string;
|
|
568
564
|
modifier_id?: string;
|
|
@@ -571,17 +567,17 @@ export interface DraftModifierGroupToModifierRelationshipDTO {
|
|
|
571
567
|
sequence?: number;
|
|
572
568
|
applied_diff_snapshot?: FilterFieldDTO;
|
|
573
569
|
modifier?: DraftModifierDTO;
|
|
574
|
-
modifier_group?: any
|
|
575
|
-
brand?: any
|
|
570
|
+
modifier_group?: Record<string, any>;
|
|
571
|
+
brand?: Record<string, any>;
|
|
576
572
|
changes?: ModifierGroupToModifierRelationshipChangeDTO[];
|
|
577
573
|
vendor_metadata?: VendorMetadataDTO[];
|
|
578
574
|
permissions?: FilterFieldDTO;
|
|
579
575
|
[index: string]: any;
|
|
580
576
|
}
|
|
581
577
|
export interface DraftModifierDTO {
|
|
582
|
-
parent?: any
|
|
583
|
-
children?: any[];
|
|
584
|
-
modifier_groups?: any[];
|
|
578
|
+
parent?: Record<string, any>;
|
|
579
|
+
children?: Record<string, any>[];
|
|
580
|
+
modifier_groups?: Record<string, any>[];
|
|
585
581
|
id?: string;
|
|
586
582
|
parent_id?: string;
|
|
587
583
|
name?: string;
|
|
@@ -596,7 +592,7 @@ export interface DraftModifierDTO {
|
|
|
596
592
|
posid_segment?: FilterFieldDTO;
|
|
597
593
|
brand_id?: string;
|
|
598
594
|
applied_diff_snapshot?: FilterFieldDTO;
|
|
599
|
-
brand?: any
|
|
595
|
+
brand?: Record<string, any>;
|
|
600
596
|
changes?: ModifierChangeDTO[];
|
|
601
597
|
vendor_metadata?: VendorMetadataDTO[];
|
|
602
598
|
weight?: WeightDTO;
|
|
@@ -608,25 +604,25 @@ export interface ModifierChangeDTO {
|
|
|
608
604
|
insert?: FilterFieldDTO;
|
|
609
605
|
delete?: FilterFieldDTO;
|
|
610
606
|
snapshot_entity_id?: FilterFieldDTO;
|
|
611
|
-
snapshot_entity?: any
|
|
607
|
+
snapshot_entity?: Record<string, any>;
|
|
612
608
|
permissions?: FilterFieldDTO;
|
|
613
609
|
[index: string]: any;
|
|
614
610
|
}
|
|
615
611
|
export interface ReportingMetadataDTO {
|
|
616
612
|
category?: ReportingCategoryMetadataDTO;
|
|
617
|
-
id?: any
|
|
613
|
+
id?: Record<string, any>;
|
|
618
614
|
[index: string]: any;
|
|
619
615
|
}
|
|
620
616
|
export interface ReportingCategoryMetadataDTO {
|
|
621
617
|
primary?: "Food" | "Beverage" | "Sundry" | "Alcohol" | "Snack";
|
|
622
618
|
secondary?: FilterFieldDTO;
|
|
623
|
-
id?: any
|
|
619
|
+
id?: Record<string, any>;
|
|
624
620
|
[index: string]: any;
|
|
625
621
|
}
|
|
626
622
|
export interface WeightDTO {
|
|
627
623
|
unit?: FilterFieldDTO;
|
|
628
624
|
amount?: FilterFieldDTO;
|
|
629
|
-
id?: any
|
|
625
|
+
id?: Record<string, any>;
|
|
630
626
|
[index: string]: any;
|
|
631
627
|
}
|
|
632
628
|
export interface ModifierGroupToModifierRelationshipChangeDTO {
|
|
@@ -634,7 +630,7 @@ export interface ModifierGroupToModifierRelationshipChangeDTO {
|
|
|
634
630
|
insert?: FilterFieldDTO;
|
|
635
631
|
delete?: FilterFieldDTO;
|
|
636
632
|
snapshot_entity_id?: FilterFieldDTO;
|
|
637
|
-
snapshot_entity?: any
|
|
633
|
+
snapshot_entity?: Record<string, any>;
|
|
638
634
|
permissions?: FilterFieldDTO;
|
|
639
635
|
[index: string]: any;
|
|
640
636
|
}
|
|
@@ -643,7 +639,7 @@ export interface ModifierGroupChangeDTO {
|
|
|
643
639
|
insert?: FilterFieldDTO;
|
|
644
640
|
delete?: FilterFieldDTO;
|
|
645
641
|
snapshot_entity_id?: FilterFieldDTO;
|
|
646
|
-
snapshot_entity?: any
|
|
642
|
+
snapshot_entity?: Record<string, any>;
|
|
647
643
|
permissions?: FilterFieldDTO;
|
|
648
644
|
[index: string]: any;
|
|
649
645
|
}
|
|
@@ -652,7 +648,7 @@ export interface ItemToModifierGroupRelationshipChangeDTO {
|
|
|
652
648
|
insert?: FilterFieldDTO;
|
|
653
649
|
delete?: FilterFieldDTO;
|
|
654
650
|
snapshot_entity_id?: FilterFieldDTO;
|
|
655
|
-
snapshot_entity?: any
|
|
651
|
+
snapshot_entity?: Record<string, any>;
|
|
656
652
|
permissions?: FilterFieldDTO;
|
|
657
653
|
[index: string]: any;
|
|
658
654
|
}
|
|
@@ -661,13 +657,13 @@ export interface ItemChangeDTO {
|
|
|
661
657
|
insert?: FilterFieldDTO;
|
|
662
658
|
delete?: FilterFieldDTO;
|
|
663
659
|
snapshot_entity_id?: FilterFieldDTO;
|
|
664
|
-
snapshot_entity?: any
|
|
660
|
+
snapshot_entity?: Record<string, any>;
|
|
665
661
|
permissions?: FilterFieldDTO;
|
|
666
662
|
[index: string]: any;
|
|
667
663
|
}
|
|
668
664
|
export interface FileAttachmentsDTO {
|
|
669
665
|
thumbnail?: FilterFieldDTO;
|
|
670
|
-
id?: any
|
|
666
|
+
id?: Record<string, any>;
|
|
671
667
|
[index: string]: any;
|
|
672
668
|
}
|
|
673
669
|
export interface CategoryToItemRelationshipChangeDTO {
|
|
@@ -675,7 +671,7 @@ export interface CategoryToItemRelationshipChangeDTO {
|
|
|
675
671
|
insert?: FilterFieldDTO;
|
|
676
672
|
delete?: FilterFieldDTO;
|
|
677
673
|
snapshot_entity_id?: FilterFieldDTO;
|
|
678
|
-
snapshot_entity?: any
|
|
674
|
+
snapshot_entity?: Record<string, any>;
|
|
679
675
|
permissions?: FilterFieldDTO;
|
|
680
676
|
[index: string]: any;
|
|
681
677
|
}
|
|
@@ -684,7 +680,7 @@ export interface CategoryChangeDTO {
|
|
|
684
680
|
insert?: FilterFieldDTO;
|
|
685
681
|
delete?: FilterFieldDTO;
|
|
686
682
|
snapshot_entity_id?: FilterFieldDTO;
|
|
687
|
-
snapshot_entity?: any
|
|
683
|
+
snapshot_entity?: Record<string, any>;
|
|
688
684
|
permissions?: FilterFieldDTO;
|
|
689
685
|
[index: string]: any;
|
|
690
686
|
}
|
|
@@ -693,7 +689,7 @@ export interface MenuChangeDTO {
|
|
|
693
689
|
insert?: FilterFieldDTO;
|
|
694
690
|
delete?: FilterFieldDTO;
|
|
695
691
|
snapshot_entity_id?: FilterFieldDTO;
|
|
696
|
-
snapshot_entity?: any
|
|
692
|
+
snapshot_entity?: Record<string, any>;
|
|
697
693
|
permissions?: FilterFieldDTO;
|
|
698
694
|
[index: string]: any;
|
|
699
695
|
}
|
|
@@ -703,7 +699,7 @@ export interface BrandStatusDTO {
|
|
|
703
699
|
status?: string;
|
|
704
700
|
metadata?: FilterFieldDTO;
|
|
705
701
|
id?: string;
|
|
706
|
-
brand?: any
|
|
702
|
+
brand?: Record<string, any>;
|
|
707
703
|
permissions?: FilterFieldDTO;
|
|
708
704
|
[index: string]: any;
|
|
709
705
|
}
|
|
@@ -717,8 +713,8 @@ export interface DraftMenuDraftMenuDTO {
|
|
|
717
713
|
created_at?: FilterFieldDTO;
|
|
718
714
|
updated_at?: FilterFieldDTO;
|
|
719
715
|
deleted_at?: FilterFieldDTO;
|
|
720
|
-
parent?: any
|
|
721
|
-
children?: any[];
|
|
716
|
+
parent?: Record<string, any>;
|
|
717
|
+
children?: Record<string, any>[];
|
|
722
718
|
categories?: DraftCategoryDTO[];
|
|
723
719
|
brand?: DraftBrandDTO;
|
|
724
720
|
changes?: MenuChangeDTO[];
|
|
@@ -744,8 +740,8 @@ export interface DraftModifierDraftModifierDTO {
|
|
|
744
740
|
created_at?: FilterFieldDTO;
|
|
745
741
|
updated_at?: FilterFieldDTO;
|
|
746
742
|
deleted_at?: FilterFieldDTO;
|
|
747
|
-
parent?: any
|
|
748
|
-
children?: any[];
|
|
743
|
+
parent?: Record<string, any>;
|
|
744
|
+
children?: Record<string, any>[];
|
|
749
745
|
modifier_groups?: DraftModifierGroupToModifierRelationshipDTO[];
|
|
750
746
|
brand?: DraftBrandDTO;
|
|
751
747
|
changes?: ModifierChangeDTO[];
|
|
@@ -769,8 +765,8 @@ export interface DraftModifierGroupDraftModifierGroupDTO {
|
|
|
769
765
|
created_at?: FilterFieldDTO;
|
|
770
766
|
updated_at?: FilterFieldDTO;
|
|
771
767
|
deleted_at?: FilterFieldDTO;
|
|
772
|
-
parent?: any
|
|
773
|
-
children?: any[];
|
|
768
|
+
parent?: Record<string, any>;
|
|
769
|
+
children?: Record<string, any>[];
|
|
774
770
|
modifiers?: DraftModifierGroupToModifierRelationshipDTO[];
|
|
775
771
|
items?: DraftItemToModifierGroupRelationshipDTO[];
|
|
776
772
|
brand?: DraftBrandDTO;
|
|
@@ -799,8 +795,8 @@ export interface DraftItemDraftItemDTO {
|
|
|
799
795
|
created_at?: FilterFieldDTO;
|
|
800
796
|
updated_at?: FilterFieldDTO;
|
|
801
797
|
deleted_at?: FilterFieldDTO;
|
|
802
|
-
parent?: any
|
|
803
|
-
children?: any[];
|
|
798
|
+
parent?: Record<string, any>;
|
|
799
|
+
children?: Record<string, any>[];
|
|
804
800
|
brand?: DraftBrandDTO;
|
|
805
801
|
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
806
802
|
modifier_groups?: DraftItemToModifierGroupRelationshipDTO[];
|
|
@@ -821,7 +817,7 @@ export interface GlobalDiffDependencyDTO {
|
|
|
821
817
|
is_depended_by_id?: string;
|
|
822
818
|
id?: string;
|
|
823
819
|
depends_on?: GlobalDiffGlobalDiffDTO;
|
|
824
|
-
is_depended_by?: any
|
|
820
|
+
is_depended_by?: Record<string, any>;
|
|
825
821
|
permissions?: FilterFieldDTO;
|
|
826
822
|
[index: string]: any;
|
|
827
823
|
}
|
|
@@ -840,8 +836,8 @@ export interface GlobalDiffGlobalDiffDTO {
|
|
|
840
836
|
created_at?: FilterFieldDTO;
|
|
841
837
|
updated_at?: FilterFieldDTO;
|
|
842
838
|
deleted_at?: FilterFieldDTO;
|
|
843
|
-
depends_on?: any[];
|
|
844
|
-
is_depended_by?: any[];
|
|
839
|
+
depends_on?: Record<string, any>[];
|
|
840
|
+
is_depended_by?: Record<string, any>[];
|
|
845
841
|
brand?: DraftBrandDTO;
|
|
846
842
|
permissions?: FilterFieldDTO;
|
|
847
843
|
[index: string]: any;
|
|
@@ -852,21 +848,21 @@ export interface DiffDTO {
|
|
|
852
848
|
created_at?: string;
|
|
853
849
|
updated_at?: string;
|
|
854
850
|
deleted_at?: string;
|
|
855
|
-
child_nodes?: any[];
|
|
851
|
+
child_nodes?: Record<string, any>[];
|
|
856
852
|
name?: string;
|
|
857
853
|
entity_type?: string;
|
|
858
854
|
local_id?: string;
|
|
859
|
-
changes?: any
|
|
860
|
-
local_changes?: any
|
|
861
|
-
local_snapshot?: any
|
|
855
|
+
changes?: Record<string, any>;
|
|
856
|
+
local_changes?: Record<string, any>;
|
|
857
|
+
local_snapshot?: Record<string, any>;
|
|
862
858
|
global_id?: string;
|
|
863
|
-
global_snapshot?: any
|
|
859
|
+
global_snapshot?: Record<string, any>;
|
|
864
860
|
brand_id?: string;
|
|
865
861
|
version?: number;
|
|
866
862
|
depends_on?: GlobalDiffDependencyDTO[];
|
|
867
863
|
is_depended_by?: GlobalDiffDependencyDTO[];
|
|
868
864
|
brand?: DraftBrandDTO;
|
|
869
|
-
permissions?: any
|
|
865
|
+
permissions?: Record<string, any>;
|
|
870
866
|
[index: string]: any;
|
|
871
867
|
}
|
|
872
868
|
export interface ApplyDiffDTO {
|
|
@@ -879,7 +875,7 @@ export interface PublishedMenuDTO {
|
|
|
879
875
|
parent_id?: string;
|
|
880
876
|
name?: string;
|
|
881
877
|
brand_id?: string;
|
|
882
|
-
permissions?: any
|
|
878
|
+
permissions?: Record<string, any>;
|
|
883
879
|
[index: string]: any;
|
|
884
880
|
}
|
|
885
881
|
export interface PublishedCategoryDTO {
|
|
@@ -891,7 +887,7 @@ export interface PublishedCategoryDTO {
|
|
|
891
887
|
is_active?: boolean;
|
|
892
888
|
brand_id?: string;
|
|
893
889
|
menu_id?: string;
|
|
894
|
-
permissions?: any
|
|
890
|
+
permissions?: Record<string, any>;
|
|
895
891
|
[index: string]: any;
|
|
896
892
|
}
|
|
897
893
|
export interface PublishedCategoryToItemRelationshipDTO {
|
|
@@ -901,7 +897,7 @@ export interface PublishedCategoryToItemRelationshipDTO {
|
|
|
901
897
|
category_id?: string;
|
|
902
898
|
brand_id?: string;
|
|
903
899
|
sequence?: number;
|
|
904
|
-
permissions?: any
|
|
900
|
+
permissions?: Record<string, any>;
|
|
905
901
|
[index: string]: any;
|
|
906
902
|
}
|
|
907
903
|
export interface PublishedItemDTO {
|
|
@@ -915,11 +911,11 @@ export interface PublishedItemDTO {
|
|
|
915
911
|
calories?: number;
|
|
916
912
|
is_active?: boolean;
|
|
917
913
|
posid?: string;
|
|
918
|
-
tax_tags?: any[];
|
|
914
|
+
tax_tags?: Record<string, any>[];
|
|
919
915
|
brand_id?: string;
|
|
920
916
|
line_route?: string;
|
|
921
917
|
posid_segment?: string;
|
|
922
|
-
permissions?: any
|
|
918
|
+
permissions?: Record<string, any>;
|
|
923
919
|
[index: string]: any;
|
|
924
920
|
}
|
|
925
921
|
export interface PublishedItemToModifierGroupRelationshipDTO {
|
|
@@ -929,7 +925,7 @@ export interface PublishedItemToModifierGroupRelationshipDTO {
|
|
|
929
925
|
item_id?: string;
|
|
930
926
|
brand_id?: string;
|
|
931
927
|
sequence?: number;
|
|
932
|
-
permissions?: any
|
|
928
|
+
permissions?: Record<string, any>;
|
|
933
929
|
[index: string]: any;
|
|
934
930
|
}
|
|
935
931
|
export interface PublishedModifierGroupDTO {
|
|
@@ -941,7 +937,7 @@ export interface PublishedModifierGroupDTO {
|
|
|
941
937
|
max?: number;
|
|
942
938
|
is_active?: boolean;
|
|
943
939
|
brand_id?: string;
|
|
944
|
-
permissions?: any
|
|
940
|
+
permissions?: Record<string, any>;
|
|
945
941
|
[index: string]: any;
|
|
946
942
|
}
|
|
947
943
|
export interface PublishedModifierGroupToModifierRelationshipDTO {
|
|
@@ -951,7 +947,7 @@ export interface PublishedModifierGroupToModifierRelationshipDTO {
|
|
|
951
947
|
modifier_group_id?: string;
|
|
952
948
|
brand_id?: string;
|
|
953
949
|
sequence?: number;
|
|
954
|
-
permissions?: any
|
|
950
|
+
permissions?: Record<string, any>;
|
|
955
951
|
[index: string]: any;
|
|
956
952
|
}
|
|
957
953
|
export interface PublishedModifierDTO {
|
|
@@ -962,12 +958,12 @@ export interface PublishedModifierDTO {
|
|
|
962
958
|
description?: string;
|
|
963
959
|
price?: number;
|
|
964
960
|
calories?: number;
|
|
965
|
-
tax_tags?: any[];
|
|
961
|
+
tax_tags?: Record<string, any>[];
|
|
966
962
|
is_active?: boolean;
|
|
967
963
|
posid?: string;
|
|
968
964
|
posid_segment?: string;
|
|
969
965
|
brand_id?: string;
|
|
970
|
-
permissions?: any
|
|
966
|
+
permissions?: Record<string, any>;
|
|
971
967
|
[index: string]: any;
|
|
972
968
|
}
|
|
973
969
|
export interface PublishedBrandPublishedBrandDTO {
|
|
@@ -984,8 +980,8 @@ export interface PublishedBrandPublishedBrandDTO {
|
|
|
984
980
|
created_at?: FilterFieldDTO;
|
|
985
981
|
updated_at?: FilterFieldDTO;
|
|
986
982
|
deleted_at?: FilterFieldDTO;
|
|
987
|
-
parent?: any
|
|
988
|
-
children?: any[];
|
|
983
|
+
parent?: Record<string, any>;
|
|
984
|
+
children?: Record<string, any>[];
|
|
989
985
|
local_menu_group?: LocalMenuGroupDTO;
|
|
990
986
|
global_menu_group?: GlobalMenuGroupDTO;
|
|
991
987
|
menus?: PublishedMenuDTO[];
|
|
@@ -1014,8 +1010,8 @@ export interface DraftCategoryDraftCategoryDTO {
|
|
|
1014
1010
|
created_at?: FilterFieldDTO;
|
|
1015
1011
|
updated_at?: FilterFieldDTO;
|
|
1016
1012
|
deleted_at?: FilterFieldDTO;
|
|
1017
|
-
parent?: any
|
|
1018
|
-
children?: any[];
|
|
1013
|
+
parent?: Record<string, any>;
|
|
1014
|
+
children?: Record<string, any>[];
|
|
1019
1015
|
menu?: DraftMenuDTO;
|
|
1020
1016
|
items?: DraftCategoryToItemRelationshipDTO[];
|
|
1021
1017
|
brand?: DraftBrandDTO;
|
|
@@ -1033,8 +1029,8 @@ export interface PublishedMenuPublishedMenuDTO {
|
|
|
1033
1029
|
created_at?: FilterFieldDTO;
|
|
1034
1030
|
updated_at?: FilterFieldDTO;
|
|
1035
1031
|
deleted_at?: FilterFieldDTO;
|
|
1036
|
-
parent?: any
|
|
1037
|
-
children?: any[];
|
|
1032
|
+
parent?: Record<string, any>;
|
|
1033
|
+
children?: Record<string, any>[];
|
|
1038
1034
|
categories?: PublishedCategoryDTO[];
|
|
1039
1035
|
brand?: PublishedBrandDTO;
|
|
1040
1036
|
permissions?: FilterFieldDTO;
|
|
@@ -1053,8 +1049,8 @@ export interface PublishedCategoryPublishedCategoryDTO {
|
|
|
1053
1049
|
created_at?: FilterFieldDTO;
|
|
1054
1050
|
updated_at?: FilterFieldDTO;
|
|
1055
1051
|
deleted_at?: FilterFieldDTO;
|
|
1056
|
-
parent?: any
|
|
1057
|
-
children?: any[];
|
|
1052
|
+
parent?: Record<string, any>;
|
|
1053
|
+
children?: Record<string, any>[];
|
|
1058
1054
|
menu?: PublishedMenuDTO;
|
|
1059
1055
|
items?: PublishedCategoryToItemRelationshipDTO[];
|
|
1060
1056
|
brand?: PublishedBrandDTO;
|
|
@@ -1073,8 +1069,8 @@ export interface DraftCategoryToItemRelationshipDraftCategoryToItemRelationshipD
|
|
|
1073
1069
|
version?: FilterFieldDTO;
|
|
1074
1070
|
created_at?: FilterFieldDTO;
|
|
1075
1071
|
updated_at?: FilterFieldDTO;
|
|
1076
|
-
parent?: any
|
|
1077
|
-
children?: any[];
|
|
1072
|
+
parent?: Record<string, any>;
|
|
1073
|
+
children?: Record<string, any>[];
|
|
1078
1074
|
category?: DraftCategoryDTO;
|
|
1079
1075
|
item?: DraftItemDTO;
|
|
1080
1076
|
brand?: DraftBrandDTO;
|
|
@@ -1094,8 +1090,8 @@ export interface PublishedCategoryToItemRelationshipPublishedCategoryToItemRelat
|
|
|
1094
1090
|
version?: FilterFieldDTO;
|
|
1095
1091
|
created_at?: FilterFieldDTO;
|
|
1096
1092
|
updated_at?: FilterFieldDTO;
|
|
1097
|
-
parent?: any
|
|
1098
|
-
children?: any[];
|
|
1093
|
+
parent?: Record<string, any>;
|
|
1094
|
+
children?: Record<string, any>[];
|
|
1099
1095
|
category?: PublishedCategoryDTO;
|
|
1100
1096
|
item?: PublishedItemDTO;
|
|
1101
1097
|
brand?: PublishedBrandDTO;
|
|
@@ -1120,11 +1116,11 @@ export interface DraftItemEntityDTO {
|
|
|
1120
1116
|
calories?: number;
|
|
1121
1117
|
is_active?: boolean;
|
|
1122
1118
|
posid?: string;
|
|
1123
|
-
tax_tags?: any[];
|
|
1119
|
+
tax_tags?: Record<string, any>[];
|
|
1124
1120
|
brand_id: string;
|
|
1125
1121
|
line_route?: string;
|
|
1126
1122
|
posid_segment?: string;
|
|
1127
|
-
applied_diff_snapshot?: any
|
|
1123
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
1128
1124
|
version?: number;
|
|
1129
1125
|
brand?: DraftBrandDTO;
|
|
1130
1126
|
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
@@ -1132,7 +1128,7 @@ export interface DraftItemEntityDTO {
|
|
|
1132
1128
|
vendor_metadata?: VendorMetadataDTO[];
|
|
1133
1129
|
attachments?: FileAttachmentsDTO;
|
|
1134
1130
|
weight?: WeightDTO;
|
|
1135
|
-
permissions?: any
|
|
1131
|
+
permissions?: Record<string, any>;
|
|
1136
1132
|
[index: string]: any;
|
|
1137
1133
|
}
|
|
1138
1134
|
export interface PublishedItemPublishedItemDTO {
|
|
@@ -1154,8 +1150,8 @@ export interface PublishedItemPublishedItemDTO {
|
|
|
1154
1150
|
created_at?: FilterFieldDTO;
|
|
1155
1151
|
updated_at?: FilterFieldDTO;
|
|
1156
1152
|
deleted_at?: FilterFieldDTO;
|
|
1157
|
-
parent?: any
|
|
1158
|
-
children?: any[];
|
|
1153
|
+
parent?: Record<string, any>;
|
|
1154
|
+
children?: Record<string, any>[];
|
|
1159
1155
|
brand?: PublishedBrandDTO;
|
|
1160
1156
|
categories?: PublishedCategoryToItemRelationshipDTO[];
|
|
1161
1157
|
modifier_groups?: PublishedItemToModifierGroupRelationshipDTO[];
|
|
@@ -1177,8 +1173,8 @@ export interface DraftItemToModifierGroupRelationshipDraftItemToModifierGroupRel
|
|
|
1177
1173
|
version?: FilterFieldDTO;
|
|
1178
1174
|
created_at?: FilterFieldDTO;
|
|
1179
1175
|
updated_at?: FilterFieldDTO;
|
|
1180
|
-
parent?: any
|
|
1181
|
-
children?: any[];
|
|
1176
|
+
parent?: Record<string, any>;
|
|
1177
|
+
children?: Record<string, any>[];
|
|
1182
1178
|
item?: DraftItemDTO;
|
|
1183
1179
|
modifier_group?: DraftModifierGroupDTO;
|
|
1184
1180
|
brand?: DraftBrandDTO;
|
|
@@ -1198,8 +1194,8 @@ export interface PublishedItemToModifierGroupRelationshipPublishedItemToModifier
|
|
|
1198
1194
|
version?: FilterFieldDTO;
|
|
1199
1195
|
created_at?: FilterFieldDTO;
|
|
1200
1196
|
updated_at?: FilterFieldDTO;
|
|
1201
|
-
parent?: any
|
|
1202
|
-
children?: any[];
|
|
1197
|
+
parent?: Record<string, any>;
|
|
1198
|
+
children?: Record<string, any>[];
|
|
1203
1199
|
item?: PublishedItemDTO;
|
|
1204
1200
|
modifier_group?: PublishedModifierGroupDTO;
|
|
1205
1201
|
brand?: PublishedBrandDTO;
|
|
@@ -1219,8 +1215,8 @@ export interface PublishedModifierGroupPublishedModifierGroupDTO {
|
|
|
1219
1215
|
created_at?: FilterFieldDTO;
|
|
1220
1216
|
updated_at?: FilterFieldDTO;
|
|
1221
1217
|
deleted_at?: FilterFieldDTO;
|
|
1222
|
-
parent?: any
|
|
1223
|
-
children?: any[];
|
|
1218
|
+
parent?: Record<string, any>;
|
|
1219
|
+
children?: Record<string, any>[];
|
|
1224
1220
|
modifiers?: PublishedModifierGroupToModifierRelationshipDTO[];
|
|
1225
1221
|
items?: PublishedItemToModifierGroupRelationshipDTO[];
|
|
1226
1222
|
brand?: PublishedBrandDTO;
|
|
@@ -1239,8 +1235,8 @@ export interface DraftModifierGroupToModifierRelationshipDraftModifierGroupToMod
|
|
|
1239
1235
|
version?: FilterFieldDTO;
|
|
1240
1236
|
created_at?: FilterFieldDTO;
|
|
1241
1237
|
updated_at?: FilterFieldDTO;
|
|
1242
|
-
parent?: any
|
|
1243
|
-
children?: any[];
|
|
1238
|
+
parent?: Record<string, any>;
|
|
1239
|
+
children?: Record<string, any>[];
|
|
1244
1240
|
modifier?: DraftModifierDTO;
|
|
1245
1241
|
modifier_group?: DraftModifierGroupDTO;
|
|
1246
1242
|
brand?: DraftBrandDTO;
|
|
@@ -1260,8 +1256,8 @@ export interface PublishedModifierGroupToModifierRelationshipPublishedModifierGr
|
|
|
1260
1256
|
version?: FilterFieldDTO;
|
|
1261
1257
|
created_at?: FilterFieldDTO;
|
|
1262
1258
|
updated_at?: FilterFieldDTO;
|
|
1263
|
-
parent?: any
|
|
1264
|
-
children?: any[];
|
|
1259
|
+
parent?: Record<string, any>;
|
|
1260
|
+
children?: Record<string, any>[];
|
|
1265
1261
|
modifier_group?: PublishedModifierGroupDTO;
|
|
1266
1262
|
modifier?: PublishedModifierDTO;
|
|
1267
1263
|
brand?: PublishedBrandDTO;
|
|
@@ -1282,19 +1278,19 @@ export interface DraftModifierEntityDTO {
|
|
|
1282
1278
|
description?: string;
|
|
1283
1279
|
price: number;
|
|
1284
1280
|
calories?: number;
|
|
1285
|
-
tax_tags?: any[];
|
|
1281
|
+
tax_tags?: Record<string, any>[];
|
|
1286
1282
|
is_active?: boolean;
|
|
1287
1283
|
posid?: string;
|
|
1288
1284
|
reporting: ReportingMetadataDTO;
|
|
1289
1285
|
posid_segment?: string;
|
|
1290
1286
|
brand_id: string;
|
|
1291
|
-
applied_diff_snapshot?: any
|
|
1287
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
1292
1288
|
version?: number;
|
|
1293
1289
|
brand?: DraftBrandDTO;
|
|
1294
1290
|
changes?: ModifierChangeDTO[];
|
|
1295
1291
|
vendor_metadata?: VendorMetadataDTO[];
|
|
1296
1292
|
weight?: WeightDTO;
|
|
1297
|
-
permissions?: any
|
|
1293
|
+
permissions?: Record<string, any>;
|
|
1298
1294
|
[index: string]: any;
|
|
1299
1295
|
}
|
|
1300
1296
|
export interface PublishedModifierPublishedModifierDTO {
|
|
@@ -1314,8 +1310,8 @@ export interface PublishedModifierPublishedModifierDTO {
|
|
|
1314
1310
|
created_at?: FilterFieldDTO;
|
|
1315
1311
|
updated_at?: FilterFieldDTO;
|
|
1316
1312
|
deleted_at?: FilterFieldDTO;
|
|
1317
|
-
parent?: any
|
|
1318
|
-
children?: any[];
|
|
1313
|
+
parent?: Record<string, any>;
|
|
1314
|
+
children?: Record<string, any>[];
|
|
1319
1315
|
modifier_groups?: PublishedModifierGroupToModifierRelationshipDTO[];
|
|
1320
1316
|
brand?: PublishedBrandDTO;
|
|
1321
1317
|
reporting?: ReportingMetadataDTO;
|
|
@@ -1331,17 +1327,17 @@ export interface GlobalDiffDTO {
|
|
|
1331
1327
|
deleted_at?: string;
|
|
1332
1328
|
entity_type?: string;
|
|
1333
1329
|
local_id?: string;
|
|
1334
|
-
changes?: any
|
|
1335
|
-
local_changes?: any
|
|
1336
|
-
local_snapshot?: any
|
|
1330
|
+
changes?: Record<string, any>;
|
|
1331
|
+
local_changes?: Record<string, any>;
|
|
1332
|
+
local_snapshot?: Record<string, any>;
|
|
1337
1333
|
global_id?: string;
|
|
1338
|
-
global_snapshot?: any
|
|
1334
|
+
global_snapshot?: Record<string, any>;
|
|
1339
1335
|
brand_id?: string;
|
|
1340
1336
|
version?: number;
|
|
1341
1337
|
depends_on?: GlobalDiffDependencyDTO[];
|
|
1342
1338
|
is_depended_by?: GlobalDiffDependencyDTO[];
|
|
1343
1339
|
brand?: DraftBrandDTO;
|
|
1344
|
-
permissions?: any
|
|
1340
|
+
permissions?: Record<string, any>;
|
|
1345
1341
|
[index: string]: any;
|
|
1346
1342
|
}
|
|
1347
1343
|
export interface GetMenuClientPath {
|
|
@@ -1371,7 +1367,7 @@ export interface GetMenuHeadersPath {
|
|
|
1371
1367
|
export interface GetMenuHeadersQuery {
|
|
1372
1368
|
_query?: string;
|
|
1373
1369
|
}
|
|
1374
|
-
export type GetMenuHeadersResponse = any
|
|
1370
|
+
export type GetMenuHeadersResponse = Record<string, any>;
|
|
1375
1371
|
export interface GetMenuHeadersRequest extends BaseRequest, RequestQuery<GetMenuHeadersQuery>, GetMenuHeadersPath {
|
|
1376
1372
|
}
|
|
1377
1373
|
export interface GetMenuPath {
|
|
@@ -1610,7 +1606,7 @@ export interface PostMenuV3LocalMenuGroupBody {
|
|
|
1610
1606
|
draft_brands?: DraftBrandDTO[];
|
|
1611
1607
|
published_brands?: PublishedBrandDTO[];
|
|
1612
1608
|
vendor_metadata?: VendorMetadataDTO[];
|
|
1613
|
-
permissions?: any
|
|
1609
|
+
permissions?: Record<string, any>;
|
|
1614
1610
|
[index: string]: any;
|
|
1615
1611
|
}
|
|
1616
1612
|
export interface PostMenuV3LocalMenuGroupResponse {
|
|
@@ -1625,7 +1621,7 @@ export interface PostMenuV3LocalMenuGroupResponse {
|
|
|
1625
1621
|
deleted_at?: string;
|
|
1626
1622
|
version?: number;
|
|
1627
1623
|
vendor_metadata?: VendorMetadataDTO[];
|
|
1628
|
-
permissions?: any
|
|
1624
|
+
permissions?: Record<string, any>;
|
|
1629
1625
|
[index: string]: any;
|
|
1630
1626
|
}
|
|
1631
1627
|
export interface PostMenuV3LocalMenuGroupRequest extends BaseRequest {
|
|
@@ -1651,7 +1647,7 @@ export interface GetMenuV3LocalMenuGroupResponse {
|
|
|
1651
1647
|
deleted_at?: string;
|
|
1652
1648
|
version?: number;
|
|
1653
1649
|
vendor_metadata?: VendorMetadataDTO[];
|
|
1654
|
-
permissions?: any
|
|
1650
|
+
permissions?: Record<string, any>;
|
|
1655
1651
|
[index: string]: any;
|
|
1656
1652
|
}
|
|
1657
1653
|
export interface GetMenuV3LocalMenuGroupRequest extends BaseRequest, RequestQuery<GetMenuV3LocalMenuGroupQuery>, GetMenuV3LocalMenuGroupPath {
|
|
@@ -1668,7 +1664,7 @@ export interface PatchMenuV3LocalMenuGroupBody {
|
|
|
1668
1664
|
id?: string;
|
|
1669
1665
|
version?: number;
|
|
1670
1666
|
vendor_metadata?: VendorMetadataDTO[];
|
|
1671
|
-
permissions?: any
|
|
1667
|
+
permissions?: Record<string, any>;
|
|
1672
1668
|
[index: string]: any;
|
|
1673
1669
|
}
|
|
1674
1670
|
export interface PatchMenuV3LocalMenuGroupResponse {
|
|
@@ -1683,7 +1679,7 @@ export interface PatchMenuV3LocalMenuGroupResponse {
|
|
|
1683
1679
|
deleted_at?: string;
|
|
1684
1680
|
version?: number;
|
|
1685
1681
|
vendor_metadata?: VendorMetadataDTO[];
|
|
1686
|
-
permissions?: any
|
|
1682
|
+
permissions?: Record<string, any>;
|
|
1687
1683
|
[index: string]: any;
|
|
1688
1684
|
}
|
|
1689
1685
|
export interface PatchMenuV3LocalMenuGroupRequest extends BaseRequest, PatchMenuV3LocalMenuGroupPath {
|
|
@@ -1704,7 +1700,7 @@ export interface DeleteMenuV3LocalMenuGroupResponse {
|
|
|
1704
1700
|
deleted_at?: string;
|
|
1705
1701
|
version?: number;
|
|
1706
1702
|
vendor_metadata?: VendorMetadataDTO[];
|
|
1707
|
-
permissions?: any
|
|
1703
|
+
permissions?: Record<string, any>;
|
|
1708
1704
|
[index: string]: any;
|
|
1709
1705
|
}
|
|
1710
1706
|
export interface DeleteMenuV3LocalMenuGroupRequest extends BaseRequest, DeleteMenuV3LocalMenuGroupPath {
|
|
@@ -1735,9 +1731,9 @@ export type PostMenuV3LocalMenuGroupsBody = {
|
|
|
1735
1731
|
allowed_global_menu_groups?: GlobalMenuGroupDTO[];
|
|
1736
1732
|
draft_brands?: DraftBrandDTO[];
|
|
1737
1733
|
published_brands?: PublishedBrandDTO[];
|
|
1738
|
-
id?: any
|
|
1734
|
+
id?: Record<string, any>;
|
|
1739
1735
|
vendor_metadata?: VendorMetadataDTO[];
|
|
1740
|
-
permissions?: any
|
|
1736
|
+
permissions?: Record<string, any>;
|
|
1741
1737
|
[index: string]: any;
|
|
1742
1738
|
}[];
|
|
1743
1739
|
export interface PostMenuV3LocalMenuGroupsResponse {
|
|
@@ -1860,7 +1856,7 @@ export interface PostMenuV3GlobalMenuGroupBody {
|
|
|
1860
1856
|
published_brands?: PublishedBrandDTO[];
|
|
1861
1857
|
posid_segment: string;
|
|
1862
1858
|
vendor_metadata?: VendorMetadataDTO[];
|
|
1863
|
-
permissions?: any
|
|
1859
|
+
permissions?: Record<string, any>;
|
|
1864
1860
|
[index: string]: any;
|
|
1865
1861
|
}
|
|
1866
1862
|
export type PostMenuV3GlobalMenuGroupResponse = GlobalMenuGroupDTO;
|
|
@@ -1891,7 +1887,7 @@ export interface PatchMenuV3GlobalMenuGroupBody {
|
|
|
1891
1887
|
id?: string;
|
|
1892
1888
|
version?: number;
|
|
1893
1889
|
vendor_metadata?: VendorMetadataDTO[];
|
|
1894
|
-
permissions?: any
|
|
1890
|
+
permissions?: Record<string, any>;
|
|
1895
1891
|
[index: string]: any;
|
|
1896
1892
|
}
|
|
1897
1893
|
export type PatchMenuV3GlobalMenuGroupResponse = GlobalMenuGroupDTO;
|
|
@@ -1917,7 +1913,7 @@ export interface DeleteMenuV3GlobalMenuGroupResponse {
|
|
|
1917
1913
|
deleted_at?: string;
|
|
1918
1914
|
version?: number;
|
|
1919
1915
|
vendor_metadata?: VendorMetadataDTO[];
|
|
1920
|
-
permissions?: any
|
|
1916
|
+
permissions?: Record<string, any>;
|
|
1921
1917
|
[index: string]: any;
|
|
1922
1918
|
}
|
|
1923
1919
|
export interface DeleteMenuV3GlobalMenuGroupRequest extends BaseRequest, RequestQuery<DeleteMenuV3GlobalMenuGroupQuery>, DeleteMenuV3GlobalMenuGroupPath {
|
|
@@ -1949,9 +1945,9 @@ export type PostMenuV3GlobalMenuGroupsBody = {
|
|
|
1949
1945
|
draft_brands?: DraftBrandDTO[];
|
|
1950
1946
|
published_brands?: PublishedBrandDTO[];
|
|
1951
1947
|
posid_segment: string;
|
|
1952
|
-
id?: any
|
|
1948
|
+
id?: Record<string, any>;
|
|
1953
1949
|
vendor_metadata?: VendorMetadataDTO[];
|
|
1954
|
-
permissions?: any
|
|
1950
|
+
permissions?: Record<string, any>;
|
|
1955
1951
|
[index: string]: any;
|
|
1956
1952
|
}[];
|
|
1957
1953
|
export interface PostMenuV3GlobalMenuGroupsResponse {
|
|
@@ -2040,13 +2036,13 @@ export interface PostMenuV3DraftBrandBody {
|
|
|
2040
2036
|
local_menu_group_id?: string;
|
|
2041
2037
|
global_menu_group_id?: string;
|
|
2042
2038
|
posid_segment?: string;
|
|
2043
|
-
id?: any
|
|
2039
|
+
id?: Record<string, any>;
|
|
2044
2040
|
changes?: BrandChangeDTO[];
|
|
2045
2041
|
local_menu_group?: LocalMenuGroupDTO;
|
|
2046
2042
|
global_menu_group?: GlobalMenuGroupDTO;
|
|
2047
2043
|
vendor_metadata?: VendorMetadataDTO[];
|
|
2048
2044
|
attachments?: FileAttachmentsDTO;
|
|
2049
|
-
permissions?: any
|
|
2045
|
+
permissions?: Record<string, any>;
|
|
2050
2046
|
[index: string]: any;
|
|
2051
2047
|
}
|
|
2052
2048
|
export type PostMenuV3DraftBrandResponse = DraftBrandDTO;
|
|
@@ -2094,7 +2090,7 @@ export interface PatchMenuV3DraftBrandBody {
|
|
|
2094
2090
|
global_menu_group?: GlobalMenuGroupDTO;
|
|
2095
2091
|
vendor_metadata?: VendorMetadataDTO[];
|
|
2096
2092
|
attachments?: FileAttachmentsDTO;
|
|
2097
|
-
permissions?: any
|
|
2093
|
+
permissions?: Record<string, any>;
|
|
2098
2094
|
[index: string]: any;
|
|
2099
2095
|
}
|
|
2100
2096
|
export type PatchMenuV3DraftBrandResponse = DraftBrandDTO;
|
|
@@ -2147,13 +2143,13 @@ export type PostMenuV3DraftBrandsBody = {
|
|
|
2147
2143
|
local_menu_group_id?: string;
|
|
2148
2144
|
global_menu_group_id?: string;
|
|
2149
2145
|
posid_segment?: string;
|
|
2150
|
-
id?: any
|
|
2146
|
+
id?: Record<string, any>;
|
|
2151
2147
|
changes?: BrandChangeDTO[];
|
|
2152
2148
|
local_menu_group?: LocalMenuGroupDTO;
|
|
2153
2149
|
global_menu_group?: GlobalMenuGroupDTO;
|
|
2154
2150
|
vendor_metadata?: VendorMetadataDTO[];
|
|
2155
2151
|
attachments?: FileAttachmentsDTO;
|
|
2156
|
-
permissions?: any
|
|
2152
|
+
permissions?: Record<string, any>;
|
|
2157
2153
|
[index: string]: any;
|
|
2158
2154
|
}[];
|
|
2159
2155
|
export interface PostMenuV3DraftBrandsResponse {
|
|
@@ -2374,11 +2370,11 @@ export interface PostMenuV3BrandBody {
|
|
|
2374
2370
|
local_menu_group_id?: string;
|
|
2375
2371
|
global_menu_group_id?: string;
|
|
2376
2372
|
posid_segment?: string;
|
|
2377
|
-
id?: any
|
|
2373
|
+
id?: Record<string, any>;
|
|
2378
2374
|
local_menu_group?: LocalMenuGroupDTO;
|
|
2379
2375
|
global_menu_group?: GlobalMenuGroupDTO;
|
|
2380
2376
|
attachments?: FileAttachmentsDTO;
|
|
2381
|
-
permissions?: any
|
|
2377
|
+
permissions?: Record<string, any>;
|
|
2382
2378
|
[index: string]: any;
|
|
2383
2379
|
}
|
|
2384
2380
|
export type PostMenuV3BrandResponse = PublishedBrandDTO;
|
|
@@ -2427,7 +2423,7 @@ export interface PatchMenuV3BrandBody {
|
|
|
2427
2423
|
local_menu_group?: LocalMenuGroupDTO;
|
|
2428
2424
|
global_menu_group?: GlobalMenuGroupDTO;
|
|
2429
2425
|
attachments?: FileAttachmentsDTO;
|
|
2430
|
-
permissions?: any
|
|
2426
|
+
permissions?: Record<string, any>;
|
|
2431
2427
|
[index: string]: any;
|
|
2432
2428
|
}
|
|
2433
2429
|
export type PatchMenuV3BrandResponse = PublishedBrandDTO;
|
|
@@ -2486,11 +2482,11 @@ export type PostMenuV3BrandsBody = {
|
|
|
2486
2482
|
local_menu_group_id?: string;
|
|
2487
2483
|
global_menu_group_id?: string;
|
|
2488
2484
|
posid_segment?: string;
|
|
2489
|
-
id?: any
|
|
2485
|
+
id?: Record<string, any>;
|
|
2490
2486
|
local_menu_group?: LocalMenuGroupDTO;
|
|
2491
2487
|
global_menu_group?: GlobalMenuGroupDTO;
|
|
2492
2488
|
attachments?: FileAttachmentsDTO;
|
|
2493
|
-
permissions?: any
|
|
2489
|
+
permissions?: Record<string, any>;
|
|
2494
2490
|
[index: string]: any;
|
|
2495
2491
|
}[];
|
|
2496
2492
|
export interface PostMenuV3BrandsResponse {
|
|
@@ -2646,7 +2642,7 @@ export interface PostMenuV3BrandLocalResponse {
|
|
|
2646
2642
|
global_menu_group?: GlobalMenuGroupDTO;
|
|
2647
2643
|
vendor_metadata?: VendorMetadataDTO[];
|
|
2648
2644
|
attachments?: FileAttachmentsDTO;
|
|
2649
|
-
permissions?: any
|
|
2645
|
+
permissions?: Record<string, any>;
|
|
2650
2646
|
[index: string]: any;
|
|
2651
2647
|
}
|
|
2652
2648
|
export interface PostMenuV3BrandLocalRequest extends BaseRequest, RequestQuery<PostMenuV3BrandLocalQuery>, PostMenuV3BrandLocalPath {
|
|
@@ -2658,12 +2654,12 @@ export interface PostMenuV3DraftMenuBody {
|
|
|
2658
2654
|
parent_id?: string;
|
|
2659
2655
|
name: string;
|
|
2660
2656
|
brand_id: string;
|
|
2661
|
-
id?: any
|
|
2662
|
-
applied_diff_snapshot?: any
|
|
2657
|
+
id?: Record<string, any>;
|
|
2658
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
2663
2659
|
brand?: DraftBrandDTO;
|
|
2664
2660
|
changes?: MenuChangeDTO[];
|
|
2665
2661
|
vendor_metadata?: VendorMetadataDTO[];
|
|
2666
|
-
permissions?: any
|
|
2662
|
+
permissions?: Record<string, any>;
|
|
2667
2663
|
[index: string]: any;
|
|
2668
2664
|
}
|
|
2669
2665
|
export type PostMenuV3DraftMenuResponse = DraftMenuDTO;
|
|
@@ -2692,12 +2688,12 @@ export interface PatchMenuV3DraftMenuBody {
|
|
|
2692
2688
|
parent_id?: string;
|
|
2693
2689
|
name?: string;
|
|
2694
2690
|
brand_id?: string;
|
|
2695
|
-
applied_diff_snapshot?: any
|
|
2691
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
2696
2692
|
version?: number;
|
|
2697
2693
|
brand?: DraftBrandDTO;
|
|
2698
2694
|
changes?: MenuChangeDTO[];
|
|
2699
2695
|
vendor_metadata?: VendorMetadataDTO[];
|
|
2700
|
-
permissions?: any
|
|
2696
|
+
permissions?: Record<string, any>;
|
|
2701
2697
|
[index: string]: any;
|
|
2702
2698
|
}
|
|
2703
2699
|
export type PatchMenuV3DraftMenuResponse = DraftMenuDTO;
|
|
@@ -2737,12 +2733,12 @@ export type PostMenuV3DraftMenusBody = {
|
|
|
2737
2733
|
parent_id?: string;
|
|
2738
2734
|
name: string;
|
|
2739
2735
|
brand_id: string;
|
|
2740
|
-
id?: any
|
|
2741
|
-
applied_diff_snapshot?: any
|
|
2736
|
+
id?: Record<string, any>;
|
|
2737
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
2742
2738
|
brand?: DraftBrandDTO;
|
|
2743
2739
|
changes?: MenuChangeDTO[];
|
|
2744
2740
|
vendor_metadata?: VendorMetadataDTO[];
|
|
2745
|
-
permissions?: any
|
|
2741
|
+
permissions?: Record<string, any>;
|
|
2746
2742
|
[index: string]: any;
|
|
2747
2743
|
}[];
|
|
2748
2744
|
export interface PostMenuV3DraftMenusResponse {
|
|
@@ -2876,14 +2872,14 @@ export interface PostMenuV3DraftCategoryBody {
|
|
|
2876
2872
|
is_active?: boolean;
|
|
2877
2873
|
brand_id: string;
|
|
2878
2874
|
menu_id: string;
|
|
2879
|
-
id?: any
|
|
2880
|
-
applied_diff_snapshot?: any
|
|
2875
|
+
id?: Record<string, any>;
|
|
2876
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
2881
2877
|
menu?: DraftMenuDTO;
|
|
2882
2878
|
items?: DraftCategoryToItemRelationshipDTO[];
|
|
2883
2879
|
brand?: DraftBrandDTO;
|
|
2884
2880
|
changes?: CategoryChangeDTO[];
|
|
2885
2881
|
vendor_metadata?: VendorMetadataDTO[];
|
|
2886
|
-
permissions?: any
|
|
2882
|
+
permissions?: Record<string, any>;
|
|
2887
2883
|
[index: string]: any;
|
|
2888
2884
|
}
|
|
2889
2885
|
export type PostMenuV3DraftCategoryResponse = DraftCategoryDTO;
|
|
@@ -2915,14 +2911,14 @@ export interface PatchMenuV3DraftCategoryBody {
|
|
|
2915
2911
|
is_active?: boolean;
|
|
2916
2912
|
brand_id?: string;
|
|
2917
2913
|
menu_id?: string;
|
|
2918
|
-
applied_diff_snapshot?: any
|
|
2914
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
2919
2915
|
version?: number;
|
|
2920
2916
|
menu?: DraftMenuDTO;
|
|
2921
2917
|
items?: DraftCategoryToItemRelationshipDTO[];
|
|
2922
2918
|
brand?: DraftBrandDTO;
|
|
2923
2919
|
changes?: CategoryChangeDTO[];
|
|
2924
2920
|
vendor_metadata?: VendorMetadataDTO[];
|
|
2925
|
-
permissions?: any
|
|
2921
|
+
permissions?: Record<string, any>;
|
|
2926
2922
|
[index: string]: any;
|
|
2927
2923
|
}
|
|
2928
2924
|
export type PatchMenuV3DraftCategoryResponse = DraftCategoryDTO;
|
|
@@ -2957,14 +2953,14 @@ export type PostMenuV3DraftCategoriesBody = {
|
|
|
2957
2953
|
is_active?: boolean;
|
|
2958
2954
|
brand_id: string;
|
|
2959
2955
|
menu_id: string;
|
|
2960
|
-
id?: any
|
|
2961
|
-
applied_diff_snapshot?: any
|
|
2956
|
+
id?: Record<string, any>;
|
|
2957
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
2962
2958
|
menu?: DraftMenuDTO;
|
|
2963
2959
|
items?: DraftCategoryToItemRelationshipDTO[];
|
|
2964
2960
|
brand?: DraftBrandDTO;
|
|
2965
2961
|
changes?: CategoryChangeDTO[];
|
|
2966
2962
|
vendor_metadata?: VendorMetadataDTO[];
|
|
2967
|
-
permissions?: any
|
|
2963
|
+
permissions?: Record<string, any>;
|
|
2968
2964
|
[index: string]: any;
|
|
2969
2965
|
}[];
|
|
2970
2966
|
export interface PostMenuV3DraftCategoriesResponse {
|
|
@@ -3008,14 +3004,14 @@ export interface PostMenuV3DraftCategoryRelationshipsItemBody {
|
|
|
3008
3004
|
category_id: string;
|
|
3009
3005
|
brand_id: string;
|
|
3010
3006
|
sequence?: number;
|
|
3011
|
-
id?: any
|
|
3012
|
-
applied_diff_snapshot?: any
|
|
3007
|
+
id?: Record<string, any>;
|
|
3008
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
3013
3009
|
category?: DraftCategoryDTO;
|
|
3014
3010
|
item?: DraftItemDTO;
|
|
3015
3011
|
brand?: DraftBrandDTO;
|
|
3016
3012
|
changes?: CategoryToItemRelationshipChangeDTO[];
|
|
3017
3013
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3018
|
-
permissions?: any
|
|
3014
|
+
permissions?: Record<string, any>;
|
|
3019
3015
|
[index: string]: any;
|
|
3020
3016
|
}
|
|
3021
3017
|
export type PostMenuV3DraftCategoryRelationshipsItemResponse = DraftCategoryToItemRelationshipDTO;
|
|
@@ -3045,14 +3041,14 @@ export interface PatchMenuV3DraftCategoryRelationshipsItemBody {
|
|
|
3045
3041
|
category_id?: string;
|
|
3046
3042
|
brand_id?: string;
|
|
3047
3043
|
sequence?: number;
|
|
3048
|
-
applied_diff_snapshot?: any
|
|
3044
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
3049
3045
|
version?: number;
|
|
3050
3046
|
category?: DraftCategoryDTO;
|
|
3051
3047
|
item?: DraftItemDTO;
|
|
3052
3048
|
brand?: DraftBrandDTO;
|
|
3053
3049
|
changes?: CategoryToItemRelationshipChangeDTO[];
|
|
3054
3050
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3055
|
-
permissions?: any
|
|
3051
|
+
permissions?: Record<string, any>;
|
|
3056
3052
|
[index: string]: any;
|
|
3057
3053
|
}
|
|
3058
3054
|
export type PatchMenuV3DraftCategoryRelationshipsItemResponse = DraftCategoryToItemRelationshipDTO;
|
|
@@ -3093,14 +3089,14 @@ export type PostMenuV3DraftCategoryRelationshipsItemsBody = {
|
|
|
3093
3089
|
category_id: string;
|
|
3094
3090
|
brand_id: string;
|
|
3095
3091
|
sequence?: number;
|
|
3096
|
-
id?: any
|
|
3097
|
-
applied_diff_snapshot?: any
|
|
3092
|
+
id?: Record<string, any>;
|
|
3093
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
3098
3094
|
category?: DraftCategoryDTO;
|
|
3099
3095
|
item?: DraftItemDTO;
|
|
3100
3096
|
brand?: DraftBrandDTO;
|
|
3101
3097
|
changes?: CategoryToItemRelationshipChangeDTO[];
|
|
3102
3098
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3103
|
-
permissions?: any
|
|
3099
|
+
permissions?: Record<string, any>;
|
|
3104
3100
|
[index: string]: any;
|
|
3105
3101
|
}[];
|
|
3106
3102
|
export interface PostMenuV3DraftCategoryRelationshipsItemsResponse {
|
|
@@ -3183,19 +3179,19 @@ export interface PostMenuV3DraftItemBody {
|
|
|
3183
3179
|
calories?: number;
|
|
3184
3180
|
is_active?: boolean;
|
|
3185
3181
|
posid?: string;
|
|
3186
|
-
tax_tags?: any[];
|
|
3182
|
+
tax_tags?: Record<string, any>[];
|
|
3187
3183
|
brand_id: string;
|
|
3188
3184
|
line_route?: string;
|
|
3189
3185
|
posid_segment?: string;
|
|
3190
|
-
id?: any
|
|
3191
|
-
applied_diff_snapshot?: any
|
|
3186
|
+
id?: Record<string, any>;
|
|
3187
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
3192
3188
|
brand?: DraftBrandDTO;
|
|
3193
3189
|
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
3194
3190
|
changes?: ItemChangeDTO[];
|
|
3195
3191
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3196
3192
|
attachments?: FileAttachmentsDTO;
|
|
3197
3193
|
weight?: WeightDTO;
|
|
3198
|
-
permissions?: any
|
|
3194
|
+
permissions?: Record<string, any>;
|
|
3199
3195
|
[index: string]: any;
|
|
3200
3196
|
}
|
|
3201
3197
|
export type PostMenuV3DraftItemResponse = DraftItemDTO;
|
|
@@ -3231,11 +3227,11 @@ export interface PatchMenuV3DraftItemBody {
|
|
|
3231
3227
|
calories?: number;
|
|
3232
3228
|
is_active?: boolean;
|
|
3233
3229
|
posid?: string;
|
|
3234
|
-
tax_tags?: any[];
|
|
3230
|
+
tax_tags?: Record<string, any>[];
|
|
3235
3231
|
brand_id?: string;
|
|
3236
3232
|
line_route?: string;
|
|
3237
3233
|
posid_segment?: string;
|
|
3238
|
-
applied_diff_snapshot?: any
|
|
3234
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
3239
3235
|
version?: number;
|
|
3240
3236
|
brand?: DraftBrandDTO;
|
|
3241
3237
|
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
@@ -3243,7 +3239,7 @@ export interface PatchMenuV3DraftItemBody {
|
|
|
3243
3239
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3244
3240
|
attachments?: FileAttachmentsDTO;
|
|
3245
3241
|
weight?: WeightDTO;
|
|
3246
|
-
permissions?: any
|
|
3242
|
+
permissions?: Record<string, any>;
|
|
3247
3243
|
[index: string]: any;
|
|
3248
3244
|
}
|
|
3249
3245
|
export type PatchMenuV3DraftItemResponse = DraftItemDTO;
|
|
@@ -3290,19 +3286,19 @@ export type PostMenuV3DraftItemsBody = {
|
|
|
3290
3286
|
calories?: number;
|
|
3291
3287
|
is_active?: boolean;
|
|
3292
3288
|
posid?: string;
|
|
3293
|
-
tax_tags?: any[];
|
|
3289
|
+
tax_tags?: Record<string, any>[];
|
|
3294
3290
|
brand_id: string;
|
|
3295
3291
|
line_route?: string;
|
|
3296
3292
|
posid_segment?: string;
|
|
3297
|
-
id?: any
|
|
3298
|
-
applied_diff_snapshot?: any
|
|
3293
|
+
id?: Record<string, any>;
|
|
3294
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
3299
3295
|
brand?: DraftBrandDTO;
|
|
3300
3296
|
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
3301
3297
|
changes?: ItemChangeDTO[];
|
|
3302
3298
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3303
3299
|
attachments?: FileAttachmentsDTO;
|
|
3304
3300
|
weight?: WeightDTO;
|
|
3305
|
-
permissions?: any
|
|
3301
|
+
permissions?: Record<string, any>;
|
|
3306
3302
|
[index: string]: any;
|
|
3307
3303
|
}[];
|
|
3308
3304
|
export interface PostMenuV3DraftItemsResponse {
|
|
@@ -3326,7 +3322,7 @@ export interface GetMenuV3DraftItemsCountResponse {
|
|
|
3326
3322
|
export interface GetMenuV3DraftItemsCountRequest extends BaseRequest, RequestQuery<GetMenuV3DraftItemsCountQuery> {
|
|
3327
3323
|
}
|
|
3328
3324
|
export interface PatchMenuV3DraftItemsBulkUpdateBody {
|
|
3329
|
-
id_list: any[];
|
|
3325
|
+
id_list: Record<string, any>[];
|
|
3330
3326
|
parent?: DraftItemDTO;
|
|
3331
3327
|
children?: DraftItemDTO[];
|
|
3332
3328
|
modifier_groups?: DraftItemToModifierGroupRelationshipDTO[];
|
|
@@ -3341,18 +3337,18 @@ export interface PatchMenuV3DraftItemsBulkUpdateBody {
|
|
|
3341
3337
|
calories?: number;
|
|
3342
3338
|
is_active?: boolean;
|
|
3343
3339
|
posid?: string;
|
|
3344
|
-
tax_tags?: any[];
|
|
3340
|
+
tax_tags?: Record<string, any>[];
|
|
3345
3341
|
brand_id?: string;
|
|
3346
3342
|
line_route?: string;
|
|
3347
3343
|
posid_segment?: string;
|
|
3348
|
-
applied_diff_snapshot?: any
|
|
3344
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
3349
3345
|
brand?: DraftBrandDTO;
|
|
3350
3346
|
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
3351
3347
|
changes?: ItemChangeDTO[];
|
|
3352
3348
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3353
3349
|
attachments?: FileAttachmentsDTO;
|
|
3354
3350
|
weight?: WeightDTO;
|
|
3355
|
-
permissions?: any
|
|
3351
|
+
permissions?: Record<string, any>;
|
|
3356
3352
|
[index: string]: any;
|
|
3357
3353
|
}
|
|
3358
3354
|
export interface PatchMenuV3DraftItemsBulkUpdateResponse {
|
|
@@ -3462,14 +3458,14 @@ export interface PostMenuV3DraftItemRelationshipsModifierGroupBody {
|
|
|
3462
3458
|
item_id: string;
|
|
3463
3459
|
brand_id: string;
|
|
3464
3460
|
sequence?: number;
|
|
3465
|
-
id?: any
|
|
3466
|
-
applied_diff_snapshot?: any
|
|
3461
|
+
id?: Record<string, any>;
|
|
3462
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
3467
3463
|
item?: DraftItemDTO;
|
|
3468
3464
|
modifier_group?: DraftModifierGroupDTO;
|
|
3469
3465
|
brand?: DraftBrandDTO;
|
|
3470
3466
|
changes?: ItemToModifierGroupRelationshipChangeDTO[];
|
|
3471
3467
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3472
|
-
permissions?: any
|
|
3468
|
+
permissions?: Record<string, any>;
|
|
3473
3469
|
[index: string]: any;
|
|
3474
3470
|
}
|
|
3475
3471
|
export type PostMenuV3DraftItemRelationshipsModifierGroupResponse = DraftItemToModifierGroupRelationshipDTO;
|
|
@@ -3499,14 +3495,14 @@ export interface PatchMenuV3DraftItemRelationshipsModifierGroupBody {
|
|
|
3499
3495
|
item_id?: string;
|
|
3500
3496
|
brand_id?: string;
|
|
3501
3497
|
sequence?: number;
|
|
3502
|
-
applied_diff_snapshot?: any
|
|
3498
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
3503
3499
|
version?: number;
|
|
3504
3500
|
item?: DraftItemDTO;
|
|
3505
3501
|
modifier_group?: DraftModifierGroupDTO;
|
|
3506
3502
|
brand?: DraftBrandDTO;
|
|
3507
3503
|
changes?: ItemToModifierGroupRelationshipChangeDTO[];
|
|
3508
3504
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3509
|
-
permissions?: any
|
|
3505
|
+
permissions?: Record<string, any>;
|
|
3510
3506
|
[index: string]: any;
|
|
3511
3507
|
}
|
|
3512
3508
|
export type PatchMenuV3DraftItemRelationshipsModifierGroupResponse = DraftItemToModifierGroupRelationshipDTO;
|
|
@@ -3547,14 +3543,14 @@ export type PostMenuV3DraftItemRelationshipsModifierGroupsBody = {
|
|
|
3547
3543
|
item_id: string;
|
|
3548
3544
|
brand_id: string;
|
|
3549
3545
|
sequence?: number;
|
|
3550
|
-
id?: any
|
|
3551
|
-
applied_diff_snapshot?: any
|
|
3546
|
+
id?: Record<string, any>;
|
|
3547
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
3552
3548
|
item?: DraftItemDTO;
|
|
3553
3549
|
modifier_group?: DraftModifierGroupDTO;
|
|
3554
3550
|
brand?: DraftBrandDTO;
|
|
3555
3551
|
changes?: ItemToModifierGroupRelationshipChangeDTO[];
|
|
3556
3552
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3557
|
-
permissions?: any
|
|
3553
|
+
permissions?: Record<string, any>;
|
|
3558
3554
|
[index: string]: any;
|
|
3559
3555
|
}[];
|
|
3560
3556
|
export interface PostMenuV3DraftItemRelationshipsModifierGroupsResponse {
|
|
@@ -3635,12 +3631,12 @@ export interface PostMenuV3DraftModifierGroupBody {
|
|
|
3635
3631
|
max?: number;
|
|
3636
3632
|
is_active?: boolean;
|
|
3637
3633
|
brand_id: string;
|
|
3638
|
-
id?: any
|
|
3639
|
-
applied_diff_snapshot?: any
|
|
3634
|
+
id?: Record<string, any>;
|
|
3635
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
3640
3636
|
brand?: DraftBrandDTO;
|
|
3641
3637
|
changes?: ModifierGroupChangeDTO[];
|
|
3642
3638
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3643
|
-
permissions?: any
|
|
3639
|
+
permissions?: Record<string, any>;
|
|
3644
3640
|
[index: string]: any;
|
|
3645
3641
|
}
|
|
3646
3642
|
export type PostMenuV3DraftModifierGroupResponse = DraftModifierGroupDTO;
|
|
@@ -3674,12 +3670,12 @@ export interface PatchMenuV3DraftModifierGroupBody {
|
|
|
3674
3670
|
max?: number;
|
|
3675
3671
|
is_active?: boolean;
|
|
3676
3672
|
brand_id?: string;
|
|
3677
|
-
applied_diff_snapshot?: any
|
|
3673
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
3678
3674
|
version?: number;
|
|
3679
3675
|
brand?: DraftBrandDTO;
|
|
3680
3676
|
changes?: ModifierGroupChangeDTO[];
|
|
3681
3677
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3682
|
-
permissions?: any
|
|
3678
|
+
permissions?: Record<string, any>;
|
|
3683
3679
|
[index: string]: any;
|
|
3684
3680
|
}
|
|
3685
3681
|
export type PatchMenuV3DraftModifierGroupResponse = DraftModifierGroupDTO;
|
|
@@ -3724,12 +3720,12 @@ export type PostMenuV3DraftModifierGroupsBody = {
|
|
|
3724
3720
|
max?: number;
|
|
3725
3721
|
is_active?: boolean;
|
|
3726
3722
|
brand_id: string;
|
|
3727
|
-
id?: any
|
|
3728
|
-
applied_diff_snapshot?: any
|
|
3723
|
+
id?: Record<string, any>;
|
|
3724
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
3729
3725
|
brand?: DraftBrandDTO;
|
|
3730
3726
|
changes?: ModifierGroupChangeDTO[];
|
|
3731
3727
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3732
|
-
permissions?: any
|
|
3728
|
+
permissions?: Record<string, any>;
|
|
3733
3729
|
[index: string]: any;
|
|
3734
3730
|
}[];
|
|
3735
3731
|
export interface PostMenuV3DraftModifierGroupsResponse {
|
|
@@ -3771,12 +3767,12 @@ export interface PostMenuV3DraftModifierGroupDuplicateResponse {
|
|
|
3771
3767
|
max?: number;
|
|
3772
3768
|
is_active?: boolean;
|
|
3773
3769
|
brand_id: string;
|
|
3774
|
-
applied_diff_snapshot?: any
|
|
3770
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
3775
3771
|
version?: number;
|
|
3776
3772
|
brand?: DraftBrandDTO;
|
|
3777
3773
|
changes?: ModifierGroupChangeDTO[];
|
|
3778
3774
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3779
|
-
permissions?: any
|
|
3775
|
+
permissions?: Record<string, any>;
|
|
3780
3776
|
[index: string]: any;
|
|
3781
3777
|
}
|
|
3782
3778
|
export interface PostMenuV3DraftModifierGroupDuplicateRequest extends BaseRequest, PostMenuV3DraftModifierGroupDuplicatePath {
|
|
@@ -3835,14 +3831,14 @@ export interface PostMenuV3DraftModifierGroupRelationshipsModifierBody {
|
|
|
3835
3831
|
modifier_group_id: string;
|
|
3836
3832
|
brand_id: string;
|
|
3837
3833
|
sequence?: number;
|
|
3838
|
-
id?: any
|
|
3839
|
-
applied_diff_snapshot?: any
|
|
3834
|
+
id?: Record<string, any>;
|
|
3835
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
3840
3836
|
modifier?: DraftModifierDTO;
|
|
3841
3837
|
modifier_group?: DraftModifierGroupDTO;
|
|
3842
3838
|
brand?: DraftBrandDTO;
|
|
3843
3839
|
changes?: ModifierGroupToModifierRelationshipChangeDTO[];
|
|
3844
3840
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3845
|
-
permissions?: any
|
|
3841
|
+
permissions?: Record<string, any>;
|
|
3846
3842
|
[index: string]: any;
|
|
3847
3843
|
}
|
|
3848
3844
|
export type PostMenuV3DraftModifierGroupRelationshipsModifierResponse = DraftModifierGroupToModifierRelationshipDTO;
|
|
@@ -3872,14 +3868,14 @@ export interface PatchMenuV3DraftModifierGroupRelationshipsModifierBody {
|
|
|
3872
3868
|
modifier_group_id?: string;
|
|
3873
3869
|
brand_id?: string;
|
|
3874
3870
|
sequence?: number;
|
|
3875
|
-
applied_diff_snapshot?: any
|
|
3871
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
3876
3872
|
version?: number;
|
|
3877
3873
|
modifier?: DraftModifierDTO;
|
|
3878
3874
|
modifier_group?: DraftModifierGroupDTO;
|
|
3879
3875
|
brand?: DraftBrandDTO;
|
|
3880
3876
|
changes?: ModifierGroupToModifierRelationshipChangeDTO[];
|
|
3881
3877
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3882
|
-
permissions?: any
|
|
3878
|
+
permissions?: Record<string, any>;
|
|
3883
3879
|
[index: string]: any;
|
|
3884
3880
|
}
|
|
3885
3881
|
export type PatchMenuV3DraftModifierGroupRelationshipsModifierResponse = DraftModifierGroupToModifierRelationshipDTO;
|
|
@@ -3920,14 +3916,14 @@ export type PostMenuV3DraftModifierGroupRelationshipsModifiersBody = {
|
|
|
3920
3916
|
modifier_group_id: string;
|
|
3921
3917
|
brand_id: string;
|
|
3922
3918
|
sequence?: number;
|
|
3923
|
-
id?: any
|
|
3924
|
-
applied_diff_snapshot?: any
|
|
3919
|
+
id?: Record<string, any>;
|
|
3920
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
3925
3921
|
modifier?: DraftModifierDTO;
|
|
3926
3922
|
modifier_group?: DraftModifierGroupDTO;
|
|
3927
3923
|
brand?: DraftBrandDTO;
|
|
3928
3924
|
changes?: ModifierGroupToModifierRelationshipChangeDTO[];
|
|
3929
3925
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3930
|
-
permissions?: any
|
|
3926
|
+
permissions?: Record<string, any>;
|
|
3931
3927
|
[index: string]: any;
|
|
3932
3928
|
}[];
|
|
3933
3929
|
export interface PostMenuV3DraftModifierGroupRelationshipsModifiersResponse {
|
|
@@ -4006,19 +4002,19 @@ export interface PostMenuV3DraftModifierBody {
|
|
|
4006
4002
|
description?: string;
|
|
4007
4003
|
price: number;
|
|
4008
4004
|
calories?: number;
|
|
4009
|
-
tax_tags?: any[];
|
|
4005
|
+
tax_tags?: Record<string, any>[];
|
|
4010
4006
|
is_active?: boolean;
|
|
4011
4007
|
posid?: string;
|
|
4012
4008
|
reporting: ReportingMetadataDTO;
|
|
4013
4009
|
posid_segment?: string;
|
|
4014
4010
|
brand_id: string;
|
|
4015
|
-
id?: any
|
|
4016
|
-
applied_diff_snapshot?: any
|
|
4011
|
+
id?: Record<string, any>;
|
|
4012
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
4017
4013
|
brand?: DraftBrandDTO;
|
|
4018
4014
|
changes?: ModifierChangeDTO[];
|
|
4019
4015
|
vendor_metadata?: VendorMetadataDTO[];
|
|
4020
4016
|
weight?: WeightDTO;
|
|
4021
|
-
permissions?: any
|
|
4017
|
+
permissions?: Record<string, any>;
|
|
4022
4018
|
[index: string]: any;
|
|
4023
4019
|
}
|
|
4024
4020
|
export type PostMenuV3DraftModifierResponse = DraftModifierDTO;
|
|
@@ -4050,19 +4046,19 @@ export interface PatchMenuV3DraftModifierBody {
|
|
|
4050
4046
|
description?: string;
|
|
4051
4047
|
price?: number;
|
|
4052
4048
|
calories?: number;
|
|
4053
|
-
tax_tags?: any[];
|
|
4049
|
+
tax_tags?: Record<string, any>[];
|
|
4054
4050
|
is_active?: boolean;
|
|
4055
4051
|
posid?: string;
|
|
4056
4052
|
reporting?: ReportingMetadataDTO;
|
|
4057
4053
|
posid_segment?: string;
|
|
4058
4054
|
brand_id?: string;
|
|
4059
|
-
applied_diff_snapshot?: any
|
|
4055
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
4060
4056
|
version?: number;
|
|
4061
4057
|
brand?: DraftBrandDTO;
|
|
4062
4058
|
changes?: ModifierChangeDTO[];
|
|
4063
4059
|
vendor_metadata?: VendorMetadataDTO[];
|
|
4064
4060
|
weight?: WeightDTO;
|
|
4065
|
-
permissions?: any
|
|
4061
|
+
permissions?: Record<string, any>;
|
|
4066
4062
|
[index: string]: any;
|
|
4067
4063
|
}
|
|
4068
4064
|
export type PatchMenuV3DraftModifierResponse = DraftModifierDTO;
|
|
@@ -4105,19 +4101,19 @@ export type PostMenuV3DraftModifiersBody = {
|
|
|
4105
4101
|
description?: string;
|
|
4106
4102
|
price: number;
|
|
4107
4103
|
calories?: number;
|
|
4108
|
-
tax_tags?: any[];
|
|
4104
|
+
tax_tags?: Record<string, any>[];
|
|
4109
4105
|
is_active?: boolean;
|
|
4110
4106
|
posid?: string;
|
|
4111
4107
|
reporting: ReportingMetadataDTO;
|
|
4112
4108
|
posid_segment?: string;
|
|
4113
4109
|
brand_id: string;
|
|
4114
|
-
id?: any
|
|
4115
|
-
applied_diff_snapshot?: any
|
|
4110
|
+
id?: Record<string, any>;
|
|
4111
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
4116
4112
|
brand?: DraftBrandDTO;
|
|
4117
4113
|
changes?: ModifierChangeDTO[];
|
|
4118
4114
|
vendor_metadata?: VendorMetadataDTO[];
|
|
4119
4115
|
weight?: WeightDTO;
|
|
4120
|
-
permissions?: any
|
|
4116
|
+
permissions?: Record<string, any>;
|
|
4121
4117
|
[index: string]: any;
|
|
4122
4118
|
}[];
|
|
4123
4119
|
export interface PostMenuV3DraftModifiersResponse {
|
|
@@ -4141,7 +4137,7 @@ export interface GetMenuV3DraftModifiersCountResponse {
|
|
|
4141
4137
|
export interface GetMenuV3DraftModifiersCountRequest extends BaseRequest, RequestQuery<GetMenuV3DraftModifiersCountQuery> {
|
|
4142
4138
|
}
|
|
4143
4139
|
export interface PatchMenuV3DraftModifiersBulkUpdateBody {
|
|
4144
|
-
id_list: any[];
|
|
4140
|
+
id_list: Record<string, any>[];
|
|
4145
4141
|
parent?: DraftModifierDTO;
|
|
4146
4142
|
children?: DraftModifierDTO[];
|
|
4147
4143
|
modifier_groups?: DraftModifierGroupToModifierRelationshipDTO[];
|
|
@@ -4152,18 +4148,18 @@ export interface PatchMenuV3DraftModifiersBulkUpdateBody {
|
|
|
4152
4148
|
description?: string;
|
|
4153
4149
|
price?: number;
|
|
4154
4150
|
calories?: number;
|
|
4155
|
-
tax_tags?: any[];
|
|
4151
|
+
tax_tags?: Record<string, any>[];
|
|
4156
4152
|
is_active?: boolean;
|
|
4157
4153
|
posid?: string;
|
|
4158
4154
|
reporting?: ReportingMetadataDTO;
|
|
4159
4155
|
posid_segment?: string;
|
|
4160
4156
|
brand_id?: string;
|
|
4161
|
-
applied_diff_snapshot?: any
|
|
4157
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
4162
4158
|
brand?: DraftBrandDTO;
|
|
4163
4159
|
changes?: ModifierChangeDTO[];
|
|
4164
4160
|
vendor_metadata?: VendorMetadataDTO[];
|
|
4165
4161
|
weight?: WeightDTO;
|
|
4166
|
-
permissions?: any
|
|
4162
|
+
permissions?: Record<string, any>;
|
|
4167
4163
|
[index: string]: any;
|
|
4168
4164
|
}
|
|
4169
4165
|
export interface PatchMenuV3DraftModifiersBulkUpdateResponse {
|
|
@@ -4222,8 +4218,8 @@ export interface PostMenuV3IntegrationsTransltrImportQuery {
|
|
|
4222
4218
|
"body.data"?: string;
|
|
4223
4219
|
}
|
|
4224
4220
|
export interface PostMenuV3IntegrationsTransltrImportResponse {
|
|
4225
|
-
errors?: any
|
|
4226
|
-
results?: any
|
|
4221
|
+
errors?: Record<string, any>;
|
|
4222
|
+
results?: Record<string, any>;
|
|
4227
4223
|
}
|
|
4228
4224
|
export interface PostMenuV3IntegrationsTransltrImportRequest extends BaseRequest, RequestQuery<PostMenuV3IntegrationsTransltrImportQuery> {
|
|
4229
4225
|
}
|
|
@@ -4243,17 +4239,17 @@ export interface GetMenuV3GlobalDiffResponse {
|
|
|
4243
4239
|
deleted_at?: string;
|
|
4244
4240
|
entity_type?: string;
|
|
4245
4241
|
local_id?: string;
|
|
4246
|
-
changes?: any
|
|
4247
|
-
local_changes?: any
|
|
4248
|
-
local_snapshot?: any
|
|
4242
|
+
changes?: Record<string, any>;
|
|
4243
|
+
local_changes?: Record<string, any>;
|
|
4244
|
+
local_snapshot?: Record<string, any>;
|
|
4249
4245
|
global_id?: string;
|
|
4250
|
-
global_snapshot?: any
|
|
4246
|
+
global_snapshot?: Record<string, any>;
|
|
4251
4247
|
brand_id?: string;
|
|
4252
4248
|
version?: number;
|
|
4253
4249
|
depends_on?: GlobalDiffDependencyDTO[];
|
|
4254
4250
|
is_depended_by?: GlobalDiffDependencyDTO[];
|
|
4255
4251
|
brand?: DraftBrandDTO;
|
|
4256
|
-
permissions?: any
|
|
4252
|
+
permissions?: Record<string, any>;
|
|
4257
4253
|
[index: string]: any;
|
|
4258
4254
|
}
|
|
4259
4255
|
export interface GetMenuV3GlobalDiffRequest extends BaseRequest, RequestQuery<GetMenuV3GlobalDiffQuery>, GetMenuV3GlobalDiffPath {
|
|
@@ -4290,5 +4286,4 @@ export interface GetMenuV3GlobalDiffsCountResponse {
|
|
|
4290
4286
|
}
|
|
4291
4287
|
export interface GetMenuV3GlobalDiffsCountRequest extends BaseRequest, RequestQuery<GetMenuV3GlobalDiffsCountQuery> {
|
|
4292
4288
|
}
|
|
4293
|
-
export {};
|
|
4294
4289
|
//# sourceMappingURL=menu.d.ts.map
|