@trusted-solutions/sdit.models 0.44.2 → 0.45.0-alpha.1
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/models/customer.d.ts +5 -0
- package/package.json +1 -1
package/models/customer.d.ts
CHANGED
|
@@ -7,6 +7,9 @@ export interface Customer {
|
|
|
7
7
|
id?: string;
|
|
8
8
|
name: string;
|
|
9
9
|
phone: string;
|
|
10
|
+
/** Pool ID 不填,為早期cognito User Pool */
|
|
11
|
+
memberPoolNo?: string;
|
|
12
|
+
/** 同一個Pool下的唯一user ID */
|
|
10
13
|
cognitoUserId?: string;
|
|
11
14
|
cardNo?: string;
|
|
12
15
|
gender?: CustomerGenderEnum;
|
|
@@ -34,4 +37,6 @@ export interface ProductOrderRate {
|
|
|
34
37
|
export interface CustomerPointDetail {
|
|
35
38
|
pointsName: string;
|
|
36
39
|
redeemPoints: number;
|
|
40
|
+
redeemAmount: number;
|
|
41
|
+
redeemDatetime: string;
|
|
37
42
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trusted-solutions/sdit.models",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.45.0-alpha.1",
|
|
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": {
|