@trusted-solutions/sdit.models 0.62.0-alpha.7 → 0.63.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 +2 -2
- package/models/store.d.ts +2 -0
- package/models/store.js.map +1 -1
- package/package.json +1 -1
|
@@ -235,7 +235,7 @@ export interface SOGetPopularProductsRequest {
|
|
|
235
235
|
when?: number;
|
|
236
236
|
serveType?: ServeType;
|
|
237
237
|
}
|
|
238
|
-
export interface SOGetPopularProductsResponse extends MultipleItems<
|
|
238
|
+
export interface SOGetPopularProductsResponse extends MultipleItems<string> {
|
|
239
239
|
}
|
|
240
240
|
export interface SOGetBestPairingsRequest {
|
|
241
241
|
storeId: string;
|
|
@@ -243,7 +243,7 @@ export interface SOGetBestPairingsRequest {
|
|
|
243
243
|
when?: number;
|
|
244
244
|
serveType?: ServeType;
|
|
245
245
|
}
|
|
246
|
-
export interface SOGetBestPairingsResponse extends MultipleItems<
|
|
246
|
+
export interface SOGetBestPairingsResponse extends MultipleItems<string> {
|
|
247
247
|
}
|
|
248
248
|
export interface SOGetMyMemberCouponsRequest {
|
|
249
249
|
storeId: string;
|
package/models/store.d.ts
CHANGED
|
@@ -215,6 +215,8 @@ export interface Store {
|
|
|
215
215
|
onlineStoreDeliveryFreeThresholdAmount?: number;
|
|
216
216
|
/** 最大外送距離(km) */
|
|
217
217
|
onlineStoreDeliveryDistanceLimit?: number;
|
|
218
|
+
/** LINE LIFF ID */
|
|
219
|
+
onlineLiffId?: string;
|
|
218
220
|
/** Cognito user pool 登入的 OIDC provider */
|
|
219
221
|
onlineAvailableFederatedProvider?: string;
|
|
220
222
|
/** 是否開放訪客點餐 */
|
package/models/store.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"store.js","sourceRoot":"","sources":["../../../projects/sdit-model-lib/src/models/store.ts"],"names":[],"mappings":";;;AAEA,oCAAmH;
|
|
1
|
+
{"version":3,"file":"store.js","sourceRoot":"","sources":["../../../projects/sdit-model-lib/src/models/store.ts"],"names":[],"mappings":";;;AAEA,oCAAmH;AAoSnH,IAAY,aAGX;AAHD,WAAY,aAAa;IACvB,gCAAe,CAAA;IACf,kDAAiC,CAAA;AACnC,CAAC,EAHW,aAAa,GAAb,qBAAa,KAAb,qBAAa,QAGxB"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trusted-solutions/sdit.models",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.63.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": {
|