resurgence-data 1.0.21 → 1.0.23
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/dist/authentication/authentication.dto.js +1 -1
- package/dist/authentication/invite.dto.js +1 -1
- package/dist/biller/biller-response.dto.d.ts +160 -0
- package/dist/biller/biller-response.dto.js +45 -0
- package/dist/biller/biller.dto.d.ts +219 -0
- package/dist/biller/biller.dto.js +1440 -0
- package/dist/biller/index.d.ts +2 -0
- package/dist/biller/index.js +18 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/dist/user/user.js +2 -2
- package/package.json +1 -1
- package/src/authentication/authentication.dto.ts +1 -1
- package/src/authentication/invite.dto.ts +1 -1
- package/src/biller/biller-response.dto.ts +173 -0
- package/src/biller/biller.dto.ts +1276 -0
- package/src/biller/index.ts +2 -0
- package/src/index.ts +1 -0
- package/src/user/user.ts +2 -2
package/src/index.ts
CHANGED
package/src/user/user.ts
CHANGED
@@ -22,12 +22,12 @@ export class CreateUserDTO {
|
|
22
22
|
|
23
23
|
@IsOptional() // Allows the property to be optional
|
24
24
|
@IsString({ message: "Please provide a valid link for the avatar (optional)." })
|
25
|
-
@ApiProperty({ description: "User's profile link" })
|
25
|
+
@ApiProperty({ description: "User's profile link", required: false })
|
26
26
|
avatarUrl?: string;
|
27
27
|
|
28
28
|
@IsOptional()
|
29
29
|
@IsBoolean({ message: "Corporate should be true or false (optional)." })
|
30
|
-
@ApiProperty({ description: "Corporate or private user" })
|
30
|
+
@ApiProperty({ description: "Corporate or private user", required: false })
|
31
31
|
corporate?: boolean;
|
32
32
|
|
33
33
|
@IsString({ message: "Account type is required. Please specify it." })
|