@compassdigital/sdk.typescript 4.313.0 → 4.315.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 +5 -0
- package/lib/interface/menu.d.ts.map +1 -1
- package/lib/messages/events/DiscountDisactivatedEvent.d.ts +23 -0
- package/lib/messages/events/DiscountDisactivatedEvent.d.ts.map +1 -0
- package/lib/messages/events/DiscountDisactivatedEvent.js +4 -0
- package/lib/messages/events/DiscountDisactivatedEvent.js.map +1 -0
- package/lib/messages/events/index.d.ts +1 -0
- package/lib/messages/events/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/interface/menu.ts +5 -0
- package/src/messages/events/DiscountDisactivatedEvent.ts +26 -0
- package/src/messages/events/index.ts +2 -0
package/lib/interface/menu.d.ts
CHANGED
|
@@ -393,6 +393,7 @@ export interface GlobalMenuGroupDTO {
|
|
|
393
393
|
auto_push_to_local?: boolean;
|
|
394
394
|
price_levels?: Record<string, any>;
|
|
395
395
|
show_v4?: boolean;
|
|
396
|
+
menu_labels?: Record<string, any>;
|
|
396
397
|
id?: string;
|
|
397
398
|
created_at?: string;
|
|
398
399
|
updated_at?: string;
|
|
@@ -2422,6 +2423,7 @@ export interface PostMenuV3GlobalMenuGroupBody {
|
|
|
2422
2423
|
auto_push_to_local?: boolean;
|
|
2423
2424
|
price_levels?: Record<string, any>;
|
|
2424
2425
|
show_v4?: boolean;
|
|
2426
|
+
menu_labels?: Record<string, any>;
|
|
2425
2427
|
vendor_metadata?: VendorMetadataDTO[];
|
|
2426
2428
|
permissions?: Record<string, any>;
|
|
2427
2429
|
[index: string]: any;
|
|
@@ -2454,6 +2456,7 @@ export interface PatchMenuV3GlobalMenuGroupBody {
|
|
|
2454
2456
|
auto_push_to_local?: boolean;
|
|
2455
2457
|
price_levels?: Record<string, any>;
|
|
2456
2458
|
show_v4?: boolean;
|
|
2459
|
+
menu_labels?: Record<string, any>;
|
|
2457
2460
|
id?: string;
|
|
2458
2461
|
version?: number;
|
|
2459
2462
|
vendor_metadata?: VendorMetadataDTO[];
|
|
@@ -2481,6 +2484,7 @@ export interface DeleteMenuV3GlobalMenuGroupResponse {
|
|
|
2481
2484
|
auto_push_to_local?: boolean;
|
|
2482
2485
|
price_levels?: Record<string, any>;
|
|
2483
2486
|
show_v4?: boolean;
|
|
2487
|
+
menu_labels?: Record<string, any>;
|
|
2484
2488
|
id: string;
|
|
2485
2489
|
created_at?: string;
|
|
2486
2490
|
updated_at?: string;
|
|
@@ -2520,6 +2524,7 @@ export type PostMenuV3GlobalMenuGroupsBody = {
|
|
|
2520
2524
|
auto_push_to_local?: boolean;
|
|
2521
2525
|
price_levels?: Record<string, any>;
|
|
2522
2526
|
show_v4?: boolean;
|
|
2527
|
+
menu_labels?: Record<string, any>;
|
|
2523
2528
|
vendor_metadata?: VendorMetadataDTO[];
|
|
2524
2529
|
permissions?: Record<string, any>;
|
|
2525
2530
|
[index: string]: any;
|