@compassdigital/sdk.typescript 4.275.0 → 4.276.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/interface/menu.d.ts +43 -38
- package/lib/interface/menu.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/interface/menu.ts +44 -38
package/package.json
CHANGED
package/src/interface/menu.ts
CHANGED
|
@@ -1946,6 +1946,48 @@ export interface PartialItemDTO {
|
|
|
1946
1946
|
[index: string]: any;
|
|
1947
1947
|
}
|
|
1948
1948
|
|
|
1949
|
+
export interface PartialModifierDTO {
|
|
1950
|
+
parent?: DraftModifierDTO;
|
|
1951
|
+
children?: DraftModifierDTO[];
|
|
1952
|
+
modifier_groups?: DraftModifierGroupToModifierRelationshipDTO[];
|
|
1953
|
+
parent_id?: string;
|
|
1954
|
+
name?: string;
|
|
1955
|
+
name_on_receipt?: string;
|
|
1956
|
+
name_on_kds?: string;
|
|
1957
|
+
name_on_pos?: string;
|
|
1958
|
+
label?: string;
|
|
1959
|
+
description?: string;
|
|
1960
|
+
price?: number;
|
|
1961
|
+
calories?: number;
|
|
1962
|
+
tax_tags?: string[];
|
|
1963
|
+
is_active?: boolean;
|
|
1964
|
+
posid?: string;
|
|
1965
|
+
reporting?: ReportingMetadataDTO;
|
|
1966
|
+
posid_segment?: number;
|
|
1967
|
+
brand_id?: string;
|
|
1968
|
+
line_route?: string;
|
|
1969
|
+
menu_works?: MenuWorksDTO;
|
|
1970
|
+
is_out_of_stock?: boolean;
|
|
1971
|
+
price_for_none?: number;
|
|
1972
|
+
price_for_less?: number;
|
|
1973
|
+
price_for_more?: number;
|
|
1974
|
+
pre_surcharge?: number;
|
|
1975
|
+
post_surcharge?: number;
|
|
1976
|
+
tax_tag_code?: string;
|
|
1977
|
+
tags?: string[];
|
|
1978
|
+
unique_id?: number;
|
|
1979
|
+
price_levels?: Record<string, any>;
|
|
1980
|
+
translation?: Record<string, any>;
|
|
1981
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
1982
|
+
brand?: DraftBrandDTO;
|
|
1983
|
+
changes?: ModifierChangeDTO[];
|
|
1984
|
+
vendor_metadata?: VendorMetadataDTO[];
|
|
1985
|
+
weight?: WeightDTO;
|
|
1986
|
+
attachments?: FileAttachmentsDTO;
|
|
1987
|
+
permissions?: Record<string, any>;
|
|
1988
|
+
[index: string]: any;
|
|
1989
|
+
}
|
|
1990
|
+
|
|
1949
1991
|
export interface HealthDependencyDTO {
|
|
1950
1992
|
name: string;
|
|
1951
1993
|
status: string;
|
|
@@ -9603,44 +9645,8 @@ export interface PostMenuV4ModifierDuplicatePath {
|
|
|
9603
9645
|
}
|
|
9604
9646
|
|
|
9605
9647
|
export interface PostMenuV4ModifierDuplicateBody {
|
|
9606
|
-
|
|
9607
|
-
|
|
9608
|
-
modifier_groups?: DraftModifierGroupToModifierRelationshipDTO[];
|
|
9609
|
-
parent_id?: string;
|
|
9610
|
-
name?: string;
|
|
9611
|
-
name_on_receipt?: string;
|
|
9612
|
-
name_on_kds?: string;
|
|
9613
|
-
name_on_pos?: string;
|
|
9614
|
-
label?: string;
|
|
9615
|
-
description?: string;
|
|
9616
|
-
price?: number;
|
|
9617
|
-
calories?: number;
|
|
9618
|
-
tax_tags?: string[];
|
|
9619
|
-
is_active?: boolean;
|
|
9620
|
-
posid?: string;
|
|
9621
|
-
reporting?: ReportingMetadataDTO;
|
|
9622
|
-
posid_segment?: number;
|
|
9623
|
-
brand_id?: string;
|
|
9624
|
-
line_route?: string;
|
|
9625
|
-
menu_works?: MenuWorksDTO;
|
|
9626
|
-
is_out_of_stock?: boolean;
|
|
9627
|
-
price_for_none?: number;
|
|
9628
|
-
price_for_less?: number;
|
|
9629
|
-
price_for_more?: number;
|
|
9630
|
-
pre_surcharge?: number;
|
|
9631
|
-
post_surcharge?: number;
|
|
9632
|
-
tax_tag_code?: string;
|
|
9633
|
-
tags?: string[];
|
|
9634
|
-
unique_id?: number;
|
|
9635
|
-
price_levels?: Record<string, any>;
|
|
9636
|
-
translation?: Record<string, any>;
|
|
9637
|
-
applied_diff_snapshot?: Record<string, any>;
|
|
9638
|
-
brand?: DraftBrandDTO;
|
|
9639
|
-
changes?: ModifierChangeDTO[];
|
|
9640
|
-
vendor_metadata?: VendorMetadataDTO[];
|
|
9641
|
-
weight?: WeightDTO;
|
|
9642
|
-
attachments?: FileAttachmentsDTO;
|
|
9643
|
-
permissions?: Record<string, any>;
|
|
9648
|
+
modifier_group_ids?: string[];
|
|
9649
|
+
modifier?: PartialModifierDTO;
|
|
9644
9650
|
[index: string]: any;
|
|
9645
9651
|
}
|
|
9646
9652
|
|