@trusted-solutions/sdit.models 0.61.0-alpha.5 → 0.61.1-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.
@@ -7,6 +7,7 @@ export interface CreateUserRequest {
7
7
  temporaryPassword: string;
8
8
  group: UserGroupEnum;
9
9
  userAttributes?: UserAttribute[];
10
+ suppressEmail?: boolean;
10
11
  }
11
12
  export interface EnableUserRequest {
12
13
  userPoolId: string;
package/models/order.d.ts CHANGED
@@ -270,10 +270,15 @@ export interface OrderItemChangelog {
270
270
  }
271
271
  export interface OrderItemAttr {
272
272
  attributeId: string;
273
- attributeCategoryId: string;
274
273
  name: string;
274
+ /** attr單價 */
275
275
  additionalAmount: number;
276
+ /** 當舊資料此欄為undefined時,quantity應視為1 */
276
277
  quantity?: number;
278
+ /**
279
+ * attr單價 * quantity
280
+ * 舊資料此欄為undefined時,quantity應視為1,totalAmount為additionalAmount
281
+ */
277
282
  totalAmount?: number;
278
283
  }
279
284
  export interface OrderPayment {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trusted-solutions/sdit.models",
3
- "version": "0.61.0-alpha.5",
3
+ "version": "0.61.1-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": {