@munchi_oy/core 1.3.1 → 1.3.3
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/generated/api.d.ts +6 -36
- package/dist/generated/api.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/dist/src/version.d.ts +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/generated/.openapi-generator/FILES +8 -0
- package/generated/.openapi-generator/VERSION +1 -0
- package/generated/.openapi-generator-ignore +23 -0
- package/generated/api.ts +34386 -0
- package/generated/base.ts +72 -0
- package/generated/common.ts +150 -0
- package/generated/configuration.ts +101 -0
- package/generated/git_push.sh +57 -0
- package/generated/index.ts +18 -0
- package/package.json +3 -2
- package/src/version.ts +1 -1
package/dist/generated/api.d.ts
CHANGED
|
@@ -55,30 +55,11 @@ export interface AblyBusinessEventPayloadDto {
|
|
|
55
55
|
* @memberof AblyBusinessEventPayloadDto
|
|
56
56
|
*/
|
|
57
57
|
'timestamp': string;
|
|
58
|
-
/**
|
|
59
|
-
*
|
|
60
|
-
* @type {object}
|
|
61
|
-
* @memberof AblyBusinessEventPayloadDto
|
|
62
|
-
*/
|
|
63
|
-
'productUpdates'?: object;
|
|
64
58
|
}
|
|
65
59
|
export declare const ActionEnum: {
|
|
66
|
-
readonly ProductUpdated: "PRODUCT_UPDATED";
|
|
67
|
-
readonly ProductDeleted: "PRODUCT_DELETED";
|
|
68
|
-
readonly MenuUpdated: "MENU_UPDATED";
|
|
69
|
-
readonly CategoryUpdated: "CATEGORY_UPDATED";
|
|
70
|
-
readonly ExtraUpdated: "EXTRA_UPDATED";
|
|
71
|
-
readonly ExtraDeleted: "EXTRA_DELETED";
|
|
72
|
-
readonly OptionUpdated: "OPTION_UPDATED";
|
|
73
|
-
readonly OptionDeleted: "OPTION_DELETED";
|
|
74
|
-
readonly SuboptionUpdated: "SUBOPTION_UPDATED";
|
|
75
|
-
readonly SuboptionDeleted: "SUBOPTION_DELETED";
|
|
76
|
-
readonly SiteUpdated: "SITE_UPDATED";
|
|
77
|
-
readonly CategoryDeleted: "CATEGORY_DELETED";
|
|
78
|
-
readonly ProductCreated: "PRODUCT_CREATED";
|
|
79
60
|
readonly BusinessConfigUpdated: "BUSINESS_CONFIG_UPDATED";
|
|
80
|
-
readonly DataSyncRequired: "
|
|
81
|
-
readonly PosSessionUpdated: "
|
|
61
|
+
readonly DataSyncRequired: "DATA_SYNC_REQUIRED";
|
|
62
|
+
readonly PosSessionUpdated: "POS_SESSION_UPDATED";
|
|
82
63
|
readonly BusinessDataUpdated: "BUSINESS_DATA_UPDATED";
|
|
83
64
|
};
|
|
84
65
|
export type ActionEnum = typeof ActionEnum[keyof typeof ActionEnum];
|
|
@@ -92,6 +73,7 @@ export declare const EntityTypeEnum: {
|
|
|
92
73
|
readonly Shift: "shift";
|
|
93
74
|
readonly Employee: "employee";
|
|
94
75
|
readonly Config: "config";
|
|
76
|
+
readonly Business: "business";
|
|
95
77
|
};
|
|
96
78
|
export type EntityTypeEnum = typeof EntityTypeEnum[keyof typeof EntityTypeEnum];
|
|
97
79
|
/**
|
|
@@ -857,22 +839,9 @@ export interface BusinessDto {
|
|
|
857
839
|
* @enum {string}
|
|
858
840
|
*/
|
|
859
841
|
export declare const BusinessEventAction: {
|
|
860
|
-
readonly ProductUpdated: "PRODUCT_UPDATED";
|
|
861
|
-
readonly ProductDeleted: "PRODUCT_DELETED";
|
|
862
|
-
readonly MenuUpdated: "MENU_UPDATED";
|
|
863
|
-
readonly CategoryUpdated: "CATEGORY_UPDATED";
|
|
864
|
-
readonly ExtraUpdated: "EXTRA_UPDATED";
|
|
865
|
-
readonly ExtraDeleted: "EXTRA_DELETED";
|
|
866
|
-
readonly OptionUpdated: "OPTION_UPDATED";
|
|
867
|
-
readonly OptionDeleted: "OPTION_DELETED";
|
|
868
|
-
readonly SuboptionUpdated: "SUBOPTION_UPDATED";
|
|
869
|
-
readonly SuboptionDeleted: "SUBOPTION_DELETED";
|
|
870
|
-
readonly SiteUpdated: "SITE_UPDATED";
|
|
871
|
-
readonly CategoryDeleted: "CATEGORY_DELETED";
|
|
872
|
-
readonly ProductCreated: "PRODUCT_CREATED";
|
|
873
842
|
readonly BusinessConfigUpdated: "BUSINESS_CONFIG_UPDATED";
|
|
874
|
-
readonly DataSyncRequired: "
|
|
875
|
-
readonly PosSessionUpdated: "
|
|
843
|
+
readonly DataSyncRequired: "DATA_SYNC_REQUIRED";
|
|
844
|
+
readonly PosSessionUpdated: "POS_SESSION_UPDATED";
|
|
876
845
|
readonly BusinessDataUpdated: "BUSINESS_DATA_UPDATED";
|
|
877
846
|
};
|
|
878
847
|
export type BusinessEventAction = typeof BusinessEventAction[keyof typeof BusinessEventAction];
|
|
@@ -4356,6 +4325,7 @@ export declare const EntityType: {
|
|
|
4356
4325
|
readonly Shift: "shift";
|
|
4357
4326
|
readonly Employee: "employee";
|
|
4358
4327
|
readonly Config: "config";
|
|
4328
|
+
readonly Business: "business";
|
|
4359
4329
|
};
|
|
4360
4330
|
export type EntityType = typeof EntityType[keyof typeof EntityType];
|
|
4361
4331
|
/**
|