@trusted-solutions/sdit.models 0.57.2 → 0.57.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/lambda/online-ordering.d.ts +2 -2
- package/models/store.d.ts +1 -1
- package/package.json +1 -1
|
@@ -199,11 +199,11 @@ export interface SOGetStoreInfoResponse {
|
|
|
199
199
|
/** 外帶服務費 0~100(%) */
|
|
200
200
|
takeoutServiceChargePercent?: number;
|
|
201
201
|
/**
|
|
202
|
-
*
|
|
202
|
+
* 服務費計算基準,無值時預設subtotal
|
|
203
203
|
* "subtotal": 先折扣再服務費
|
|
204
204
|
* "subtotal+discount": 先服務費再折扣。
|
|
205
205
|
*/
|
|
206
|
-
serviceBase
|
|
206
|
+
serviceBase?: "subtotal" | "subtotal+discount";
|
|
207
207
|
}
|
|
208
208
|
/*******************************/
|
|
209
209
|
/*******************************/
|
package/models/store.d.ts
CHANGED
|
@@ -236,7 +236,7 @@ export interface Store {
|
|
|
236
236
|
* "subtotal": 先折扣再服務費
|
|
237
237
|
* "subtotal+discount": 先服務費再折扣。
|
|
238
238
|
*/
|
|
239
|
-
serviceBase?: "subtotal | subtotal+discount";
|
|
239
|
+
serviceBase?: "subtotal" | "subtotal+discount";
|
|
240
240
|
}
|
|
241
241
|
export declare enum PointProvider {
|
|
242
242
|
Posky = "Posky",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trusted-solutions/sdit.models",
|
|
3
|
-
"version": "0.57.
|
|
3
|
+
"version": "0.57.3",
|
|
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": {
|