@erp-galoper/types 1.0.1084 → 1.0.1085
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/openapi.ts +12 -3
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -21182,9 +21182,15 @@ export interface components {
|
|
|
21182
21182
|
PasswordChangeSchema: {
|
|
21183
21183
|
/** Currentpassword */
|
|
21184
21184
|
currentPassword: string;
|
|
21185
|
-
/**
|
|
21185
|
+
/**
|
|
21186
|
+
* Newpassword
|
|
21187
|
+
* @description Password must be at least 8 characters long, cannot be entirely numeric, cannot be a common password, and must not be too similar to your username or personal information (first name, last name).
|
|
21188
|
+
*/
|
|
21186
21189
|
newPassword: string;
|
|
21187
|
-
/**
|
|
21190
|
+
/**
|
|
21191
|
+
* Confirmnewpassword
|
|
21192
|
+
* @description Password must be at least 8 characters long, cannot be entirely numeric, cannot be a common password, and must not be too similar to your username or personal information (first name, last name).
|
|
21193
|
+
*/
|
|
21188
21194
|
confirmNewPassword: string;
|
|
21189
21195
|
/** Userid */
|
|
21190
21196
|
userId: number;
|
|
@@ -21400,7 +21406,10 @@ export interface components {
|
|
|
21400
21406
|
defaultBranch: number;
|
|
21401
21407
|
/** Assignedbranches */
|
|
21402
21408
|
assignedBranches: number[];
|
|
21403
|
-
/**
|
|
21409
|
+
/**
|
|
21410
|
+
* Password
|
|
21411
|
+
* @description Password must be at least 8 characters long, cannot be entirely numeric, cannot be a common password, and must not be too similar to your username or personal information (first name, last name).
|
|
21412
|
+
*/
|
|
21404
21413
|
password: string;
|
|
21405
21414
|
/** Group */
|
|
21406
21415
|
group: number;
|