@compassdigital/sdk.typescript 3.60.0 → 3.61.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.
@@ -257,46 +257,11 @@ export interface ZippedExcelExport {
257
257
  file?: string;
258
258
  format?: string;
259
259
  }
260
- export interface DraftLayoutDTO {
261
- id?: string;
262
- parent_id?: string;
260
+ export interface GlobalMenuGroupDTO {
263
261
  name?: string;
264
- brand_id?: string;
265
- station_id?: string;
266
- [index: string]: any;
267
- }
268
- export interface DraftItemDTO {
269
- parent?: any;
270
- children?: any[];
271
- posid_segment?: POSIDSegmentDTO;
272
- modifier_groups?: DraftItemToModifierGroupRelationshipDTO[];
273
- parent_id?: string;
274
- name: string;
275
- label?: string;
276
- description?: string;
277
- price: number;
278
- barcode?: string;
279
- calories?: number;
280
262
  is_active?: boolean;
281
- posid: string;
282
- tax_tags?: any[];
283
- brand_id: string;
284
- station_id?: string;
285
- id?: any;
286
- brand?: DraftBrandDTO;
287
- categories?: DraftCategoryToItemRelationshipDTO[];
288
- changes?: ItemChangeDTO[];
289
- station?: StationDTO;
290
- attachments?: FileAttachmentsDTO;
291
- [index: string]: any;
292
- }
293
- export interface POSIDSegmentDTO {
294
- value?: string;
295
- modifier_id?: string;
296
- item_id?: string;
297
- brand_id?: string;
298
- brand_group_id?: string;
299
263
  id?: string;
264
+ permissions?: any;
300
265
  [index: string]: any;
301
266
  }
302
267
  export interface DraftBrandDTO {
@@ -307,111 +272,39 @@ export interface DraftBrandDTO {
307
272
  type?: string;
308
273
  parent_id?: string;
309
274
  local_menu_group_id?: string;
310
- brand_group_id?: string;
311
- [index: string]: any;
312
- }
313
- export interface DraftCategoryToItemRelationshipDTO {
314
- id?: string;
315
- parent_id?: string;
316
- item_id?: string;
317
- category_id?: string;
318
- brand_id?: string;
319
- sequence?: number;
320
- [index: string]: any;
321
- }
322
- export interface DraftItemToModifierGroupRelationshipDTO {
323
- id?: string;
324
- parent_id?: string;
325
- modifier_group_id?: string;
326
- item_id?: string;
327
- brand_id?: string;
328
- sequence?: number;
329
- [index: string]: any;
330
- }
331
- export interface ItemChangeDTO {
332
- id?: string;
333
- insert?: any;
334
- delete?: any;
335
- snapshot_entity_id?: string;
275
+ global_menu_group_id?: string;
276
+ permissions?: any;
336
277
  [index: string]: any;
337
278
  }
338
- export interface StationDTO {
279
+ export interface PublishedBrandDTO {
339
280
  id?: string;
340
281
  name?: string;
341
- [index: string]: any;
342
- }
343
- export interface FileAttachmentsDTO {
344
- thumbnail?: string;
345
- id?: any;
346
- [index: string]: any;
347
- }
348
- export interface DraftModifierGroupDTO {
349
- parent?: any;
350
- children?: any[];
351
- modifiers?: DraftModifierGroupToModifierRelationshipDTO[];
352
- items?: any[];
353
- parent_id?: string;
354
- name: string;
355
- label?: string;
356
- min?: number;
357
- max?: number;
358
- is_active?: boolean;
359
- brand_id: string;
360
- station_id?: string;
361
- id?: any;
362
- brand?: any;
363
- changes?: ModifierGroupChangeDTO[];
364
- station?: any;
365
- [index: string]: any;
366
- }
367
- export interface DraftModifierGroupToModifierRelationshipDTO {
368
- id?: string;
369
- parent_id?: string;
370
- modifier_id?: string;
371
- modifier_group_id?: string;
372
- brand_id?: string;
373
- sequence?: number;
374
- [index: string]: any;
375
- }
376
- export interface ModifierGroupChangeDTO {
377
- id?: string;
378
- insert?: any;
379
- delete?: any;
380
- snapshot_entity_id?: string;
381
- [index: string]: any;
382
- }
383
- export interface DraftModifierDTO {
384
- parent?: any;
385
- children?: any[];
386
- posid_segment?: any;
387
- modifier_groups?: any[];
388
- parent_id?: string;
389
- name: string;
390
- label?: string;
391
282
  description?: string;
392
- price: number;
393
- calories?: number;
394
- tax_tags?: any[];
395
283
  is_active?: boolean;
396
- posid: string;
397
- brand_id: string;
398
- station_id?: string;
399
- id?: any;
400
- brand?: any;
401
- changes?: ModifierChangeDTO[];
402
- station?: any;
403
- [index: string]: any;
404
- }
405
- export interface ModifierChangeDTO {
406
- id?: string;
407
- insert?: any;
408
- delete?: any;
409
- snapshot_entity_id?: string;
284
+ type?: string;
285
+ parent_id?: string;
286
+ local_menu_group_id?: string;
287
+ global_menu_group_id?: string;
288
+ permissions?: any;
410
289
  [index: string]: any;
411
290
  }
412
- export interface SiteDTO {
291
+ export interface VendorMetadataDTO {
413
292
  id?: string;
293
+ vendor_name?: string;
414
294
  name?: string;
295
+ value?: string;
296
+ global_menu_group_id?: string;
297
+ local_menu_group_id?: string;
298
+ brand_id?: string;
299
+ menu_id?: string;
300
+ category_id?: string;
301
+ category_to_item_relationship_id?: string;
302
+ item_id?: string;
303
+ item_to_modifier_group_relationship_id?: string;
304
+ modifier_group_id?: string;
305
+ modifier_group_to_modifier_relationship_id?: string;
306
+ modifier_id?: string;
307
+ permissions?: any;
415
308
  [index: string]: any;
416
309
  }
417
310
  export interface InvalidInputErrorDTO {
@@ -440,16 +333,16 @@ export interface NotFoundErrorDTO {
440
333
  [index: string]: any;
441
334
  }
442
335
  export interface FilterFieldDTO {
443
- $equals?: any;
444
- $more_than?: any;
445
- $more_than_or_equal?: any;
446
- $less_than?: any;
447
- $less_than_or_equal?: any;
448
- $between?: any[];
449
- $not?: any;
450
- $in?: any[];
451
- $array_contains?: any[];
452
- $contains?: any;
336
+ $equals?: string;
337
+ $more_than?: string;
338
+ $more_than_or_equal?: string;
339
+ $less_than?: string;
340
+ $less_than_or_equal?: string;
341
+ $between?: string[];
342
+ $not?: string;
343
+ $in?: string[];
344
+ $array_contains?: string[];
345
+ $contains?: string;
453
346
  }
454
347
  export interface PaginationOptionsDTO {
455
348
  limit?: number;
@@ -470,71 +363,52 @@ export interface ListResponseMetadataDTO {
470
363
  soft_deleted?: string;
471
364
  [index: string]: any;
472
365
  }
473
- export interface DraftCategoryDTO {
474
- parent?: any;
475
- children?: any[];
476
- id?: string;
477
- created_at?: FilterFieldDTO;
478
- updated_at?: FilterFieldDTO;
479
- deleted_at?: FilterFieldDTO;
480
- parent_id?: string;
481
- name: string;
482
- label?: string;
483
- sequence?: number;
484
- is_active?: boolean;
485
- brand_id: string;
486
- layout_id: string;
487
- version?: FilterFieldDTO;
488
- layout?: DraftLayoutDTO;
489
- items?: DraftCategoryToItemRelationshipDTO[];
490
- brand?: DraftBrandDTO;
491
- changes?: CategoryChangeDTO[];
492
- [index: string]: any;
493
- }
494
- export interface CategoryChangeDTO {
495
- id?: string;
496
- insert?: FilterFieldDTO;
497
- delete?: FilterFieldDTO;
498
- snapshot_entity_id?: FilterFieldDTO;
499
- snapshot_entity?: any;
500
- [index: string]: any;
501
- }
502
- export interface LayoutChangeDTO {
503
- id?: string;
504
- insert?: FilterFieldDTO;
505
- delete?: FilterFieldDTO;
506
- snapshot_entity_id?: FilterFieldDTO;
507
- snapshot_entity?: DraftLayoutDTO;
508
- [index: string]: any;
509
- }
510
- export interface BrandGroupDTO {
511
- name?: string;
512
- is_active?: boolean;
513
- id?: string;
514
- [index: string]: any;
515
- }
516
- export interface PublishedBrandDTO {
517
- id?: string;
518
- name?: string;
519
- description?: string;
520
- is_active?: boolean;
521
- type?: string;
522
- parent_id?: string;
523
- local_menu_group_id?: string;
524
- brand_group_id?: string;
525
- [index: string]: any;
526
- }
527
366
  export interface LocalMenuGroupDTO {
528
367
  name: string;
529
368
  is_active?: boolean;
530
- allowed_brand_groups?: BrandGroupDTO[];
369
+ allowed_global_menu_groups?: GlobalMenuGroupDTO[];
531
370
  draft_brands?: DraftBrandDTO[];
532
371
  published_brands?: PublishedBrandDTO[];
533
- id: string;
372
+ id?: string;
534
373
  created_at?: string;
535
374
  updated_at?: string;
536
375
  deleted_at?: string;
537
376
  version?: number;
377
+ vendor_metadata?: VendorMetadataDTO[];
378
+ permissions?: any;
379
+ [index: string]: any;
380
+ }
381
+ export interface DraftBrandDraftBrandDTO {
382
+ name?: FilterFieldDTO;
383
+ description?: FilterFieldDTO;
384
+ is_active?: FilterFieldDTO;
385
+ type?: FilterFieldDTO;
386
+ parent_id?: FilterFieldDTO;
387
+ local_menu_group_id?: FilterFieldDTO;
388
+ global_menu_group_id?: FilterFieldDTO;
389
+ id?: FilterFieldDTO;
390
+ version?: FilterFieldDTO;
391
+ created_at?: FilterFieldDTO;
392
+ updated_at?: FilterFieldDTO;
393
+ deleted_at?: FilterFieldDTO;
394
+ parent?: any;
395
+ children?: any[];
396
+ changes?: BrandChangeDTO[];
397
+ local_menu_group?: LocalMenuGroupDTO;
398
+ global_menu_group?: GlobalMenuGroupDTO;
399
+ posid_segment?: POSIDSegmentDTO;
400
+ menus?: any[];
401
+ categories?: any[];
402
+ category_to_item_relationships?: any[];
403
+ items?: any[];
404
+ item_to_modifier_group_relationships?: any[];
405
+ modifier_groups?: any[];
406
+ modifier_group_to_modifier_relationships?: any[];
407
+ modifiers?: any[];
408
+ statuses?: BrandStatusDTO[];
409
+ vendor_metadata?: VendorMetadataDTO[];
410
+ attachments?: any;
411
+ permissions?: FilterFieldDTO;
538
412
  [index: string]: any;
539
413
  }
540
414
  export interface BrandChangeDTO {
@@ -542,46 +416,100 @@ export interface BrandChangeDTO {
542
416
  insert?: FilterFieldDTO;
543
417
  delete?: FilterFieldDTO;
544
418
  snapshot_entity_id?: FilterFieldDTO;
545
- snapshot_entity?: DraftBrandDTO;
419
+ snapshot_entity?: any;
420
+ permissions?: FilterFieldDTO;
546
421
  [index: string]: any;
547
422
  }
548
- export interface BrandStatusDTO {
549
- brand_id?: FilterFieldDTO;
550
- type?: string;
551
- status?: string;
423
+ export interface POSIDSegmentDTO {
424
+ value?: string;
425
+ modifier_id?: string;
426
+ published_modifier?: PublishedModifierDTO;
427
+ draft_modifier?: DraftModifierDTO;
428
+ item_id?: string;
429
+ published_item?: any;
430
+ draft_item?: any;
431
+ brand_id?: string;
432
+ published_brand?: PublishedBrandDTO;
433
+ draft_brand?: any;
434
+ global_menu_group_id?: string;
435
+ global_menu_group?: GlobalMenuGroupDTO;
552
436
  id?: string;
553
- brand?: DraftBrandDTO;
437
+ permissions?: FilterFieldDTO;
554
438
  [index: string]: any;
555
439
  }
556
- export interface PublishedLayoutDTO {
440
+ export interface PublishedModifierDTO {
441
+ parent?: any;
442
+ children?: any[];
443
+ posid_segment?: any;
444
+ modifier_groups?: PublishedModifierGroupToModifierRelationshipDTO[];
557
445
  id?: string;
558
446
  parent_id?: string;
559
447
  name?: string;
448
+ label?: string;
449
+ description?: string;
450
+ price?: number;
451
+ calories?: number;
452
+ tax_tags?: FilterFieldDTO[];
453
+ is_active?: boolean;
454
+ posid?: FilterFieldDTO;
560
455
  brand_id?: string;
561
- station_id?: string;
456
+ brand?: PublishedBrandDTO;
457
+ reporting?: any;
458
+ permissions?: FilterFieldDTO;
562
459
  [index: string]: any;
563
460
  }
564
- export interface PublishedCategoryDTO {
461
+ export interface PublishedModifierGroupToModifierRelationshipDTO {
462
+ parent?: any;
463
+ children?: any[];
464
+ id?: string;
465
+ parent_id?: string;
466
+ modifier_id?: string;
467
+ modifier_group_id?: string;
468
+ brand_id?: FilterFieldDTO;
469
+ sequence?: number;
470
+ modifier_group?: PublishedModifierGroupDTO;
471
+ modifier?: any;
472
+ brand?: PublishedBrandDTO;
473
+ permissions?: FilterFieldDTO;
474
+ [index: string]: any;
475
+ }
476
+ export interface PublishedModifierGroupDTO {
477
+ parent?: any;
478
+ children?: any[];
479
+ modifiers?: any[];
480
+ items?: PublishedItemToModifierGroupRelationshipDTO[];
565
481
  id?: string;
566
482
  parent_id?: string;
567
483
  name?: string;
568
484
  label?: string;
569
- sequence?: number;
485
+ min?: number;
486
+ max?: number;
570
487
  is_active?: boolean;
571
488
  brand_id?: string;
572
- layout_id?: string;
489
+ brand?: PublishedBrandDTO;
490
+ permissions?: FilterFieldDTO;
573
491
  [index: string]: any;
574
492
  }
575
- export interface PublishedCategoryToItemRelationshipDTO {
493
+ export interface PublishedItemToModifierGroupRelationshipDTO {
494
+ parent?: any;
495
+ children?: any[];
576
496
  id?: string;
577
497
  parent_id?: string;
498
+ modifier_group_id?: string;
578
499
  item_id?: string;
579
- category_id?: string;
580
- brand_id?: string;
500
+ brand_id?: FilterFieldDTO;
581
501
  sequence?: number;
502
+ item?: PublishedItemDTO;
503
+ modifier_group?: any;
504
+ brand?: PublishedBrandDTO;
505
+ permissions?: FilterFieldDTO;
582
506
  [index: string]: any;
583
507
  }
584
508
  export interface PublishedItemDTO {
509
+ parent?: any;
510
+ children?: any[];
511
+ posid_segment?: any;
512
+ modifier_groups?: any[];
585
513
  id?: string;
586
514
  parent_id?: string;
587
515
  name?: string;
@@ -591,76 +519,744 @@ export interface PublishedItemDTO {
591
519
  barcode?: string;
592
520
  calories?: number;
593
521
  is_active?: boolean;
594
- posid?: string;
595
- tax_tags?: any[];
522
+ posid?: FilterFieldDTO;
523
+ tax_tags?: FilterFieldDTO[];
596
524
  brand_id?: string;
597
- station_id?: string;
525
+ brand?: PublishedBrandDTO;
526
+ categories?: PublishedCategoryToItemRelationshipDTO[];
527
+ reporting?: ReportingMetadataDTO;
528
+ attachments?: FileAttachmentsDTO;
529
+ permissions?: FilterFieldDTO;
598
530
  [index: string]: any;
599
531
  }
600
- export interface PublishedItemToModifierGroupRelationshipDTO {
532
+ export interface PublishedCategoryToItemRelationshipDTO {
533
+ parent?: any;
534
+ children?: any[];
601
535
  id?: string;
602
536
  parent_id?: string;
603
- modifier_group_id?: string;
604
537
  item_id?: string;
605
- brand_id?: string;
538
+ category_id?: string;
539
+ brand_id?: FilterFieldDTO;
606
540
  sequence?: number;
541
+ category?: PublishedCategoryDTO;
542
+ item?: any;
543
+ brand?: PublishedBrandDTO;
544
+ permissions?: FilterFieldDTO;
607
545
  [index: string]: any;
608
546
  }
609
- export interface PublishedModifierGroupDTO {
547
+ export interface PublishedCategoryDTO {
548
+ parent?: any;
549
+ children?: any[];
610
550
  id?: string;
611
551
  parent_id?: string;
612
552
  name?: string;
613
553
  label?: string;
614
- min?: number;
615
- max?: number;
554
+ sequence?: number;
616
555
  is_active?: boolean;
617
556
  brand_id?: string;
618
- station_id?: string;
557
+ menu_id?: string;
558
+ menu?: PublishedMenuDTO;
559
+ items?: any[];
560
+ brand?: PublishedBrandDTO;
561
+ permissions?: FilterFieldDTO;
619
562
  [index: string]: any;
620
563
  }
621
- export interface PublishedModifierGroupToModifierRelationshipDTO {
564
+ export interface PublishedMenuDTO {
565
+ parent?: any;
566
+ children?: any[];
567
+ categories?: any[];
622
568
  id?: string;
623
569
  parent_id?: string;
624
- modifier_id?: string;
625
- modifier_group_id?: string;
570
+ name?: string;
626
571
  brand_id?: string;
572
+ brand?: PublishedBrandDTO;
573
+ permissions?: FilterFieldDTO;
574
+ [index: string]: any;
575
+ }
576
+ export interface ReportingMetadataDTO {
577
+ category?: ReportingCategoryMetadataDTO;
578
+ id?: any;
579
+ [index: string]: any;
580
+ }
581
+ export interface ReportingCategoryMetadataDTO {
582
+ primary?: string;
583
+ secondary?: FilterFieldDTO;
584
+ id?: any;
585
+ [index: string]: any;
586
+ }
587
+ export interface FileAttachmentsDTO {
588
+ thumbnail?: FilterFieldDTO;
589
+ id?: any;
590
+ [index: string]: any;
591
+ }
592
+ export interface DraftModifierDTO {
593
+ parent?: any;
594
+ children?: any[];
595
+ posid_segment?: any;
596
+ modifier_groups?: DraftModifierGroupToModifierRelationshipDTO[];
597
+ id?: string;
598
+ parent_id?: string;
599
+ name?: string;
600
+ label?: string;
601
+ description?: string;
602
+ price?: number;
603
+ calories?: number;
604
+ tax_tags?: FilterFieldDTO[];
605
+ is_active?: boolean;
606
+ posid?: FilterFieldDTO;
607
+ brand_id?: string;
608
+ brand?: any;
609
+ changes?: ModifierChangeDTO[];
610
+ vendor_metadata?: VendorMetadataDTO[];
611
+ reporting?: any;
612
+ permissions?: FilterFieldDTO;
613
+ [index: string]: any;
614
+ }
615
+ export interface DraftModifierGroupToModifierRelationshipDTO {
616
+ parent?: any;
617
+ children?: any[];
618
+ id?: string;
619
+ parent_id?: string;
620
+ modifier_id?: string;
621
+ modifier_group_id?: string;
622
+ brand_id?: FilterFieldDTO;
627
623
  sequence?: number;
624
+ modifier?: any;
625
+ modifier_group?: DraftModifierGroupDTO;
626
+ brand?: any;
627
+ changes?: ModifierGroupToModifierRelationshipChangeDTO[];
628
+ vendor_metadata?: VendorMetadataDTO[];
629
+ permissions?: FilterFieldDTO;
628
630
  [index: string]: any;
629
631
  }
630
- export interface PublishedModifierDTO {
632
+ export interface DraftModifierGroupDTO {
633
+ parent?: any;
634
+ children?: any[];
635
+ modifiers?: any[];
636
+ items?: DraftItemToModifierGroupRelationshipDTO[];
637
+ id?: string;
638
+ parent_id?: string;
639
+ name?: string;
640
+ label?: string;
641
+ min?: number;
642
+ max?: number;
643
+ is_active?: boolean;
644
+ brand_id?: string;
645
+ brand?: any;
646
+ changes?: ModifierGroupChangeDTO[];
647
+ vendor_metadata?: VendorMetadataDTO[];
648
+ permissions?: FilterFieldDTO;
649
+ [index: string]: any;
650
+ }
651
+ export interface DraftItemToModifierGroupRelationshipDTO {
652
+ parent?: any;
653
+ children?: any[];
654
+ id?: string;
655
+ parent_id?: string;
656
+ modifier_group_id?: string;
657
+ item_id?: string;
658
+ brand_id?: FilterFieldDTO;
659
+ sequence?: number;
660
+ item?: DraftItemDTO;
661
+ modifier_group?: any;
662
+ brand?: any;
663
+ changes?: ItemToModifierGroupRelationshipChangeDTO[];
664
+ vendor_metadata?: VendorMetadataDTO[];
665
+ permissions?: FilterFieldDTO;
666
+ [index: string]: any;
667
+ }
668
+ export interface DraftItemDTO {
669
+ parent?: any;
670
+ children?: any[];
671
+ posid_segment?: any;
672
+ modifier_groups?: any[];
631
673
  id?: string;
632
674
  parent_id?: string;
633
675
  name?: string;
634
676
  label?: string;
635
677
  description?: string;
636
678
  price?: number;
679
+ barcode?: string;
637
680
  calories?: number;
638
- tax_tags?: any[];
639
681
  is_active?: boolean;
640
- posid?: string;
682
+ posid?: FilterFieldDTO;
683
+ tax_tags?: FilterFieldDTO[];
641
684
  brand_id?: string;
642
- station_id?: string;
685
+ brand?: any;
686
+ categories?: DraftCategoryToItemRelationshipDTO[];
687
+ changes?: ItemChangeDTO[];
688
+ vendor_metadata?: VendorMetadataDTO[];
689
+ reporting?: any;
690
+ attachments?: any;
691
+ permissions?: FilterFieldDTO;
692
+ [index: string]: any;
693
+ }
694
+ export interface DraftCategoryToItemRelationshipDTO {
695
+ parent?: any;
696
+ children?: any[];
697
+ id?: string;
698
+ parent_id?: string;
699
+ item_id?: string;
700
+ category_id?: string;
701
+ brand_id?: FilterFieldDTO;
702
+ sequence?: number;
703
+ category?: DraftCategoryDTO;
704
+ item?: any;
705
+ brand?: any;
706
+ changes?: CategoryToItemRelationshipChangeDTO[];
707
+ vendor_metadata?: VendorMetadataDTO[];
708
+ permissions?: FilterFieldDTO;
709
+ [index: string]: any;
710
+ }
711
+ export interface DraftCategoryDTO {
712
+ parent?: any;
713
+ children?: any[];
714
+ id?: string;
715
+ parent_id?: string;
716
+ name?: string;
717
+ label?: string;
718
+ sequence?: number;
719
+ is_active?: boolean;
720
+ brand_id?: string;
721
+ menu_id?: string;
722
+ menu?: DraftMenuDTO;
723
+ items?: any[];
724
+ brand?: any;
725
+ changes?: CategoryChangeDTO[];
726
+ vendor_metadata?: VendorMetadataDTO[];
727
+ permissions?: FilterFieldDTO;
728
+ [index: string]: any;
729
+ }
730
+ export interface DraftMenuDTO {
731
+ parent?: any;
732
+ children?: any[];
733
+ categories?: any[];
734
+ id?: string;
735
+ parent_id?: string;
736
+ name?: string;
737
+ brand_id?: string;
738
+ brand?: any;
739
+ changes?: MenuChangeDTO[];
740
+ vendor_metadata?: VendorMetadataDTO[];
741
+ permissions?: FilterFieldDTO;
742
+ [index: string]: any;
743
+ }
744
+ export interface MenuChangeDTO {
745
+ id?: string;
746
+ insert?: FilterFieldDTO;
747
+ delete?: FilterFieldDTO;
748
+ snapshot_entity_id?: FilterFieldDTO;
749
+ snapshot_entity?: any;
750
+ permissions?: FilterFieldDTO;
751
+ [index: string]: any;
752
+ }
753
+ export interface CategoryChangeDTO {
754
+ id?: string;
755
+ insert?: FilterFieldDTO;
756
+ delete?: FilterFieldDTO;
757
+ snapshot_entity_id?: FilterFieldDTO;
758
+ snapshot_entity?: any;
759
+ permissions?: FilterFieldDTO;
643
760
  [index: string]: any;
644
761
  }
645
762
  export interface CategoryToItemRelationshipChangeDTO {
646
763
  id?: string;
647
- insert?: any;
648
- delete?: any;
649
- snapshot_entity_id?: string;
764
+ insert?: FilterFieldDTO;
765
+ delete?: FilterFieldDTO;
766
+ snapshot_entity_id?: FilterFieldDTO;
767
+ snapshot_entity?: any;
768
+ permissions?: FilterFieldDTO;
769
+ [index: string]: any;
770
+ }
771
+ export interface ItemChangeDTO {
772
+ id?: string;
773
+ insert?: FilterFieldDTO;
774
+ delete?: FilterFieldDTO;
775
+ snapshot_entity_id?: FilterFieldDTO;
776
+ snapshot_entity?: any;
777
+ permissions?: FilterFieldDTO;
650
778
  [index: string]: any;
651
779
  }
652
780
  export interface ItemToModifierGroupRelationshipChangeDTO {
653
781
  id?: string;
654
- insert?: any;
655
- delete?: any;
656
- snapshot_entity_id?: string;
782
+ insert?: FilterFieldDTO;
783
+ delete?: FilterFieldDTO;
784
+ snapshot_entity_id?: FilterFieldDTO;
785
+ snapshot_entity?: any;
786
+ permissions?: FilterFieldDTO;
787
+ [index: string]: any;
788
+ }
789
+ export interface ModifierGroupChangeDTO {
790
+ id?: string;
791
+ insert?: FilterFieldDTO;
792
+ delete?: FilterFieldDTO;
793
+ snapshot_entity_id?: FilterFieldDTO;
794
+ snapshot_entity?: any;
795
+ permissions?: FilterFieldDTO;
796
+ [index: string]: any;
797
+ }
798
+ export interface ModifierGroupToModifierRelationshipChangeDTO {
799
+ id?: string;
800
+ insert?: FilterFieldDTO;
801
+ delete?: FilterFieldDTO;
802
+ snapshot_entity_id?: FilterFieldDTO;
803
+ snapshot_entity?: any;
804
+ permissions?: FilterFieldDTO;
805
+ [index: string]: any;
806
+ }
807
+ export interface ModifierChangeDTO {
808
+ id?: string;
809
+ insert?: FilterFieldDTO;
810
+ delete?: FilterFieldDTO;
811
+ snapshot_entity_id?: FilterFieldDTO;
812
+ snapshot_entity?: any;
813
+ permissions?: FilterFieldDTO;
814
+ [index: string]: any;
815
+ }
816
+ export interface BrandStatusDTO {
817
+ brand_id?: FilterFieldDTO;
818
+ type?: string;
819
+ status?: string;
820
+ id?: string;
821
+ brand?: any;
822
+ permissions?: FilterFieldDTO;
823
+ [index: string]: any;
824
+ }
825
+ export interface DraftMenuDraftMenuDTO {
826
+ parent_id?: FilterFieldDTO;
827
+ name?: FilterFieldDTO;
828
+ brand_id?: FilterFieldDTO;
829
+ id?: FilterFieldDTO;
830
+ version?: FilterFieldDTO;
831
+ created_at?: FilterFieldDTO;
832
+ updated_at?: FilterFieldDTO;
833
+ deleted_at?: FilterFieldDTO;
834
+ parent?: any;
835
+ children?: any[];
836
+ categories?: DraftCategoryDTO[];
837
+ brand?: DraftBrandDTO;
838
+ changes?: MenuChangeDTO[];
839
+ vendor_metadata?: VendorMetadataDTO[];
840
+ permissions?: FilterFieldDTO;
841
+ [index: string]: any;
842
+ }
843
+ export interface DraftModifierDraftModifierDTO {
844
+ parent_id?: FilterFieldDTO;
845
+ name?: FilterFieldDTO;
846
+ label?: FilterFieldDTO;
847
+ description?: FilterFieldDTO;
848
+ price?: FilterFieldDTO;
849
+ calories?: FilterFieldDTO;
850
+ tax_tags?: FilterFieldDTO[];
851
+ is_active?: FilterFieldDTO;
852
+ posid?: FilterFieldDTO;
853
+ brand_id?: FilterFieldDTO;
854
+ id?: FilterFieldDTO;
855
+ version?: FilterFieldDTO;
856
+ created_at?: FilterFieldDTO;
857
+ updated_at?: FilterFieldDTO;
858
+ deleted_at?: FilterFieldDTO;
859
+ parent?: any;
860
+ children?: any[];
861
+ posid_segment?: POSIDSegmentDTO;
862
+ modifier_groups?: DraftModifierGroupToModifierRelationshipDTO[];
863
+ brand?: DraftBrandDTO;
864
+ changes?: ModifierChangeDTO[];
865
+ vendor_metadata?: VendorMetadataDTO[];
866
+ reporting?: ReportingMetadataDTO;
867
+ permissions?: FilterFieldDTO;
868
+ [index: string]: any;
869
+ }
870
+ export interface DraftModifierGroupDraftModifierGroupDTO {
871
+ parent_id?: FilterFieldDTO;
872
+ name?: FilterFieldDTO;
873
+ label?: FilterFieldDTO;
874
+ min?: FilterFieldDTO;
875
+ max?: FilterFieldDTO;
876
+ is_active?: FilterFieldDTO;
877
+ brand_id?: FilterFieldDTO;
878
+ id?: FilterFieldDTO;
879
+ version?: FilterFieldDTO;
880
+ created_at?: FilterFieldDTO;
881
+ updated_at?: FilterFieldDTO;
882
+ deleted_at?: FilterFieldDTO;
883
+ parent?: any;
884
+ children?: any[];
885
+ modifiers?: DraftModifierGroupToModifierRelationshipDTO[];
886
+ items?: DraftItemToModifierGroupRelationshipDTO[];
887
+ brand?: DraftBrandDTO;
888
+ changes?: ModifierGroupChangeDTO[];
889
+ vendor_metadata?: VendorMetadataDTO[];
890
+ permissions?: FilterFieldDTO;
891
+ [index: string]: any;
892
+ }
893
+ export interface DraftItemDraftItemDTO {
894
+ parent_id?: FilterFieldDTO;
895
+ name?: FilterFieldDTO;
896
+ label?: FilterFieldDTO;
897
+ description?: FilterFieldDTO;
898
+ price?: FilterFieldDTO;
899
+ barcode?: FilterFieldDTO;
900
+ calories?: FilterFieldDTO;
901
+ is_active?: FilterFieldDTO;
902
+ posid?: FilterFieldDTO;
903
+ tax_tags?: FilterFieldDTO[];
904
+ brand_id?: FilterFieldDTO;
905
+ id?: FilterFieldDTO;
906
+ version?: FilterFieldDTO;
907
+ created_at?: FilterFieldDTO;
908
+ updated_at?: FilterFieldDTO;
909
+ deleted_at?: FilterFieldDTO;
910
+ parent?: any;
911
+ children?: any[];
912
+ posid_segment?: POSIDSegmentDTO;
913
+ brand?: DraftBrandDTO;
914
+ categories?: DraftCategoryToItemRelationshipDTO[];
915
+ modifier_groups?: DraftItemToModifierGroupRelationshipDTO[];
916
+ changes?: ItemChangeDTO[];
917
+ vendor_metadata?: VendorMetadataDTO[];
918
+ reporting?: ReportingMetadataDTO;
919
+ attachments?: FileAttachmentsDTO;
920
+ permissions?: FilterFieldDTO;
921
+ [index: string]: any;
922
+ }
923
+ export interface ReportingCategorySuggestion {
924
+ category?: string;
925
+ occurrences?: number;
926
+ }
927
+ export interface DiffDTO {
928
+ action: string;
929
+ id?: string;
930
+ created_at?: string;
931
+ updated_at?: string;
932
+ deleted_at?: string;
933
+ child_nodes?: any[];
934
+ name?: string;
935
+ entity_type?: string;
936
+ local_id?: string;
937
+ changes?: any;
938
+ local_snapshot?: any;
939
+ global_id?: string;
940
+ global_snapshot?: any;
941
+ brand_id?: string;
942
+ version?: number;
943
+ depends_on?: GlobalDiffDependencyDTO[];
944
+ is_depended_by?: any[];
945
+ brand?: DraftBrandDTO;
946
+ permissions?: any;
947
+ [index: string]: any;
948
+ }
949
+ export interface GlobalDiffDependencyDTO {
950
+ depends_on_id?: string;
951
+ is_depended_by_id?: string;
952
+ id?: string;
953
+ depends_on?: GlobalDiffDTO;
954
+ is_depended_by?: any;
955
+ permissions?: any;
956
+ [index: string]: any;
957
+ }
958
+ export interface GlobalDiffDTO {
959
+ action: string;
960
+ id?: string;
961
+ created_at?: string;
962
+ updated_at?: string;
963
+ deleted_at?: string;
964
+ entity_type?: string;
965
+ local_id?: string;
966
+ changes?: any;
967
+ local_snapshot?: any;
968
+ global_id?: string;
969
+ global_snapshot?: any;
970
+ brand_id?: string;
971
+ version?: number;
972
+ depends_on?: any[];
973
+ is_depended_by?: any[];
974
+ brand?: DraftBrandDTO;
975
+ permissions?: any;
976
+ [index: string]: any;
977
+ }
978
+ export interface PublishedBrandPublishedBrandDTO {
979
+ name?: FilterFieldDTO;
980
+ description?: FilterFieldDTO;
981
+ is_active?: FilterFieldDTO;
982
+ type?: FilterFieldDTO;
983
+ parent_id?: FilterFieldDTO;
984
+ local_menu_group_id?: FilterFieldDTO;
985
+ global_menu_group_id?: FilterFieldDTO;
986
+ id?: FilterFieldDTO;
987
+ version?: FilterFieldDTO;
988
+ created_at?: FilterFieldDTO;
989
+ updated_at?: FilterFieldDTO;
990
+ deleted_at?: FilterFieldDTO;
991
+ parent?: any;
992
+ children?: any[];
993
+ local_menu_group?: LocalMenuGroupDTO;
994
+ global_menu_group?: GlobalMenuGroupDTO;
995
+ posid_segment?: POSIDSegmentDTO;
996
+ menus?: PublishedMenuDTO[];
997
+ categories?: PublishedCategoryDTO[];
998
+ category_to_item_relationships?: PublishedCategoryToItemRelationshipDTO[];
999
+ items?: PublishedItemDTO[];
1000
+ item_to_modifier_group_relationships?: PublishedItemToModifierGroupRelationshipDTO[];
1001
+ modifier_groups?: PublishedModifierGroupDTO[];
1002
+ modifier_group_to_modifier_relationships?: PublishedModifierGroupToModifierRelationshipDTO[];
1003
+ modifiers?: PublishedModifierDTO[];
1004
+ attachments?: FileAttachmentsDTO;
1005
+ permissions?: FilterFieldDTO;
1006
+ [index: string]: any;
1007
+ }
1008
+ export interface DraftCategoryDraftCategoryDTO {
1009
+ parent_id?: FilterFieldDTO;
1010
+ name?: FilterFieldDTO;
1011
+ label?: FilterFieldDTO;
1012
+ sequence?: FilterFieldDTO;
1013
+ is_active?: FilterFieldDTO;
1014
+ brand_id?: FilterFieldDTO;
1015
+ menu_id?: FilterFieldDTO;
1016
+ id?: FilterFieldDTO;
1017
+ version?: FilterFieldDTO;
1018
+ created_at?: FilterFieldDTO;
1019
+ updated_at?: FilterFieldDTO;
1020
+ deleted_at?: FilterFieldDTO;
1021
+ parent?: any;
1022
+ children?: any[];
1023
+ menu?: DraftMenuDTO;
1024
+ items?: DraftCategoryToItemRelationshipDTO[];
1025
+ brand?: DraftBrandDTO;
1026
+ changes?: CategoryChangeDTO[];
1027
+ vendor_metadata?: VendorMetadataDTO[];
1028
+ permissions?: FilterFieldDTO;
1029
+ [index: string]: any;
1030
+ }
1031
+ export interface PublishedMenuPublishedMenuDTO {
1032
+ parent_id?: FilterFieldDTO;
1033
+ name?: FilterFieldDTO;
1034
+ brand_id?: FilterFieldDTO;
1035
+ id?: FilterFieldDTO;
1036
+ version?: FilterFieldDTO;
1037
+ created_at?: FilterFieldDTO;
1038
+ updated_at?: FilterFieldDTO;
1039
+ deleted_at?: FilterFieldDTO;
1040
+ parent?: any;
1041
+ children?: any[];
1042
+ categories?: PublishedCategoryDTO[];
1043
+ brand?: PublishedBrandDTO;
1044
+ permissions?: FilterFieldDTO;
1045
+ [index: string]: any;
1046
+ }
1047
+ export interface PublishedCategoryPublishedCategoryDTO {
1048
+ parent_id?: FilterFieldDTO;
1049
+ name?: FilterFieldDTO;
1050
+ label?: FilterFieldDTO;
1051
+ sequence?: FilterFieldDTO;
1052
+ is_active?: FilterFieldDTO;
1053
+ brand_id?: FilterFieldDTO;
1054
+ menu_id?: FilterFieldDTO;
1055
+ id?: FilterFieldDTO;
1056
+ version?: FilterFieldDTO;
1057
+ created_at?: FilterFieldDTO;
1058
+ updated_at?: FilterFieldDTO;
1059
+ deleted_at?: FilterFieldDTO;
1060
+ parent?: any;
1061
+ children?: any[];
1062
+ menu?: PublishedMenuDTO;
1063
+ items?: PublishedCategoryToItemRelationshipDTO[];
1064
+ brand?: PublishedBrandDTO;
1065
+ permissions?: FilterFieldDTO;
1066
+ [index: string]: any;
1067
+ }
1068
+ export interface DraftCategoryToItemRelationshipDraftCategoryToItemRelationshipDTO {
1069
+ parent_id?: FilterFieldDTO;
1070
+ deleted_at?: FilterFieldDTO;
1071
+ item_id?: FilterFieldDTO;
1072
+ category_id?: FilterFieldDTO;
1073
+ brand_id?: FilterFieldDTO;
1074
+ sequence?: FilterFieldDTO;
1075
+ id?: FilterFieldDTO;
1076
+ version?: FilterFieldDTO;
1077
+ created_at?: FilterFieldDTO;
1078
+ updated_at?: FilterFieldDTO;
1079
+ parent?: any;
1080
+ children?: any[];
1081
+ category?: DraftCategoryDTO;
1082
+ item?: DraftItemDTO;
1083
+ brand?: DraftBrandDTO;
1084
+ changes?: CategoryToItemRelationshipChangeDTO[];
1085
+ vendor_metadata?: VendorMetadataDTO[];
1086
+ permissions?: FilterFieldDTO;
1087
+ [index: string]: any;
1088
+ }
1089
+ export interface PublishedCategoryToItemRelationshipPublishedCategoryToItemRelationshipDTO {
1090
+ parent_id?: FilterFieldDTO;
1091
+ deleted_at?: FilterFieldDTO;
1092
+ item_id?: FilterFieldDTO;
1093
+ category_id?: FilterFieldDTO;
1094
+ brand_id?: FilterFieldDTO;
1095
+ sequence?: FilterFieldDTO;
1096
+ id?: FilterFieldDTO;
1097
+ version?: FilterFieldDTO;
1098
+ created_at?: FilterFieldDTO;
1099
+ updated_at?: FilterFieldDTO;
1100
+ parent?: any;
1101
+ children?: any[];
1102
+ category?: PublishedCategoryDTO;
1103
+ item?: PublishedItemDTO;
1104
+ brand?: PublishedBrandDTO;
1105
+ permissions?: FilterFieldDTO;
1106
+ [index: string]: any;
1107
+ }
1108
+ export interface PublishedItemPublishedItemDTO {
1109
+ parent_id?: FilterFieldDTO;
1110
+ name?: FilterFieldDTO;
1111
+ label?: FilterFieldDTO;
1112
+ description?: FilterFieldDTO;
1113
+ price?: FilterFieldDTO;
1114
+ barcode?: FilterFieldDTO;
1115
+ calories?: FilterFieldDTO;
1116
+ is_active?: FilterFieldDTO;
1117
+ posid?: FilterFieldDTO;
1118
+ tax_tags?: FilterFieldDTO[];
1119
+ brand_id?: FilterFieldDTO;
1120
+ id?: FilterFieldDTO;
1121
+ version?: FilterFieldDTO;
1122
+ created_at?: FilterFieldDTO;
1123
+ updated_at?: FilterFieldDTO;
1124
+ deleted_at?: FilterFieldDTO;
1125
+ parent?: any;
1126
+ children?: any[];
1127
+ posid_segment?: POSIDSegmentDTO;
1128
+ brand?: PublishedBrandDTO;
1129
+ categories?: PublishedCategoryToItemRelationshipDTO[];
1130
+ modifier_groups?: PublishedItemToModifierGroupRelationshipDTO[];
1131
+ reporting?: ReportingMetadataDTO;
1132
+ attachments?: FileAttachmentsDTO;
1133
+ permissions?: FilterFieldDTO;
1134
+ [index: string]: any;
1135
+ }
1136
+ export interface DraftItemToModifierGroupRelationshipDraftItemToModifierGroupRelationshipDTO {
1137
+ parent_id?: FilterFieldDTO;
1138
+ deleted_at?: FilterFieldDTO;
1139
+ modifier_group_id?: FilterFieldDTO;
1140
+ item_id?: FilterFieldDTO;
1141
+ brand_id?: FilterFieldDTO;
1142
+ sequence?: FilterFieldDTO;
1143
+ id?: FilterFieldDTO;
1144
+ version?: FilterFieldDTO;
1145
+ created_at?: FilterFieldDTO;
1146
+ updated_at?: FilterFieldDTO;
1147
+ parent?: any;
1148
+ children?: any[];
1149
+ item?: DraftItemDTO;
1150
+ modifier_group?: DraftModifierGroupDTO;
1151
+ brand?: DraftBrandDTO;
1152
+ changes?: ItemToModifierGroupRelationshipChangeDTO[];
1153
+ vendor_metadata?: VendorMetadataDTO[];
1154
+ permissions?: FilterFieldDTO;
1155
+ [index: string]: any;
1156
+ }
1157
+ export interface PublishedItemToModifierGroupRelationshipPublishedItemToModifierGroupRelationshipDTO {
1158
+ parent_id?: FilterFieldDTO;
1159
+ deleted_at?: FilterFieldDTO;
1160
+ modifier_group_id?: FilterFieldDTO;
1161
+ item_id?: FilterFieldDTO;
1162
+ brand_id?: FilterFieldDTO;
1163
+ sequence?: FilterFieldDTO;
1164
+ id?: FilterFieldDTO;
1165
+ version?: FilterFieldDTO;
1166
+ created_at?: FilterFieldDTO;
1167
+ updated_at?: FilterFieldDTO;
1168
+ parent?: any;
1169
+ children?: any[];
1170
+ item?: PublishedItemDTO;
1171
+ modifier_group?: PublishedModifierGroupDTO;
1172
+ brand?: PublishedBrandDTO;
1173
+ permissions?: FilterFieldDTO;
1174
+ [index: string]: any;
1175
+ }
1176
+ export interface PublishedModifierGroupPublishedModifierGroupDTO {
1177
+ parent_id?: FilterFieldDTO;
1178
+ name?: FilterFieldDTO;
1179
+ label?: FilterFieldDTO;
1180
+ min?: FilterFieldDTO;
1181
+ max?: FilterFieldDTO;
1182
+ is_active?: FilterFieldDTO;
1183
+ brand_id?: FilterFieldDTO;
1184
+ id?: FilterFieldDTO;
1185
+ version?: FilterFieldDTO;
1186
+ created_at?: FilterFieldDTO;
1187
+ updated_at?: FilterFieldDTO;
1188
+ deleted_at?: FilterFieldDTO;
1189
+ parent?: any;
1190
+ children?: any[];
1191
+ modifiers?: PublishedModifierGroupToModifierRelationshipDTO[];
1192
+ items?: PublishedItemToModifierGroupRelationshipDTO[];
1193
+ brand?: PublishedBrandDTO;
1194
+ permissions?: FilterFieldDTO;
1195
+ [index: string]: any;
1196
+ }
1197
+ export interface DraftModifierGroupToModifierRelationshipDraftModifierGroupToModifierRelationshipDTO {
1198
+ parent_id?: FilterFieldDTO;
1199
+ deleted_at?: FilterFieldDTO;
1200
+ modifier_id?: FilterFieldDTO;
1201
+ modifier_group_id?: FilterFieldDTO;
1202
+ brand_id?: FilterFieldDTO;
1203
+ sequence?: FilterFieldDTO;
1204
+ id?: FilterFieldDTO;
1205
+ version?: FilterFieldDTO;
1206
+ created_at?: FilterFieldDTO;
1207
+ updated_at?: FilterFieldDTO;
1208
+ parent?: any;
1209
+ children?: any[];
1210
+ modifier?: DraftModifierDTO;
1211
+ modifier_group?: DraftModifierGroupDTO;
1212
+ brand?: DraftBrandDTO;
1213
+ changes?: ModifierGroupToModifierRelationshipChangeDTO[];
1214
+ vendor_metadata?: VendorMetadataDTO[];
1215
+ permissions?: FilterFieldDTO;
657
1216
  [index: string]: any;
658
1217
  }
659
- export interface ModifierGroupToModifierRelationshipChangeDTO {
660
- id?: string;
661
- insert?: any;
662
- delete?: any;
663
- snapshot_entity_id?: string;
1218
+ export interface PublishedModifierGroupToModifierRelationshipPublishedModifierGroupToModifierRelationshipDTO {
1219
+ parent_id?: FilterFieldDTO;
1220
+ deleted_at?: FilterFieldDTO;
1221
+ modifier_id?: FilterFieldDTO;
1222
+ modifier_group_id?: FilterFieldDTO;
1223
+ brand_id?: FilterFieldDTO;
1224
+ sequence?: FilterFieldDTO;
1225
+ id?: FilterFieldDTO;
1226
+ version?: FilterFieldDTO;
1227
+ created_at?: FilterFieldDTO;
1228
+ updated_at?: FilterFieldDTO;
1229
+ parent?: any;
1230
+ children?: any[];
1231
+ modifier_group?: PublishedModifierGroupDTO;
1232
+ modifier?: PublishedModifierDTO;
1233
+ brand?: PublishedBrandDTO;
1234
+ permissions?: FilterFieldDTO;
1235
+ [index: string]: any;
1236
+ }
1237
+ export interface PublishedModifierPublishedModifierDTO {
1238
+ parent_id?: FilterFieldDTO;
1239
+ name?: FilterFieldDTO;
1240
+ label?: FilterFieldDTO;
1241
+ description?: FilterFieldDTO;
1242
+ price?: FilterFieldDTO;
1243
+ calories?: FilterFieldDTO;
1244
+ tax_tags?: FilterFieldDTO[];
1245
+ is_active?: FilterFieldDTO;
1246
+ posid?: FilterFieldDTO;
1247
+ brand_id?: FilterFieldDTO;
1248
+ id?: FilterFieldDTO;
1249
+ version?: FilterFieldDTO;
1250
+ created_at?: FilterFieldDTO;
1251
+ updated_at?: FilterFieldDTO;
1252
+ deleted_at?: FilterFieldDTO;
1253
+ parent?: any;
1254
+ children?: any[];
1255
+ posid_segment?: POSIDSegmentDTO;
1256
+ modifier_groups?: PublishedModifierGroupToModifierRelationshipDTO[];
1257
+ brand?: PublishedBrandDTO;
1258
+ reporting?: ReportingMetadataDTO;
1259
+ permissions?: FilterFieldDTO;
664
1260
  [index: string]: any;
665
1261
  }
666
1262
  export interface GetMenuClientPath {
@@ -920,201 +1516,29 @@ export type PostMenuPartialGroupItemOptionsResponse = Items;
920
1516
  export interface PostMenuPartialGroupItemOptionsRequest extends BaseRequest, RequestQuery<PostMenuPartialGroupItemOptionsQuery>, PostMenuPartialGroupItemOptionsPath {
921
1517
  body: PostMenuPartialGroupItemOptionsBody;
922
1518
  }
923
- export interface PostMenuV3DraftStationBody {
924
- layouts?: DraftLayoutDTO[];
925
- items?: DraftItemDTO[];
926
- modifier_groups?: DraftModifierGroupDTO[];
927
- modifiers?: DraftModifierDTO[];
928
- name?: string;
929
- site?: SiteDTO;
930
- [index: string]: any;
931
- }
932
- export type PostMenuV3DraftStationResponse = StationDTO;
933
- export interface PostMenuV3DraftStationRequest extends BaseRequest {
934
- body: PostMenuV3DraftStationBody;
935
- }
936
- export interface GetMenuV3DraftStationPath {
937
- id: string;
938
- }
939
- export interface GetMenuV3DraftStationQuery {
940
- select?: string[];
941
- relationships?: string[];
942
- _query?: string;
943
- }
944
- export type GetMenuV3DraftStationResponse = StationDTO;
945
- export interface GetMenuV3DraftStationRequest extends BaseRequest, RequestQuery<GetMenuV3DraftStationQuery>, GetMenuV3DraftStationPath {
946
- }
947
- export interface PatchMenuV3DraftStationPath {
948
- id: string;
949
- }
950
- export interface PatchMenuV3DraftStationBody {
951
- layouts?: DraftLayoutDTO[];
952
- items?: DraftItemDTO[];
953
- modifier_groups?: DraftModifierGroupDTO[];
954
- modifiers?: DraftModifierDTO[];
955
- id?: string;
956
- name?: string;
957
- site?: SiteDTO;
958
- [index: string]: any;
959
- }
960
- export type PatchMenuV3DraftStationResponse = StationDTO;
961
- export interface PatchMenuV3DraftStationRequest extends BaseRequest, PatchMenuV3DraftStationPath {
962
- body: PatchMenuV3DraftStationBody;
963
- }
964
- export interface DeleteMenuV3DraftStationPath {
965
- id: string;
966
- }
967
- export type DeleteMenuV3DraftStationResponse = StationDTO;
968
- export interface DeleteMenuV3DraftStationRequest extends BaseRequest, DeleteMenuV3DraftStationPath {
969
- }
970
- export interface GetMenuV3DraftStationsQuery {
971
- select?: string[];
972
- relationships?: string[];
973
- filter?: any;
974
- limit?: number;
975
- page?: number;
976
- sort_by?: string;
977
- sort_order?: string;
978
- soft_deleted?: string;
979
- _query?: string;
980
- }
981
- export interface GetMenuV3DraftStationsResponse {
982
- results: StationDTO[];
983
- meta?: ListResponseMetadataDTO;
984
- [index: string]: any;
985
- }
986
- export interface GetMenuV3DraftStationsRequest extends BaseRequest, RequestQuery<GetMenuV3DraftStationsQuery> {
987
- }
988
- export type PostMenuV3DraftStationsBody = {
989
- layouts?: DraftLayoutDTO[];
990
- items?: DraftItemDTO[];
991
- modifier_groups?: DraftModifierGroupDTO[];
992
- modifiers?: DraftModifierDTO[];
993
- name?: string;
994
- site?: SiteDTO;
995
- [index: string]: any;
996
- }[];
997
- export interface PostMenuV3DraftStationsResponse {
998
- results: StationDTO[];
999
- meta?: ListResponseMetadataDTO;
1000
- [index: string]: any;
1001
- }
1002
- export interface PostMenuV3DraftStationsRequest extends BaseRequest {
1003
- body: PostMenuV3DraftStationsBody;
1004
- }
1005
- export interface GetMenuV3DraftStationsCountQuery {
1006
- filter?: any;
1007
- _query?: string;
1008
- }
1009
- export interface GetMenuV3DraftStationsCountResponse {
1010
- count: number;
1011
- [index: string]: any;
1012
- }
1013
- export interface GetMenuV3DraftStationsCountRequest extends BaseRequest, RequestQuery<GetMenuV3DraftStationsCountQuery> {
1014
- }
1015
- export interface GetMenuV3DraftStationModifiersPath {
1016
- id: string;
1017
- }
1018
- export interface GetMenuV3DraftStationModifiersQuery {
1019
- select?: string[];
1020
- relationships?: string[];
1021
- filter?: any;
1022
- limit?: number;
1023
- page?: number;
1024
- sort_by?: string;
1025
- sort_order?: string;
1026
- soft_deleted?: string;
1027
- _query?: string;
1028
- }
1029
- export interface GetMenuV3DraftStationModifiersResponse {
1030
- results: DraftModifierDTO[];
1031
- meta?: ListResponseMetadataDTO;
1032
- [index: string]: any;
1033
- }
1034
- export interface GetMenuV3DraftStationModifiersRequest extends BaseRequest, RequestQuery<GetMenuV3DraftStationModifiersQuery>, GetMenuV3DraftStationModifiersPath {
1035
- }
1036
- export interface GetMenuV3DraftStationModifierGroupsPath {
1037
- id: string;
1038
- }
1039
- export interface GetMenuV3DraftStationModifierGroupsQuery {
1040
- select?: string[];
1041
- relationships?: string[];
1042
- filter?: any;
1043
- limit?: number;
1044
- page?: number;
1045
- sort_by?: string;
1046
- sort_order?: string;
1047
- soft_deleted?: string;
1048
- _query?: string;
1049
- }
1050
- export interface GetMenuV3DraftStationModifierGroupsResponse {
1051
- results: DraftModifierGroupDTO[];
1052
- meta?: ListResponseMetadataDTO;
1053
- [index: string]: any;
1054
- }
1055
- export interface GetMenuV3DraftStationModifierGroupsRequest extends BaseRequest, RequestQuery<GetMenuV3DraftStationModifierGroupsQuery>, GetMenuV3DraftStationModifierGroupsPath {
1056
- }
1057
- export interface GetMenuV3DraftStationItemsPath {
1058
- id: string;
1059
- }
1060
- export interface GetMenuV3DraftStationItemsQuery {
1061
- select?: string[];
1062
- relationships?: string[];
1063
- filter?: any;
1064
- limit?: number;
1065
- page?: number;
1066
- sort_by?: string;
1067
- sort_order?: string;
1068
- soft_deleted?: string;
1069
- _query?: string;
1070
- }
1071
- export interface GetMenuV3DraftStationItemsResponse {
1072
- results: DraftItemDTO[];
1073
- meta?: ListResponseMetadataDTO;
1074
- [index: string]: any;
1075
- }
1076
- export interface GetMenuV3DraftStationItemsRequest extends BaseRequest, RequestQuery<GetMenuV3DraftStationItemsQuery>, GetMenuV3DraftStationItemsPath {
1077
- }
1078
- export interface GetMenuV3DraftSiteLayoutsPath {
1079
- id: string;
1080
- }
1081
- export interface GetMenuV3DraftSiteLayoutsQuery {
1082
- select?: string[];
1083
- relationships?: string[];
1084
- filter?: any;
1085
- limit?: number;
1086
- page?: number;
1087
- sort_by?: string;
1088
- sort_order?: string;
1089
- soft_deleted?: string;
1090
- _query?: string;
1091
- }
1092
- export interface GetMenuV3DraftSiteLayoutsResponse {
1093
- results: DraftLayoutDTO[];
1094
- meta?: ListResponseMetadataDTO;
1095
- [index: string]: any;
1096
- }
1097
- export interface GetMenuV3DraftSiteLayoutsRequest extends BaseRequest, RequestQuery<GetMenuV3DraftSiteLayoutsQuery>, GetMenuV3DraftSiteLayoutsPath {
1098
- }
1099
1519
  export interface PostMenuV3LocalMenuGroupBody {
1100
1520
  name: string;
1101
1521
  is_active?: boolean;
1102
- allowed_brand_groups?: BrandGroupDTO[];
1522
+ allowed_global_menu_groups?: GlobalMenuGroupDTO[];
1103
1523
  draft_brands?: DraftBrandDTO[];
1104
1524
  published_brands?: PublishedBrandDTO[];
1525
+ vendor_metadata?: VendorMetadataDTO[];
1526
+ permissions?: any;
1105
1527
  [index: string]: any;
1106
1528
  }
1107
1529
  export interface PostMenuV3LocalMenuGroupResponse {
1108
1530
  name: string;
1109
1531
  is_active?: boolean;
1110
- allowed_brand_groups?: BrandGroupDTO[];
1532
+ allowed_global_menu_groups?: GlobalMenuGroupDTO[];
1111
1533
  draft_brands?: DraftBrandDTO[];
1112
1534
  published_brands?: PublishedBrandDTO[];
1113
- id: string;
1535
+ id?: string;
1114
1536
  created_at?: string;
1115
1537
  updated_at?: string;
1116
1538
  deleted_at?: string;
1117
1539
  version?: number;
1540
+ vendor_metadata?: VendorMetadataDTO[];
1541
+ permissions?: any;
1118
1542
  [index: string]: any;
1119
1543
  }
1120
1544
  export interface PostMenuV3LocalMenuGroupRequest extends BaseRequest {
@@ -1131,14 +1555,16 @@ export interface GetMenuV3LocalMenuGroupQuery {
1131
1555
  export interface GetMenuV3LocalMenuGroupResponse {
1132
1556
  name: string;
1133
1557
  is_active?: boolean;
1134
- allowed_brand_groups?: BrandGroupDTO[];
1558
+ allowed_global_menu_groups?: GlobalMenuGroupDTO[];
1135
1559
  draft_brands?: DraftBrandDTO[];
1136
1560
  published_brands?: PublishedBrandDTO[];
1137
- id: string;
1561
+ id?: string;
1138
1562
  created_at?: string;
1139
1563
  updated_at?: string;
1140
1564
  deleted_at?: string;
1141
1565
  version?: number;
1566
+ vendor_metadata?: VendorMetadataDTO[];
1567
+ permissions?: any;
1142
1568
  [index: string]: any;
1143
1569
  }
1144
1570
  export interface GetMenuV3LocalMenuGroupRequest extends BaseRequest, RequestQuery<GetMenuV3LocalMenuGroupQuery>, GetMenuV3LocalMenuGroupPath {
@@ -1149,23 +1575,27 @@ export interface PatchMenuV3LocalMenuGroupPath {
1149
1575
  export interface PatchMenuV3LocalMenuGroupBody {
1150
1576
  name?: string;
1151
1577
  is_active?: boolean;
1152
- allowed_brand_groups?: BrandGroupDTO[];
1578
+ allowed_global_menu_groups?: GlobalMenuGroupDTO[];
1153
1579
  draft_brands?: DraftBrandDTO[];
1154
1580
  published_brands?: PublishedBrandDTO[];
1155
1581
  id?: string;
1582
+ vendor_metadata?: VendorMetadataDTO[];
1583
+ permissions?: any;
1156
1584
  [index: string]: any;
1157
1585
  }
1158
1586
  export interface PatchMenuV3LocalMenuGroupResponse {
1159
1587
  name: string;
1160
1588
  is_active?: boolean;
1161
- allowed_brand_groups?: BrandGroupDTO[];
1589
+ allowed_global_menu_groups?: GlobalMenuGroupDTO[];
1162
1590
  draft_brands?: DraftBrandDTO[];
1163
1591
  published_brands?: PublishedBrandDTO[];
1164
- id: string;
1592
+ id?: string;
1165
1593
  created_at?: string;
1166
1594
  updated_at?: string;
1167
1595
  deleted_at?: string;
1168
1596
  version?: number;
1597
+ vendor_metadata?: VendorMetadataDTO[];
1598
+ permissions?: any;
1169
1599
  [index: string]: any;
1170
1600
  }
1171
1601
  export interface PatchMenuV3LocalMenuGroupRequest extends BaseRequest, PatchMenuV3LocalMenuGroupPath {
@@ -1177,14 +1607,16 @@ export interface DeleteMenuV3LocalMenuGroupPath {
1177
1607
  export interface DeleteMenuV3LocalMenuGroupResponse {
1178
1608
  name: string;
1179
1609
  is_active?: boolean;
1180
- allowed_brand_groups?: BrandGroupDTO[];
1610
+ allowed_global_menu_groups?: GlobalMenuGroupDTO[];
1181
1611
  draft_brands?: DraftBrandDTO[];
1182
1612
  published_brands?: PublishedBrandDTO[];
1183
- id: string;
1613
+ id?: string;
1184
1614
  created_at?: string;
1185
1615
  updated_at?: string;
1186
1616
  deleted_at?: string;
1187
1617
  version?: number;
1618
+ vendor_metadata?: VendorMetadataDTO[];
1619
+ permissions?: any;
1188
1620
  [index: string]: any;
1189
1621
  }
1190
1622
  export interface DeleteMenuV3LocalMenuGroupRequest extends BaseRequest, DeleteMenuV3LocalMenuGroupPath {
@@ -1210,9 +1642,12 @@ export interface GetMenuV3LocalMenuGroupsRequest extends BaseRequest, RequestQue
1210
1642
  export type PostMenuV3LocalMenuGroupsBody = {
1211
1643
  name: string;
1212
1644
  is_active?: boolean;
1213
- allowed_brand_groups?: BrandGroupDTO[];
1645
+ allowed_global_menu_groups?: GlobalMenuGroupDTO[];
1214
1646
  draft_brands?: DraftBrandDTO[];
1215
1647
  published_brands?: PublishedBrandDTO[];
1648
+ id?: any;
1649
+ vendor_metadata?: VendorMetadataDTO[];
1650
+ permissions?: any;
1216
1651
  [index: string]: any;
1217
1652
  }[];
1218
1653
  export interface PostMenuV3LocalMenuGroupsResponse {
@@ -1311,38 +1746,42 @@ export interface PostMenuV3LocalMenuGroupImportBrandsQuery {
1311
1746
  soft_deleted?: string;
1312
1747
  }
1313
1748
  export interface PostMenuV3LocalMenuGroupImportBrandsResponse {
1314
- status?: string;
1749
+ results: DraftBrandDTO[];
1750
+ meta?: ListResponseMetadataDTO;
1751
+ [index: string]: any;
1315
1752
  }
1316
1753
  export interface PostMenuV3LocalMenuGroupImportBrandsRequest extends BaseRequest, RequestQuery<PostMenuV3LocalMenuGroupImportBrandsQuery>, PostMenuV3LocalMenuGroupImportBrandsPath {
1317
1754
  }
1318
- export interface PostMenuV3BrandGroupBody {
1755
+ export interface PostMenuV3GlobalMenuGroupBody {
1319
1756
  name: string;
1320
1757
  is_active?: boolean;
1321
1758
  allowed_local_menu_groups?: LocalMenuGroupDTO[];
1322
1759
  draft_brands?: DraftBrandDTO[];
1323
1760
  published_brands?: PublishedBrandDTO[];
1324
1761
  posid_segment?: POSIDSegmentDTO;
1762
+ vendor_metadata?: VendorMetadataDTO[];
1763
+ permissions?: any;
1325
1764
  [index: string]: any;
1326
1765
  }
1327
- export type PostMenuV3BrandGroupResponse = BrandGroupDTO;
1328
- export interface PostMenuV3BrandGroupRequest extends BaseRequest {
1329
- body: PostMenuV3BrandGroupBody;
1766
+ export type PostMenuV3GlobalMenuGroupResponse = GlobalMenuGroupDTO;
1767
+ export interface PostMenuV3GlobalMenuGroupRequest extends BaseRequest {
1768
+ body: PostMenuV3GlobalMenuGroupBody;
1330
1769
  }
1331
- export interface GetMenuV3BrandGroupPath {
1770
+ export interface GetMenuV3GlobalMenuGroupPath {
1332
1771
  id: string;
1333
1772
  }
1334
- export interface GetMenuV3BrandGroupQuery {
1773
+ export interface GetMenuV3GlobalMenuGroupQuery {
1335
1774
  select?: string[];
1336
1775
  relationships?: string[];
1337
1776
  _query?: string;
1338
1777
  }
1339
- export type GetMenuV3BrandGroupResponse = BrandGroupDTO;
1340
- export interface GetMenuV3BrandGroupRequest extends BaseRequest, RequestQuery<GetMenuV3BrandGroupQuery>, GetMenuV3BrandGroupPath {
1778
+ export type GetMenuV3GlobalMenuGroupResponse = GlobalMenuGroupDTO;
1779
+ export interface GetMenuV3GlobalMenuGroupRequest extends BaseRequest, RequestQuery<GetMenuV3GlobalMenuGroupQuery>, GetMenuV3GlobalMenuGroupPath {
1341
1780
  }
1342
- export interface PatchMenuV3BrandGroupPath {
1781
+ export interface PatchMenuV3GlobalMenuGroupPath {
1343
1782
  id: string;
1344
1783
  }
1345
- export interface PatchMenuV3BrandGroupBody {
1784
+ export interface PatchMenuV3GlobalMenuGroupBody {
1346
1785
  name?: string;
1347
1786
  is_active?: boolean;
1348
1787
  allowed_local_menu_groups?: LocalMenuGroupDTO[];
@@ -1350,19 +1789,39 @@ export interface PatchMenuV3BrandGroupBody {
1350
1789
  published_brands?: PublishedBrandDTO[];
1351
1790
  posid_segment?: POSIDSegmentDTO;
1352
1791
  id?: string;
1792
+ vendor_metadata?: VendorMetadataDTO[];
1793
+ permissions?: any;
1353
1794
  [index: string]: any;
1354
1795
  }
1355
- export type PatchMenuV3BrandGroupResponse = BrandGroupDTO;
1356
- export interface PatchMenuV3BrandGroupRequest extends BaseRequest, PatchMenuV3BrandGroupPath {
1357
- body: PatchMenuV3BrandGroupBody;
1796
+ export type PatchMenuV3GlobalMenuGroupResponse = GlobalMenuGroupDTO;
1797
+ export interface PatchMenuV3GlobalMenuGroupRequest extends BaseRequest, PatchMenuV3GlobalMenuGroupPath {
1798
+ body: PatchMenuV3GlobalMenuGroupBody;
1358
1799
  }
1359
- export interface DeleteMenuV3BrandGroupPath {
1800
+ export interface DeleteMenuV3GlobalMenuGroupPath {
1360
1801
  id: string;
1361
1802
  }
1362
- export type DeleteMenuV3BrandGroupResponse = BrandGroupDTO;
1363
- export interface DeleteMenuV3BrandGroupRequest extends BaseRequest, DeleteMenuV3BrandGroupPath {
1803
+ export interface DeleteMenuV3GlobalMenuGroupQuery {
1804
+ delete_posid?: boolean;
1805
+ }
1806
+ export interface DeleteMenuV3GlobalMenuGroupResponse {
1807
+ name: string;
1808
+ is_active?: boolean;
1809
+ allowed_local_menu_groups?: LocalMenuGroupDTO[];
1810
+ draft_brands?: DraftBrandDTO[];
1811
+ published_brands?: PublishedBrandDTO[];
1812
+ posid_segment?: POSIDSegmentDTO;
1813
+ id?: string;
1814
+ created_at?: string;
1815
+ updated_at?: string;
1816
+ deleted_at?: string;
1817
+ version?: number;
1818
+ vendor_metadata?: VendorMetadataDTO[];
1819
+ permissions?: any;
1820
+ [index: string]: any;
1821
+ }
1822
+ export interface DeleteMenuV3GlobalMenuGroupRequest extends BaseRequest, RequestQuery<DeleteMenuV3GlobalMenuGroupQuery>, DeleteMenuV3GlobalMenuGroupPath {
1364
1823
  }
1365
- export interface GetMenuV3BrandGroupsQuery {
1824
+ export interface GetMenuV3GlobalMenuGroupsQuery {
1366
1825
  select?: string[];
1367
1826
  relationships?: string[];
1368
1827
  filter?: any;
@@ -1373,44 +1832,47 @@ export interface GetMenuV3BrandGroupsQuery {
1373
1832
  soft_deleted?: string;
1374
1833
  _query?: string;
1375
1834
  }
1376
- export interface GetMenuV3BrandGroupsResponse {
1377
- results: BrandGroupDTO[];
1835
+ export interface GetMenuV3GlobalMenuGroupsResponse {
1836
+ results: GlobalMenuGroupDTO[];
1378
1837
  meta?: ListResponseMetadataDTO;
1379
1838
  [index: string]: any;
1380
1839
  }
1381
- export interface GetMenuV3BrandGroupsRequest extends BaseRequest, RequestQuery<GetMenuV3BrandGroupsQuery> {
1840
+ export interface GetMenuV3GlobalMenuGroupsRequest extends BaseRequest, RequestQuery<GetMenuV3GlobalMenuGroupsQuery> {
1382
1841
  }
1383
- export type PostMenuV3BrandGroupsBody = {
1842
+ export type PostMenuV3GlobalMenuGroupsBody = {
1384
1843
  name: string;
1385
1844
  is_active?: boolean;
1386
1845
  allowed_local_menu_groups?: LocalMenuGroupDTO[];
1387
1846
  draft_brands?: DraftBrandDTO[];
1388
1847
  published_brands?: PublishedBrandDTO[];
1389
1848
  posid_segment?: POSIDSegmentDTO;
1849
+ id?: any;
1850
+ vendor_metadata?: VendorMetadataDTO[];
1851
+ permissions?: any;
1390
1852
  [index: string]: any;
1391
1853
  }[];
1392
- export interface PostMenuV3BrandGroupsResponse {
1393
- results: BrandGroupDTO[];
1854
+ export interface PostMenuV3GlobalMenuGroupsResponse {
1855
+ results: GlobalMenuGroupDTO[];
1394
1856
  meta?: ListResponseMetadataDTO;
1395
1857
  [index: string]: any;
1396
1858
  }
1397
- export interface PostMenuV3BrandGroupsRequest extends BaseRequest {
1398
- body: PostMenuV3BrandGroupsBody;
1859
+ export interface PostMenuV3GlobalMenuGroupsRequest extends BaseRequest {
1860
+ body: PostMenuV3GlobalMenuGroupsBody;
1399
1861
  }
1400
- export interface GetMenuV3BrandGroupsCountQuery {
1862
+ export interface GetMenuV3GlobalMenuGroupsCountQuery {
1401
1863
  filter?: any;
1402
1864
  _query?: string;
1403
1865
  }
1404
- export interface GetMenuV3BrandGroupsCountResponse {
1866
+ export interface GetMenuV3GlobalMenuGroupsCountResponse {
1405
1867
  count: number;
1406
1868
  [index: string]: any;
1407
1869
  }
1408
- export interface GetMenuV3BrandGroupsCountRequest extends BaseRequest, RequestQuery<GetMenuV3BrandGroupsCountQuery> {
1870
+ export interface GetMenuV3GlobalMenuGroupsCountRequest extends BaseRequest, RequestQuery<GetMenuV3GlobalMenuGroupsCountQuery> {
1409
1871
  }
1410
- export interface GetMenuV3DraftBrandGroupBrandsPath {
1872
+ export interface GetMenuV3DraftGlobalMenuGroupBrandsPath {
1411
1873
  id: string;
1412
1874
  }
1413
- export interface GetMenuV3DraftBrandGroupBrandsQuery {
1875
+ export interface GetMenuV3DraftGlobalMenuGroupBrandsQuery {
1414
1876
  select?: string[];
1415
1877
  relationships?: string[];
1416
1878
  filter?: any;
@@ -1421,17 +1883,17 @@ export interface GetMenuV3DraftBrandGroupBrandsQuery {
1421
1883
  soft_deleted?: string;
1422
1884
  _query?: string;
1423
1885
  }
1424
- export interface GetMenuV3DraftBrandGroupBrandsResponse {
1886
+ export interface GetMenuV3DraftGlobalMenuGroupBrandsResponse {
1425
1887
  results: DraftBrandDTO[];
1426
1888
  meta?: ListResponseMetadataDTO;
1427
1889
  [index: string]: any;
1428
1890
  }
1429
- export interface GetMenuV3DraftBrandGroupBrandsRequest extends BaseRequest, RequestQuery<GetMenuV3DraftBrandGroupBrandsQuery>, GetMenuV3DraftBrandGroupBrandsPath {
1891
+ export interface GetMenuV3DraftGlobalMenuGroupBrandsRequest extends BaseRequest, RequestQuery<GetMenuV3DraftGlobalMenuGroupBrandsQuery>, GetMenuV3DraftGlobalMenuGroupBrandsPath {
1430
1892
  }
1431
- export interface GetMenuV3BrandGroupBrandsPath {
1893
+ export interface GetMenuV3GlobalMenuGroupBrandsPath {
1432
1894
  id: string;
1433
1895
  }
1434
- export interface GetMenuV3BrandGroupBrandsQuery {
1896
+ export interface GetMenuV3GlobalMenuGroupBrandsQuery {
1435
1897
  select?: string[];
1436
1898
  relationships?: string[];
1437
1899
  filter?: any;
@@ -1442,18 +1904,18 @@ export interface GetMenuV3BrandGroupBrandsQuery {
1442
1904
  soft_deleted?: string;
1443
1905
  _query?: string;
1444
1906
  }
1445
- export interface GetMenuV3BrandGroupBrandsResponse {
1907
+ export interface GetMenuV3GlobalMenuGroupBrandsResponse {
1446
1908
  results: DraftBrandDTO[];
1447
1909
  meta?: ListResponseMetadataDTO;
1448
1910
  [index: string]: any;
1449
1911
  }
1450
- export interface GetMenuV3BrandGroupBrandsRequest extends BaseRequest, RequestQuery<GetMenuV3BrandGroupBrandsQuery>, GetMenuV3BrandGroupBrandsPath {
1912
+ export interface GetMenuV3GlobalMenuGroupBrandsRequest extends BaseRequest, RequestQuery<GetMenuV3GlobalMenuGroupBrandsQuery>, GetMenuV3GlobalMenuGroupBrandsPath {
1451
1913
  }
1452
1914
  export interface PostMenuV3DraftBrandBody {
1453
1915
  parent?: DraftBrandDTO;
1454
1916
  children?: DraftBrandDTO[];
1455
1917
  posid_segment?: POSIDSegmentDTO;
1456
- layouts?: DraftLayoutDTO[];
1918
+ menus?: DraftMenuDTO[];
1457
1919
  categories?: DraftCategoryDTO[];
1458
1920
  category_to_item_relationships?: DraftCategoryToItemRelationshipDTO[];
1459
1921
  items?: DraftItemDTO[];
@@ -1468,11 +1930,14 @@ export interface PostMenuV3DraftBrandBody {
1468
1930
  type?: string;
1469
1931
  parent_id?: string;
1470
1932
  local_menu_group_id?: string;
1471
- brand_group_id?: string;
1933
+ global_menu_group_id?: string;
1934
+ id?: any;
1472
1935
  changes?: BrandChangeDTO[];
1473
1936
  local_menu_group?: LocalMenuGroupDTO;
1474
- brand_group?: BrandGroupDTO;
1937
+ global_menu_group?: GlobalMenuGroupDTO;
1938
+ vendor_metadata?: VendorMetadataDTO[];
1475
1939
  attachments?: FileAttachmentsDTO;
1940
+ permissions?: any;
1476
1941
  [index: string]: any;
1477
1942
  }
1478
1943
  export type PostMenuV3DraftBrandResponse = DraftBrandDTO;
@@ -1497,7 +1962,7 @@ export interface PatchMenuV3DraftBrandBody {
1497
1962
  parent?: DraftBrandDTO;
1498
1963
  children?: DraftBrandDTO[];
1499
1964
  posid_segment?: POSIDSegmentDTO;
1500
- layouts?: DraftLayoutDTO[];
1965
+ menus?: DraftMenuDTO[];
1501
1966
  categories?: DraftCategoryDTO[];
1502
1967
  category_to_item_relationships?: DraftCategoryToItemRelationshipDTO[];
1503
1968
  items?: DraftItemDTO[];
@@ -1513,11 +1978,13 @@ export interface PatchMenuV3DraftBrandBody {
1513
1978
  type?: string;
1514
1979
  parent_id?: string;
1515
1980
  local_menu_group_id?: string;
1516
- brand_group_id?: string;
1981
+ global_menu_group_id?: string;
1517
1982
  changes?: BrandChangeDTO[];
1518
1983
  local_menu_group?: LocalMenuGroupDTO;
1519
- brand_group?: BrandGroupDTO;
1984
+ global_menu_group?: GlobalMenuGroupDTO;
1985
+ vendor_metadata?: VendorMetadataDTO[];
1520
1986
  attachments?: FileAttachmentsDTO;
1987
+ permissions?: any;
1521
1988
  [index: string]: any;
1522
1989
  }
1523
1990
  export type PatchMenuV3DraftBrandResponse = DraftBrandDTO;
@@ -1552,7 +2019,7 @@ export type PostMenuV3DraftBrandsBody = {
1552
2019
  parent?: DraftBrandDTO;
1553
2020
  children?: DraftBrandDTO[];
1554
2021
  posid_segment?: POSIDSegmentDTO;
1555
- layouts?: DraftLayoutDTO[];
2022
+ menus?: DraftMenuDTO[];
1556
2023
  categories?: DraftCategoryDTO[];
1557
2024
  category_to_item_relationships?: DraftCategoryToItemRelationshipDTO[];
1558
2025
  items?: DraftItemDTO[];
@@ -1567,11 +2034,14 @@ export type PostMenuV3DraftBrandsBody = {
1567
2034
  type?: string;
1568
2035
  parent_id?: string;
1569
2036
  local_menu_group_id?: string;
1570
- brand_group_id?: string;
2037
+ global_menu_group_id?: string;
2038
+ id?: any;
1571
2039
  changes?: BrandChangeDTO[];
1572
2040
  local_menu_group?: LocalMenuGroupDTO;
1573
- brand_group?: BrandGroupDTO;
2041
+ global_menu_group?: GlobalMenuGroupDTO;
2042
+ vendor_metadata?: VendorMetadataDTO[];
1574
2043
  attachments?: FileAttachmentsDTO;
2044
+ permissions?: any;
1575
2045
  [index: string]: any;
1576
2046
  }[];
1577
2047
  export interface PostMenuV3DraftBrandsResponse {
@@ -1592,10 +2062,10 @@ export interface GetMenuV3DraftBrandsCountResponse {
1592
2062
  }
1593
2063
  export interface GetMenuV3DraftBrandsCountRequest extends BaseRequest, RequestQuery<GetMenuV3DraftBrandsCountQuery> {
1594
2064
  }
1595
- export interface GetMenuV3DraftBrandLayoutsPath {
2065
+ export interface GetMenuV3DraftBrandMenusPath {
1596
2066
  id: string;
1597
2067
  }
1598
- export interface GetMenuV3DraftBrandLayoutsQuery {
2068
+ export interface GetMenuV3DraftBrandMenusQuery {
1599
2069
  select?: string[];
1600
2070
  relationships?: string[];
1601
2071
  filter?: any;
@@ -1606,12 +2076,12 @@ export interface GetMenuV3DraftBrandLayoutsQuery {
1606
2076
  soft_deleted?: string;
1607
2077
  _query?: string;
1608
2078
  }
1609
- export interface GetMenuV3DraftBrandLayoutsResponse {
1610
- results: DraftLayoutDTO[];
2079
+ export interface GetMenuV3DraftBrandMenusResponse {
2080
+ results: DraftMenuDTO[];
1611
2081
  meta?: ListResponseMetadataDTO;
1612
2082
  [index: string]: any;
1613
2083
  }
1614
- export interface GetMenuV3DraftBrandLayoutsRequest extends BaseRequest, RequestQuery<GetMenuV3DraftBrandLayoutsQuery>, GetMenuV3DraftBrandLayoutsPath {
2084
+ export interface GetMenuV3DraftBrandMenusRequest extends BaseRequest, RequestQuery<GetMenuV3DraftBrandMenusQuery>, GetMenuV3DraftBrandMenusPath {
1615
2085
  }
1616
2086
  export interface GetMenuV3DraftBrandModifiersPath {
1617
2087
  id: string;
@@ -1676,6 +2146,30 @@ export interface GetMenuV3DraftBrandItemsResponse {
1676
2146
  }
1677
2147
  export interface GetMenuV3DraftBrandItemsRequest extends BaseRequest, RequestQuery<GetMenuV3DraftBrandItemsQuery>, GetMenuV3DraftBrandItemsPath {
1678
2148
  }
2149
+ export interface GetMenuV3DraftBrandItemsReportingCategoriesPath {
2150
+ id: string;
2151
+ }
2152
+ export interface GetMenuV3DraftBrandItemsReportingCategoriesQuery {
2153
+ search?: string;
2154
+ _query?: string;
2155
+ }
2156
+ export interface GetMenuV3DraftBrandItemsReportingCategoriesResponse {
2157
+ results?: ReportingCategorySuggestion[];
2158
+ }
2159
+ export interface GetMenuV3DraftBrandItemsReportingCategoriesRequest extends BaseRequest, RequestQuery<GetMenuV3DraftBrandItemsReportingCategoriesQuery>, GetMenuV3DraftBrandItemsReportingCategoriesPath {
2160
+ }
2161
+ export interface GetMenuV3DraftBrandModifiersReportingCategoriesPath {
2162
+ id: string;
2163
+ }
2164
+ export interface GetMenuV3DraftBrandModifiersReportingCategoriesQuery {
2165
+ search?: string;
2166
+ _query?: string;
2167
+ }
2168
+ export interface GetMenuV3DraftBrandModifiersReportingCategoriesResponse {
2169
+ results?: ReportingCategorySuggestion[];
2170
+ }
2171
+ export interface GetMenuV3DraftBrandModifiersReportingCategoriesRequest extends BaseRequest, RequestQuery<GetMenuV3DraftBrandModifiersReportingCategoriesQuery>, GetMenuV3DraftBrandModifiersReportingCategoriesPath {
2172
+ }
1679
2173
  export interface PostMenuV3DraftBrandPublishPath {
1680
2174
  id: string;
1681
2175
  }
@@ -1684,6 +2178,36 @@ export interface PostMenuV3DraftBrandPublishResponse {
1684
2178
  }
1685
2179
  export interface PostMenuV3DraftBrandPublishRequest extends BaseRequest, PostMenuV3DraftBrandPublishPath {
1686
2180
  }
2181
+ export interface PostMenuV3DraftBrandDiffGeneratePath {
2182
+ id: string;
2183
+ }
2184
+ export interface PostMenuV3DraftBrandDiffGenerateResponse {
2185
+ status?: string;
2186
+ }
2187
+ export interface PostMenuV3DraftBrandDiffGenerateRequest extends BaseRequest, PostMenuV3DraftBrandDiffGeneratePath {
2188
+ }
2189
+ export interface GetMenuV3DraftBrandDiffsPath {
2190
+ id: string;
2191
+ }
2192
+ export interface GetMenuV3DraftBrandDiffsQuery {
2193
+ _query?: string;
2194
+ }
2195
+ export interface GetMenuV3DraftBrandDiffsResponse {
2196
+ results?: DiffDTO[];
2197
+ }
2198
+ export interface GetMenuV3DraftBrandDiffsRequest extends BaseRequest, RequestQuery<GetMenuV3DraftBrandDiffsQuery>, GetMenuV3DraftBrandDiffsPath {
2199
+ }
2200
+ export interface PostMenuV3DraftBrandGlobalDiffsApplyPath {
2201
+ id: string;
2202
+ }
2203
+ export interface PostMenuV3DraftBrandGlobalDiffsApplyQuery {
2204
+ "body.diff_ids"?: any[];
2205
+ }
2206
+ export interface PostMenuV3DraftBrandGlobalDiffsApplyResponse {
2207
+ status?: string;
2208
+ }
2209
+ export interface PostMenuV3DraftBrandGlobalDiffsApplyRequest extends BaseRequest, RequestQuery<PostMenuV3DraftBrandGlobalDiffsApplyQuery>, PostMenuV3DraftBrandGlobalDiffsApplyPath {
2210
+ }
1687
2211
  export interface PostMenuV3BrandAttachmentPath {
1688
2212
  id: string;
1689
2213
  name: string;
@@ -1703,7 +2227,7 @@ export interface PostMenuV3BrandBody {
1703
2227
  parent?: PublishedBrandDTO;
1704
2228
  children?: PublishedBrandDTO[];
1705
2229
  posid_segment?: POSIDSegmentDTO;
1706
- layouts?: PublishedLayoutDTO[];
2230
+ menus?: PublishedMenuDTO[];
1707
2231
  categories?: PublishedCategoryDTO[];
1708
2232
  category_to_item_relationships?: PublishedCategoryToItemRelationshipDTO[];
1709
2233
  items?: PublishedItemDTO[];
@@ -1717,10 +2241,12 @@ export interface PostMenuV3BrandBody {
1717
2241
  type?: string;
1718
2242
  parent_id?: string;
1719
2243
  local_menu_group_id?: string;
1720
- brand_group_id?: string;
2244
+ global_menu_group_id?: string;
2245
+ id?: any;
1721
2246
  local_menu_group?: LocalMenuGroupDTO;
1722
- brand_group?: BrandGroupDTO;
2247
+ global_menu_group?: GlobalMenuGroupDTO;
1723
2248
  attachments?: FileAttachmentsDTO;
2249
+ permissions?: any;
1724
2250
  [index: string]: any;
1725
2251
  }
1726
2252
  export type PostMenuV3BrandResponse = PublishedBrandDTO;
@@ -1749,7 +2275,7 @@ export interface PatchMenuV3BrandBody {
1749
2275
  parent?: PublishedBrandDTO;
1750
2276
  children?: PublishedBrandDTO[];
1751
2277
  posid_segment?: POSIDSegmentDTO;
1752
- layouts?: PublishedLayoutDTO[];
2278
+ menus?: PublishedMenuDTO[];
1753
2279
  categories?: PublishedCategoryDTO[];
1754
2280
  category_to_item_relationships?: PublishedCategoryToItemRelationshipDTO[];
1755
2281
  items?: PublishedItemDTO[];
@@ -1764,10 +2290,11 @@ export interface PatchMenuV3BrandBody {
1764
2290
  type?: string;
1765
2291
  parent_id?: string;
1766
2292
  local_menu_group_id?: string;
1767
- brand_group_id?: string;
2293
+ global_menu_group_id?: string;
1768
2294
  local_menu_group?: LocalMenuGroupDTO;
1769
- brand_group?: BrandGroupDTO;
2295
+ global_menu_group?: GlobalMenuGroupDTO;
1770
2296
  attachments?: FileAttachmentsDTO;
2297
+ permissions?: any;
1771
2298
  [index: string]: any;
1772
2299
  }
1773
2300
  export type PatchMenuV3BrandResponse = PublishedBrandDTO;
@@ -1809,7 +2336,7 @@ export type PostMenuV3BrandsBody = {
1809
2336
  parent?: PublishedBrandDTO;
1810
2337
  children?: PublishedBrandDTO[];
1811
2338
  posid_segment?: POSIDSegmentDTO;
1812
- layouts?: PublishedLayoutDTO[];
2339
+ menus?: PublishedMenuDTO[];
1813
2340
  categories?: PublishedCategoryDTO[];
1814
2341
  category_to_item_relationships?: PublishedCategoryToItemRelationshipDTO[];
1815
2342
  items?: PublishedItemDTO[];
@@ -1823,10 +2350,12 @@ export type PostMenuV3BrandsBody = {
1823
2350
  type?: string;
1824
2351
  parent_id?: string;
1825
2352
  local_menu_group_id?: string;
1826
- brand_group_id?: string;
2353
+ global_menu_group_id?: string;
2354
+ id?: any;
1827
2355
  local_menu_group?: LocalMenuGroupDTO;
1828
- brand_group?: BrandGroupDTO;
2356
+ global_menu_group?: GlobalMenuGroupDTO;
1829
2357
  attachments?: FileAttachmentsDTO;
2358
+ permissions?: any;
1830
2359
  [index: string]: any;
1831
2360
  }[];
1832
2361
  export interface PostMenuV3BrandsResponse {
@@ -1848,10 +2377,10 @@ export interface GetMenuV3BrandsCountResponse {
1848
2377
  }
1849
2378
  export interface GetMenuV3BrandsCountRequest extends BaseRequest, RequestQuery<GetMenuV3BrandsCountQuery> {
1850
2379
  }
1851
- export interface GetMenuV3BrandLayoutsPath {
2380
+ export interface GetMenuV3BrandMenusPath {
1852
2381
  id: string;
1853
2382
  }
1854
- export interface GetMenuV3BrandLayoutsQuery {
2383
+ export interface GetMenuV3BrandMenusQuery {
1855
2384
  select?: string[];
1856
2385
  relationships?: string[];
1857
2386
  filter?: any;
@@ -1863,12 +2392,12 @@ export interface GetMenuV3BrandLayoutsQuery {
1863
2392
  _query?: string;
1864
2393
  nocache?: boolean;
1865
2394
  }
1866
- export interface GetMenuV3BrandLayoutsResponse {
1867
- results: DraftLayoutDTO[];
2395
+ export interface GetMenuV3BrandMenusResponse {
2396
+ results: DraftMenuDTO[];
1868
2397
  meta?: ListResponseMetadataDTO;
1869
2398
  [index: string]: any;
1870
2399
  }
1871
- export interface GetMenuV3BrandLayoutsRequest extends BaseRequest, RequestQuery<GetMenuV3BrandLayoutsQuery>, GetMenuV3BrandLayoutsPath {
2400
+ export interface GetMenuV3BrandMenusRequest extends BaseRequest, RequestQuery<GetMenuV3BrandMenusQuery>, GetMenuV3BrandMenusPath {
1872
2401
  }
1873
2402
  export interface GetMenuV3BrandModifiersPath {
1874
2403
  id: string;
@@ -1946,7 +2475,7 @@ export interface PostMenuV3BrandLocalResponse {
1946
2475
  parent?: DraftBrandDTO;
1947
2476
  children?: DraftBrandDTO[];
1948
2477
  posid_segment?: POSIDSegmentDTO;
1949
- layouts?: DraftLayoutDTO[];
2478
+ menus?: DraftMenuDTO[];
1950
2479
  categories?: DraftCategoryDTO[];
1951
2480
  category_to_item_relationships?: DraftCategoryToItemRelationshipDTO[];
1952
2481
  items?: DraftItemDTO[];
@@ -1955,7 +2484,7 @@ export interface PostMenuV3BrandLocalResponse {
1955
2484
  modifier_group_to_modifier_relationships?: DraftModifierGroupToModifierRelationshipDTO[];
1956
2485
  modifiers?: DraftModifierDTO[];
1957
2486
  statuses?: BrandStatusDTO[];
1958
- id: string;
2487
+ id?: string;
1959
2488
  created_at?: string;
1960
2489
  updated_at?: string;
1961
2490
  deleted_at?: string;
@@ -1965,72 +2494,75 @@ export interface PostMenuV3BrandLocalResponse {
1965
2494
  type?: string;
1966
2495
  parent_id?: string;
1967
2496
  local_menu_group_id?: string;
1968
- brand_group_id?: string;
2497
+ global_menu_group_id?: string;
1969
2498
  version?: number;
1970
2499
  changes?: BrandChangeDTO[];
1971
2500
  local_menu_group?: LocalMenuGroupDTO;
1972
- brand_group?: BrandGroupDTO;
2501
+ global_menu_group?: GlobalMenuGroupDTO;
2502
+ vendor_metadata?: VendorMetadataDTO[];
1973
2503
  attachments?: FileAttachmentsDTO;
2504
+ permissions?: any;
1974
2505
  [index: string]: any;
1975
2506
  }
1976
2507
  export interface PostMenuV3BrandLocalRequest extends BaseRequest, RequestQuery<PostMenuV3BrandLocalQuery>, PostMenuV3BrandLocalPath {
1977
2508
  }
1978
- export interface PostMenuV3DraftLayoutBody {
1979
- parent?: DraftLayoutDTO;
1980
- children?: DraftLayoutDTO[];
2509
+ export interface PostMenuV3DraftMenuBody {
2510
+ parent?: DraftMenuDTO;
2511
+ children?: DraftMenuDTO[];
1981
2512
  categories?: DraftCategoryDTO[];
1982
2513
  parent_id?: string;
1983
2514
  name: string;
1984
2515
  brand_id: string;
1985
- station_id?: string;
2516
+ id?: any;
1986
2517
  brand?: DraftBrandDTO;
1987
- changes?: LayoutChangeDTO[];
1988
- station?: StationDTO;
2518
+ changes?: MenuChangeDTO[];
2519
+ vendor_metadata?: VendorMetadataDTO[];
2520
+ permissions?: any;
1989
2521
  [index: string]: any;
1990
2522
  }
1991
- export type PostMenuV3DraftLayoutResponse = DraftLayoutDTO;
1992
- export interface PostMenuV3DraftLayoutRequest extends BaseRequest {
1993
- body: PostMenuV3DraftLayoutBody;
2523
+ export type PostMenuV3DraftMenuResponse = DraftMenuDTO;
2524
+ export interface PostMenuV3DraftMenuRequest extends BaseRequest {
2525
+ body: PostMenuV3DraftMenuBody;
1994
2526
  }
1995
- export interface GetMenuV3DraftLayoutPath {
2527
+ export interface GetMenuV3DraftMenuPath {
1996
2528
  id: string;
1997
2529
  }
1998
- export interface GetMenuV3DraftLayoutQuery {
2530
+ export interface GetMenuV3DraftMenuQuery {
1999
2531
  select?: string[];
2000
2532
  relationships?: string[];
2001
2533
  _query?: string;
2002
2534
  }
2003
- export type GetMenuV3DraftLayoutResponse = DraftLayoutDTO;
2004
- export interface GetMenuV3DraftLayoutRequest extends BaseRequest, RequestQuery<GetMenuV3DraftLayoutQuery>, GetMenuV3DraftLayoutPath {
2535
+ export type GetMenuV3DraftMenuResponse = DraftMenuDTO;
2536
+ export interface GetMenuV3DraftMenuRequest extends BaseRequest, RequestQuery<GetMenuV3DraftMenuQuery>, GetMenuV3DraftMenuPath {
2005
2537
  }
2006
- export interface PatchMenuV3DraftLayoutPath {
2538
+ export interface PatchMenuV3DraftMenuPath {
2007
2539
  id: string;
2008
2540
  }
2009
- export interface PatchMenuV3DraftLayoutBody {
2010
- parent?: DraftLayoutDTO;
2011
- children?: DraftLayoutDTO[];
2541
+ export interface PatchMenuV3DraftMenuBody {
2542
+ parent?: DraftMenuDTO;
2543
+ children?: DraftMenuDTO[];
2012
2544
  categories?: DraftCategoryDTO[];
2013
2545
  id?: string;
2014
2546
  parent_id?: string;
2015
2547
  name?: string;
2016
2548
  brand_id?: string;
2017
- station_id?: string;
2018
2549
  brand?: DraftBrandDTO;
2019
- changes?: LayoutChangeDTO[];
2020
- station?: StationDTO;
2550
+ changes?: MenuChangeDTO[];
2551
+ vendor_metadata?: VendorMetadataDTO[];
2552
+ permissions?: any;
2021
2553
  [index: string]: any;
2022
2554
  }
2023
- export type PatchMenuV3DraftLayoutResponse = DraftLayoutDTO;
2024
- export interface PatchMenuV3DraftLayoutRequest extends BaseRequest, PatchMenuV3DraftLayoutPath {
2025
- body: PatchMenuV3DraftLayoutBody;
2555
+ export type PatchMenuV3DraftMenuResponse = DraftMenuDTO;
2556
+ export interface PatchMenuV3DraftMenuRequest extends BaseRequest, PatchMenuV3DraftMenuPath {
2557
+ body: PatchMenuV3DraftMenuBody;
2026
2558
  }
2027
- export interface DeleteMenuV3DraftLayoutPath {
2559
+ export interface DeleteMenuV3DraftMenuPath {
2028
2560
  id: string;
2029
2561
  }
2030
- export type DeleteMenuV3DraftLayoutResponse = DraftLayoutDTO;
2031
- export interface DeleteMenuV3DraftLayoutRequest extends BaseRequest, DeleteMenuV3DraftLayoutPath {
2562
+ export type DeleteMenuV3DraftMenuResponse = DraftMenuDTO;
2563
+ export interface DeleteMenuV3DraftMenuRequest extends BaseRequest, DeleteMenuV3DraftMenuPath {
2032
2564
  }
2033
- export interface GetMenuV3DraftLayoutsQuery {
2565
+ export interface GetMenuV3DraftMenusQuery {
2034
2566
  select?: string[];
2035
2567
  relationships?: string[];
2036
2568
  filter?: any;
@@ -2041,48 +2573,49 @@ export interface GetMenuV3DraftLayoutsQuery {
2041
2573
  soft_deleted?: string;
2042
2574
  _query?: string;
2043
2575
  }
2044
- export interface GetMenuV3DraftLayoutsResponse {
2045
- results: DraftLayoutDTO[];
2576
+ export interface GetMenuV3DraftMenusResponse {
2577
+ results: DraftMenuDTO[];
2046
2578
  meta?: ListResponseMetadataDTO;
2047
2579
  [index: string]: any;
2048
2580
  }
2049
- export interface GetMenuV3DraftLayoutsRequest extends BaseRequest, RequestQuery<GetMenuV3DraftLayoutsQuery> {
2581
+ export interface GetMenuV3DraftMenusRequest extends BaseRequest, RequestQuery<GetMenuV3DraftMenusQuery> {
2050
2582
  }
2051
- export type PostMenuV3DraftLayoutsBody = {
2052
- parent?: DraftLayoutDTO;
2053
- children?: DraftLayoutDTO[];
2583
+ export type PostMenuV3DraftMenusBody = {
2584
+ parent?: DraftMenuDTO;
2585
+ children?: DraftMenuDTO[];
2054
2586
  categories?: DraftCategoryDTO[];
2055
2587
  parent_id?: string;
2056
2588
  name: string;
2057
2589
  brand_id: string;
2058
- station_id?: string;
2590
+ id?: any;
2059
2591
  brand?: DraftBrandDTO;
2060
- changes?: LayoutChangeDTO[];
2061
- station?: StationDTO;
2592
+ changes?: MenuChangeDTO[];
2593
+ vendor_metadata?: VendorMetadataDTO[];
2594
+ permissions?: any;
2062
2595
  [index: string]: any;
2063
2596
  }[];
2064
- export interface PostMenuV3DraftLayoutsResponse {
2065
- results: DraftLayoutDTO[];
2597
+ export interface PostMenuV3DraftMenusResponse {
2598
+ results: DraftMenuDTO[];
2066
2599
  meta?: ListResponseMetadataDTO;
2067
2600
  [index: string]: any;
2068
2601
  }
2069
- export interface PostMenuV3DraftLayoutsRequest extends BaseRequest {
2070
- body: PostMenuV3DraftLayoutsBody;
2602
+ export interface PostMenuV3DraftMenusRequest extends BaseRequest {
2603
+ body: PostMenuV3DraftMenusBody;
2071
2604
  }
2072
- export interface GetMenuV3DraftLayoutsCountQuery {
2605
+ export interface GetMenuV3DraftMenusCountQuery {
2073
2606
  filter?: any;
2074
2607
  _query?: string;
2075
2608
  }
2076
- export interface GetMenuV3DraftLayoutsCountResponse {
2609
+ export interface GetMenuV3DraftMenusCountResponse {
2077
2610
  count: number;
2078
2611
  [index: string]: any;
2079
2612
  }
2080
- export interface GetMenuV3DraftLayoutsCountRequest extends BaseRequest, RequestQuery<GetMenuV3DraftLayoutsCountQuery> {
2613
+ export interface GetMenuV3DraftMenusCountRequest extends BaseRequest, RequestQuery<GetMenuV3DraftMenusCountQuery> {
2081
2614
  }
2082
- export interface GetMenuV3DraftLayoutCategoriesPath {
2615
+ export interface GetMenuV3DraftMenuCategoriesPath {
2083
2616
  id: string;
2084
2617
  }
2085
- export interface GetMenuV3DraftLayoutCategoriesQuery {
2618
+ export interface GetMenuV3DraftMenuCategoriesQuery {
2086
2619
  select?: string[];
2087
2620
  relationships?: string[];
2088
2621
  filter?: any;
@@ -2093,34 +2626,34 @@ export interface GetMenuV3DraftLayoutCategoriesQuery {
2093
2626
  soft_deleted?: string;
2094
2627
  _query?: string;
2095
2628
  }
2096
- export interface GetMenuV3DraftLayoutCategoriesResponse {
2629
+ export interface GetMenuV3DraftMenuCategoriesResponse {
2097
2630
  results: DraftCategoryDTO[];
2098
2631
  meta?: ListResponseMetadataDTO;
2099
2632
  [index: string]: any;
2100
2633
  }
2101
- export interface GetMenuV3DraftLayoutCategoriesRequest extends BaseRequest, RequestQuery<GetMenuV3DraftLayoutCategoriesQuery>, GetMenuV3DraftLayoutCategoriesPath {
2634
+ export interface GetMenuV3DraftMenuCategoriesRequest extends BaseRequest, RequestQuery<GetMenuV3DraftMenuCategoriesQuery>, GetMenuV3DraftMenuCategoriesPath {
2102
2635
  }
2103
- export interface PostMenuV3DraftLayoutPublishPath {
2636
+ export interface PostMenuV3DraftMenuPublishPath {
2104
2637
  id: string;
2105
2638
  }
2106
- export interface PostMenuV3DraftLayoutPublishResponse {
2639
+ export interface PostMenuV3DraftMenuPublishResponse {
2107
2640
  status?: string;
2108
2641
  }
2109
- export interface PostMenuV3DraftLayoutPublishRequest extends BaseRequest, PostMenuV3DraftLayoutPublishPath {
2642
+ export interface PostMenuV3DraftMenuPublishRequest extends BaseRequest, PostMenuV3DraftMenuPublishPath {
2110
2643
  }
2111
- export interface GetMenuV3LayoutPath {
2644
+ export interface GetMenuV3MenuPath {
2112
2645
  id: string;
2113
2646
  }
2114
- export interface GetMenuV3LayoutQuery {
2647
+ export interface GetMenuV3MenuQuery {
2115
2648
  select?: string[];
2116
2649
  relationships?: string[];
2117
2650
  _query?: string;
2118
2651
  nocache?: boolean;
2119
2652
  }
2120
- export type GetMenuV3LayoutResponse = PublishedLayoutDTO;
2121
- export interface GetMenuV3LayoutRequest extends BaseRequest, RequestQuery<GetMenuV3LayoutQuery>, GetMenuV3LayoutPath {
2653
+ export type GetMenuV3MenuResponse = PublishedMenuDTO;
2654
+ export interface GetMenuV3MenuRequest extends BaseRequest, RequestQuery<GetMenuV3MenuQuery>, GetMenuV3MenuPath {
2122
2655
  }
2123
- export interface GetMenuV3LayoutsQuery {
2656
+ export interface GetMenuV3MenusQuery {
2124
2657
  select?: string[];
2125
2658
  relationships?: string[];
2126
2659
  filter?: any;
@@ -2132,28 +2665,28 @@ export interface GetMenuV3LayoutsQuery {
2132
2665
  _query?: string;
2133
2666
  nocache?: boolean;
2134
2667
  }
2135
- export interface GetMenuV3LayoutsResponse {
2136
- results: PublishedLayoutDTO[];
2668
+ export interface GetMenuV3MenusResponse {
2669
+ results: PublishedMenuDTO[];
2137
2670
  meta?: ListResponseMetadataDTO;
2138
2671
  [index: string]: any;
2139
2672
  }
2140
- export interface GetMenuV3LayoutsRequest extends BaseRequest, RequestQuery<GetMenuV3LayoutsQuery> {
2673
+ export interface GetMenuV3MenusRequest extends BaseRequest, RequestQuery<GetMenuV3MenusQuery> {
2141
2674
  }
2142
- export interface GetMenuV3LayoutsCountQuery {
2675
+ export interface GetMenuV3MenusCountQuery {
2143
2676
  filter?: any;
2144
2677
  _query?: string;
2145
2678
  nocache?: boolean;
2146
2679
  }
2147
- export interface GetMenuV3LayoutsCountResponse {
2680
+ export interface GetMenuV3MenusCountResponse {
2148
2681
  count: number;
2149
2682
  [index: string]: any;
2150
2683
  }
2151
- export interface GetMenuV3LayoutsCountRequest extends BaseRequest, RequestQuery<GetMenuV3LayoutsCountQuery> {
2684
+ export interface GetMenuV3MenusCountRequest extends BaseRequest, RequestQuery<GetMenuV3MenusCountQuery> {
2152
2685
  }
2153
- export interface GetMenuV3LayoutCategoriesPath {
2686
+ export interface GetMenuV3MenuCategoriesPath {
2154
2687
  id: string;
2155
2688
  }
2156
- export interface GetMenuV3LayoutCategoriesQuery {
2689
+ export interface GetMenuV3MenuCategoriesQuery {
2157
2690
  select?: string[];
2158
2691
  relationships?: string[];
2159
2692
  filter?: any;
@@ -2165,12 +2698,12 @@ export interface GetMenuV3LayoutCategoriesQuery {
2165
2698
  _query?: string;
2166
2699
  nocache?: boolean;
2167
2700
  }
2168
- export interface GetMenuV3LayoutCategoriesResponse {
2701
+ export interface GetMenuV3MenuCategoriesResponse {
2169
2702
  results: DraftCategoryDTO[];
2170
2703
  meta?: ListResponseMetadataDTO;
2171
2704
  [index: string]: any;
2172
2705
  }
2173
- export interface GetMenuV3LayoutCategoriesRequest extends BaseRequest, RequestQuery<GetMenuV3LayoutCategoriesQuery>, GetMenuV3LayoutCategoriesPath {
2706
+ export interface GetMenuV3MenuCategoriesRequest extends BaseRequest, RequestQuery<GetMenuV3MenuCategoriesQuery>, GetMenuV3MenuCategoriesPath {
2174
2707
  }
2175
2708
  export interface PostMenuV3DraftCategoryBody {
2176
2709
  parent?: DraftCategoryDTO;
@@ -2181,12 +2714,14 @@ export interface PostMenuV3DraftCategoryBody {
2181
2714
  sequence?: number;
2182
2715
  is_active?: boolean;
2183
2716
  brand_id: string;
2184
- layout_id: string;
2717
+ menu_id: string;
2185
2718
  id?: any;
2186
- layout?: DraftLayoutDTO;
2719
+ menu?: DraftMenuDTO;
2187
2720
  items?: DraftCategoryToItemRelationshipDTO[];
2188
2721
  brand?: DraftBrandDTO;
2189
2722
  changes?: CategoryChangeDTO[];
2723
+ vendor_metadata?: VendorMetadataDTO[];
2724
+ permissions?: any;
2190
2725
  [index: string]: any;
2191
2726
  }
2192
2727
  export type PostMenuV3DraftCategoryResponse = DraftCategoryDTO;
@@ -2217,11 +2752,13 @@ export interface PatchMenuV3DraftCategoryBody {
2217
2752
  sequence?: number;
2218
2753
  is_active?: boolean;
2219
2754
  brand_id?: string;
2220
- layout_id?: string;
2221
- layout?: DraftLayoutDTO;
2755
+ menu_id?: string;
2756
+ menu?: DraftMenuDTO;
2222
2757
  items?: DraftCategoryToItemRelationshipDTO[];
2223
2758
  brand?: DraftBrandDTO;
2224
2759
  changes?: CategoryChangeDTO[];
2760
+ vendor_metadata?: VendorMetadataDTO[];
2761
+ permissions?: any;
2225
2762
  [index: string]: any;
2226
2763
  }
2227
2764
  export type PatchMenuV3DraftCategoryResponse = DraftCategoryDTO;
@@ -2244,7 +2781,7 @@ export interface GetMenuV3DraftCategoriesCountResponse {
2244
2781
  }
2245
2782
  export interface GetMenuV3DraftCategoriesCountRequest extends BaseRequest, RequestQuery<GetMenuV3DraftCategoriesCountQuery> {
2246
2783
  }
2247
- export type PostMenuV3DraftCategorysBody = {
2784
+ export type PostMenuV3DraftCategoriesBody = {
2248
2785
  parent?: DraftCategoryDTO;
2249
2786
  children?: DraftCategoryDTO[];
2250
2787
  parent_id?: string;
@@ -2253,20 +2790,23 @@ export type PostMenuV3DraftCategorysBody = {
2253
2790
  sequence?: number;
2254
2791
  is_active?: boolean;
2255
2792
  brand_id: string;
2256
- layout_id: string;
2257
- layout?: DraftLayoutDTO;
2793
+ menu_id: string;
2794
+ id?: any;
2795
+ menu?: DraftMenuDTO;
2258
2796
  items?: DraftCategoryToItemRelationshipDTO[];
2259
2797
  brand?: DraftBrandDTO;
2260
2798
  changes?: CategoryChangeDTO[];
2799
+ vendor_metadata?: VendorMetadataDTO[];
2800
+ permissions?: any;
2261
2801
  [index: string]: any;
2262
2802
  }[];
2263
- export interface PostMenuV3DraftCategorysResponse {
2803
+ export interface PostMenuV3DraftCategoriesResponse {
2264
2804
  results: DraftCategoryDTO[];
2265
2805
  meta?: ListResponseMetadataDTO;
2266
2806
  [index: string]: any;
2267
2807
  }
2268
- export interface PostMenuV3DraftCategorysRequest extends BaseRequest {
2269
- body: PostMenuV3DraftCategorysBody;
2808
+ export interface PostMenuV3DraftCategoriesRequest extends BaseRequest {
2809
+ body: PostMenuV3DraftCategoriesBody;
2270
2810
  }
2271
2811
  export interface GetMenuV3CategoryPath {
2272
2812
  id: string;
@@ -2299,10 +2839,13 @@ export interface PostMenuV3DraftCategoryRelationshipsItemBody {
2299
2839
  category_id: string;
2300
2840
  brand_id?: string;
2301
2841
  sequence?: number;
2842
+ id?: any;
2302
2843
  category?: DraftCategoryDTO;
2303
2844
  item?: DraftItemDTO;
2304
2845
  brand?: DraftBrandDTO;
2305
2846
  changes?: CategoryToItemRelationshipChangeDTO[];
2847
+ vendor_metadata?: VendorMetadataDTO[];
2848
+ permissions?: any;
2306
2849
  [index: string]: any;
2307
2850
  }
2308
2851
  export type PostMenuV3DraftCategoryRelationshipsItemResponse = DraftCategoryToItemRelationshipDTO;
@@ -2336,6 +2879,8 @@ export interface PatchMenuV3DraftCategoryRelationshipsItemBody {
2336
2879
  item?: DraftItemDTO;
2337
2880
  brand?: DraftBrandDTO;
2338
2881
  changes?: CategoryToItemRelationshipChangeDTO[];
2882
+ vendor_metadata?: VendorMetadataDTO[];
2883
+ permissions?: any;
2339
2884
  [index: string]: any;
2340
2885
  }
2341
2886
  export type PatchMenuV3DraftCategoryRelationshipsItemResponse = DraftCategoryToItemRelationshipDTO;
@@ -2374,10 +2919,13 @@ export type PostMenuV3DraftCategoryRelationshipsItemsBody = {
2374
2919
  category_id: string;
2375
2920
  brand_id?: string;
2376
2921
  sequence?: number;
2922
+ id?: any;
2377
2923
  category?: DraftCategoryDTO;
2378
2924
  item?: DraftItemDTO;
2379
2925
  brand?: DraftBrandDTO;
2380
2926
  changes?: CategoryToItemRelationshipChangeDTO[];
2927
+ vendor_metadata?: VendorMetadataDTO[];
2928
+ permissions?: any;
2381
2929
  [index: string]: any;
2382
2930
  }[];
2383
2931
  export interface PostMenuV3DraftCategoryRelationshipsItemsResponse {
@@ -2453,16 +3001,17 @@ export interface PostMenuV3DraftItemBody {
2453
3001
  barcode?: string;
2454
3002
  calories?: number;
2455
3003
  is_active?: boolean;
2456
- posid: string;
3004
+ posid?: string;
2457
3005
  tax_tags?: any[];
2458
3006
  brand_id: string;
2459
- station_id?: string;
2460
3007
  id?: any;
2461
3008
  brand?: DraftBrandDTO;
2462
3009
  categories?: DraftCategoryToItemRelationshipDTO[];
2463
3010
  changes?: ItemChangeDTO[];
2464
- station?: StationDTO;
3011
+ vendor_metadata?: VendorMetadataDTO[];
3012
+ reporting?: ReportingMetadataDTO;
2465
3013
  attachments?: FileAttachmentsDTO;
3014
+ permissions?: any;
2466
3015
  [index: string]: any;
2467
3016
  }
2468
3017
  export type PostMenuV3DraftItemResponse = DraftItemDTO;
@@ -2500,12 +3049,13 @@ export interface PatchMenuV3DraftItemBody {
2500
3049
  posid?: string;
2501
3050
  tax_tags?: any[];
2502
3051
  brand_id?: string;
2503
- station_id?: string;
2504
3052
  brand?: DraftBrandDTO;
2505
3053
  categories?: DraftCategoryToItemRelationshipDTO[];
2506
3054
  changes?: ItemChangeDTO[];
2507
- station?: StationDTO;
3055
+ vendor_metadata?: VendorMetadataDTO[];
3056
+ reporting?: ReportingMetadataDTO;
2508
3057
  attachments?: FileAttachmentsDTO;
3058
+ permissions?: any;
2509
3059
  [index: string]: any;
2510
3060
  }
2511
3061
  export type PatchMenuV3DraftItemResponse = DraftItemDTO;
@@ -2549,15 +3099,17 @@ export type PostMenuV3DraftItemsBody = {
2549
3099
  barcode?: string;
2550
3100
  calories?: number;
2551
3101
  is_active?: boolean;
2552
- posid: string;
3102
+ posid?: string;
2553
3103
  tax_tags?: any[];
2554
3104
  brand_id: string;
2555
- station_id?: string;
3105
+ id?: any;
2556
3106
  brand?: DraftBrandDTO;
2557
3107
  categories?: DraftCategoryToItemRelationshipDTO[];
2558
3108
  changes?: ItemChangeDTO[];
2559
- station?: StationDTO;
3109
+ vendor_metadata?: VendorMetadataDTO[];
3110
+ reporting?: ReportingMetadataDTO;
2560
3111
  attachments?: FileAttachmentsDTO;
3112
+ permissions?: any;
2561
3113
  [index: string]: any;
2562
3114
  }[];
2563
3115
  export interface PostMenuV3DraftItemsResponse {
@@ -2640,10 +3192,13 @@ export interface PostMenuV3DraftItemRelationshipsModifierGroupBody {
2640
3192
  item_id: string;
2641
3193
  brand_id?: string;
2642
3194
  sequence?: number;
3195
+ id?: any;
2643
3196
  item?: DraftItemDTO;
2644
3197
  modifier_group?: DraftModifierGroupDTO;
2645
3198
  brand?: DraftBrandDTO;
2646
3199
  changes?: ItemToModifierGroupRelationshipChangeDTO[];
3200
+ vendor_metadata?: VendorMetadataDTO[];
3201
+ permissions?: any;
2647
3202
  [index: string]: any;
2648
3203
  }
2649
3204
  export type PostMenuV3DraftItemRelationshipsModifierGroupResponse = DraftItemToModifierGroupRelationshipDTO;
@@ -2677,6 +3232,8 @@ export interface PatchMenuV3DraftItemRelationshipsModifierGroupBody {
2677
3232
  modifier_group?: DraftModifierGroupDTO;
2678
3233
  brand?: DraftBrandDTO;
2679
3234
  changes?: ItemToModifierGroupRelationshipChangeDTO[];
3235
+ vendor_metadata?: VendorMetadataDTO[];
3236
+ permissions?: any;
2680
3237
  [index: string]: any;
2681
3238
  }
2682
3239
  export type PatchMenuV3DraftItemRelationshipsModifierGroupResponse = DraftItemToModifierGroupRelationshipDTO;
@@ -2715,10 +3272,13 @@ export type PostMenuV3DraftItemRelationshipsModifierGroupsBody = {
2715
3272
  item_id: string;
2716
3273
  brand_id?: string;
2717
3274
  sequence?: number;
3275
+ id?: any;
2718
3276
  item?: DraftItemDTO;
2719
3277
  modifier_group?: DraftModifierGroupDTO;
2720
3278
  brand?: DraftBrandDTO;
2721
3279
  changes?: ItemToModifierGroupRelationshipChangeDTO[];
3280
+ vendor_metadata?: VendorMetadataDTO[];
3281
+ permissions?: any;
2722
3282
  [index: string]: any;
2723
3283
  }[];
2724
3284
  export interface PostMenuV3DraftItemRelationshipsModifierGroupsResponse {
@@ -2793,11 +3353,11 @@ export interface PostMenuV3DraftModifierGroupBody {
2793
3353
  max?: number;
2794
3354
  is_active?: boolean;
2795
3355
  brand_id: string;
2796
- station_id?: string;
2797
3356
  id?: any;
2798
3357
  brand?: DraftBrandDTO;
2799
3358
  changes?: ModifierGroupChangeDTO[];
2800
- station?: StationDTO;
3359
+ vendor_metadata?: VendorMetadataDTO[];
3360
+ permissions?: any;
2801
3361
  [index: string]: any;
2802
3362
  }
2803
3363
  export type PostMenuV3DraftModifierGroupResponse = DraftModifierGroupDTO;
@@ -2831,10 +3391,10 @@ export interface PatchMenuV3DraftModifierGroupBody {
2831
3391
  max?: number;
2832
3392
  is_active?: boolean;
2833
3393
  brand_id?: string;
2834
- station_id?: string;
2835
3394
  brand?: DraftBrandDTO;
2836
3395
  changes?: ModifierGroupChangeDTO[];
2837
- station?: StationDTO;
3396
+ vendor_metadata?: VendorMetadataDTO[];
3397
+ permissions?: any;
2838
3398
  [index: string]: any;
2839
3399
  }
2840
3400
  export type PatchMenuV3DraftModifierGroupResponse = DraftModifierGroupDTO;
@@ -2877,10 +3437,11 @@ export type PostMenuV3DraftModifierGroupsBody = {
2877
3437
  max?: number;
2878
3438
  is_active?: boolean;
2879
3439
  brand_id: string;
2880
- station_id?: string;
3440
+ id?: any;
2881
3441
  brand?: DraftBrandDTO;
2882
3442
  changes?: ModifierGroupChangeDTO[];
2883
- station?: StationDTO;
3443
+ vendor_metadata?: VendorMetadataDTO[];
3444
+ permissions?: any;
2884
3445
  [index: string]: any;
2885
3446
  }[];
2886
3447
  export interface PostMenuV3DraftModifierGroupsResponse {
@@ -2951,10 +3512,13 @@ export interface PostMenuV3DraftModifierGroupRelationshipsModifierBody {
2951
3512
  modifier_group_id: string;
2952
3513
  brand_id?: string;
2953
3514
  sequence?: number;
3515
+ id?: any;
2954
3516
  modifier?: DraftModifierDTO;
2955
3517
  modifier_group?: DraftModifierGroupDTO;
2956
3518
  brand?: DraftBrandDTO;
2957
3519
  changes?: ModifierGroupToModifierRelationshipChangeDTO[];
3520
+ vendor_metadata?: VendorMetadataDTO[];
3521
+ permissions?: any;
2958
3522
  [index: string]: any;
2959
3523
  }
2960
3524
  export type PostMenuV3DraftModifierGroupRelationshipsModifierResponse = DraftModifierGroupToModifierRelationshipDTO;
@@ -2988,6 +3552,8 @@ export interface PatchMenuV3DraftModifierGroupRelationshipsModifierBody {
2988
3552
  modifier_group?: DraftModifierGroupDTO;
2989
3553
  brand?: DraftBrandDTO;
2990
3554
  changes?: ModifierGroupToModifierRelationshipChangeDTO[];
3555
+ vendor_metadata?: VendorMetadataDTO[];
3556
+ permissions?: any;
2991
3557
  [index: string]: any;
2992
3558
  }
2993
3559
  export type PatchMenuV3DraftModifierGroupRelationshipsModifierResponse = DraftModifierGroupToModifierRelationshipDTO;
@@ -3026,10 +3592,13 @@ export type PostMenuV3DraftModifierGroupRelationshipsModifiersBody = {
3026
3592
  modifier_group_id: string;
3027
3593
  brand_id?: string;
3028
3594
  sequence?: number;
3595
+ id?: any;
3029
3596
  modifier?: DraftModifierDTO;
3030
3597
  modifier_group?: DraftModifierGroupDTO;
3031
3598
  brand?: DraftBrandDTO;
3032
3599
  changes?: ModifierGroupToModifierRelationshipChangeDTO[];
3600
+ vendor_metadata?: VendorMetadataDTO[];
3601
+ permissions?: any;
3033
3602
  [index: string]: any;
3034
3603
  }[];
3035
3604
  export interface PostMenuV3DraftModifierGroupRelationshipsModifiersResponse {
@@ -3105,13 +3674,14 @@ export interface PostMenuV3DraftModifierBody {
3105
3674
  calories?: number;
3106
3675
  tax_tags?: any[];
3107
3676
  is_active?: boolean;
3108
- posid: string;
3677
+ posid?: string;
3109
3678
  brand_id: string;
3110
- station_id?: string;
3111
3679
  id?: any;
3112
3680
  brand?: DraftBrandDTO;
3113
3681
  changes?: ModifierChangeDTO[];
3114
- station?: StationDTO;
3682
+ vendor_metadata?: VendorMetadataDTO[];
3683
+ reporting?: ReportingMetadataDTO;
3684
+ permissions?: any;
3115
3685
  [index: string]: any;
3116
3686
  }
3117
3687
  export type PostMenuV3DraftModifierResponse = DraftModifierDTO;
@@ -3148,10 +3718,11 @@ export interface PatchMenuV3DraftModifierBody {
3148
3718
  is_active?: boolean;
3149
3719
  posid?: string;
3150
3720
  brand_id?: string;
3151
- station_id?: string;
3152
3721
  brand?: DraftBrandDTO;
3153
3722
  changes?: ModifierChangeDTO[];
3154
- station?: StationDTO;
3723
+ vendor_metadata?: VendorMetadataDTO[];
3724
+ reporting?: ReportingMetadataDTO;
3725
+ permissions?: any;
3155
3726
  [index: string]: any;
3156
3727
  }
3157
3728
  export type PatchMenuV3DraftModifierResponse = DraftModifierDTO;
@@ -3195,12 +3766,14 @@ export type PostMenuV3DraftModifiersBody = {
3195
3766
  calories?: number;
3196
3767
  tax_tags?: any[];
3197
3768
  is_active?: boolean;
3198
- posid: string;
3769
+ posid?: string;
3199
3770
  brand_id: string;
3200
- station_id?: string;
3771
+ id?: any;
3201
3772
  brand?: DraftBrandDTO;
3202
3773
  changes?: ModifierChangeDTO[];
3203
- station?: StationDTO;
3774
+ vendor_metadata?: VendorMetadataDTO[];
3775
+ reporting?: ReportingMetadataDTO;
3776
+ permissions?: any;
3204
3777
  [index: string]: any;
3205
3778
  }[];
3206
3779
  export interface PostMenuV3DraftModifiersResponse {
@@ -3263,4 +3836,52 @@ export interface GetMenuV3ModifiersCountResponse {
3263
3836
  }
3264
3837
  export interface GetMenuV3ModifiersCountRequest extends BaseRequest, RequestQuery<GetMenuV3ModifiersCountQuery> {
3265
3838
  }
3839
+ export interface PostMenuV3IntegrationsTransltrImportQuery {
3840
+ "body.data"?: string;
3841
+ }
3842
+ export interface PostMenuV3IntegrationsTransltrImportResponse {
3843
+ errors?: any;
3844
+ results?: any;
3845
+ }
3846
+ export interface PostMenuV3IntegrationsTransltrImportRequest extends BaseRequest, RequestQuery<PostMenuV3IntegrationsTransltrImportQuery> {
3847
+ }
3848
+ export interface GetMenuV3GlobalDiffPath {
3849
+ id: string;
3850
+ }
3851
+ export interface GetMenuV3GlobalDiffQuery {
3852
+ select?: string[];
3853
+ relationships?: string[];
3854
+ _query?: string;
3855
+ }
3856
+ export type GetMenuV3GlobalDiffResponse = GlobalDiffDTO;
3857
+ export interface GetMenuV3GlobalDiffRequest extends BaseRequest, RequestQuery<GetMenuV3GlobalDiffQuery>, GetMenuV3GlobalDiffPath {
3858
+ }
3859
+ export interface GetMenuV3GlobalDiffsQuery {
3860
+ select?: string[];
3861
+ relationships?: string[];
3862
+ filter?: any;
3863
+ limit?: number;
3864
+ page?: number;
3865
+ sort_by?: string;
3866
+ sort_order?: string;
3867
+ soft_deleted?: string;
3868
+ _query?: string;
3869
+ }
3870
+ export interface GetMenuV3GlobalDiffsResponse {
3871
+ results: GlobalDiffDTO[];
3872
+ meta?: ListResponseMetadataDTO;
3873
+ [index: string]: any;
3874
+ }
3875
+ export interface GetMenuV3GlobalDiffsRequest extends BaseRequest, RequestQuery<GetMenuV3GlobalDiffsQuery> {
3876
+ }
3877
+ export interface GetMenuV3GlobalDiffsCountQuery {
3878
+ filter?: any;
3879
+ _query?: string;
3880
+ }
3881
+ export interface GetMenuV3GlobalDiffsCountResponse {
3882
+ count: number;
3883
+ [index: string]: any;
3884
+ }
3885
+ export interface GetMenuV3GlobalDiffsCountRequest extends BaseRequest, RequestQuery<GetMenuV3GlobalDiffsCountQuery> {
3886
+ }
3266
3887
  //# sourceMappingURL=menu.d.ts.map