@compassdigital/sdk.typescript 4.5.0 → 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.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 +10 -10
- package/lib/interface/location.d.ts.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 +240 -240
- package/lib/interface/menu.d.ts.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 +16 -16
- package/lib/interface/partner.d.ts.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 +4 -4
- package/lib/interface/promo.d.ts.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 +7 -7
- package/lib/interface/shoppingcart.d.ts.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/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 +10 -10
- package/src/interface/mealplan.ts +1 -1
- package/src/interface/menu.ts +240 -240
- package/src/interface/notification.ts +2 -2
- package/src/interface/order.ts +3 -3
- package/src/interface/partner.ts +16 -16
- package/src/interface/payment.ts +17 -4
- package/src/interface/promo.ts +4 -4
- package/src/interface/report.ts +1 -1
- package/src/interface/shoppingcart.ts +7 -7
- package/src/interface/task.ts +5 -5
- package/src/interface/user.ts +4 -4
- package/src/interface/vendor.ts +1 -1
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,7 +245,7 @@ export interface Success {
|
|
|
245
245
|
export interface Error {
|
|
246
246
|
error?: string;
|
|
247
247
|
code?: number;
|
|
248
|
-
data?: any
|
|
248
|
+
data?: Record<string, any>;
|
|
249
249
|
}
|
|
250
250
|
export type AmountOffExclusionTypes = "loyalty" | "discount" | "promo";
|
|
251
251
|
export interface Menus {
|
|
@@ -270,7 +270,7 @@ export interface GlobalMenuGroupDTO {
|
|
|
270
270
|
is_active?: boolean;
|
|
271
271
|
posid_segment?: string;
|
|
272
272
|
id?: string;
|
|
273
|
-
permissions?: any
|
|
273
|
+
permissions?: Record<string, any>;
|
|
274
274
|
[index: string]: any;
|
|
275
275
|
}
|
|
276
276
|
export interface DraftBrandDTO {
|
|
@@ -283,7 +283,7 @@ export interface DraftBrandDTO {
|
|
|
283
283
|
local_menu_group_id?: string;
|
|
284
284
|
global_menu_group_id?: string;
|
|
285
285
|
posid_segment?: string;
|
|
286
|
-
permissions?: any
|
|
286
|
+
permissions?: Record<string, any>;
|
|
287
287
|
[index: string]: any;
|
|
288
288
|
}
|
|
289
289
|
export interface PublishedBrandDTO {
|
|
@@ -296,7 +296,7 @@ export interface PublishedBrandDTO {
|
|
|
296
296
|
local_menu_group_id?: string;
|
|
297
297
|
global_menu_group_id?: string;
|
|
298
298
|
posid_segment?: string;
|
|
299
|
-
permissions?: any
|
|
299
|
+
permissions?: Record<string, any>;
|
|
300
300
|
[index: string]: any;
|
|
301
301
|
}
|
|
302
302
|
export interface VendorMetadataDTO {
|
|
@@ -315,7 +315,7 @@ export interface VendorMetadataDTO {
|
|
|
315
315
|
modifier_group_id?: string;
|
|
316
316
|
modifier_group_to_modifier_relationship_id?: string;
|
|
317
317
|
modifier_id?: string;
|
|
318
|
-
permissions?: any
|
|
318
|
+
permissions?: Record<string, any>;
|
|
319
319
|
[index: string]: any;
|
|
320
320
|
}
|
|
321
321
|
export interface InvalidInputErrorDTO {
|
|
@@ -391,7 +391,7 @@ export interface LocalMenuGroupDTO {
|
|
|
391
391
|
deleted_at?: string;
|
|
392
392
|
version?: number;
|
|
393
393
|
vendor_metadata?: VendorMetadataDTO[];
|
|
394
|
-
permissions?: any
|
|
394
|
+
permissions?: Record<string, any>;
|
|
395
395
|
[index: string]: any;
|
|
396
396
|
}
|
|
397
397
|
export interface DraftBrandDraftBrandDTO {
|
|
@@ -408,22 +408,22 @@ export interface DraftBrandDraftBrandDTO {
|
|
|
408
408
|
created_at?: FilterFieldDTO;
|
|
409
409
|
updated_at?: FilterFieldDTO;
|
|
410
410
|
deleted_at?: FilterFieldDTO;
|
|
411
|
-
parent?: any
|
|
412
|
-
children?: any[];
|
|
411
|
+
parent?: Record<string, any>;
|
|
412
|
+
children?: Record<string, any>[];
|
|
413
413
|
changes?: BrandChangeDTO[];
|
|
414
414
|
local_menu_group?: LocalMenuGroupDTO;
|
|
415
415
|
global_menu_group?: GlobalMenuGroupDTO;
|
|
416
416
|
menus?: DraftMenuDTO[];
|
|
417
|
-
categories?: any[];
|
|
418
|
-
category_to_item_relationships?: any[];
|
|
419
|
-
items?: any[];
|
|
420
|
-
item_to_modifier_group_relationships?: any[];
|
|
421
|
-
modifier_groups?: any[];
|
|
422
|
-
modifier_group_to_modifier_relationships?: any[];
|
|
423
|
-
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>[];
|
|
424
424
|
statuses?: BrandStatusDTO[];
|
|
425
425
|
vendor_metadata?: VendorMetadataDTO[];
|
|
426
|
-
attachments?: any
|
|
426
|
+
attachments?: Record<string, any>;
|
|
427
427
|
permissions?: FilterFieldDTO;
|
|
428
428
|
[index: string]: any;
|
|
429
429
|
}
|
|
@@ -432,28 +432,28 @@ export interface BrandChangeDTO {
|
|
|
432
432
|
insert?: FilterFieldDTO;
|
|
433
433
|
delete?: FilterFieldDTO;
|
|
434
434
|
snapshot_entity_id?: FilterFieldDTO;
|
|
435
|
-
snapshot_entity?: any
|
|
435
|
+
snapshot_entity?: Record<string, any>;
|
|
436
436
|
permissions?: FilterFieldDTO;
|
|
437
437
|
[index: string]: any;
|
|
438
438
|
}
|
|
439
439
|
export interface DraftMenuDTO {
|
|
440
|
-
parent?: any
|
|
441
|
-
children?: any[];
|
|
440
|
+
parent?: Record<string, any>;
|
|
441
|
+
children?: Record<string, any>[];
|
|
442
442
|
categories?: DraftCategoryDTO[];
|
|
443
443
|
id?: string;
|
|
444
444
|
parent_id?: string;
|
|
445
445
|
name?: string;
|
|
446
446
|
brand_id?: string;
|
|
447
447
|
applied_diff_snapshot?: FilterFieldDTO;
|
|
448
|
-
brand?: any
|
|
448
|
+
brand?: Record<string, any>;
|
|
449
449
|
changes?: MenuChangeDTO[];
|
|
450
450
|
vendor_metadata?: VendorMetadataDTO[];
|
|
451
451
|
permissions?: FilterFieldDTO;
|
|
452
452
|
[index: string]: any;
|
|
453
453
|
}
|
|
454
454
|
export interface DraftCategoryDTO {
|
|
455
|
-
parent?: any
|
|
456
|
-
children?: any[];
|
|
455
|
+
parent?: Record<string, any>;
|
|
456
|
+
children?: Record<string, any>[];
|
|
457
457
|
id?: string;
|
|
458
458
|
parent_id?: string;
|
|
459
459
|
name?: string;
|
|
@@ -463,17 +463,17 @@ export interface DraftCategoryDTO {
|
|
|
463
463
|
brand_id?: string;
|
|
464
464
|
menu_id?: string;
|
|
465
465
|
applied_diff_snapshot?: FilterFieldDTO;
|
|
466
|
-
menu?: any
|
|
466
|
+
menu?: Record<string, any>;
|
|
467
467
|
items?: DraftCategoryToItemRelationshipDTO[];
|
|
468
|
-
brand?: any
|
|
468
|
+
brand?: Record<string, any>;
|
|
469
469
|
changes?: CategoryChangeDTO[];
|
|
470
470
|
vendor_metadata?: VendorMetadataDTO[];
|
|
471
471
|
permissions?: FilterFieldDTO;
|
|
472
472
|
[index: string]: any;
|
|
473
473
|
}
|
|
474
474
|
export interface DraftCategoryToItemRelationshipDTO {
|
|
475
|
-
parent?: any
|
|
476
|
-
children?: any[];
|
|
475
|
+
parent?: Record<string, any>;
|
|
476
|
+
children?: Record<string, any>[];
|
|
477
477
|
id?: string;
|
|
478
478
|
parent_id?: string;
|
|
479
479
|
item_id?: string;
|
|
@@ -481,24 +481,24 @@ export interface DraftCategoryToItemRelationshipDTO {
|
|
|
481
481
|
brand_id?: FilterFieldDTO;
|
|
482
482
|
sequence?: number;
|
|
483
483
|
applied_diff_snapshot?: FilterFieldDTO;
|
|
484
|
-
category?: any
|
|
484
|
+
category?: Record<string, any>;
|
|
485
485
|
item?: DraftItemDTO;
|
|
486
|
-
brand?: any
|
|
486
|
+
brand?: Record<string, any>;
|
|
487
487
|
changes?: CategoryToItemRelationshipChangeDTO[];
|
|
488
488
|
vendor_metadata?: VendorMetadataDTO[];
|
|
489
489
|
permissions?: FilterFieldDTO;
|
|
490
490
|
[index: string]: any;
|
|
491
491
|
}
|
|
492
492
|
export interface DraftItemDTO {
|
|
493
|
-
parent?: any
|
|
494
|
-
children?: any[];
|
|
493
|
+
parent?: Record<string, any>;
|
|
494
|
+
children?: Record<string, any>[];
|
|
495
495
|
modifier_groups?: DraftItemToModifierGroupRelationshipDTO[];
|
|
496
496
|
id?: string;
|
|
497
497
|
parent_id?: string;
|
|
498
498
|
name?: string;
|
|
499
499
|
label?: string;
|
|
500
500
|
description?: string;
|
|
501
|
-
reporting?: any
|
|
501
|
+
reporting?: Record<string, any>;
|
|
502
502
|
price?: number;
|
|
503
503
|
barcode?: string;
|
|
504
504
|
calories?: number;
|
|
@@ -509,18 +509,18 @@ export interface DraftItemDTO {
|
|
|
509
509
|
line_route?: FilterFieldDTO;
|
|
510
510
|
posid_segment?: FilterFieldDTO;
|
|
511
511
|
applied_diff_snapshot?: FilterFieldDTO;
|
|
512
|
-
brand?: any
|
|
513
|
-
categories?: any[];
|
|
512
|
+
brand?: Record<string, any>;
|
|
513
|
+
categories?: Record<string, any>[];
|
|
514
514
|
changes?: ItemChangeDTO[];
|
|
515
515
|
vendor_metadata?: VendorMetadataDTO[];
|
|
516
516
|
attachments?: FileAttachmentsDTO;
|
|
517
|
-
weight?: any
|
|
517
|
+
weight?: Record<string, any>;
|
|
518
518
|
permissions?: FilterFieldDTO;
|
|
519
519
|
[index: string]: any;
|
|
520
520
|
}
|
|
521
521
|
export interface DraftItemToModifierGroupRelationshipDTO {
|
|
522
|
-
parent?: any
|
|
523
|
-
children?: any[];
|
|
522
|
+
parent?: Record<string, any>;
|
|
523
|
+
children?: Record<string, any>[];
|
|
524
524
|
id?: string;
|
|
525
525
|
parent_id?: string;
|
|
526
526
|
modifier_group_id?: string;
|
|
@@ -528,19 +528,19 @@ export interface DraftItemToModifierGroupRelationshipDTO {
|
|
|
528
528
|
brand_id?: FilterFieldDTO;
|
|
529
529
|
sequence?: number;
|
|
530
530
|
applied_diff_snapshot?: FilterFieldDTO;
|
|
531
|
-
item?: any
|
|
531
|
+
item?: Record<string, any>;
|
|
532
532
|
modifier_group?: DraftModifierGroupDTO;
|
|
533
|
-
brand?: any
|
|
533
|
+
brand?: Record<string, any>;
|
|
534
534
|
changes?: ItemToModifierGroupRelationshipChangeDTO[];
|
|
535
535
|
vendor_metadata?: VendorMetadataDTO[];
|
|
536
536
|
permissions?: FilterFieldDTO;
|
|
537
537
|
[index: string]: any;
|
|
538
538
|
}
|
|
539
539
|
export interface DraftModifierGroupDTO {
|
|
540
|
-
parent?: any
|
|
541
|
-
children?: any[];
|
|
540
|
+
parent?: Record<string, any>;
|
|
541
|
+
children?: Record<string, any>[];
|
|
542
542
|
modifiers?: DraftModifierGroupToModifierRelationshipDTO[];
|
|
543
|
-
items?: any[];
|
|
543
|
+
items?: Record<string, any>[];
|
|
544
544
|
id?: string;
|
|
545
545
|
parent_id?: string;
|
|
546
546
|
name?: string;
|
|
@@ -550,15 +550,15 @@ export interface DraftModifierGroupDTO {
|
|
|
550
550
|
is_active?: boolean;
|
|
551
551
|
brand_id?: string;
|
|
552
552
|
applied_diff_snapshot?: FilterFieldDTO;
|
|
553
|
-
brand?: any
|
|
553
|
+
brand?: Record<string, any>;
|
|
554
554
|
changes?: ModifierGroupChangeDTO[];
|
|
555
555
|
vendor_metadata?: VendorMetadataDTO[];
|
|
556
556
|
permissions?: FilterFieldDTO;
|
|
557
557
|
[index: string]: any;
|
|
558
558
|
}
|
|
559
559
|
export interface DraftModifierGroupToModifierRelationshipDTO {
|
|
560
|
-
parent?: any
|
|
561
|
-
children?: any[];
|
|
560
|
+
parent?: Record<string, any>;
|
|
561
|
+
children?: Record<string, any>[];
|
|
562
562
|
id?: string;
|
|
563
563
|
parent_id?: string;
|
|
564
564
|
modifier_id?: string;
|
|
@@ -567,17 +567,17 @@ export interface DraftModifierGroupToModifierRelationshipDTO {
|
|
|
567
567
|
sequence?: number;
|
|
568
568
|
applied_diff_snapshot?: FilterFieldDTO;
|
|
569
569
|
modifier?: DraftModifierDTO;
|
|
570
|
-
modifier_group?: any
|
|
571
|
-
brand?: any
|
|
570
|
+
modifier_group?: Record<string, any>;
|
|
571
|
+
brand?: Record<string, any>;
|
|
572
572
|
changes?: ModifierGroupToModifierRelationshipChangeDTO[];
|
|
573
573
|
vendor_metadata?: VendorMetadataDTO[];
|
|
574
574
|
permissions?: FilterFieldDTO;
|
|
575
575
|
[index: string]: any;
|
|
576
576
|
}
|
|
577
577
|
export interface DraftModifierDTO {
|
|
578
|
-
parent?: any
|
|
579
|
-
children?: any[];
|
|
580
|
-
modifier_groups?: any[];
|
|
578
|
+
parent?: Record<string, any>;
|
|
579
|
+
children?: Record<string, any>[];
|
|
580
|
+
modifier_groups?: Record<string, any>[];
|
|
581
581
|
id?: string;
|
|
582
582
|
parent_id?: string;
|
|
583
583
|
name?: string;
|
|
@@ -592,7 +592,7 @@ export interface DraftModifierDTO {
|
|
|
592
592
|
posid_segment?: FilterFieldDTO;
|
|
593
593
|
brand_id?: string;
|
|
594
594
|
applied_diff_snapshot?: FilterFieldDTO;
|
|
595
|
-
brand?: any
|
|
595
|
+
brand?: Record<string, any>;
|
|
596
596
|
changes?: ModifierChangeDTO[];
|
|
597
597
|
vendor_metadata?: VendorMetadataDTO[];
|
|
598
598
|
weight?: WeightDTO;
|
|
@@ -604,25 +604,25 @@ export interface ModifierChangeDTO {
|
|
|
604
604
|
insert?: FilterFieldDTO;
|
|
605
605
|
delete?: FilterFieldDTO;
|
|
606
606
|
snapshot_entity_id?: FilterFieldDTO;
|
|
607
|
-
snapshot_entity?: any
|
|
607
|
+
snapshot_entity?: Record<string, any>;
|
|
608
608
|
permissions?: FilterFieldDTO;
|
|
609
609
|
[index: string]: any;
|
|
610
610
|
}
|
|
611
611
|
export interface ReportingMetadataDTO {
|
|
612
612
|
category?: ReportingCategoryMetadataDTO;
|
|
613
|
-
id?: any
|
|
613
|
+
id?: Record<string, any>;
|
|
614
614
|
[index: string]: any;
|
|
615
615
|
}
|
|
616
616
|
export interface ReportingCategoryMetadataDTO {
|
|
617
617
|
primary?: "Food" | "Beverage" | "Sundry" | "Alcohol" | "Snack";
|
|
618
618
|
secondary?: FilterFieldDTO;
|
|
619
|
-
id?: any
|
|
619
|
+
id?: Record<string, any>;
|
|
620
620
|
[index: string]: any;
|
|
621
621
|
}
|
|
622
622
|
export interface WeightDTO {
|
|
623
623
|
unit?: FilterFieldDTO;
|
|
624
624
|
amount?: FilterFieldDTO;
|
|
625
|
-
id?: any
|
|
625
|
+
id?: Record<string, any>;
|
|
626
626
|
[index: string]: any;
|
|
627
627
|
}
|
|
628
628
|
export interface ModifierGroupToModifierRelationshipChangeDTO {
|
|
@@ -630,7 +630,7 @@ export interface ModifierGroupToModifierRelationshipChangeDTO {
|
|
|
630
630
|
insert?: FilterFieldDTO;
|
|
631
631
|
delete?: FilterFieldDTO;
|
|
632
632
|
snapshot_entity_id?: FilterFieldDTO;
|
|
633
|
-
snapshot_entity?: any
|
|
633
|
+
snapshot_entity?: Record<string, any>;
|
|
634
634
|
permissions?: FilterFieldDTO;
|
|
635
635
|
[index: string]: any;
|
|
636
636
|
}
|
|
@@ -639,7 +639,7 @@ export interface ModifierGroupChangeDTO {
|
|
|
639
639
|
insert?: FilterFieldDTO;
|
|
640
640
|
delete?: FilterFieldDTO;
|
|
641
641
|
snapshot_entity_id?: FilterFieldDTO;
|
|
642
|
-
snapshot_entity?: any
|
|
642
|
+
snapshot_entity?: Record<string, any>;
|
|
643
643
|
permissions?: FilterFieldDTO;
|
|
644
644
|
[index: string]: any;
|
|
645
645
|
}
|
|
@@ -648,7 +648,7 @@ export interface ItemToModifierGroupRelationshipChangeDTO {
|
|
|
648
648
|
insert?: FilterFieldDTO;
|
|
649
649
|
delete?: FilterFieldDTO;
|
|
650
650
|
snapshot_entity_id?: FilterFieldDTO;
|
|
651
|
-
snapshot_entity?: any
|
|
651
|
+
snapshot_entity?: Record<string, any>;
|
|
652
652
|
permissions?: FilterFieldDTO;
|
|
653
653
|
[index: string]: any;
|
|
654
654
|
}
|
|
@@ -657,13 +657,13 @@ export interface ItemChangeDTO {
|
|
|
657
657
|
insert?: FilterFieldDTO;
|
|
658
658
|
delete?: FilterFieldDTO;
|
|
659
659
|
snapshot_entity_id?: FilterFieldDTO;
|
|
660
|
-
snapshot_entity?: any
|
|
660
|
+
snapshot_entity?: Record<string, any>;
|
|
661
661
|
permissions?: FilterFieldDTO;
|
|
662
662
|
[index: string]: any;
|
|
663
663
|
}
|
|
664
664
|
export interface FileAttachmentsDTO {
|
|
665
665
|
thumbnail?: FilterFieldDTO;
|
|
666
|
-
id?: any
|
|
666
|
+
id?: Record<string, any>;
|
|
667
667
|
[index: string]: any;
|
|
668
668
|
}
|
|
669
669
|
export interface CategoryToItemRelationshipChangeDTO {
|
|
@@ -671,7 +671,7 @@ export interface CategoryToItemRelationshipChangeDTO {
|
|
|
671
671
|
insert?: FilterFieldDTO;
|
|
672
672
|
delete?: FilterFieldDTO;
|
|
673
673
|
snapshot_entity_id?: FilterFieldDTO;
|
|
674
|
-
snapshot_entity?: any
|
|
674
|
+
snapshot_entity?: Record<string, any>;
|
|
675
675
|
permissions?: FilterFieldDTO;
|
|
676
676
|
[index: string]: any;
|
|
677
677
|
}
|
|
@@ -680,7 +680,7 @@ export interface CategoryChangeDTO {
|
|
|
680
680
|
insert?: FilterFieldDTO;
|
|
681
681
|
delete?: FilterFieldDTO;
|
|
682
682
|
snapshot_entity_id?: FilterFieldDTO;
|
|
683
|
-
snapshot_entity?: any
|
|
683
|
+
snapshot_entity?: Record<string, any>;
|
|
684
684
|
permissions?: FilterFieldDTO;
|
|
685
685
|
[index: string]: any;
|
|
686
686
|
}
|
|
@@ -689,7 +689,7 @@ export interface MenuChangeDTO {
|
|
|
689
689
|
insert?: FilterFieldDTO;
|
|
690
690
|
delete?: FilterFieldDTO;
|
|
691
691
|
snapshot_entity_id?: FilterFieldDTO;
|
|
692
|
-
snapshot_entity?: any
|
|
692
|
+
snapshot_entity?: Record<string, any>;
|
|
693
693
|
permissions?: FilterFieldDTO;
|
|
694
694
|
[index: string]: any;
|
|
695
695
|
}
|
|
@@ -699,7 +699,7 @@ export interface BrandStatusDTO {
|
|
|
699
699
|
status?: string;
|
|
700
700
|
metadata?: FilterFieldDTO;
|
|
701
701
|
id?: string;
|
|
702
|
-
brand?: any
|
|
702
|
+
brand?: Record<string, any>;
|
|
703
703
|
permissions?: FilterFieldDTO;
|
|
704
704
|
[index: string]: any;
|
|
705
705
|
}
|
|
@@ -713,8 +713,8 @@ export interface DraftMenuDraftMenuDTO {
|
|
|
713
713
|
created_at?: FilterFieldDTO;
|
|
714
714
|
updated_at?: FilterFieldDTO;
|
|
715
715
|
deleted_at?: FilterFieldDTO;
|
|
716
|
-
parent?: any
|
|
717
|
-
children?: any[];
|
|
716
|
+
parent?: Record<string, any>;
|
|
717
|
+
children?: Record<string, any>[];
|
|
718
718
|
categories?: DraftCategoryDTO[];
|
|
719
719
|
brand?: DraftBrandDTO;
|
|
720
720
|
changes?: MenuChangeDTO[];
|
|
@@ -740,8 +740,8 @@ export interface DraftModifierDraftModifierDTO {
|
|
|
740
740
|
created_at?: FilterFieldDTO;
|
|
741
741
|
updated_at?: FilterFieldDTO;
|
|
742
742
|
deleted_at?: FilterFieldDTO;
|
|
743
|
-
parent?: any
|
|
744
|
-
children?: any[];
|
|
743
|
+
parent?: Record<string, any>;
|
|
744
|
+
children?: Record<string, any>[];
|
|
745
745
|
modifier_groups?: DraftModifierGroupToModifierRelationshipDTO[];
|
|
746
746
|
brand?: DraftBrandDTO;
|
|
747
747
|
changes?: ModifierChangeDTO[];
|
|
@@ -765,8 +765,8 @@ export interface DraftModifierGroupDraftModifierGroupDTO {
|
|
|
765
765
|
created_at?: FilterFieldDTO;
|
|
766
766
|
updated_at?: FilterFieldDTO;
|
|
767
767
|
deleted_at?: FilterFieldDTO;
|
|
768
|
-
parent?: any
|
|
769
|
-
children?: any[];
|
|
768
|
+
parent?: Record<string, any>;
|
|
769
|
+
children?: Record<string, any>[];
|
|
770
770
|
modifiers?: DraftModifierGroupToModifierRelationshipDTO[];
|
|
771
771
|
items?: DraftItemToModifierGroupRelationshipDTO[];
|
|
772
772
|
brand?: DraftBrandDTO;
|
|
@@ -795,8 +795,8 @@ export interface DraftItemDraftItemDTO {
|
|
|
795
795
|
created_at?: FilterFieldDTO;
|
|
796
796
|
updated_at?: FilterFieldDTO;
|
|
797
797
|
deleted_at?: FilterFieldDTO;
|
|
798
|
-
parent?: any
|
|
799
|
-
children?: any[];
|
|
798
|
+
parent?: Record<string, any>;
|
|
799
|
+
children?: Record<string, any>[];
|
|
800
800
|
brand?: DraftBrandDTO;
|
|
801
801
|
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
802
802
|
modifier_groups?: DraftItemToModifierGroupRelationshipDTO[];
|
|
@@ -817,7 +817,7 @@ export interface GlobalDiffDependencyDTO {
|
|
|
817
817
|
is_depended_by_id?: string;
|
|
818
818
|
id?: string;
|
|
819
819
|
depends_on?: GlobalDiffGlobalDiffDTO;
|
|
820
|
-
is_depended_by?: any
|
|
820
|
+
is_depended_by?: Record<string, any>;
|
|
821
821
|
permissions?: FilterFieldDTO;
|
|
822
822
|
[index: string]: any;
|
|
823
823
|
}
|
|
@@ -836,8 +836,8 @@ export interface GlobalDiffGlobalDiffDTO {
|
|
|
836
836
|
created_at?: FilterFieldDTO;
|
|
837
837
|
updated_at?: FilterFieldDTO;
|
|
838
838
|
deleted_at?: FilterFieldDTO;
|
|
839
|
-
depends_on?: any[];
|
|
840
|
-
is_depended_by?: any[];
|
|
839
|
+
depends_on?: Record<string, any>[];
|
|
840
|
+
is_depended_by?: Record<string, any>[];
|
|
841
841
|
brand?: DraftBrandDTO;
|
|
842
842
|
permissions?: FilterFieldDTO;
|
|
843
843
|
[index: string]: any;
|
|
@@ -848,21 +848,21 @@ export interface DiffDTO {
|
|
|
848
848
|
created_at?: string;
|
|
849
849
|
updated_at?: string;
|
|
850
850
|
deleted_at?: string;
|
|
851
|
-
child_nodes?: any[];
|
|
851
|
+
child_nodes?: Record<string, any>[];
|
|
852
852
|
name?: string;
|
|
853
853
|
entity_type?: string;
|
|
854
854
|
local_id?: string;
|
|
855
|
-
changes?: any
|
|
856
|
-
local_changes?: any
|
|
857
|
-
local_snapshot?: any
|
|
855
|
+
changes?: Record<string, any>;
|
|
856
|
+
local_changes?: Record<string, any>;
|
|
857
|
+
local_snapshot?: Record<string, any>;
|
|
858
858
|
global_id?: string;
|
|
859
|
-
global_snapshot?: any
|
|
859
|
+
global_snapshot?: Record<string, any>;
|
|
860
860
|
brand_id?: string;
|
|
861
861
|
version?: number;
|
|
862
862
|
depends_on?: GlobalDiffDependencyDTO[];
|
|
863
863
|
is_depended_by?: GlobalDiffDependencyDTO[];
|
|
864
864
|
brand?: DraftBrandDTO;
|
|
865
|
-
permissions?: any
|
|
865
|
+
permissions?: Record<string, any>;
|
|
866
866
|
[index: string]: any;
|
|
867
867
|
}
|
|
868
868
|
export interface ApplyDiffDTO {
|
|
@@ -875,7 +875,7 @@ export interface PublishedMenuDTO {
|
|
|
875
875
|
parent_id?: string;
|
|
876
876
|
name?: string;
|
|
877
877
|
brand_id?: string;
|
|
878
|
-
permissions?: any
|
|
878
|
+
permissions?: Record<string, any>;
|
|
879
879
|
[index: string]: any;
|
|
880
880
|
}
|
|
881
881
|
export interface PublishedCategoryDTO {
|
|
@@ -887,7 +887,7 @@ export interface PublishedCategoryDTO {
|
|
|
887
887
|
is_active?: boolean;
|
|
888
888
|
brand_id?: string;
|
|
889
889
|
menu_id?: string;
|
|
890
|
-
permissions?: any
|
|
890
|
+
permissions?: Record<string, any>;
|
|
891
891
|
[index: string]: any;
|
|
892
892
|
}
|
|
893
893
|
export interface PublishedCategoryToItemRelationshipDTO {
|
|
@@ -897,7 +897,7 @@ export interface PublishedCategoryToItemRelationshipDTO {
|
|
|
897
897
|
category_id?: string;
|
|
898
898
|
brand_id?: string;
|
|
899
899
|
sequence?: number;
|
|
900
|
-
permissions?: any
|
|
900
|
+
permissions?: Record<string, any>;
|
|
901
901
|
[index: string]: any;
|
|
902
902
|
}
|
|
903
903
|
export interface PublishedItemDTO {
|
|
@@ -911,11 +911,11 @@ export interface PublishedItemDTO {
|
|
|
911
911
|
calories?: number;
|
|
912
912
|
is_active?: boolean;
|
|
913
913
|
posid?: string;
|
|
914
|
-
tax_tags?: any[];
|
|
914
|
+
tax_tags?: Record<string, any>[];
|
|
915
915
|
brand_id?: string;
|
|
916
916
|
line_route?: string;
|
|
917
917
|
posid_segment?: string;
|
|
918
|
-
permissions?: any
|
|
918
|
+
permissions?: Record<string, any>;
|
|
919
919
|
[index: string]: any;
|
|
920
920
|
}
|
|
921
921
|
export interface PublishedItemToModifierGroupRelationshipDTO {
|
|
@@ -925,7 +925,7 @@ export interface PublishedItemToModifierGroupRelationshipDTO {
|
|
|
925
925
|
item_id?: string;
|
|
926
926
|
brand_id?: string;
|
|
927
927
|
sequence?: number;
|
|
928
|
-
permissions?: any
|
|
928
|
+
permissions?: Record<string, any>;
|
|
929
929
|
[index: string]: any;
|
|
930
930
|
}
|
|
931
931
|
export interface PublishedModifierGroupDTO {
|
|
@@ -937,7 +937,7 @@ export interface PublishedModifierGroupDTO {
|
|
|
937
937
|
max?: number;
|
|
938
938
|
is_active?: boolean;
|
|
939
939
|
brand_id?: string;
|
|
940
|
-
permissions?: any
|
|
940
|
+
permissions?: Record<string, any>;
|
|
941
941
|
[index: string]: any;
|
|
942
942
|
}
|
|
943
943
|
export interface PublishedModifierGroupToModifierRelationshipDTO {
|
|
@@ -947,7 +947,7 @@ export interface PublishedModifierGroupToModifierRelationshipDTO {
|
|
|
947
947
|
modifier_group_id?: string;
|
|
948
948
|
brand_id?: string;
|
|
949
949
|
sequence?: number;
|
|
950
|
-
permissions?: any
|
|
950
|
+
permissions?: Record<string, any>;
|
|
951
951
|
[index: string]: any;
|
|
952
952
|
}
|
|
953
953
|
export interface PublishedModifierDTO {
|
|
@@ -958,12 +958,12 @@ export interface PublishedModifierDTO {
|
|
|
958
958
|
description?: string;
|
|
959
959
|
price?: number;
|
|
960
960
|
calories?: number;
|
|
961
|
-
tax_tags?: any[];
|
|
961
|
+
tax_tags?: Record<string, any>[];
|
|
962
962
|
is_active?: boolean;
|
|
963
963
|
posid?: string;
|
|
964
964
|
posid_segment?: string;
|
|
965
965
|
brand_id?: string;
|
|
966
|
-
permissions?: any
|
|
966
|
+
permissions?: Record<string, any>;
|
|
967
967
|
[index: string]: any;
|
|
968
968
|
}
|
|
969
969
|
export interface PublishedBrandPublishedBrandDTO {
|
|
@@ -980,8 +980,8 @@ export interface PublishedBrandPublishedBrandDTO {
|
|
|
980
980
|
created_at?: FilterFieldDTO;
|
|
981
981
|
updated_at?: FilterFieldDTO;
|
|
982
982
|
deleted_at?: FilterFieldDTO;
|
|
983
|
-
parent?: any
|
|
984
|
-
children?: any[];
|
|
983
|
+
parent?: Record<string, any>;
|
|
984
|
+
children?: Record<string, any>[];
|
|
985
985
|
local_menu_group?: LocalMenuGroupDTO;
|
|
986
986
|
global_menu_group?: GlobalMenuGroupDTO;
|
|
987
987
|
menus?: PublishedMenuDTO[];
|
|
@@ -1010,8 +1010,8 @@ export interface DraftCategoryDraftCategoryDTO {
|
|
|
1010
1010
|
created_at?: FilterFieldDTO;
|
|
1011
1011
|
updated_at?: FilterFieldDTO;
|
|
1012
1012
|
deleted_at?: FilterFieldDTO;
|
|
1013
|
-
parent?: any
|
|
1014
|
-
children?: any[];
|
|
1013
|
+
parent?: Record<string, any>;
|
|
1014
|
+
children?: Record<string, any>[];
|
|
1015
1015
|
menu?: DraftMenuDTO;
|
|
1016
1016
|
items?: DraftCategoryToItemRelationshipDTO[];
|
|
1017
1017
|
brand?: DraftBrandDTO;
|
|
@@ -1029,8 +1029,8 @@ export interface PublishedMenuPublishedMenuDTO {
|
|
|
1029
1029
|
created_at?: FilterFieldDTO;
|
|
1030
1030
|
updated_at?: FilterFieldDTO;
|
|
1031
1031
|
deleted_at?: FilterFieldDTO;
|
|
1032
|
-
parent?: any
|
|
1033
|
-
children?: any[];
|
|
1032
|
+
parent?: Record<string, any>;
|
|
1033
|
+
children?: Record<string, any>[];
|
|
1034
1034
|
categories?: PublishedCategoryDTO[];
|
|
1035
1035
|
brand?: PublishedBrandDTO;
|
|
1036
1036
|
permissions?: FilterFieldDTO;
|
|
@@ -1049,8 +1049,8 @@ export interface PublishedCategoryPublishedCategoryDTO {
|
|
|
1049
1049
|
created_at?: FilterFieldDTO;
|
|
1050
1050
|
updated_at?: FilterFieldDTO;
|
|
1051
1051
|
deleted_at?: FilterFieldDTO;
|
|
1052
|
-
parent?: any
|
|
1053
|
-
children?: any[];
|
|
1052
|
+
parent?: Record<string, any>;
|
|
1053
|
+
children?: Record<string, any>[];
|
|
1054
1054
|
menu?: PublishedMenuDTO;
|
|
1055
1055
|
items?: PublishedCategoryToItemRelationshipDTO[];
|
|
1056
1056
|
brand?: PublishedBrandDTO;
|
|
@@ -1069,8 +1069,8 @@ export interface DraftCategoryToItemRelationshipDraftCategoryToItemRelationshipD
|
|
|
1069
1069
|
version?: FilterFieldDTO;
|
|
1070
1070
|
created_at?: FilterFieldDTO;
|
|
1071
1071
|
updated_at?: FilterFieldDTO;
|
|
1072
|
-
parent?: any
|
|
1073
|
-
children?: any[];
|
|
1072
|
+
parent?: Record<string, any>;
|
|
1073
|
+
children?: Record<string, any>[];
|
|
1074
1074
|
category?: DraftCategoryDTO;
|
|
1075
1075
|
item?: DraftItemDTO;
|
|
1076
1076
|
brand?: DraftBrandDTO;
|
|
@@ -1090,8 +1090,8 @@ export interface PublishedCategoryToItemRelationshipPublishedCategoryToItemRelat
|
|
|
1090
1090
|
version?: FilterFieldDTO;
|
|
1091
1091
|
created_at?: FilterFieldDTO;
|
|
1092
1092
|
updated_at?: FilterFieldDTO;
|
|
1093
|
-
parent?: any
|
|
1094
|
-
children?: any[];
|
|
1093
|
+
parent?: Record<string, any>;
|
|
1094
|
+
children?: Record<string, any>[];
|
|
1095
1095
|
category?: PublishedCategoryDTO;
|
|
1096
1096
|
item?: PublishedItemDTO;
|
|
1097
1097
|
brand?: PublishedBrandDTO;
|
|
@@ -1116,11 +1116,11 @@ export interface DraftItemEntityDTO {
|
|
|
1116
1116
|
calories?: number;
|
|
1117
1117
|
is_active?: boolean;
|
|
1118
1118
|
posid?: string;
|
|
1119
|
-
tax_tags?: any[];
|
|
1119
|
+
tax_tags?: Record<string, any>[];
|
|
1120
1120
|
brand_id: string;
|
|
1121
1121
|
line_route?: string;
|
|
1122
1122
|
posid_segment?: string;
|
|
1123
|
-
applied_diff_snapshot?: any
|
|
1123
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
1124
1124
|
version?: number;
|
|
1125
1125
|
brand?: DraftBrandDTO;
|
|
1126
1126
|
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
@@ -1128,7 +1128,7 @@ export interface DraftItemEntityDTO {
|
|
|
1128
1128
|
vendor_metadata?: VendorMetadataDTO[];
|
|
1129
1129
|
attachments?: FileAttachmentsDTO;
|
|
1130
1130
|
weight?: WeightDTO;
|
|
1131
|
-
permissions?: any
|
|
1131
|
+
permissions?: Record<string, any>;
|
|
1132
1132
|
[index: string]: any;
|
|
1133
1133
|
}
|
|
1134
1134
|
export interface PublishedItemPublishedItemDTO {
|
|
@@ -1150,8 +1150,8 @@ export interface PublishedItemPublishedItemDTO {
|
|
|
1150
1150
|
created_at?: FilterFieldDTO;
|
|
1151
1151
|
updated_at?: FilterFieldDTO;
|
|
1152
1152
|
deleted_at?: FilterFieldDTO;
|
|
1153
|
-
parent?: any
|
|
1154
|
-
children?: any[];
|
|
1153
|
+
parent?: Record<string, any>;
|
|
1154
|
+
children?: Record<string, any>[];
|
|
1155
1155
|
brand?: PublishedBrandDTO;
|
|
1156
1156
|
categories?: PublishedCategoryToItemRelationshipDTO[];
|
|
1157
1157
|
modifier_groups?: PublishedItemToModifierGroupRelationshipDTO[];
|
|
@@ -1173,8 +1173,8 @@ export interface DraftItemToModifierGroupRelationshipDraftItemToModifierGroupRel
|
|
|
1173
1173
|
version?: FilterFieldDTO;
|
|
1174
1174
|
created_at?: FilterFieldDTO;
|
|
1175
1175
|
updated_at?: FilterFieldDTO;
|
|
1176
|
-
parent?: any
|
|
1177
|
-
children?: any[];
|
|
1176
|
+
parent?: Record<string, any>;
|
|
1177
|
+
children?: Record<string, any>[];
|
|
1178
1178
|
item?: DraftItemDTO;
|
|
1179
1179
|
modifier_group?: DraftModifierGroupDTO;
|
|
1180
1180
|
brand?: DraftBrandDTO;
|
|
@@ -1194,8 +1194,8 @@ export interface PublishedItemToModifierGroupRelationshipPublishedItemToModifier
|
|
|
1194
1194
|
version?: FilterFieldDTO;
|
|
1195
1195
|
created_at?: FilterFieldDTO;
|
|
1196
1196
|
updated_at?: FilterFieldDTO;
|
|
1197
|
-
parent?: any
|
|
1198
|
-
children?: any[];
|
|
1197
|
+
parent?: Record<string, any>;
|
|
1198
|
+
children?: Record<string, any>[];
|
|
1199
1199
|
item?: PublishedItemDTO;
|
|
1200
1200
|
modifier_group?: PublishedModifierGroupDTO;
|
|
1201
1201
|
brand?: PublishedBrandDTO;
|
|
@@ -1215,8 +1215,8 @@ export interface PublishedModifierGroupPublishedModifierGroupDTO {
|
|
|
1215
1215
|
created_at?: FilterFieldDTO;
|
|
1216
1216
|
updated_at?: FilterFieldDTO;
|
|
1217
1217
|
deleted_at?: FilterFieldDTO;
|
|
1218
|
-
parent?: any
|
|
1219
|
-
children?: any[];
|
|
1218
|
+
parent?: Record<string, any>;
|
|
1219
|
+
children?: Record<string, any>[];
|
|
1220
1220
|
modifiers?: PublishedModifierGroupToModifierRelationshipDTO[];
|
|
1221
1221
|
items?: PublishedItemToModifierGroupRelationshipDTO[];
|
|
1222
1222
|
brand?: PublishedBrandDTO;
|
|
@@ -1235,8 +1235,8 @@ export interface DraftModifierGroupToModifierRelationshipDraftModifierGroupToMod
|
|
|
1235
1235
|
version?: FilterFieldDTO;
|
|
1236
1236
|
created_at?: FilterFieldDTO;
|
|
1237
1237
|
updated_at?: FilterFieldDTO;
|
|
1238
|
-
parent?: any
|
|
1239
|
-
children?: any[];
|
|
1238
|
+
parent?: Record<string, any>;
|
|
1239
|
+
children?: Record<string, any>[];
|
|
1240
1240
|
modifier?: DraftModifierDTO;
|
|
1241
1241
|
modifier_group?: DraftModifierGroupDTO;
|
|
1242
1242
|
brand?: DraftBrandDTO;
|
|
@@ -1256,8 +1256,8 @@ export interface PublishedModifierGroupToModifierRelationshipPublishedModifierGr
|
|
|
1256
1256
|
version?: FilterFieldDTO;
|
|
1257
1257
|
created_at?: FilterFieldDTO;
|
|
1258
1258
|
updated_at?: FilterFieldDTO;
|
|
1259
|
-
parent?: any
|
|
1260
|
-
children?: any[];
|
|
1259
|
+
parent?: Record<string, any>;
|
|
1260
|
+
children?: Record<string, any>[];
|
|
1261
1261
|
modifier_group?: PublishedModifierGroupDTO;
|
|
1262
1262
|
modifier?: PublishedModifierDTO;
|
|
1263
1263
|
brand?: PublishedBrandDTO;
|
|
@@ -1278,19 +1278,19 @@ export interface DraftModifierEntityDTO {
|
|
|
1278
1278
|
description?: string;
|
|
1279
1279
|
price: number;
|
|
1280
1280
|
calories?: number;
|
|
1281
|
-
tax_tags?: any[];
|
|
1281
|
+
tax_tags?: Record<string, any>[];
|
|
1282
1282
|
is_active?: boolean;
|
|
1283
1283
|
posid?: string;
|
|
1284
1284
|
reporting: ReportingMetadataDTO;
|
|
1285
1285
|
posid_segment?: string;
|
|
1286
1286
|
brand_id: string;
|
|
1287
|
-
applied_diff_snapshot?: any
|
|
1287
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
1288
1288
|
version?: number;
|
|
1289
1289
|
brand?: DraftBrandDTO;
|
|
1290
1290
|
changes?: ModifierChangeDTO[];
|
|
1291
1291
|
vendor_metadata?: VendorMetadataDTO[];
|
|
1292
1292
|
weight?: WeightDTO;
|
|
1293
|
-
permissions?: any
|
|
1293
|
+
permissions?: Record<string, any>;
|
|
1294
1294
|
[index: string]: any;
|
|
1295
1295
|
}
|
|
1296
1296
|
export interface PublishedModifierPublishedModifierDTO {
|
|
@@ -1310,8 +1310,8 @@ export interface PublishedModifierPublishedModifierDTO {
|
|
|
1310
1310
|
created_at?: FilterFieldDTO;
|
|
1311
1311
|
updated_at?: FilterFieldDTO;
|
|
1312
1312
|
deleted_at?: FilterFieldDTO;
|
|
1313
|
-
parent?: any
|
|
1314
|
-
children?: any[];
|
|
1313
|
+
parent?: Record<string, any>;
|
|
1314
|
+
children?: Record<string, any>[];
|
|
1315
1315
|
modifier_groups?: PublishedModifierGroupToModifierRelationshipDTO[];
|
|
1316
1316
|
brand?: PublishedBrandDTO;
|
|
1317
1317
|
reporting?: ReportingMetadataDTO;
|
|
@@ -1327,17 +1327,17 @@ export interface GlobalDiffDTO {
|
|
|
1327
1327
|
deleted_at?: string;
|
|
1328
1328
|
entity_type?: string;
|
|
1329
1329
|
local_id?: string;
|
|
1330
|
-
changes?: any
|
|
1331
|
-
local_changes?: any
|
|
1332
|
-
local_snapshot?: any
|
|
1330
|
+
changes?: Record<string, any>;
|
|
1331
|
+
local_changes?: Record<string, any>;
|
|
1332
|
+
local_snapshot?: Record<string, any>;
|
|
1333
1333
|
global_id?: string;
|
|
1334
|
-
global_snapshot?: any
|
|
1334
|
+
global_snapshot?: Record<string, any>;
|
|
1335
1335
|
brand_id?: string;
|
|
1336
1336
|
version?: number;
|
|
1337
1337
|
depends_on?: GlobalDiffDependencyDTO[];
|
|
1338
1338
|
is_depended_by?: GlobalDiffDependencyDTO[];
|
|
1339
1339
|
brand?: DraftBrandDTO;
|
|
1340
|
-
permissions?: any
|
|
1340
|
+
permissions?: Record<string, any>;
|
|
1341
1341
|
[index: string]: any;
|
|
1342
1342
|
}
|
|
1343
1343
|
export interface GetMenuClientPath {
|
|
@@ -1367,7 +1367,7 @@ export interface GetMenuHeadersPath {
|
|
|
1367
1367
|
export interface GetMenuHeadersQuery {
|
|
1368
1368
|
_query?: string;
|
|
1369
1369
|
}
|
|
1370
|
-
export type GetMenuHeadersResponse = any
|
|
1370
|
+
export type GetMenuHeadersResponse = Record<string, any>;
|
|
1371
1371
|
export interface GetMenuHeadersRequest extends BaseRequest, RequestQuery<GetMenuHeadersQuery>, GetMenuHeadersPath {
|
|
1372
1372
|
}
|
|
1373
1373
|
export interface GetMenuPath {
|
|
@@ -1606,7 +1606,7 @@ export interface PostMenuV3LocalMenuGroupBody {
|
|
|
1606
1606
|
draft_brands?: DraftBrandDTO[];
|
|
1607
1607
|
published_brands?: PublishedBrandDTO[];
|
|
1608
1608
|
vendor_metadata?: VendorMetadataDTO[];
|
|
1609
|
-
permissions?: any
|
|
1609
|
+
permissions?: Record<string, any>;
|
|
1610
1610
|
[index: string]: any;
|
|
1611
1611
|
}
|
|
1612
1612
|
export interface PostMenuV3LocalMenuGroupResponse {
|
|
@@ -1621,7 +1621,7 @@ export interface PostMenuV3LocalMenuGroupResponse {
|
|
|
1621
1621
|
deleted_at?: string;
|
|
1622
1622
|
version?: number;
|
|
1623
1623
|
vendor_metadata?: VendorMetadataDTO[];
|
|
1624
|
-
permissions?: any
|
|
1624
|
+
permissions?: Record<string, any>;
|
|
1625
1625
|
[index: string]: any;
|
|
1626
1626
|
}
|
|
1627
1627
|
export interface PostMenuV3LocalMenuGroupRequest extends BaseRequest {
|
|
@@ -1647,7 +1647,7 @@ export interface GetMenuV3LocalMenuGroupResponse {
|
|
|
1647
1647
|
deleted_at?: string;
|
|
1648
1648
|
version?: number;
|
|
1649
1649
|
vendor_metadata?: VendorMetadataDTO[];
|
|
1650
|
-
permissions?: any
|
|
1650
|
+
permissions?: Record<string, any>;
|
|
1651
1651
|
[index: string]: any;
|
|
1652
1652
|
}
|
|
1653
1653
|
export interface GetMenuV3LocalMenuGroupRequest extends BaseRequest, RequestQuery<GetMenuV3LocalMenuGroupQuery>, GetMenuV3LocalMenuGroupPath {
|
|
@@ -1664,7 +1664,7 @@ export interface PatchMenuV3LocalMenuGroupBody {
|
|
|
1664
1664
|
id?: string;
|
|
1665
1665
|
version?: number;
|
|
1666
1666
|
vendor_metadata?: VendorMetadataDTO[];
|
|
1667
|
-
permissions?: any
|
|
1667
|
+
permissions?: Record<string, any>;
|
|
1668
1668
|
[index: string]: any;
|
|
1669
1669
|
}
|
|
1670
1670
|
export interface PatchMenuV3LocalMenuGroupResponse {
|
|
@@ -1679,7 +1679,7 @@ export interface PatchMenuV3LocalMenuGroupResponse {
|
|
|
1679
1679
|
deleted_at?: string;
|
|
1680
1680
|
version?: number;
|
|
1681
1681
|
vendor_metadata?: VendorMetadataDTO[];
|
|
1682
|
-
permissions?: any
|
|
1682
|
+
permissions?: Record<string, any>;
|
|
1683
1683
|
[index: string]: any;
|
|
1684
1684
|
}
|
|
1685
1685
|
export interface PatchMenuV3LocalMenuGroupRequest extends BaseRequest, PatchMenuV3LocalMenuGroupPath {
|
|
@@ -1700,7 +1700,7 @@ export interface DeleteMenuV3LocalMenuGroupResponse {
|
|
|
1700
1700
|
deleted_at?: string;
|
|
1701
1701
|
version?: number;
|
|
1702
1702
|
vendor_metadata?: VendorMetadataDTO[];
|
|
1703
|
-
permissions?: any
|
|
1703
|
+
permissions?: Record<string, any>;
|
|
1704
1704
|
[index: string]: any;
|
|
1705
1705
|
}
|
|
1706
1706
|
export interface DeleteMenuV3LocalMenuGroupRequest extends BaseRequest, DeleteMenuV3LocalMenuGroupPath {
|
|
@@ -1731,9 +1731,9 @@ export type PostMenuV3LocalMenuGroupsBody = {
|
|
|
1731
1731
|
allowed_global_menu_groups?: GlobalMenuGroupDTO[];
|
|
1732
1732
|
draft_brands?: DraftBrandDTO[];
|
|
1733
1733
|
published_brands?: PublishedBrandDTO[];
|
|
1734
|
-
id?: any
|
|
1734
|
+
id?: Record<string, any>;
|
|
1735
1735
|
vendor_metadata?: VendorMetadataDTO[];
|
|
1736
|
-
permissions?: any
|
|
1736
|
+
permissions?: Record<string, any>;
|
|
1737
1737
|
[index: string]: any;
|
|
1738
1738
|
}[];
|
|
1739
1739
|
export interface PostMenuV3LocalMenuGroupsResponse {
|
|
@@ -1856,7 +1856,7 @@ export interface PostMenuV3GlobalMenuGroupBody {
|
|
|
1856
1856
|
published_brands?: PublishedBrandDTO[];
|
|
1857
1857
|
posid_segment: string;
|
|
1858
1858
|
vendor_metadata?: VendorMetadataDTO[];
|
|
1859
|
-
permissions?: any
|
|
1859
|
+
permissions?: Record<string, any>;
|
|
1860
1860
|
[index: string]: any;
|
|
1861
1861
|
}
|
|
1862
1862
|
export type PostMenuV3GlobalMenuGroupResponse = GlobalMenuGroupDTO;
|
|
@@ -1887,7 +1887,7 @@ export interface PatchMenuV3GlobalMenuGroupBody {
|
|
|
1887
1887
|
id?: string;
|
|
1888
1888
|
version?: number;
|
|
1889
1889
|
vendor_metadata?: VendorMetadataDTO[];
|
|
1890
|
-
permissions?: any
|
|
1890
|
+
permissions?: Record<string, any>;
|
|
1891
1891
|
[index: string]: any;
|
|
1892
1892
|
}
|
|
1893
1893
|
export type PatchMenuV3GlobalMenuGroupResponse = GlobalMenuGroupDTO;
|
|
@@ -1913,7 +1913,7 @@ export interface DeleteMenuV3GlobalMenuGroupResponse {
|
|
|
1913
1913
|
deleted_at?: string;
|
|
1914
1914
|
version?: number;
|
|
1915
1915
|
vendor_metadata?: VendorMetadataDTO[];
|
|
1916
|
-
permissions?: any
|
|
1916
|
+
permissions?: Record<string, any>;
|
|
1917
1917
|
[index: string]: any;
|
|
1918
1918
|
}
|
|
1919
1919
|
export interface DeleteMenuV3GlobalMenuGroupRequest extends BaseRequest, RequestQuery<DeleteMenuV3GlobalMenuGroupQuery>, DeleteMenuV3GlobalMenuGroupPath {
|
|
@@ -1945,9 +1945,9 @@ export type PostMenuV3GlobalMenuGroupsBody = {
|
|
|
1945
1945
|
draft_brands?: DraftBrandDTO[];
|
|
1946
1946
|
published_brands?: PublishedBrandDTO[];
|
|
1947
1947
|
posid_segment: string;
|
|
1948
|
-
id?: any
|
|
1948
|
+
id?: Record<string, any>;
|
|
1949
1949
|
vendor_metadata?: VendorMetadataDTO[];
|
|
1950
|
-
permissions?: any
|
|
1950
|
+
permissions?: Record<string, any>;
|
|
1951
1951
|
[index: string]: any;
|
|
1952
1952
|
}[];
|
|
1953
1953
|
export interface PostMenuV3GlobalMenuGroupsResponse {
|
|
@@ -2036,13 +2036,13 @@ export interface PostMenuV3DraftBrandBody {
|
|
|
2036
2036
|
local_menu_group_id?: string;
|
|
2037
2037
|
global_menu_group_id?: string;
|
|
2038
2038
|
posid_segment?: string;
|
|
2039
|
-
id?: any
|
|
2039
|
+
id?: Record<string, any>;
|
|
2040
2040
|
changes?: BrandChangeDTO[];
|
|
2041
2041
|
local_menu_group?: LocalMenuGroupDTO;
|
|
2042
2042
|
global_menu_group?: GlobalMenuGroupDTO;
|
|
2043
2043
|
vendor_metadata?: VendorMetadataDTO[];
|
|
2044
2044
|
attachments?: FileAttachmentsDTO;
|
|
2045
|
-
permissions?: any
|
|
2045
|
+
permissions?: Record<string, any>;
|
|
2046
2046
|
[index: string]: any;
|
|
2047
2047
|
}
|
|
2048
2048
|
export type PostMenuV3DraftBrandResponse = DraftBrandDTO;
|
|
@@ -2090,7 +2090,7 @@ export interface PatchMenuV3DraftBrandBody {
|
|
|
2090
2090
|
global_menu_group?: GlobalMenuGroupDTO;
|
|
2091
2091
|
vendor_metadata?: VendorMetadataDTO[];
|
|
2092
2092
|
attachments?: FileAttachmentsDTO;
|
|
2093
|
-
permissions?: any
|
|
2093
|
+
permissions?: Record<string, any>;
|
|
2094
2094
|
[index: string]: any;
|
|
2095
2095
|
}
|
|
2096
2096
|
export type PatchMenuV3DraftBrandResponse = DraftBrandDTO;
|
|
@@ -2143,13 +2143,13 @@ export type PostMenuV3DraftBrandsBody = {
|
|
|
2143
2143
|
local_menu_group_id?: string;
|
|
2144
2144
|
global_menu_group_id?: string;
|
|
2145
2145
|
posid_segment?: string;
|
|
2146
|
-
id?: any
|
|
2146
|
+
id?: Record<string, any>;
|
|
2147
2147
|
changes?: BrandChangeDTO[];
|
|
2148
2148
|
local_menu_group?: LocalMenuGroupDTO;
|
|
2149
2149
|
global_menu_group?: GlobalMenuGroupDTO;
|
|
2150
2150
|
vendor_metadata?: VendorMetadataDTO[];
|
|
2151
2151
|
attachments?: FileAttachmentsDTO;
|
|
2152
|
-
permissions?: any
|
|
2152
|
+
permissions?: Record<string, any>;
|
|
2153
2153
|
[index: string]: any;
|
|
2154
2154
|
}[];
|
|
2155
2155
|
export interface PostMenuV3DraftBrandsResponse {
|
|
@@ -2370,11 +2370,11 @@ export interface PostMenuV3BrandBody {
|
|
|
2370
2370
|
local_menu_group_id?: string;
|
|
2371
2371
|
global_menu_group_id?: string;
|
|
2372
2372
|
posid_segment?: string;
|
|
2373
|
-
id?: any
|
|
2373
|
+
id?: Record<string, any>;
|
|
2374
2374
|
local_menu_group?: LocalMenuGroupDTO;
|
|
2375
2375
|
global_menu_group?: GlobalMenuGroupDTO;
|
|
2376
2376
|
attachments?: FileAttachmentsDTO;
|
|
2377
|
-
permissions?: any
|
|
2377
|
+
permissions?: Record<string, any>;
|
|
2378
2378
|
[index: string]: any;
|
|
2379
2379
|
}
|
|
2380
2380
|
export type PostMenuV3BrandResponse = PublishedBrandDTO;
|
|
@@ -2423,7 +2423,7 @@ export interface PatchMenuV3BrandBody {
|
|
|
2423
2423
|
local_menu_group?: LocalMenuGroupDTO;
|
|
2424
2424
|
global_menu_group?: GlobalMenuGroupDTO;
|
|
2425
2425
|
attachments?: FileAttachmentsDTO;
|
|
2426
|
-
permissions?: any
|
|
2426
|
+
permissions?: Record<string, any>;
|
|
2427
2427
|
[index: string]: any;
|
|
2428
2428
|
}
|
|
2429
2429
|
export type PatchMenuV3BrandResponse = PublishedBrandDTO;
|
|
@@ -2482,11 +2482,11 @@ export type PostMenuV3BrandsBody = {
|
|
|
2482
2482
|
local_menu_group_id?: string;
|
|
2483
2483
|
global_menu_group_id?: string;
|
|
2484
2484
|
posid_segment?: string;
|
|
2485
|
-
id?: any
|
|
2485
|
+
id?: Record<string, any>;
|
|
2486
2486
|
local_menu_group?: LocalMenuGroupDTO;
|
|
2487
2487
|
global_menu_group?: GlobalMenuGroupDTO;
|
|
2488
2488
|
attachments?: FileAttachmentsDTO;
|
|
2489
|
-
permissions?: any
|
|
2489
|
+
permissions?: Record<string, any>;
|
|
2490
2490
|
[index: string]: any;
|
|
2491
2491
|
}[];
|
|
2492
2492
|
export interface PostMenuV3BrandsResponse {
|
|
@@ -2642,7 +2642,7 @@ export interface PostMenuV3BrandLocalResponse {
|
|
|
2642
2642
|
global_menu_group?: GlobalMenuGroupDTO;
|
|
2643
2643
|
vendor_metadata?: VendorMetadataDTO[];
|
|
2644
2644
|
attachments?: FileAttachmentsDTO;
|
|
2645
|
-
permissions?: any
|
|
2645
|
+
permissions?: Record<string, any>;
|
|
2646
2646
|
[index: string]: any;
|
|
2647
2647
|
}
|
|
2648
2648
|
export interface PostMenuV3BrandLocalRequest extends BaseRequest, RequestQuery<PostMenuV3BrandLocalQuery>, PostMenuV3BrandLocalPath {
|
|
@@ -2654,12 +2654,12 @@ export interface PostMenuV3DraftMenuBody {
|
|
|
2654
2654
|
parent_id?: string;
|
|
2655
2655
|
name: string;
|
|
2656
2656
|
brand_id: string;
|
|
2657
|
-
id?: any
|
|
2658
|
-
applied_diff_snapshot?: any
|
|
2657
|
+
id?: Record<string, any>;
|
|
2658
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
2659
2659
|
brand?: DraftBrandDTO;
|
|
2660
2660
|
changes?: MenuChangeDTO[];
|
|
2661
2661
|
vendor_metadata?: VendorMetadataDTO[];
|
|
2662
|
-
permissions?: any
|
|
2662
|
+
permissions?: Record<string, any>;
|
|
2663
2663
|
[index: string]: any;
|
|
2664
2664
|
}
|
|
2665
2665
|
export type PostMenuV3DraftMenuResponse = DraftMenuDTO;
|
|
@@ -2688,12 +2688,12 @@ export interface PatchMenuV3DraftMenuBody {
|
|
|
2688
2688
|
parent_id?: string;
|
|
2689
2689
|
name?: string;
|
|
2690
2690
|
brand_id?: string;
|
|
2691
|
-
applied_diff_snapshot?: any
|
|
2691
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
2692
2692
|
version?: number;
|
|
2693
2693
|
brand?: DraftBrandDTO;
|
|
2694
2694
|
changes?: MenuChangeDTO[];
|
|
2695
2695
|
vendor_metadata?: VendorMetadataDTO[];
|
|
2696
|
-
permissions?: any
|
|
2696
|
+
permissions?: Record<string, any>;
|
|
2697
2697
|
[index: string]: any;
|
|
2698
2698
|
}
|
|
2699
2699
|
export type PatchMenuV3DraftMenuResponse = DraftMenuDTO;
|
|
@@ -2733,12 +2733,12 @@ export type PostMenuV3DraftMenusBody = {
|
|
|
2733
2733
|
parent_id?: string;
|
|
2734
2734
|
name: string;
|
|
2735
2735
|
brand_id: string;
|
|
2736
|
-
id?: any
|
|
2737
|
-
applied_diff_snapshot?: any
|
|
2736
|
+
id?: Record<string, any>;
|
|
2737
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
2738
2738
|
brand?: DraftBrandDTO;
|
|
2739
2739
|
changes?: MenuChangeDTO[];
|
|
2740
2740
|
vendor_metadata?: VendorMetadataDTO[];
|
|
2741
|
-
permissions?: any
|
|
2741
|
+
permissions?: Record<string, any>;
|
|
2742
2742
|
[index: string]: any;
|
|
2743
2743
|
}[];
|
|
2744
2744
|
export interface PostMenuV3DraftMenusResponse {
|
|
@@ -2872,14 +2872,14 @@ export interface PostMenuV3DraftCategoryBody {
|
|
|
2872
2872
|
is_active?: boolean;
|
|
2873
2873
|
brand_id: string;
|
|
2874
2874
|
menu_id: string;
|
|
2875
|
-
id?: any
|
|
2876
|
-
applied_diff_snapshot?: any
|
|
2875
|
+
id?: Record<string, any>;
|
|
2876
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
2877
2877
|
menu?: DraftMenuDTO;
|
|
2878
2878
|
items?: DraftCategoryToItemRelationshipDTO[];
|
|
2879
2879
|
brand?: DraftBrandDTO;
|
|
2880
2880
|
changes?: CategoryChangeDTO[];
|
|
2881
2881
|
vendor_metadata?: VendorMetadataDTO[];
|
|
2882
|
-
permissions?: any
|
|
2882
|
+
permissions?: Record<string, any>;
|
|
2883
2883
|
[index: string]: any;
|
|
2884
2884
|
}
|
|
2885
2885
|
export type PostMenuV3DraftCategoryResponse = DraftCategoryDTO;
|
|
@@ -2911,14 +2911,14 @@ export interface PatchMenuV3DraftCategoryBody {
|
|
|
2911
2911
|
is_active?: boolean;
|
|
2912
2912
|
brand_id?: string;
|
|
2913
2913
|
menu_id?: string;
|
|
2914
|
-
applied_diff_snapshot?: any
|
|
2914
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
2915
2915
|
version?: number;
|
|
2916
2916
|
menu?: DraftMenuDTO;
|
|
2917
2917
|
items?: DraftCategoryToItemRelationshipDTO[];
|
|
2918
2918
|
brand?: DraftBrandDTO;
|
|
2919
2919
|
changes?: CategoryChangeDTO[];
|
|
2920
2920
|
vendor_metadata?: VendorMetadataDTO[];
|
|
2921
|
-
permissions?: any
|
|
2921
|
+
permissions?: Record<string, any>;
|
|
2922
2922
|
[index: string]: any;
|
|
2923
2923
|
}
|
|
2924
2924
|
export type PatchMenuV3DraftCategoryResponse = DraftCategoryDTO;
|
|
@@ -2953,14 +2953,14 @@ export type PostMenuV3DraftCategoriesBody = {
|
|
|
2953
2953
|
is_active?: boolean;
|
|
2954
2954
|
brand_id: string;
|
|
2955
2955
|
menu_id: string;
|
|
2956
|
-
id?: any
|
|
2957
|
-
applied_diff_snapshot?: any
|
|
2956
|
+
id?: Record<string, any>;
|
|
2957
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
2958
2958
|
menu?: DraftMenuDTO;
|
|
2959
2959
|
items?: DraftCategoryToItemRelationshipDTO[];
|
|
2960
2960
|
brand?: DraftBrandDTO;
|
|
2961
2961
|
changes?: CategoryChangeDTO[];
|
|
2962
2962
|
vendor_metadata?: VendorMetadataDTO[];
|
|
2963
|
-
permissions?: any
|
|
2963
|
+
permissions?: Record<string, any>;
|
|
2964
2964
|
[index: string]: any;
|
|
2965
2965
|
}[];
|
|
2966
2966
|
export interface PostMenuV3DraftCategoriesResponse {
|
|
@@ -3004,14 +3004,14 @@ export interface PostMenuV3DraftCategoryRelationshipsItemBody {
|
|
|
3004
3004
|
category_id: string;
|
|
3005
3005
|
brand_id: string;
|
|
3006
3006
|
sequence?: number;
|
|
3007
|
-
id?: any
|
|
3008
|
-
applied_diff_snapshot?: any
|
|
3007
|
+
id?: Record<string, any>;
|
|
3008
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
3009
3009
|
category?: DraftCategoryDTO;
|
|
3010
3010
|
item?: DraftItemDTO;
|
|
3011
3011
|
brand?: DraftBrandDTO;
|
|
3012
3012
|
changes?: CategoryToItemRelationshipChangeDTO[];
|
|
3013
3013
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3014
|
-
permissions?: any
|
|
3014
|
+
permissions?: Record<string, any>;
|
|
3015
3015
|
[index: string]: any;
|
|
3016
3016
|
}
|
|
3017
3017
|
export type PostMenuV3DraftCategoryRelationshipsItemResponse = DraftCategoryToItemRelationshipDTO;
|
|
@@ -3041,14 +3041,14 @@ export interface PatchMenuV3DraftCategoryRelationshipsItemBody {
|
|
|
3041
3041
|
category_id?: string;
|
|
3042
3042
|
brand_id?: string;
|
|
3043
3043
|
sequence?: number;
|
|
3044
|
-
applied_diff_snapshot?: any
|
|
3044
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
3045
3045
|
version?: number;
|
|
3046
3046
|
category?: DraftCategoryDTO;
|
|
3047
3047
|
item?: DraftItemDTO;
|
|
3048
3048
|
brand?: DraftBrandDTO;
|
|
3049
3049
|
changes?: CategoryToItemRelationshipChangeDTO[];
|
|
3050
3050
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3051
|
-
permissions?: any
|
|
3051
|
+
permissions?: Record<string, any>;
|
|
3052
3052
|
[index: string]: any;
|
|
3053
3053
|
}
|
|
3054
3054
|
export type PatchMenuV3DraftCategoryRelationshipsItemResponse = DraftCategoryToItemRelationshipDTO;
|
|
@@ -3089,14 +3089,14 @@ export type PostMenuV3DraftCategoryRelationshipsItemsBody = {
|
|
|
3089
3089
|
category_id: string;
|
|
3090
3090
|
brand_id: string;
|
|
3091
3091
|
sequence?: number;
|
|
3092
|
-
id?: any
|
|
3093
|
-
applied_diff_snapshot?: any
|
|
3092
|
+
id?: Record<string, any>;
|
|
3093
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
3094
3094
|
category?: DraftCategoryDTO;
|
|
3095
3095
|
item?: DraftItemDTO;
|
|
3096
3096
|
brand?: DraftBrandDTO;
|
|
3097
3097
|
changes?: CategoryToItemRelationshipChangeDTO[];
|
|
3098
3098
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3099
|
-
permissions?: any
|
|
3099
|
+
permissions?: Record<string, any>;
|
|
3100
3100
|
[index: string]: any;
|
|
3101
3101
|
}[];
|
|
3102
3102
|
export interface PostMenuV3DraftCategoryRelationshipsItemsResponse {
|
|
@@ -3179,19 +3179,19 @@ export interface PostMenuV3DraftItemBody {
|
|
|
3179
3179
|
calories?: number;
|
|
3180
3180
|
is_active?: boolean;
|
|
3181
3181
|
posid?: string;
|
|
3182
|
-
tax_tags?: any[];
|
|
3182
|
+
tax_tags?: Record<string, any>[];
|
|
3183
3183
|
brand_id: string;
|
|
3184
3184
|
line_route?: string;
|
|
3185
3185
|
posid_segment?: string;
|
|
3186
|
-
id?: any
|
|
3187
|
-
applied_diff_snapshot?: any
|
|
3186
|
+
id?: Record<string, any>;
|
|
3187
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
3188
3188
|
brand?: DraftBrandDTO;
|
|
3189
3189
|
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
3190
3190
|
changes?: ItemChangeDTO[];
|
|
3191
3191
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3192
3192
|
attachments?: FileAttachmentsDTO;
|
|
3193
3193
|
weight?: WeightDTO;
|
|
3194
|
-
permissions?: any
|
|
3194
|
+
permissions?: Record<string, any>;
|
|
3195
3195
|
[index: string]: any;
|
|
3196
3196
|
}
|
|
3197
3197
|
export type PostMenuV3DraftItemResponse = DraftItemDTO;
|
|
@@ -3227,11 +3227,11 @@ export interface PatchMenuV3DraftItemBody {
|
|
|
3227
3227
|
calories?: number;
|
|
3228
3228
|
is_active?: boolean;
|
|
3229
3229
|
posid?: string;
|
|
3230
|
-
tax_tags?: any[];
|
|
3230
|
+
tax_tags?: Record<string, any>[];
|
|
3231
3231
|
brand_id?: string;
|
|
3232
3232
|
line_route?: string;
|
|
3233
3233
|
posid_segment?: string;
|
|
3234
|
-
applied_diff_snapshot?: any
|
|
3234
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
3235
3235
|
version?: number;
|
|
3236
3236
|
brand?: DraftBrandDTO;
|
|
3237
3237
|
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
@@ -3239,7 +3239,7 @@ export interface PatchMenuV3DraftItemBody {
|
|
|
3239
3239
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3240
3240
|
attachments?: FileAttachmentsDTO;
|
|
3241
3241
|
weight?: WeightDTO;
|
|
3242
|
-
permissions?: any
|
|
3242
|
+
permissions?: Record<string, any>;
|
|
3243
3243
|
[index: string]: any;
|
|
3244
3244
|
}
|
|
3245
3245
|
export type PatchMenuV3DraftItemResponse = DraftItemDTO;
|
|
@@ -3286,19 +3286,19 @@ export type PostMenuV3DraftItemsBody = {
|
|
|
3286
3286
|
calories?: number;
|
|
3287
3287
|
is_active?: boolean;
|
|
3288
3288
|
posid?: string;
|
|
3289
|
-
tax_tags?: any[];
|
|
3289
|
+
tax_tags?: Record<string, any>[];
|
|
3290
3290
|
brand_id: string;
|
|
3291
3291
|
line_route?: string;
|
|
3292
3292
|
posid_segment?: string;
|
|
3293
|
-
id?: any
|
|
3294
|
-
applied_diff_snapshot?: any
|
|
3293
|
+
id?: Record<string, any>;
|
|
3294
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
3295
3295
|
brand?: DraftBrandDTO;
|
|
3296
3296
|
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
3297
3297
|
changes?: ItemChangeDTO[];
|
|
3298
3298
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3299
3299
|
attachments?: FileAttachmentsDTO;
|
|
3300
3300
|
weight?: WeightDTO;
|
|
3301
|
-
permissions?: any
|
|
3301
|
+
permissions?: Record<string, any>;
|
|
3302
3302
|
[index: string]: any;
|
|
3303
3303
|
}[];
|
|
3304
3304
|
export interface PostMenuV3DraftItemsResponse {
|
|
@@ -3322,7 +3322,7 @@ export interface GetMenuV3DraftItemsCountResponse {
|
|
|
3322
3322
|
export interface GetMenuV3DraftItemsCountRequest extends BaseRequest, RequestQuery<GetMenuV3DraftItemsCountQuery> {
|
|
3323
3323
|
}
|
|
3324
3324
|
export interface PatchMenuV3DraftItemsBulkUpdateBody {
|
|
3325
|
-
id_list: any[];
|
|
3325
|
+
id_list: Record<string, any>[];
|
|
3326
3326
|
parent?: DraftItemDTO;
|
|
3327
3327
|
children?: DraftItemDTO[];
|
|
3328
3328
|
modifier_groups?: DraftItemToModifierGroupRelationshipDTO[];
|
|
@@ -3337,18 +3337,18 @@ export interface PatchMenuV3DraftItemsBulkUpdateBody {
|
|
|
3337
3337
|
calories?: number;
|
|
3338
3338
|
is_active?: boolean;
|
|
3339
3339
|
posid?: string;
|
|
3340
|
-
tax_tags?: any[];
|
|
3340
|
+
tax_tags?: Record<string, any>[];
|
|
3341
3341
|
brand_id?: string;
|
|
3342
3342
|
line_route?: string;
|
|
3343
3343
|
posid_segment?: string;
|
|
3344
|
-
applied_diff_snapshot?: any
|
|
3344
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
3345
3345
|
brand?: DraftBrandDTO;
|
|
3346
3346
|
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
3347
3347
|
changes?: ItemChangeDTO[];
|
|
3348
3348
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3349
3349
|
attachments?: FileAttachmentsDTO;
|
|
3350
3350
|
weight?: WeightDTO;
|
|
3351
|
-
permissions?: any
|
|
3351
|
+
permissions?: Record<string, any>;
|
|
3352
3352
|
[index: string]: any;
|
|
3353
3353
|
}
|
|
3354
3354
|
export interface PatchMenuV3DraftItemsBulkUpdateResponse {
|
|
@@ -3458,14 +3458,14 @@ export interface PostMenuV3DraftItemRelationshipsModifierGroupBody {
|
|
|
3458
3458
|
item_id: string;
|
|
3459
3459
|
brand_id: string;
|
|
3460
3460
|
sequence?: number;
|
|
3461
|
-
id?: any
|
|
3462
|
-
applied_diff_snapshot?: any
|
|
3461
|
+
id?: Record<string, any>;
|
|
3462
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
3463
3463
|
item?: DraftItemDTO;
|
|
3464
3464
|
modifier_group?: DraftModifierGroupDTO;
|
|
3465
3465
|
brand?: DraftBrandDTO;
|
|
3466
3466
|
changes?: ItemToModifierGroupRelationshipChangeDTO[];
|
|
3467
3467
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3468
|
-
permissions?: any
|
|
3468
|
+
permissions?: Record<string, any>;
|
|
3469
3469
|
[index: string]: any;
|
|
3470
3470
|
}
|
|
3471
3471
|
export type PostMenuV3DraftItemRelationshipsModifierGroupResponse = DraftItemToModifierGroupRelationshipDTO;
|
|
@@ -3495,14 +3495,14 @@ export interface PatchMenuV3DraftItemRelationshipsModifierGroupBody {
|
|
|
3495
3495
|
item_id?: string;
|
|
3496
3496
|
brand_id?: string;
|
|
3497
3497
|
sequence?: number;
|
|
3498
|
-
applied_diff_snapshot?: any
|
|
3498
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
3499
3499
|
version?: number;
|
|
3500
3500
|
item?: DraftItemDTO;
|
|
3501
3501
|
modifier_group?: DraftModifierGroupDTO;
|
|
3502
3502
|
brand?: DraftBrandDTO;
|
|
3503
3503
|
changes?: ItemToModifierGroupRelationshipChangeDTO[];
|
|
3504
3504
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3505
|
-
permissions?: any
|
|
3505
|
+
permissions?: Record<string, any>;
|
|
3506
3506
|
[index: string]: any;
|
|
3507
3507
|
}
|
|
3508
3508
|
export type PatchMenuV3DraftItemRelationshipsModifierGroupResponse = DraftItemToModifierGroupRelationshipDTO;
|
|
@@ -3543,14 +3543,14 @@ export type PostMenuV3DraftItemRelationshipsModifierGroupsBody = {
|
|
|
3543
3543
|
item_id: string;
|
|
3544
3544
|
brand_id: string;
|
|
3545
3545
|
sequence?: number;
|
|
3546
|
-
id?: any
|
|
3547
|
-
applied_diff_snapshot?: any
|
|
3546
|
+
id?: Record<string, any>;
|
|
3547
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
3548
3548
|
item?: DraftItemDTO;
|
|
3549
3549
|
modifier_group?: DraftModifierGroupDTO;
|
|
3550
3550
|
brand?: DraftBrandDTO;
|
|
3551
3551
|
changes?: ItemToModifierGroupRelationshipChangeDTO[];
|
|
3552
3552
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3553
|
-
permissions?: any
|
|
3553
|
+
permissions?: Record<string, any>;
|
|
3554
3554
|
[index: string]: any;
|
|
3555
3555
|
}[];
|
|
3556
3556
|
export interface PostMenuV3DraftItemRelationshipsModifierGroupsResponse {
|
|
@@ -3631,12 +3631,12 @@ export interface PostMenuV3DraftModifierGroupBody {
|
|
|
3631
3631
|
max?: number;
|
|
3632
3632
|
is_active?: boolean;
|
|
3633
3633
|
brand_id: string;
|
|
3634
|
-
id?: any
|
|
3635
|
-
applied_diff_snapshot?: any
|
|
3634
|
+
id?: Record<string, any>;
|
|
3635
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
3636
3636
|
brand?: DraftBrandDTO;
|
|
3637
3637
|
changes?: ModifierGroupChangeDTO[];
|
|
3638
3638
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3639
|
-
permissions?: any
|
|
3639
|
+
permissions?: Record<string, any>;
|
|
3640
3640
|
[index: string]: any;
|
|
3641
3641
|
}
|
|
3642
3642
|
export type PostMenuV3DraftModifierGroupResponse = DraftModifierGroupDTO;
|
|
@@ -3670,12 +3670,12 @@ export interface PatchMenuV3DraftModifierGroupBody {
|
|
|
3670
3670
|
max?: number;
|
|
3671
3671
|
is_active?: boolean;
|
|
3672
3672
|
brand_id?: string;
|
|
3673
|
-
applied_diff_snapshot?: any
|
|
3673
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
3674
3674
|
version?: number;
|
|
3675
3675
|
brand?: DraftBrandDTO;
|
|
3676
3676
|
changes?: ModifierGroupChangeDTO[];
|
|
3677
3677
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3678
|
-
permissions?: any
|
|
3678
|
+
permissions?: Record<string, any>;
|
|
3679
3679
|
[index: string]: any;
|
|
3680
3680
|
}
|
|
3681
3681
|
export type PatchMenuV3DraftModifierGroupResponse = DraftModifierGroupDTO;
|
|
@@ -3720,12 +3720,12 @@ export type PostMenuV3DraftModifierGroupsBody = {
|
|
|
3720
3720
|
max?: number;
|
|
3721
3721
|
is_active?: boolean;
|
|
3722
3722
|
brand_id: string;
|
|
3723
|
-
id?: any
|
|
3724
|
-
applied_diff_snapshot?: any
|
|
3723
|
+
id?: Record<string, any>;
|
|
3724
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
3725
3725
|
brand?: DraftBrandDTO;
|
|
3726
3726
|
changes?: ModifierGroupChangeDTO[];
|
|
3727
3727
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3728
|
-
permissions?: any
|
|
3728
|
+
permissions?: Record<string, any>;
|
|
3729
3729
|
[index: string]: any;
|
|
3730
3730
|
}[];
|
|
3731
3731
|
export interface PostMenuV3DraftModifierGroupsResponse {
|
|
@@ -3767,12 +3767,12 @@ export interface PostMenuV3DraftModifierGroupDuplicateResponse {
|
|
|
3767
3767
|
max?: number;
|
|
3768
3768
|
is_active?: boolean;
|
|
3769
3769
|
brand_id: string;
|
|
3770
|
-
applied_diff_snapshot?: any
|
|
3770
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
3771
3771
|
version?: number;
|
|
3772
3772
|
brand?: DraftBrandDTO;
|
|
3773
3773
|
changes?: ModifierGroupChangeDTO[];
|
|
3774
3774
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3775
|
-
permissions?: any
|
|
3775
|
+
permissions?: Record<string, any>;
|
|
3776
3776
|
[index: string]: any;
|
|
3777
3777
|
}
|
|
3778
3778
|
export interface PostMenuV3DraftModifierGroupDuplicateRequest extends BaseRequest, PostMenuV3DraftModifierGroupDuplicatePath {
|
|
@@ -3831,14 +3831,14 @@ export interface PostMenuV3DraftModifierGroupRelationshipsModifierBody {
|
|
|
3831
3831
|
modifier_group_id: string;
|
|
3832
3832
|
brand_id: string;
|
|
3833
3833
|
sequence?: number;
|
|
3834
|
-
id?: any
|
|
3835
|
-
applied_diff_snapshot?: any
|
|
3834
|
+
id?: Record<string, any>;
|
|
3835
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
3836
3836
|
modifier?: DraftModifierDTO;
|
|
3837
3837
|
modifier_group?: DraftModifierGroupDTO;
|
|
3838
3838
|
brand?: DraftBrandDTO;
|
|
3839
3839
|
changes?: ModifierGroupToModifierRelationshipChangeDTO[];
|
|
3840
3840
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3841
|
-
permissions?: any
|
|
3841
|
+
permissions?: Record<string, any>;
|
|
3842
3842
|
[index: string]: any;
|
|
3843
3843
|
}
|
|
3844
3844
|
export type PostMenuV3DraftModifierGroupRelationshipsModifierResponse = DraftModifierGroupToModifierRelationshipDTO;
|
|
@@ -3868,14 +3868,14 @@ export interface PatchMenuV3DraftModifierGroupRelationshipsModifierBody {
|
|
|
3868
3868
|
modifier_group_id?: string;
|
|
3869
3869
|
brand_id?: string;
|
|
3870
3870
|
sequence?: number;
|
|
3871
|
-
applied_diff_snapshot?: any
|
|
3871
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
3872
3872
|
version?: number;
|
|
3873
3873
|
modifier?: DraftModifierDTO;
|
|
3874
3874
|
modifier_group?: DraftModifierGroupDTO;
|
|
3875
3875
|
brand?: DraftBrandDTO;
|
|
3876
3876
|
changes?: ModifierGroupToModifierRelationshipChangeDTO[];
|
|
3877
3877
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3878
|
-
permissions?: any
|
|
3878
|
+
permissions?: Record<string, any>;
|
|
3879
3879
|
[index: string]: any;
|
|
3880
3880
|
}
|
|
3881
3881
|
export type PatchMenuV3DraftModifierGroupRelationshipsModifierResponse = DraftModifierGroupToModifierRelationshipDTO;
|
|
@@ -3916,14 +3916,14 @@ export type PostMenuV3DraftModifierGroupRelationshipsModifiersBody = {
|
|
|
3916
3916
|
modifier_group_id: string;
|
|
3917
3917
|
brand_id: string;
|
|
3918
3918
|
sequence?: number;
|
|
3919
|
-
id?: any
|
|
3920
|
-
applied_diff_snapshot?: any
|
|
3919
|
+
id?: Record<string, any>;
|
|
3920
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
3921
3921
|
modifier?: DraftModifierDTO;
|
|
3922
3922
|
modifier_group?: DraftModifierGroupDTO;
|
|
3923
3923
|
brand?: DraftBrandDTO;
|
|
3924
3924
|
changes?: ModifierGroupToModifierRelationshipChangeDTO[];
|
|
3925
3925
|
vendor_metadata?: VendorMetadataDTO[];
|
|
3926
|
-
permissions?: any
|
|
3926
|
+
permissions?: Record<string, any>;
|
|
3927
3927
|
[index: string]: any;
|
|
3928
3928
|
}[];
|
|
3929
3929
|
export interface PostMenuV3DraftModifierGroupRelationshipsModifiersResponse {
|
|
@@ -4002,19 +4002,19 @@ export interface PostMenuV3DraftModifierBody {
|
|
|
4002
4002
|
description?: string;
|
|
4003
4003
|
price: number;
|
|
4004
4004
|
calories?: number;
|
|
4005
|
-
tax_tags?: any[];
|
|
4005
|
+
tax_tags?: Record<string, any>[];
|
|
4006
4006
|
is_active?: boolean;
|
|
4007
4007
|
posid?: string;
|
|
4008
4008
|
reporting: ReportingMetadataDTO;
|
|
4009
4009
|
posid_segment?: string;
|
|
4010
4010
|
brand_id: string;
|
|
4011
|
-
id?: any
|
|
4012
|
-
applied_diff_snapshot?: any
|
|
4011
|
+
id?: Record<string, any>;
|
|
4012
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
4013
4013
|
brand?: DraftBrandDTO;
|
|
4014
4014
|
changes?: ModifierChangeDTO[];
|
|
4015
4015
|
vendor_metadata?: VendorMetadataDTO[];
|
|
4016
4016
|
weight?: WeightDTO;
|
|
4017
|
-
permissions?: any
|
|
4017
|
+
permissions?: Record<string, any>;
|
|
4018
4018
|
[index: string]: any;
|
|
4019
4019
|
}
|
|
4020
4020
|
export type PostMenuV3DraftModifierResponse = DraftModifierDTO;
|
|
@@ -4046,19 +4046,19 @@ export interface PatchMenuV3DraftModifierBody {
|
|
|
4046
4046
|
description?: string;
|
|
4047
4047
|
price?: number;
|
|
4048
4048
|
calories?: number;
|
|
4049
|
-
tax_tags?: any[];
|
|
4049
|
+
tax_tags?: Record<string, any>[];
|
|
4050
4050
|
is_active?: boolean;
|
|
4051
4051
|
posid?: string;
|
|
4052
4052
|
reporting?: ReportingMetadataDTO;
|
|
4053
4053
|
posid_segment?: string;
|
|
4054
4054
|
brand_id?: string;
|
|
4055
|
-
applied_diff_snapshot?: any
|
|
4055
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
4056
4056
|
version?: number;
|
|
4057
4057
|
brand?: DraftBrandDTO;
|
|
4058
4058
|
changes?: ModifierChangeDTO[];
|
|
4059
4059
|
vendor_metadata?: VendorMetadataDTO[];
|
|
4060
4060
|
weight?: WeightDTO;
|
|
4061
|
-
permissions?: any
|
|
4061
|
+
permissions?: Record<string, any>;
|
|
4062
4062
|
[index: string]: any;
|
|
4063
4063
|
}
|
|
4064
4064
|
export type PatchMenuV3DraftModifierResponse = DraftModifierDTO;
|
|
@@ -4101,19 +4101,19 @@ export type PostMenuV3DraftModifiersBody = {
|
|
|
4101
4101
|
description?: string;
|
|
4102
4102
|
price: number;
|
|
4103
4103
|
calories?: number;
|
|
4104
|
-
tax_tags?: any[];
|
|
4104
|
+
tax_tags?: Record<string, any>[];
|
|
4105
4105
|
is_active?: boolean;
|
|
4106
4106
|
posid?: string;
|
|
4107
4107
|
reporting: ReportingMetadataDTO;
|
|
4108
4108
|
posid_segment?: string;
|
|
4109
4109
|
brand_id: string;
|
|
4110
|
-
id?: any
|
|
4111
|
-
applied_diff_snapshot?: any
|
|
4110
|
+
id?: Record<string, any>;
|
|
4111
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
4112
4112
|
brand?: DraftBrandDTO;
|
|
4113
4113
|
changes?: ModifierChangeDTO[];
|
|
4114
4114
|
vendor_metadata?: VendorMetadataDTO[];
|
|
4115
4115
|
weight?: WeightDTO;
|
|
4116
|
-
permissions?: any
|
|
4116
|
+
permissions?: Record<string, any>;
|
|
4117
4117
|
[index: string]: any;
|
|
4118
4118
|
}[];
|
|
4119
4119
|
export interface PostMenuV3DraftModifiersResponse {
|
|
@@ -4137,7 +4137,7 @@ export interface GetMenuV3DraftModifiersCountResponse {
|
|
|
4137
4137
|
export interface GetMenuV3DraftModifiersCountRequest extends BaseRequest, RequestQuery<GetMenuV3DraftModifiersCountQuery> {
|
|
4138
4138
|
}
|
|
4139
4139
|
export interface PatchMenuV3DraftModifiersBulkUpdateBody {
|
|
4140
|
-
id_list: any[];
|
|
4140
|
+
id_list: Record<string, any>[];
|
|
4141
4141
|
parent?: DraftModifierDTO;
|
|
4142
4142
|
children?: DraftModifierDTO[];
|
|
4143
4143
|
modifier_groups?: DraftModifierGroupToModifierRelationshipDTO[];
|
|
@@ -4148,18 +4148,18 @@ export interface PatchMenuV3DraftModifiersBulkUpdateBody {
|
|
|
4148
4148
|
description?: string;
|
|
4149
4149
|
price?: number;
|
|
4150
4150
|
calories?: number;
|
|
4151
|
-
tax_tags?: any[];
|
|
4151
|
+
tax_tags?: Record<string, any>[];
|
|
4152
4152
|
is_active?: boolean;
|
|
4153
4153
|
posid?: string;
|
|
4154
4154
|
reporting?: ReportingMetadataDTO;
|
|
4155
4155
|
posid_segment?: string;
|
|
4156
4156
|
brand_id?: string;
|
|
4157
|
-
applied_diff_snapshot?: any
|
|
4157
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
4158
4158
|
brand?: DraftBrandDTO;
|
|
4159
4159
|
changes?: ModifierChangeDTO[];
|
|
4160
4160
|
vendor_metadata?: VendorMetadataDTO[];
|
|
4161
4161
|
weight?: WeightDTO;
|
|
4162
|
-
permissions?: any
|
|
4162
|
+
permissions?: Record<string, any>;
|
|
4163
4163
|
[index: string]: any;
|
|
4164
4164
|
}
|
|
4165
4165
|
export interface PatchMenuV3DraftModifiersBulkUpdateResponse {
|
|
@@ -4218,8 +4218,8 @@ export interface PostMenuV3IntegrationsTransltrImportQuery {
|
|
|
4218
4218
|
"body.data"?: string;
|
|
4219
4219
|
}
|
|
4220
4220
|
export interface PostMenuV3IntegrationsTransltrImportResponse {
|
|
4221
|
-
errors?: any
|
|
4222
|
-
results?: any
|
|
4221
|
+
errors?: Record<string, any>;
|
|
4222
|
+
results?: Record<string, any>;
|
|
4223
4223
|
}
|
|
4224
4224
|
export interface PostMenuV3IntegrationsTransltrImportRequest extends BaseRequest, RequestQuery<PostMenuV3IntegrationsTransltrImportQuery> {
|
|
4225
4225
|
}
|
|
@@ -4239,17 +4239,17 @@ export interface GetMenuV3GlobalDiffResponse {
|
|
|
4239
4239
|
deleted_at?: string;
|
|
4240
4240
|
entity_type?: string;
|
|
4241
4241
|
local_id?: string;
|
|
4242
|
-
changes?: any
|
|
4243
|
-
local_changes?: any
|
|
4244
|
-
local_snapshot?: any
|
|
4242
|
+
changes?: Record<string, any>;
|
|
4243
|
+
local_changes?: Record<string, any>;
|
|
4244
|
+
local_snapshot?: Record<string, any>;
|
|
4245
4245
|
global_id?: string;
|
|
4246
|
-
global_snapshot?: any
|
|
4246
|
+
global_snapshot?: Record<string, any>;
|
|
4247
4247
|
brand_id?: string;
|
|
4248
4248
|
version?: number;
|
|
4249
4249
|
depends_on?: GlobalDiffDependencyDTO[];
|
|
4250
4250
|
is_depended_by?: GlobalDiffDependencyDTO[];
|
|
4251
4251
|
brand?: DraftBrandDTO;
|
|
4252
|
-
permissions?: any
|
|
4252
|
+
permissions?: Record<string, any>;
|
|
4253
4253
|
[index: string]: any;
|
|
4254
4254
|
}
|
|
4255
4255
|
export interface GetMenuV3GlobalDiffRequest extends BaseRequest, RequestQuery<GetMenuV3GlobalDiffQuery>, GetMenuV3GlobalDiffPath {
|