@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.
Files changed (65) hide show
  1. package/lib/interface/menu.d.ts +1 -0
  2. package/lib/interface/menu.d.ts.map +1 -1
  3. package/lib/messages/events/LocationBrandCreatedEvent.d.ts +211 -209
  4. package/lib/messages/events/LocationBrandCreatedEvent.d.ts.map +1 -1
  5. package/lib/messages/events/LocationBrandUpdatedEvent.d.ts +211 -209
  6. package/lib/messages/events/LocationBrandUpdatedEvent.d.ts.map +1 -1
  7. package/lib/messages/events/LocationCompanyCreatedEvent.d.ts +304 -0
  8. package/lib/messages/events/LocationCompanyCreatedEvent.d.ts.map +1 -0
  9. package/lib/messages/events/LocationCompanyCreatedEvent.js +4 -0
  10. package/lib/messages/events/LocationCompanyCreatedEvent.js.map +1 -0
  11. package/lib/messages/events/LocationCompanyUpdatedEvent.d.ts +304 -0
  12. package/lib/messages/events/LocationCompanyUpdatedEvent.d.ts.map +1 -0
  13. package/lib/messages/events/LocationCompanyUpdatedEvent.js +4 -0
  14. package/lib/messages/events/LocationCompanyUpdatedEvent.js.map +1 -0
  15. package/lib/messages/events/LocationCreatedEvent.d.ts +260 -66
  16. package/lib/messages/events/LocationCreatedEvent.d.ts.map +1 -1
  17. package/lib/messages/events/LocationDeliveryDestinationCreatedEvent.d.ts +34 -0
  18. package/lib/messages/events/LocationDeliveryDestinationCreatedEvent.d.ts.map +1 -0
  19. package/lib/messages/events/LocationDeliveryDestinationCreatedEvent.js +4 -0
  20. package/lib/messages/events/LocationDeliveryDestinationCreatedEvent.js.map +1 -0
  21. package/lib/messages/events/LocationDeliveryDestinationUpdatedEvent.d.ts +34 -0
  22. package/lib/messages/events/LocationDeliveryDestinationUpdatedEvent.d.ts.map +1 -0
  23. package/lib/messages/events/LocationDeliveryDestinationUpdatedEvent.js +4 -0
  24. package/lib/messages/events/LocationDeliveryDestinationUpdatedEvent.js.map +1 -0
  25. package/lib/messages/events/LocationGroupCreatedEvent.d.ts +222 -61
  26. package/lib/messages/events/LocationGroupCreatedEvent.d.ts.map +1 -1
  27. package/lib/messages/events/LocationGroupUpdatedEvent.d.ts +222 -37
  28. package/lib/messages/events/LocationGroupUpdatedEvent.d.ts.map +1 -1
  29. package/lib/messages/events/LocationMultigroupCreatedEvent.d.ts +354 -0
  30. package/lib/messages/events/LocationMultigroupCreatedEvent.d.ts.map +1 -0
  31. package/lib/messages/events/LocationMultigroupCreatedEvent.js +4 -0
  32. package/lib/messages/events/LocationMultigroupCreatedEvent.js.map +1 -0
  33. package/lib/messages/events/LocationMultigroupUpdatedEvent.d.ts +354 -0
  34. package/lib/messages/events/LocationMultigroupUpdatedEvent.d.ts.map +1 -0
  35. package/lib/messages/events/LocationMultigroupUpdatedEvent.js +4 -0
  36. package/lib/messages/events/LocationMultigroupUpdatedEvent.js.map +1 -0
  37. package/lib/messages/events/LocationSectorCreatedEvent.d.ts +312 -0
  38. package/lib/messages/events/LocationSectorCreatedEvent.d.ts.map +1 -0
  39. package/lib/messages/events/LocationSectorCreatedEvent.js +4 -0
  40. package/lib/messages/events/LocationSectorCreatedEvent.js.map +1 -0
  41. package/lib/messages/events/LocationSectorUpdatedEvent.d.ts +312 -0
  42. package/lib/messages/events/LocationSectorUpdatedEvent.d.ts.map +1 -0
  43. package/lib/messages/events/LocationSectorUpdatedEvent.js +4 -0
  44. package/lib/messages/events/LocationSectorUpdatedEvent.js.map +1 -0
  45. package/lib/messages/events/LocationUpdatedEvent.d.ts +260 -66
  46. package/lib/messages/events/LocationUpdatedEvent.d.ts.map +1 -1
  47. package/lib/messages/events/index.d.ts +8 -0
  48. package/lib/messages/events/index.d.ts.map +1 -1
  49. package/package.json +1 -1
  50. package/src/interface/menu.ts +1 -0
  51. package/src/messages/events/LocationBrandCreatedEvent.ts +246 -240
  52. package/src/messages/events/LocationBrandUpdatedEvent.ts +246 -240
  53. package/src/messages/events/LocationCompanyCreatedEvent.ts +391 -0
  54. package/src/messages/events/LocationCompanyUpdatedEvent.ts +391 -0
  55. package/src/messages/events/LocationCreatedEvent.ts +304 -95
  56. package/src/messages/events/LocationDeliveryDestinationCreatedEvent.ts +50 -0
  57. package/src/messages/events/LocationDeliveryDestinationUpdatedEvent.ts +50 -0
  58. package/src/messages/events/LocationGroupCreatedEvent.ts +266 -74
  59. package/src/messages/events/LocationGroupUpdatedEvent.ts +266 -53
  60. package/src/messages/events/LocationMultigroupCreatedEvent.ts +461 -0
  61. package/src/messages/events/LocationMultigroupUpdatedEvent.ts +461 -0
  62. package/src/messages/events/LocationSectorCreatedEvent.ts +405 -0
  63. package/src/messages/events/LocationSectorUpdatedEvent.ts +405 -0
  64. package/src/messages/events/LocationUpdatedEvent.ts +304 -95
  65. package/src/messages/events/index.ts +16 -0
@@ -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[];