@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.
@@ -169,6 +169,10 @@ export interface SOGetStoreInfoResponse {
169
169
  * false: 不開啟
170
170
  */
171
171
  storePointsEnabled?: boolean;
172
+ /**
173
+ * 點數名稱
174
+ */
175
+ storePointsName?: string;
172
176
  }
173
177
  /*******************************/
174
178
  /*******************************/
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
- onlineAvailableStoreUserGroup?: string;
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.40.0-alpha.6",
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": {