@compassdigital/sdk.typescript 4.94.1 → 4.95.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/index.d.ts +104 -5
- package/lib/index.d.ts.map +1 -1
- package/lib/index.js +111 -0
- package/lib/index.js.map +1 -1
- package/lib/interface/announcement.d.ts +17 -9
- package/lib/interface/announcement.d.ts.map +1 -1
- package/lib/interface/compassconnect.d.ts +0 -6
- package/lib/interface/compassconnect.d.ts.map +1 -1
- package/lib/interface/consumer.d.ts +160 -4
- package/lib/interface/consumer.d.ts.map +1 -1
- package/lib/interface/menu.d.ts +319 -1
- package/lib/interface/menu.d.ts.map +1 -1
- package/lib/interface/notification.d.ts.map +1 -1
- package/lib/interface/order.d.ts +1 -0
- package/lib/interface/order.d.ts.map +1 -1
- package/lib/interface/partner.d.ts +3 -0
- package/lib/interface/partner.d.ts.map +1 -1
- package/lib/interface/vendor.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +280 -2
- package/src/interface/announcement.ts +26 -10
- package/src/interface/compassconnect.ts +0 -9
- package/src/interface/consumer.ts +220 -4
- package/src/interface/menu.ts +385 -1
- package/src/interface/notification.ts +0 -1
- package/src/interface/order.ts +2 -0
- package/src/interface/partner.ts +3 -0
- package/src/interface/vendor.ts +0 -6
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { RequestQuery, BaseRequest } from './util';
|
|
2
|
-
export interface
|
|
2
|
+
export interface PaymentMethodIsStatus {
|
|
3
3
|
eligible: boolean;
|
|
4
4
|
validated?: boolean;
|
|
5
5
|
preferred?: boolean;
|
|
@@ -11,7 +11,7 @@ export interface Tender {
|
|
|
11
11
|
type?: string;
|
|
12
12
|
currency?: string;
|
|
13
13
|
tender_number?: string;
|
|
14
|
-
is:
|
|
14
|
+
is: PaymentMethodIsStatus;
|
|
15
15
|
}
|
|
16
16
|
export interface TenderList {
|
|
17
17
|
tenders: Tender[];
|
|
@@ -27,7 +27,7 @@ export interface CreditCard {
|
|
|
27
27
|
billing_address?: BillingAddress;
|
|
28
28
|
card_type?: string;
|
|
29
29
|
expiry?: ExpiryDate;
|
|
30
|
-
is:
|
|
30
|
+
is: PaymentMethodIsStatus;
|
|
31
31
|
masked_card_number?: string;
|
|
32
32
|
name_on_card?: string;
|
|
33
33
|
nickname?: string;
|
|
@@ -38,7 +38,7 @@ export interface CreditCardData {
|
|
|
38
38
|
data: CreditCard[];
|
|
39
39
|
}
|
|
40
40
|
export interface DigitalWalletFlavor {
|
|
41
|
-
is:
|
|
41
|
+
is: PaymentMethodIsStatus;
|
|
42
42
|
}
|
|
43
43
|
export interface DigitalWallet {
|
|
44
44
|
applewallet: DigitalWalletFlavor;
|
|
@@ -60,6 +60,149 @@ export interface NotFoundErrorDTO {
|
|
|
60
60
|
code: number;
|
|
61
61
|
data: Record<string, any>;
|
|
62
62
|
}
|
|
63
|
+
export interface Brand {
|
|
64
|
+
id: string;
|
|
65
|
+
name?: string;
|
|
66
|
+
}
|
|
67
|
+
export interface OrderDate {
|
|
68
|
+
accepted?: string;
|
|
69
|
+
created?: string;
|
|
70
|
+
modified?: string;
|
|
71
|
+
should_start?: string;
|
|
72
|
+
completion_warning?: string;
|
|
73
|
+
ready?: string;
|
|
74
|
+
started?: string;
|
|
75
|
+
show_as_active_until?: string;
|
|
76
|
+
no_show?: string;
|
|
77
|
+
collected?: string;
|
|
78
|
+
delivered?: string;
|
|
79
|
+
pickup?: string;
|
|
80
|
+
cancelled?: string;
|
|
81
|
+
}
|
|
82
|
+
export interface OrderDetails {
|
|
83
|
+
name?: string;
|
|
84
|
+
display_id?: string;
|
|
85
|
+
contact_number?: string;
|
|
86
|
+
country_code?: string;
|
|
87
|
+
order_type?: string;
|
|
88
|
+
duration?: string;
|
|
89
|
+
destination?: string;
|
|
90
|
+
instructions?: string;
|
|
91
|
+
}
|
|
92
|
+
export interface Price {
|
|
93
|
+
amount?: number;
|
|
94
|
+
}
|
|
95
|
+
export interface RefundItem {
|
|
96
|
+
id?: string;
|
|
97
|
+
_index?: string;
|
|
98
|
+
quantity?: number;
|
|
99
|
+
price?: Price;
|
|
100
|
+
reason?: string;
|
|
101
|
+
}
|
|
102
|
+
export interface OrderIsStatus {
|
|
103
|
+
accepted?: boolean;
|
|
104
|
+
in_progress?: boolean;
|
|
105
|
+
ready?: boolean;
|
|
106
|
+
out_for_delivery?: boolean;
|
|
107
|
+
delivered?: boolean;
|
|
108
|
+
checkin_order?: boolean;
|
|
109
|
+
dining_hall_order?: boolean;
|
|
110
|
+
no_show?: boolean;
|
|
111
|
+
collected?: boolean;
|
|
112
|
+
cancelled?: boolean;
|
|
113
|
+
}
|
|
114
|
+
export interface CartTotal {
|
|
115
|
+
amount?: number;
|
|
116
|
+
meals?: number;
|
|
117
|
+
}
|
|
118
|
+
export interface Label {
|
|
119
|
+
en?: string;
|
|
120
|
+
fr?: string;
|
|
121
|
+
}
|
|
122
|
+
export interface QuantityByWeight {
|
|
123
|
+
unit?: string;
|
|
124
|
+
value?: number;
|
|
125
|
+
}
|
|
126
|
+
export interface SalePrice {
|
|
127
|
+
active?: boolean;
|
|
128
|
+
amount?: number;
|
|
129
|
+
}
|
|
130
|
+
export interface Modifier {
|
|
131
|
+
id: string;
|
|
132
|
+
price?: Price;
|
|
133
|
+
quantity?: number;
|
|
134
|
+
label?: Label;
|
|
135
|
+
_index?: string;
|
|
136
|
+
}
|
|
137
|
+
export interface ModifierGroup {
|
|
138
|
+
id: string;
|
|
139
|
+
label?: Label;
|
|
140
|
+
items?: Modifier[];
|
|
141
|
+
}
|
|
142
|
+
export interface OrderItemRating {
|
|
143
|
+
id: string;
|
|
144
|
+
menu: string;
|
|
145
|
+
item: string;
|
|
146
|
+
score: number;
|
|
147
|
+
comment: string;
|
|
148
|
+
reason: string[];
|
|
149
|
+
}
|
|
150
|
+
export interface CartItem {
|
|
151
|
+
id: string;
|
|
152
|
+
description?: Label;
|
|
153
|
+
_index?: string;
|
|
154
|
+
quantity: number;
|
|
155
|
+
quantity_by_weight?: QuantityByWeight;
|
|
156
|
+
price?: Price;
|
|
157
|
+
sale_price?: SalePrice;
|
|
158
|
+
weighed_price?: Price;
|
|
159
|
+
_subtotal?: Price;
|
|
160
|
+
options?: ModifierGroup[];
|
|
161
|
+
label?: Label;
|
|
162
|
+
name?: string;
|
|
163
|
+
review: OrderItemRating;
|
|
164
|
+
}
|
|
165
|
+
export interface ShoppingCart {
|
|
166
|
+
id: string;
|
|
167
|
+
total?: CartTotal;
|
|
168
|
+
items?: CartItem[];
|
|
169
|
+
}
|
|
170
|
+
export interface Order {
|
|
171
|
+
id?: string;
|
|
172
|
+
reorder_eligibility?: 'eligible' | 'order_type_ineligible' | 'location_ineligible' | 'active_order' | 'old_order' | 'marketplace_order' | 'duplicate_order' | 'brand_unavailable' | 'menu_unavailable' | 'items_unavailable' | 'refunded_order' | 'modifiers_unavailable' | 'modified_items' | 'cancelled_order';
|
|
173
|
+
location_brand?: Brand;
|
|
174
|
+
location?: string;
|
|
175
|
+
date?: OrderDate;
|
|
176
|
+
details?: OrderDetails;
|
|
177
|
+
pickup?: string;
|
|
178
|
+
requested_date?: string;
|
|
179
|
+
refunds?: RefundItem[];
|
|
180
|
+
pickup_id?: string;
|
|
181
|
+
is?: OrderIsStatus;
|
|
182
|
+
shoppingcart?: ShoppingCart;
|
|
183
|
+
}
|
|
184
|
+
export interface GetCustomerOrdersResponseDTO {
|
|
185
|
+
orders: Order[];
|
|
186
|
+
}
|
|
187
|
+
export interface BadRequestErrorDTO {
|
|
188
|
+
message: string;
|
|
189
|
+
code: number;
|
|
190
|
+
data: Record<string, any>;
|
|
191
|
+
}
|
|
192
|
+
export interface ReviewOrderItemRatings {
|
|
193
|
+
menu: string;
|
|
194
|
+
item: string;
|
|
195
|
+
score: number;
|
|
196
|
+
comment: string;
|
|
197
|
+
reason: string[];
|
|
198
|
+
}
|
|
199
|
+
export interface PostReviewOrderItemRatingsRequestDTO {
|
|
200
|
+
orderId: string;
|
|
201
|
+
reviews: ReviewOrderItemRatings[];
|
|
202
|
+
}
|
|
203
|
+
export interface PostReviewOrderItemRatingsResponseDTO {
|
|
204
|
+
reviews: OrderItemRating[];
|
|
205
|
+
}
|
|
63
206
|
export interface HealthCheckControllerExecuteQuery {
|
|
64
207
|
_query?: string;
|
|
65
208
|
}
|
|
@@ -74,4 +217,17 @@ export interface GetPaymentListByBrandQuery {
|
|
|
74
217
|
export type GetPaymentListByBrandResponse = ListAvailablePaymentsResponseDTO;
|
|
75
218
|
export interface GetPaymentListByBrandRequest extends BaseRequest, RequestQuery<GetPaymentListByBrandQuery> {
|
|
76
219
|
}
|
|
220
|
+
export interface GetCustomerOrdersQuery {
|
|
221
|
+
start?: number;
|
|
222
|
+
end?: number;
|
|
223
|
+
_query?: string;
|
|
224
|
+
}
|
|
225
|
+
export type GetCustomerOrdersResponse = GetCustomerOrdersResponseDTO;
|
|
226
|
+
export interface GetCustomerOrdersRequest extends BaseRequest, RequestQuery<GetCustomerOrdersQuery> {
|
|
227
|
+
}
|
|
228
|
+
export type PostReviewOrderItemRatingsBody = PostReviewOrderItemRatingsRequestDTO;
|
|
229
|
+
export type PostReviewOrderItemRatingsResponse = PostReviewOrderItemRatingsResponseDTO;
|
|
230
|
+
export interface PostReviewOrderItemRatingsRequest extends BaseRequest {
|
|
231
|
+
body: PostReviewOrderItemRatingsBody;
|
|
232
|
+
}
|
|
77
233
|
//# sourceMappingURL=consumer.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"consumer.d.ts","sourceRoot":"","sources":["../../src/interface/consumer.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,YAAY,EAAE,WAAW,EAAE,MAAM,QAAQ,CAAC;AAEnD,MAAM,WAAW,
|
|
1
|
+
{"version":3,"file":"consumer.d.ts","sourceRoot":"","sources":["../../src/interface/consumer.ts"],"names":[],"mappings":"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"}
|
package/lib/interface/menu.d.ts
CHANGED
|
@@ -1927,6 +1927,27 @@ export interface PostMenuV3LocalMenuGroupImportBrandsResponse {
|
|
|
1927
1927
|
}
|
|
1928
1928
|
export interface PostMenuV3LocalMenuGroupImportBrandsRequest extends BaseRequest, RequestQuery<PostMenuV3LocalMenuGroupImportBrandsQuery>, PostMenuV3LocalMenuGroupImportBrandsPath {
|
|
1929
1929
|
}
|
|
1930
|
+
export interface PostMenuV4LocalMenuGroupImportBrandsPath {
|
|
1931
|
+
id: string;
|
|
1932
|
+
}
|
|
1933
|
+
export interface PostMenuV4LocalMenuGroupImportBrandsQuery {
|
|
1934
|
+
select?: string[];
|
|
1935
|
+
relationships?: string[];
|
|
1936
|
+
filter?: string;
|
|
1937
|
+
'body.brand_ids'?: string[];
|
|
1938
|
+
limit?: number;
|
|
1939
|
+
page?: number;
|
|
1940
|
+
sort_by?: string;
|
|
1941
|
+
sort_order?: 'DESC' | 'ASC';
|
|
1942
|
+
soft_deleted?: 'include' | 'exclude' | 'only';
|
|
1943
|
+
}
|
|
1944
|
+
export interface PostMenuV4LocalMenuGroupImportBrandsResponse {
|
|
1945
|
+
results: DraftBrandDTO[];
|
|
1946
|
+
meta?: ListResponseMetadataDTO;
|
|
1947
|
+
[index: string]: any;
|
|
1948
|
+
}
|
|
1949
|
+
export interface PostMenuV4LocalMenuGroupImportBrandsRequest extends BaseRequest, RequestQuery<PostMenuV4LocalMenuGroupImportBrandsQuery>, PostMenuV4LocalMenuGroupImportBrandsPath {
|
|
1950
|
+
}
|
|
1930
1951
|
export interface GetMenuV3LocalMenuGroupSitePath {
|
|
1931
1952
|
id: string;
|
|
1932
1953
|
}
|
|
@@ -2536,8 +2557,8 @@ export interface PostMenuV3DraftBrandGlobalDiffsApplyRequest extends BaseRequest
|
|
|
2536
2557
|
body: PostMenuV3DraftBrandGlobalDiffsApplyBody;
|
|
2537
2558
|
}
|
|
2538
2559
|
export interface PostMenuV3DraftBrandAttachmentPath {
|
|
2539
|
-
id: string;
|
|
2540
2560
|
name: 'thumbnail';
|
|
2561
|
+
id: string;
|
|
2541
2562
|
}
|
|
2542
2563
|
export interface PostMenuV3DraftBrandAttachmentQuery {
|
|
2543
2564
|
'body.data'?: string;
|
|
@@ -2547,6 +2568,31 @@ export interface PostMenuV3DraftBrandAttachmentResponse {
|
|
|
2547
2568
|
}
|
|
2548
2569
|
export interface PostMenuV3DraftBrandAttachmentRequest extends BaseRequest, RequestQuery<PostMenuV3DraftBrandAttachmentQuery>, PostMenuV3DraftBrandAttachmentPath {
|
|
2549
2570
|
}
|
|
2571
|
+
export interface GetMenuV3DraftBrandExportPath {
|
|
2572
|
+
id: string;
|
|
2573
|
+
}
|
|
2574
|
+
export interface GetMenuV3DraftBrandExportQuery {
|
|
2575
|
+
format?: 'xlsx';
|
|
2576
|
+
_query?: string;
|
|
2577
|
+
}
|
|
2578
|
+
export interface GetMenuV3DraftBrandExportResponse {
|
|
2579
|
+
s3_link: string;
|
|
2580
|
+
[index: string]: any;
|
|
2581
|
+
}
|
|
2582
|
+
export interface GetMenuV3DraftBrandExportRequest extends BaseRequest, RequestQuery<GetMenuV3DraftBrandExportQuery>, GetMenuV3DraftBrandExportPath {
|
|
2583
|
+
}
|
|
2584
|
+
export interface GetMenuV3DraftBrandImportLinkPath {
|
|
2585
|
+
id: string;
|
|
2586
|
+
}
|
|
2587
|
+
export interface GetMenuV3DraftBrandImportLinkQuery {
|
|
2588
|
+
_query?: string;
|
|
2589
|
+
}
|
|
2590
|
+
export interface GetMenuV3DraftBrandImportLinkResponse {
|
|
2591
|
+
upload_link: string;
|
|
2592
|
+
[index: string]: any;
|
|
2593
|
+
}
|
|
2594
|
+
export interface GetMenuV3DraftBrandImportLinkRequest extends BaseRequest, RequestQuery<GetMenuV3DraftBrandImportLinkQuery>, GetMenuV3DraftBrandImportLinkPath {
|
|
2595
|
+
}
|
|
2550
2596
|
export interface PostMenuV3BrandQuery {
|
|
2551
2597
|
nocache?: boolean;
|
|
2552
2598
|
}
|
|
@@ -5072,6 +5118,48 @@ export interface PostMenuV4BrandMenuResponse {
|
|
|
5072
5118
|
export interface PostMenuV4BrandMenuRequest extends BaseRequest, PostMenuV4BrandMenuPath {
|
|
5073
5119
|
body: PostMenuV4BrandMenuBody;
|
|
5074
5120
|
}
|
|
5121
|
+
export interface PatchMenuV4BrandMenuPath {
|
|
5122
|
+
brand_id: string;
|
|
5123
|
+
menu_id: string;
|
|
5124
|
+
}
|
|
5125
|
+
export interface PatchMenuV4BrandMenuBody {
|
|
5126
|
+
parent?: DraftMenuDTO;
|
|
5127
|
+
children?: DraftMenuDTO[];
|
|
5128
|
+
categories?: DraftCategoryDTO[];
|
|
5129
|
+
id?: string;
|
|
5130
|
+
parent_id?: string;
|
|
5131
|
+
name?: string;
|
|
5132
|
+
brand_id?: string;
|
|
5133
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
5134
|
+
version?: number;
|
|
5135
|
+
brand?: DraftBrandDTO;
|
|
5136
|
+
changes?: MenuChangeDTO[];
|
|
5137
|
+
vendor_metadata?: VendorMetadataDTO[];
|
|
5138
|
+
permissions?: Record<string, any>;
|
|
5139
|
+
[index: string]: any;
|
|
5140
|
+
}
|
|
5141
|
+
export interface PatchMenuV4BrandMenuResponse {
|
|
5142
|
+
parent?: DraftMenuDTO;
|
|
5143
|
+
children?: DraftMenuDTO[];
|
|
5144
|
+
categories?: DraftCategoryDTO[];
|
|
5145
|
+
id: string;
|
|
5146
|
+
created_at?: string;
|
|
5147
|
+
updated_at?: string;
|
|
5148
|
+
deleted_at?: string;
|
|
5149
|
+
parent_id?: string;
|
|
5150
|
+
name: string;
|
|
5151
|
+
brand_id: string;
|
|
5152
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
5153
|
+
version?: number;
|
|
5154
|
+
brand?: DraftBrandDTO;
|
|
5155
|
+
changes?: MenuChangeDTO[];
|
|
5156
|
+
vendor_metadata?: VendorMetadataDTO[];
|
|
5157
|
+
permissions?: Record<string, any>;
|
|
5158
|
+
[index: string]: any;
|
|
5159
|
+
}
|
|
5160
|
+
export interface PatchMenuV4BrandMenuRequest extends BaseRequest, PatchMenuV4BrandMenuPath {
|
|
5161
|
+
body: PatchMenuV4BrandMenuBody;
|
|
5162
|
+
}
|
|
5075
5163
|
export interface GetMenuV4BrandItemsPath {
|
|
5076
5164
|
id: string;
|
|
5077
5165
|
}
|
|
@@ -5299,6 +5387,106 @@ export interface PostMenuV4BrandV3ToV4Response {
|
|
|
5299
5387
|
}
|
|
5300
5388
|
export interface PostMenuV4BrandV3ToV4Request extends BaseRequest, PostMenuV4BrandV3ToV4Path {
|
|
5301
5389
|
}
|
|
5390
|
+
export interface DeleteMenuV4BrandPath {
|
|
5391
|
+
id: string;
|
|
5392
|
+
}
|
|
5393
|
+
export interface DeleteMenuV4BrandResponse {
|
|
5394
|
+
parent?: DraftBrandDTO;
|
|
5395
|
+
children?: DraftBrandDTO[];
|
|
5396
|
+
menus?: DraftMenuDTO[];
|
|
5397
|
+
categories?: DraftCategoryDTO[];
|
|
5398
|
+
category_to_item_relationships?: DraftCategoryToItemRelationshipDTO[];
|
|
5399
|
+
items?: DraftItemDTO[];
|
|
5400
|
+
item_to_modifier_group_relationships?: DraftItemToModifierGroupRelationshipDTO[];
|
|
5401
|
+
modifier_groups?: DraftModifierGroupDTO[];
|
|
5402
|
+
modifier_group_to_modifier_relationships?: DraftModifierGroupToModifierRelationshipDTO[];
|
|
5403
|
+
modifiers?: DraftModifierDTO[];
|
|
5404
|
+
statuses?: BrandStatusDTO[];
|
|
5405
|
+
audit_logs?: AuditDTO[];
|
|
5406
|
+
id: string;
|
|
5407
|
+
created_at?: string;
|
|
5408
|
+
updated_at?: string;
|
|
5409
|
+
deleted_at?: string;
|
|
5410
|
+
name: string;
|
|
5411
|
+
description?: string;
|
|
5412
|
+
is_active?: boolean;
|
|
5413
|
+
type?: 'global' | 'local';
|
|
5414
|
+
parent_id?: string;
|
|
5415
|
+
local_menu_group_id?: string;
|
|
5416
|
+
global_menu_group_id?: string;
|
|
5417
|
+
posid_segment?: string;
|
|
5418
|
+
is_simplified_view?: boolean;
|
|
5419
|
+
frictionless_partner?: string;
|
|
5420
|
+
catalog_id?: number;
|
|
5421
|
+
meta?: BrandMeta;
|
|
5422
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
5423
|
+
version?: number;
|
|
5424
|
+
changes?: BrandChangeDTO[];
|
|
5425
|
+
local_menu_group?: LocalMenuGroupDTO;
|
|
5426
|
+
global_menu_group?: GlobalMenuGroupDTO;
|
|
5427
|
+
vendor_metadata?: VendorMetadataDTO[];
|
|
5428
|
+
attachments?: FileAttachmentsDTO;
|
|
5429
|
+
permissions?: Record<string, any>;
|
|
5430
|
+
[index: string]: any;
|
|
5431
|
+
}
|
|
5432
|
+
export interface DeleteMenuV4BrandRequest extends BaseRequest, DeleteMenuV4BrandPath {
|
|
5433
|
+
}
|
|
5434
|
+
export interface DeleteMenuV4BrandMenuPath {
|
|
5435
|
+
brand_id: string;
|
|
5436
|
+
menu_id: string;
|
|
5437
|
+
}
|
|
5438
|
+
export interface DeleteMenuV4BrandMenuResponse {
|
|
5439
|
+
parent?: DraftMenuDTO;
|
|
5440
|
+
children?: DraftMenuDTO[];
|
|
5441
|
+
categories?: DraftCategoryDTO[];
|
|
5442
|
+
id: string;
|
|
5443
|
+
created_at?: string;
|
|
5444
|
+
updated_at?: string;
|
|
5445
|
+
deleted_at?: string;
|
|
5446
|
+
parent_id?: string;
|
|
5447
|
+
name: string;
|
|
5448
|
+
brand_id: string;
|
|
5449
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
5450
|
+
version?: number;
|
|
5451
|
+
brand?: DraftBrandDTO;
|
|
5452
|
+
changes?: MenuChangeDTO[];
|
|
5453
|
+
vendor_metadata?: VendorMetadataDTO[];
|
|
5454
|
+
permissions?: Record<string, any>;
|
|
5455
|
+
[index: string]: any;
|
|
5456
|
+
}
|
|
5457
|
+
export interface DeleteMenuV4BrandMenuRequest extends BaseRequest, DeleteMenuV4BrandMenuPath {
|
|
5458
|
+
}
|
|
5459
|
+
export interface DeleteMenuV4BrandCategoryPath {
|
|
5460
|
+
brand_id: string;
|
|
5461
|
+
category_id: string;
|
|
5462
|
+
}
|
|
5463
|
+
export interface DeleteMenuV4BrandCategoryResponse {
|
|
5464
|
+
parent?: DraftCategoryDTO;
|
|
5465
|
+
children?: DraftCategoryDTO[];
|
|
5466
|
+
id: string;
|
|
5467
|
+
created_at?: string;
|
|
5468
|
+
updated_at?: string;
|
|
5469
|
+
deleted_at?: string;
|
|
5470
|
+
parent_id?: string;
|
|
5471
|
+
name: string;
|
|
5472
|
+
label?: string;
|
|
5473
|
+
sequence?: number;
|
|
5474
|
+
is_active?: boolean;
|
|
5475
|
+
brand_id: string;
|
|
5476
|
+
menu_id: string;
|
|
5477
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
5478
|
+
version?: number;
|
|
5479
|
+
menu?: DraftMenuDTO;
|
|
5480
|
+
items?: DraftCategoryToItemRelationshipDTO[];
|
|
5481
|
+
brand?: DraftBrandDTO;
|
|
5482
|
+
changes?: CategoryChangeDTO[];
|
|
5483
|
+
vendor_metadata?: VendorMetadataDTO[];
|
|
5484
|
+
attachments?: FileAttachmentsDTO;
|
|
5485
|
+
permissions?: Record<string, any>;
|
|
5486
|
+
[index: string]: any;
|
|
5487
|
+
}
|
|
5488
|
+
export interface DeleteMenuV4BrandCategoryRequest extends BaseRequest, DeleteMenuV4BrandCategoryPath {
|
|
5489
|
+
}
|
|
5302
5490
|
export interface PostMenuV4ItemBody {
|
|
5303
5491
|
parent?: DraftItemDTO;
|
|
5304
5492
|
children?: DraftItemDTO[];
|
|
@@ -5523,6 +5711,54 @@ export interface PatchMenuV4ItemResponse {
|
|
|
5523
5711
|
export interface PatchMenuV4ItemRequest extends BaseRequest, PatchMenuV4ItemPath {
|
|
5524
5712
|
body: PatchMenuV4ItemBody;
|
|
5525
5713
|
}
|
|
5714
|
+
export interface DeleteMenuV4ItemPath {
|
|
5715
|
+
id: string;
|
|
5716
|
+
}
|
|
5717
|
+
export interface DeleteMenuV4ItemResponse {
|
|
5718
|
+
parent?: DraftItemDTO;
|
|
5719
|
+
children?: DraftItemDTO[];
|
|
5720
|
+
modifier_groups?: DraftItemToModifierGroupRelationshipDTO[];
|
|
5721
|
+
id: string;
|
|
5722
|
+
created_at?: string;
|
|
5723
|
+
updated_at?: string;
|
|
5724
|
+
deleted_at?: string;
|
|
5725
|
+
parent_id?: string;
|
|
5726
|
+
name: string;
|
|
5727
|
+
name_on_receipt?: string;
|
|
5728
|
+
name_on_kds?: string;
|
|
5729
|
+
label?: string;
|
|
5730
|
+
description?: string;
|
|
5731
|
+
reporting: ReportingMetadataDTO;
|
|
5732
|
+
price: number;
|
|
5733
|
+
barcode?: string;
|
|
5734
|
+
calories?: number;
|
|
5735
|
+
meal_value?: number;
|
|
5736
|
+
is_active?: boolean;
|
|
5737
|
+
posid?: string;
|
|
5738
|
+
tax_tags?: string[];
|
|
5739
|
+
brand_id: string;
|
|
5740
|
+
line_route?: string;
|
|
5741
|
+
posid_segment?: number;
|
|
5742
|
+
menu_works?: MenuWorksDTO;
|
|
5743
|
+
is_out_of_stock?: boolean;
|
|
5744
|
+
tax_tag_code?: string;
|
|
5745
|
+
tags?: string[];
|
|
5746
|
+
is_featured?: boolean;
|
|
5747
|
+
tax_jwo_code?: string;
|
|
5748
|
+
unique_id?: number;
|
|
5749
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
5750
|
+
version?: number;
|
|
5751
|
+
brand?: DraftBrandDTO;
|
|
5752
|
+
categories?: DraftCategoryToItemRelationshipDTO[];
|
|
5753
|
+
changes?: ItemChangeDTO[];
|
|
5754
|
+
vendor_metadata?: VendorMetadataDTO[];
|
|
5755
|
+
attachments?: FileAttachmentsDTO;
|
|
5756
|
+
weight?: WeightDTO;
|
|
5757
|
+
permissions?: Record<string, any>;
|
|
5758
|
+
[index: string]: any;
|
|
5759
|
+
}
|
|
5760
|
+
export interface DeleteMenuV4ItemRequest extends BaseRequest, DeleteMenuV4ItemPath {
|
|
5761
|
+
}
|
|
5526
5762
|
export interface PostMenuV4ModifierBody {
|
|
5527
5763
|
base_item_id: string;
|
|
5528
5764
|
parent?: DraftModifierDTO;
|
|
@@ -5746,6 +5982,54 @@ export interface PatchMenuV4ModifierResponse {
|
|
|
5746
5982
|
export interface PatchMenuV4ModifierRequest extends BaseRequest, PatchMenuV4ModifierPath {
|
|
5747
5983
|
body: PatchMenuV4ModifierBody;
|
|
5748
5984
|
}
|
|
5985
|
+
export interface DeleteMenuV4ModifierPath {
|
|
5986
|
+
id: string;
|
|
5987
|
+
}
|
|
5988
|
+
export interface DeleteMenuV4ModifierResponse {
|
|
5989
|
+
parent?: DraftModifierDTO;
|
|
5990
|
+
children?: DraftModifierDTO[];
|
|
5991
|
+
modifier_groups?: DraftModifierGroupToModifierRelationshipDTO[];
|
|
5992
|
+
id: string;
|
|
5993
|
+
created_at?: string;
|
|
5994
|
+
updated_at?: string;
|
|
5995
|
+
deleted_at?: string;
|
|
5996
|
+
parent_id?: string;
|
|
5997
|
+
name: string;
|
|
5998
|
+
name_on_receipt?: string;
|
|
5999
|
+
name_on_kds?: string;
|
|
6000
|
+
label?: string;
|
|
6001
|
+
description?: string;
|
|
6002
|
+
price: number;
|
|
6003
|
+
calories?: number;
|
|
6004
|
+
tax_tags?: string[];
|
|
6005
|
+
is_active?: boolean;
|
|
6006
|
+
posid?: string;
|
|
6007
|
+
reporting: ReportingMetadataDTO;
|
|
6008
|
+
posid_segment?: number;
|
|
6009
|
+
brand_id: string;
|
|
6010
|
+
line_route?: string;
|
|
6011
|
+
menu_works?: MenuWorksDTO;
|
|
6012
|
+
is_out_of_stock?: boolean;
|
|
6013
|
+
price_for_none?: number;
|
|
6014
|
+
price_for_less?: number;
|
|
6015
|
+
price_for_more?: number;
|
|
6016
|
+
pre_surcharge?: number;
|
|
6017
|
+
post_surcharge?: number;
|
|
6018
|
+
tax_tag_code?: string;
|
|
6019
|
+
tags?: string[];
|
|
6020
|
+
unique_id?: number;
|
|
6021
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
6022
|
+
version?: number;
|
|
6023
|
+
brand?: DraftBrandDTO;
|
|
6024
|
+
changes?: ModifierChangeDTO[];
|
|
6025
|
+
vendor_metadata?: VendorMetadataDTO[];
|
|
6026
|
+
weight?: WeightDTO;
|
|
6027
|
+
attachments?: FileAttachmentsDTO;
|
|
6028
|
+
permissions?: Record<string, any>;
|
|
6029
|
+
[index: string]: any;
|
|
6030
|
+
}
|
|
6031
|
+
export interface DeleteMenuV4ModifierRequest extends BaseRequest, DeleteMenuV4ModifierPath {
|
|
6032
|
+
}
|
|
5749
6033
|
export interface PostMenuV4ModifierGroupBody {
|
|
5750
6034
|
parent?: DraftModifierGroupDTO;
|
|
5751
6035
|
children?: DraftModifierGroupDTO[];
|
|
@@ -5898,6 +6182,40 @@ export interface PatchMenuV4ModifierGroupResponse {
|
|
|
5898
6182
|
export interface PatchMenuV4ModifierGroupRequest extends BaseRequest, PatchMenuV4ModifierGroupPath {
|
|
5899
6183
|
body: PatchMenuV4ModifierGroupBody;
|
|
5900
6184
|
}
|
|
6185
|
+
export interface DeleteMenuV4ModifierGroupPath {
|
|
6186
|
+
id: string;
|
|
6187
|
+
}
|
|
6188
|
+
export interface DeleteMenuV4ModifierGroupResponse {
|
|
6189
|
+
parent?: DraftModifierGroupDTO;
|
|
6190
|
+
children?: DraftModifierGroupDTO[];
|
|
6191
|
+
modifiers?: DraftModifierGroupToModifierRelationshipDTO[];
|
|
6192
|
+
items?: DraftItemToModifierGroupRelationshipDTO[];
|
|
6193
|
+
id: string;
|
|
6194
|
+
created_at?: string;
|
|
6195
|
+
updated_at?: string;
|
|
6196
|
+
deleted_at?: string;
|
|
6197
|
+
parent_id?: string;
|
|
6198
|
+
name: string;
|
|
6199
|
+
label?: string;
|
|
6200
|
+
min?: number;
|
|
6201
|
+
max?: number;
|
|
6202
|
+
is_active?: boolean;
|
|
6203
|
+
limit?: number;
|
|
6204
|
+
brand_id: string;
|
|
6205
|
+
order_type?: 'selection' | 'option' | 'quantity';
|
|
6206
|
+
sizing?: string;
|
|
6207
|
+
is_out_of_stock?: boolean;
|
|
6208
|
+
is_incremental?: boolean;
|
|
6209
|
+
applied_diff_snapshot?: Record<string, any>;
|
|
6210
|
+
version?: number;
|
|
6211
|
+
brand?: DraftBrandDTO;
|
|
6212
|
+
changes?: ModifierGroupChangeDTO[];
|
|
6213
|
+
vendor_metadata?: VendorMetadataDTO[];
|
|
6214
|
+
permissions?: Record<string, any>;
|
|
6215
|
+
[index: string]: any;
|
|
6216
|
+
}
|
|
6217
|
+
export interface DeleteMenuV4ModifierGroupRequest extends BaseRequest, DeleteMenuV4ModifierGroupPath {
|
|
6218
|
+
}
|
|
5901
6219
|
export interface PostMenuV4ModifierGroupAttachModifiersPath {
|
|
5902
6220
|
id: string;
|
|
5903
6221
|
}
|