@orderingstack/ordering-types 1.22.0 → 1.23.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.
@@ -626,3 +626,16 @@ export interface ISteeringCommand {
626
626
  venue: string;
627
627
  properties?: Record<string, string>;
628
628
  }
629
+ export declare const modules: readonly ["POS_INTEGRATOR", "KIOSK", "BI_CONNECTOR", "AGGREGATOR", "KDS", "STATUS_SCREEN", "LOYALTY_INTEGRATOR", "LOYALTY", "MOBILE_APP_LOYALTY", "ORDERING_WEB", "DELIVERY_PANEL"];
630
+ export interface IModule {
631
+ id: string;
632
+ type: (typeof modules)[number];
633
+ production: boolean;
634
+ venue: string;
635
+ created?: string;
636
+ createdBy?: string;
637
+ updated?: string;
638
+ updatedBy?: string;
639
+ user?: string;
640
+ extra?: IStringKeyRecord<string>;
641
+ }
package/dist/cjs/index.js CHANGED
@@ -14,7 +14,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
14
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
15
  };
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
- exports.ENotificationType = exports.sizes = exports.EOrderProductKind = exports.EOrderLineStatus = exports.ERbiOrderExtra = exports.EOrderPaymentType = exports.EOrderStatus = exports.EChannelName = exports.EOrderSource = exports.EOrderType = exports.EOrderUserRole = exports.EProductKindBucket = exports.EProductKind = exports.ECouponViewType = void 0;
17
+ exports.modules = exports.ENotificationType = exports.sizes = exports.EOrderProductKind = exports.EOrderLineStatus = exports.ERbiOrderExtra = exports.EOrderPaymentType = exports.EOrderStatus = exports.EChannelName = exports.EOrderSource = exports.EOrderType = exports.EOrderUserRole = exports.EProductKindBucket = exports.EProductKind = exports.ECouponViewType = void 0;
18
18
  __exportStar(require("./kiosk"), exports);
19
19
  __exportStar(require("./kioskErrors"), exports);
20
20
  __exportStar(require("./api"), exports);
@@ -164,3 +164,6 @@ var ENotificationType;
164
164
  ENotificationType["ORDER_EVENT_FISCAL"] = "OrderEventFiscal";
165
165
  ENotificationType["ORDER_UPSELL"] = "OrderUpsell";
166
166
  })(ENotificationType = exports.ENotificationType || (exports.ENotificationType = {}));
167
+ exports.modules = [
168
+ 'POS_INTEGRATOR', 'KIOSK', 'BI_CONNECTOR', 'AGGREGATOR', 'KDS', 'STATUS_SCREEN', 'LOYALTY_INTEGRATOR', 'LOYALTY', 'MOBILE_APP_LOYALTY', 'ORDERING_WEB', 'DELIVERY_PANEL',
169
+ ];
@@ -626,3 +626,16 @@ export interface ISteeringCommand {
626
626
  venue: string;
627
627
  properties?: Record<string, string>;
628
628
  }
629
+ export declare const modules: readonly ["POS_INTEGRATOR", "KIOSK", "BI_CONNECTOR", "AGGREGATOR", "KDS", "STATUS_SCREEN", "LOYALTY_INTEGRATOR", "LOYALTY", "MOBILE_APP_LOYALTY", "ORDERING_WEB", "DELIVERY_PANEL"];
630
+ export interface IModule {
631
+ id: string;
632
+ type: (typeof modules)[number];
633
+ production: boolean;
634
+ venue: string;
635
+ created?: string;
636
+ createdBy?: string;
637
+ updated?: string;
638
+ updatedBy?: string;
639
+ user?: string;
640
+ extra?: IStringKeyRecord<string>;
641
+ }
package/dist/esm/index.js CHANGED
@@ -147,3 +147,6 @@ export var ENotificationType;
147
147
  ENotificationType["ORDER_EVENT_FISCAL"] = "OrderEventFiscal";
148
148
  ENotificationType["ORDER_UPSELL"] = "OrderUpsell";
149
149
  })(ENotificationType || (ENotificationType = {}));
150
+ export const modules = [
151
+ 'POS_INTEGRATOR', 'KIOSK', 'BI_CONNECTOR', 'AGGREGATOR', 'KDS', 'STATUS_SCREEN', 'LOYALTY_INTEGRATOR', 'LOYALTY', 'MOBILE_APP_LOYALTY', 'ORDERING_WEB', 'DELIVERY_PANEL',
152
+ ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orderingstack/ordering-types",
3
- "version": "1.22.0",
3
+ "version": "1.23.0",
4
4
  "description": "Typescript types for @orderingstack",
5
5
  "types": "dist/esm/index.d.ts",
6
6
  "main": "dist/cjs/index.js",