@compassdigital/sdk.typescript 4.325.0 → 4.327.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 +1 -0
- package/lib/interface/menu.d.ts.map +1 -1
- package/lib/messages/events/LocationBrandCreatedEvent.d.ts +211 -209
- package/lib/messages/events/LocationBrandCreatedEvent.d.ts.map +1 -1
- package/lib/messages/events/LocationBrandUpdatedEvent.d.ts +211 -209
- package/lib/messages/events/LocationBrandUpdatedEvent.d.ts.map +1 -1
- package/lib/messages/events/LocationCompanyCreatedEvent.d.ts +304 -0
- package/lib/messages/events/LocationCompanyCreatedEvent.d.ts.map +1 -0
- package/lib/messages/events/LocationCompanyCreatedEvent.js +4 -0
- package/lib/messages/events/LocationCompanyCreatedEvent.js.map +1 -0
- package/lib/messages/events/LocationCompanyUpdatedEvent.d.ts +304 -0
- package/lib/messages/events/LocationCompanyUpdatedEvent.d.ts.map +1 -0
- package/lib/messages/events/LocationCompanyUpdatedEvent.js +4 -0
- package/lib/messages/events/LocationCompanyUpdatedEvent.js.map +1 -0
- package/lib/messages/events/LocationCreatedEvent.d.ts +260 -66
- package/lib/messages/events/LocationCreatedEvent.d.ts.map +1 -1
- package/lib/messages/events/LocationDeliveryDestinationCreatedEvent.d.ts +34 -0
- package/lib/messages/events/LocationDeliveryDestinationCreatedEvent.d.ts.map +1 -0
- package/lib/messages/events/LocationDeliveryDestinationCreatedEvent.js +4 -0
- package/lib/messages/events/LocationDeliveryDestinationCreatedEvent.js.map +1 -0
- package/lib/messages/events/LocationDeliveryDestinationUpdatedEvent.d.ts +34 -0
- package/lib/messages/events/LocationDeliveryDestinationUpdatedEvent.d.ts.map +1 -0
- package/lib/messages/events/LocationDeliveryDestinationUpdatedEvent.js +4 -0
- package/lib/messages/events/LocationDeliveryDestinationUpdatedEvent.js.map +1 -0
- package/lib/messages/events/LocationGroupCreatedEvent.d.ts +222 -61
- package/lib/messages/events/LocationGroupCreatedEvent.d.ts.map +1 -1
- package/lib/messages/events/LocationGroupUpdatedEvent.d.ts +222 -37
- package/lib/messages/events/LocationGroupUpdatedEvent.d.ts.map +1 -1
- package/lib/messages/events/LocationMultigroupCreatedEvent.d.ts +354 -0
- package/lib/messages/events/LocationMultigroupCreatedEvent.d.ts.map +1 -0
- package/lib/messages/events/LocationMultigroupCreatedEvent.js +4 -0
- package/lib/messages/events/LocationMultigroupCreatedEvent.js.map +1 -0
- package/lib/messages/events/LocationMultigroupUpdatedEvent.d.ts +354 -0
- package/lib/messages/events/LocationMultigroupUpdatedEvent.d.ts.map +1 -0
- package/lib/messages/events/LocationMultigroupUpdatedEvent.js +4 -0
- package/lib/messages/events/LocationMultigroupUpdatedEvent.js.map +1 -0
- package/lib/messages/events/LocationSectorCreatedEvent.d.ts +312 -0
- package/lib/messages/events/LocationSectorCreatedEvent.d.ts.map +1 -0
- package/lib/messages/events/LocationSectorCreatedEvent.js +4 -0
- package/lib/messages/events/LocationSectorCreatedEvent.js.map +1 -0
- package/lib/messages/events/LocationSectorUpdatedEvent.d.ts +312 -0
- package/lib/messages/events/LocationSectorUpdatedEvent.d.ts.map +1 -0
- package/lib/messages/events/LocationSectorUpdatedEvent.js +4 -0
- package/lib/messages/events/LocationSectorUpdatedEvent.js.map +1 -0
- package/lib/messages/events/LocationUpdatedEvent.d.ts +260 -66
- package/lib/messages/events/LocationUpdatedEvent.d.ts.map +1 -1
- package/lib/messages/events/index.d.ts +8 -0
- package/lib/messages/events/index.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/interface/menu.ts +1 -0
- package/src/messages/events/LocationBrandCreatedEvent.ts +246 -240
- package/src/messages/events/LocationBrandUpdatedEvent.ts +246 -240
- package/src/messages/events/LocationCompanyCreatedEvent.ts +391 -0
- package/src/messages/events/LocationCompanyUpdatedEvent.ts +391 -0
- package/src/messages/events/LocationCreatedEvent.ts +304 -95
- package/src/messages/events/LocationDeliveryDestinationCreatedEvent.ts +50 -0
- package/src/messages/events/LocationDeliveryDestinationUpdatedEvent.ts +50 -0
- package/src/messages/events/LocationGroupCreatedEvent.ts +266 -74
- package/src/messages/events/LocationGroupUpdatedEvent.ts +266 -53
- package/src/messages/events/LocationMultigroupCreatedEvent.ts +461 -0
- package/src/messages/events/LocationMultigroupUpdatedEvent.ts +461 -0
- package/src/messages/events/LocationSectorCreatedEvent.ts +405 -0
- package/src/messages/events/LocationSectorUpdatedEvent.ts +405 -0
- package/src/messages/events/LocationUpdatedEvent.ts +304 -95
- package/src/messages/events/index.ts +16 -0
package/lib/interface/menu.d.ts
CHANGED
|
@@ -5720,6 +5720,7 @@ export interface GetMenuV4BrandQuery {
|
|
|
5720
5720
|
}
|
|
5721
5721
|
export interface GetMenuV4BrandResponse {
|
|
5722
5722
|
price_levels?: Record<string, any>;
|
|
5723
|
+
menu_labels?: Record<string, any>;
|
|
5723
5724
|
parent?: DraftBrandDTO;
|
|
5724
5725
|
children?: DraftBrandDTO[];
|
|
5725
5726
|
menus?: DraftMenuDTO[];
|