@trusted-solutions/sdit.models 0.40.0-alpha.6 → 0.41.0-alpha.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/lambda/online-ordering.d.ts +4 -0
- package/models/store.d.ts +4 -2
- package/package.json +1 -1
package/models/store.d.ts
CHANGED
|
@@ -194,10 +194,12 @@ export interface Store {
|
|
|
194
194
|
onlineAvailableFederatedProvider?: string;
|
|
195
195
|
/** 是否開放訪客點餐 */
|
|
196
196
|
onlineAvailableGuest?: boolean;
|
|
197
|
-
/**
|
|
198
|
-
|
|
197
|
+
/** Cognito client Id */
|
|
198
|
+
onlineUserPoolWebClientId?: string;
|
|
199
199
|
/** 是否啟用集點 */
|
|
200
200
|
onlineStorePointsEnabled?: boolean;
|
|
201
|
+
/** 點數名稱 */
|
|
202
|
+
onlineStorePointsName?: string;
|
|
201
203
|
}
|
|
202
204
|
export interface SimpleStore {
|
|
203
205
|
id: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trusted-solutions/sdit.models",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.41.0-alpha.0",
|
|
4
4
|
"description": "TODO: Give a short introduction of your project. Let this section explain the objectives or the motivation behind this project.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|