@mivis/petmart-api 1.2.44 → 1.2.46
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/package.json +1 -1
- package/type.d.ts +5 -4
package/package.json
CHANGED
package/type.d.ts
CHANGED
|
@@ -108,10 +108,10 @@ declare namespace Components {
|
|
|
108
108
|
|
|
109
109
|
export interface IUser {
|
|
110
110
|
_id: string;
|
|
111
|
-
tel
|
|
112
|
-
name
|
|
111
|
+
tel?: number;
|
|
112
|
+
name?: string;
|
|
113
113
|
birthday?: Date;
|
|
114
|
-
email
|
|
114
|
+
email?: string;
|
|
115
115
|
role: ERoles;
|
|
116
116
|
vk_id?: number;
|
|
117
117
|
createdAt: Date;
|
|
@@ -602,7 +602,8 @@ declare namespace Components {
|
|
|
602
602
|
}
|
|
603
603
|
|
|
604
604
|
export enum EComplaintsReason {
|
|
605
|
-
|
|
605
|
+
NOT_MATCH_TO_DESC = 'NOT_MATCH_TO_DESC',
|
|
606
|
+
INCORRECT_PHOTO = 'INCORRECT_PHOTO',
|
|
606
607
|
DAMAGED_GOODS = 'DAMAGED_GOODS',
|
|
607
608
|
POOR_QUALITY = 'POOR_QUALITY',
|
|
608
609
|
FRAUD = 'FRAUD',
|