@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.
- package/dist/cjs/index.d.ts +13 -0
- package/dist/cjs/index.js +4 -1
- package/dist/esm/index.d.ts +13 -0
- package/dist/esm/index.js +3 -0
- package/package.json +1 -1
package/dist/cjs/index.d.ts
CHANGED
|
@@ -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
|
+
];
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -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
|
+
];
|