@mivis/petmart-api 1.2.136 → 1.2.137
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 +6 -0
package/package.json
CHANGED
package/type.d.ts
CHANGED
|
@@ -152,6 +152,8 @@ declare namespace Components {
|
|
|
152
152
|
|
|
153
153
|
export interface IAdminCreateUser {
|
|
154
154
|
name: string;
|
|
155
|
+
surname: string;
|
|
156
|
+
patronymic?: string;
|
|
155
157
|
email: string;
|
|
156
158
|
tel: number;
|
|
157
159
|
password: string;
|
|
@@ -160,6 +162,8 @@ declare namespace Components {
|
|
|
160
162
|
export interface IAdminUpdateUser {
|
|
161
163
|
_id: string;
|
|
162
164
|
name: string;
|
|
165
|
+
surname: string;
|
|
166
|
+
patronymic?: string;
|
|
163
167
|
tel: number;
|
|
164
168
|
email: string;
|
|
165
169
|
}
|
|
@@ -186,6 +190,8 @@ declare namespace Components {
|
|
|
186
190
|
|
|
187
191
|
export interface IUpdateUser {
|
|
188
192
|
name: string;
|
|
193
|
+
surname: string;
|
|
194
|
+
patronymic?: string;
|
|
189
195
|
tel: number;
|
|
190
196
|
email: string;
|
|
191
197
|
birthday?: Date;
|