@orderingstack/ordering-types 1.26.1 → 1.27.1

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.
@@ -301,7 +301,8 @@ export declare enum EOrderSource {
301
301
  BOLT = "BOLT",
302
302
  TAZZ = "TAZZ",
303
303
  POS = "POS",
304
- UPMENU = "UPMENU"
304
+ UPMENU = "UPMENU",
305
+ APP = "APP"
305
306
  }
306
307
  export declare enum EChannelName {
307
308
  DINE_IN = "DINE_IN",
@@ -731,4 +732,7 @@ export interface IModule {
731
732
  updatedBy?: string;
732
733
  user?: string;
733
734
  extra?: IStringKeyRecord<string>;
735
+ config?: {
736
+ [key: string]: any;
737
+ };
734
738
  }
package/dist/cjs/index.js CHANGED
@@ -94,6 +94,7 @@ var EOrderSource;
94
94
  EOrderSource["TAZZ"] = "TAZZ";
95
95
  EOrderSource["POS"] = "POS";
96
96
  EOrderSource["UPMENU"] = "UPMENU";
97
+ EOrderSource["APP"] = "APP";
97
98
  })(EOrderSource = exports.EOrderSource || (exports.EOrderSource = {}));
98
99
  var EChannelName;
99
100
  (function (EChannelName) {
@@ -301,7 +301,8 @@ export declare enum EOrderSource {
301
301
  BOLT = "BOLT",
302
302
  TAZZ = "TAZZ",
303
303
  POS = "POS",
304
- UPMENU = "UPMENU"
304
+ UPMENU = "UPMENU",
305
+ APP = "APP"
305
306
  }
306
307
  export declare enum EChannelName {
307
308
  DINE_IN = "DINE_IN",
@@ -731,4 +732,7 @@ export interface IModule {
731
732
  updatedBy?: string;
732
733
  user?: string;
733
734
  extra?: IStringKeyRecord<string>;
735
+ config?: {
736
+ [key: string]: any;
737
+ };
734
738
  }
package/dist/esm/index.js CHANGED
@@ -77,6 +77,7 @@ export var EOrderSource;
77
77
  EOrderSource["TAZZ"] = "TAZZ";
78
78
  EOrderSource["POS"] = "POS";
79
79
  EOrderSource["UPMENU"] = "UPMENU";
80
+ EOrderSource["APP"] = "APP";
80
81
  })(EOrderSource || (EOrderSource = {}));
81
82
  export var EChannelName;
82
83
  (function (EChannelName) {
package/package.json CHANGED
@@ -1,23 +1,22 @@
1
- {
2
- "name": "@orderingstack/ordering-types",
3
- "version": "1.26.1",
4
- "description": "Typescript types for @orderingstack",
5
- "types": "dist/esm/index.d.ts",
6
- "main": "dist/cjs/index.js",
7
- "module": "dist/esm/index.js",
8
- "files": [
9
- "dist/"
10
- ],
11
- "scripts": {
12
- "build": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
13
- "prepublishOnly": "npm run build"
14
- },
15
- "author": "Tomasz Rojek <tomasz.rojek@e3.pl>",
16
- "devDependencies": {
17
- "@types/react": "^18.0.26",
18
- "react": "^18.2.0",
19
- "react-hook-form": "^7.42.0",
20
- "react-spring": "^9.6.1",
21
- "typescript": "next"
22
- }
1
+ {
2
+ "name": "@orderingstack/ordering-types",
3
+ "version": "1.27.1",
4
+ "description": "Typescript types for @orderingstack",
5
+ "types": "dist/esm/index.d.ts",
6
+ "main": "dist/cjs/index.js",
7
+ "module": "dist/esm/index.js",
8
+ "files": [
9
+ "dist/"
10
+ ],
11
+ "author": "Tomasz Rojek <tomasz.rojek@e3.pl>",
12
+ "devDependencies": {
13
+ "@types/react": "^18.0.26",
14
+ "react": "^18.2.0",
15
+ "react-hook-form": "^7.42.0",
16
+ "react-spring": "^9.6.1",
17
+ "typescript": "next"
18
+ },
19
+ "scripts": {
20
+ "build": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json"
21
+ }
23
22
  }