@ballistix.digital/types-pbc-react 0.36.0 → 0.37.0

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.
Files changed (38) hide show
  1. package/dist/dto/invitation/changelog/invitationChangelog.dto.d.ts +18 -0
  2. package/dist/dto/invitation/changelog/invitationChangelog.dto.js +77 -0
  3. package/dist/dto/invitation/changelog/invitationChangelog.dto.js.map +1 -0
  4. package/dist/dto/invitation/changelog/invitationChangelogEmbedded.dto.d.ts +5 -0
  5. package/dist/dto/invitation/changelog/invitationChangelogEmbedded.dto.js +31 -0
  6. package/dist/dto/invitation/changelog/invitationChangelogEmbedded.dto.js.map +1 -0
  7. package/dist/dto/invitation/changelog/invitationChangelogPage.dto.d.ts +13 -0
  8. package/dist/dto/invitation/changelog/invitationChangelogPage.dto.js +28 -0
  9. package/dist/dto/invitation/changelog/invitationChangelogPage.dto.js.map +1 -0
  10. package/dist/dto/invitation/createInvitation.dto.d.ts +7 -0
  11. package/dist/dto/invitation/createInvitation.dto.js +53 -0
  12. package/dist/dto/invitation/createInvitation.dto.js.map +1 -0
  13. package/dist/dto/invitation/invitation.dto.d.ts +16 -0
  14. package/dist/dto/invitation/invitation.dto.js +71 -0
  15. package/dist/dto/invitation/invitation.dto.js.map +1 -0
  16. package/dist/dto/invitation/invitationEmbedded.dto.d.ts +7 -0
  17. package/dist/dto/invitation/invitationEmbedded.dto.js +38 -0
  18. package/dist/dto/invitation/invitationEmbedded.dto.js.map +1 -0
  19. package/dist/dto/invitation/invitationPage.dto.d.ts +13 -0
  20. package/dist/dto/invitation/invitationPage.dto.js +28 -0
  21. package/dist/dto/invitation/invitationPage.dto.js.map +1 -0
  22. package/dist/dto/myVDLUser/myVDLUser.dto.d.ts +5 -0
  23. package/dist/dto/myVDLUser/myVDLUser.dto.js +33 -0
  24. package/dist/dto/myVDLUser/myVDLUser.dto.js.map +1 -0
  25. package/dist/dto/myVDLUser/myVDLUserPage.dto.d.ts +13 -0
  26. package/dist/dto/myVDLUser/myVDLUserPage.dto.js +28 -0
  27. package/dist/dto/myVDLUser/myVDLUserPage.dto.js.map +1 -0
  28. package/dist/dto/user/createUser.dto.d.ts +1 -1
  29. package/dist/dto/user/createUser.dto.js +1 -1
  30. package/dist/dto/user/createUser.dto.js.map +1 -1
  31. package/dist/enum/invitationStatus.enum.d.ts +7 -0
  32. package/dist/enum/invitationStatus.enum.js +12 -0
  33. package/dist/enum/invitationStatus.enum.js.map +1 -0
  34. package/dist/index.d.ts +11 -1
  35. package/dist/index.js +25 -5
  36. package/dist/index.js.map +1 -1
  37. package/dist/tsconfig.tsbuildinfo +1 -1
  38. package/package.json +1 -1
@@ -0,0 +1,18 @@
1
+ import { ChangelogOperationEnum } from '../../../enum/changelogOperationEnum';
2
+ import { InvitationChangelogEmbeddedDto } from './invitationChangelogEmbedded.dto';
3
+ import { InvitationStatusEnum } from "../../../enum/invitationStatus.enum";
4
+ declare const InvitationChangelogDto_base: import("../../generic/base.dto").BaseDtoType<InvitationChangelogEmbeddedDto>;
5
+ export declare class InvitationChangelogDto extends InvitationChangelogDto_base {
6
+ id: string;
7
+ operation: ChangelogOperationEnum;
8
+ status: InvitationStatusEnum;
9
+ email: string;
10
+ firstName: string;
11
+ lastName: string;
12
+ retryCount: number;
13
+ maxRetries: number;
14
+ errorMessage?: string;
15
+ hasFullAccess: boolean;
16
+ auditId: string;
17
+ }
18
+ export {};
@@ -0,0 +1,77 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.InvitationChangelogDto = void 0;
13
+ const base_dto_1 = require("../../generic/base.dto");
14
+ const class_transformer_1 = require("class-transformer");
15
+ const nestjs_1 = require("../../../nestjs");
16
+ const changelogOperationEnum_1 = require("../../../enum/changelogOperationEnum");
17
+ const invitationChangelogEmbedded_dto_1 = require("./invitationChangelogEmbedded.dto");
18
+ const invitationStatus_enum_1 = require("../../../enum/invitationStatus.enum");
19
+ class InvitationChangelogDto extends (0, base_dto_1.BaseDto)(invitationChangelogEmbedded_dto_1.InvitationChangelogEmbeddedDto) {
20
+ }
21
+ exports.InvitationChangelogDto = InvitationChangelogDto;
22
+ __decorate([
23
+ (0, nestjs_1.ApiProperty)({ type: String, required: true, format: 'uuid' }),
24
+ (0, class_transformer_1.Expose)(),
25
+ __metadata("design:type", String)
26
+ ], InvitationChangelogDto.prototype, "id", void 0);
27
+ __decorate([
28
+ (0, nestjs_1.ApiProperty)({ enum: changelogOperationEnum_1.ChangelogOperationEnum, required: true }),
29
+ (0, class_transformer_1.Expose)(),
30
+ __metadata("design:type", String)
31
+ ], InvitationChangelogDto.prototype, "operation", void 0);
32
+ __decorate([
33
+ (0, nestjs_1.ApiProperty)({ enum: invitationStatus_enum_1.InvitationStatusEnum, required: true }),
34
+ (0, class_transformer_1.Expose)(),
35
+ __metadata("design:type", String)
36
+ ], InvitationChangelogDto.prototype, "status", void 0);
37
+ __decorate([
38
+ (0, nestjs_1.ApiProperty)({ type: String, required: true }),
39
+ (0, class_transformer_1.Expose)(),
40
+ __metadata("design:type", String)
41
+ ], InvitationChangelogDto.prototype, "email", void 0);
42
+ __decorate([
43
+ (0, nestjs_1.ApiProperty)({ type: String, required: true }),
44
+ (0, class_transformer_1.Expose)(),
45
+ __metadata("design:type", String)
46
+ ], InvitationChangelogDto.prototype, "firstName", void 0);
47
+ __decorate([
48
+ (0, nestjs_1.ApiProperty)({ type: String, required: true }),
49
+ (0, class_transformer_1.Expose)(),
50
+ __metadata("design:type", String)
51
+ ], InvitationChangelogDto.prototype, "lastName", void 0);
52
+ __decorate([
53
+ (0, nestjs_1.ApiProperty)({ type: Number, required: true }),
54
+ (0, class_transformer_1.Expose)(),
55
+ __metadata("design:type", Number)
56
+ ], InvitationChangelogDto.prototype, "retryCount", void 0);
57
+ __decorate([
58
+ (0, nestjs_1.ApiProperty)({ type: Number, required: true }),
59
+ (0, class_transformer_1.Expose)(),
60
+ __metadata("design:type", Number)
61
+ ], InvitationChangelogDto.prototype, "maxRetries", void 0);
62
+ __decorate([
63
+ (0, nestjs_1.ApiProperty)({ type: String, required: false }),
64
+ (0, class_transformer_1.Expose)(),
65
+ __metadata("design:type", String)
66
+ ], InvitationChangelogDto.prototype, "errorMessage", void 0);
67
+ __decorate([
68
+ (0, nestjs_1.ApiProperty)({ type: Boolean, required: true }),
69
+ (0, class_transformer_1.Expose)(),
70
+ __metadata("design:type", Boolean)
71
+ ], InvitationChangelogDto.prototype, "hasFullAccess", void 0);
72
+ __decorate([
73
+ (0, nestjs_1.ApiProperty)({ type: String, required: true, format: 'uuid' }),
74
+ (0, class_transformer_1.Expose)(),
75
+ __metadata("design:type", String)
76
+ ], InvitationChangelogDto.prototype, "auditId", void 0);
77
+ //# sourceMappingURL=invitationChangelog.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"invitationChangelog.dto.js","sourceRoot":"","sources":["../../../../src/dto/invitation/changelog/invitationChangelog.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAiD;AACjD,yDAA2C;AAC3C,4CAA8C;AAC9C,iFAA8E;AAC9E,uFAAmF;AACnF,+EAAyE;AAEzE,MAAa,sBAAuB,SAAQ,IAAA,kBAAO,EAAC,gEAA8B,CAAC;CA4ClF;AA5CD,wDA4CC;AAzCA;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;IAC7D,IAAA,0BAAM,GAAE;;kDACG;AAIZ;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,+CAAsB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7D,IAAA,0BAAM,GAAE;;yDAC0B;AAInC;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,4CAAoB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC3D,IAAA,0BAAM,GAAE;;sDACqB;AAI9B;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;qDACM;AAIf;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;yDACU;AAInB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;wDACS;AAIlB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;0DACW;AAIpB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;0DACW;AAIpB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IAC9C,IAAA,0BAAM,GAAE;;4DACa;AAItB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC9C,IAAA,0BAAM,GAAE;;6DACe;AAIxB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;IAC7D,IAAA,0BAAM,GAAE;;uDACQ"}
@@ -0,0 +1,5 @@
1
+ import { UserDto } from '../../user/user.dto';
2
+ export declare class InvitationChangelogEmbeddedDto {
3
+ createdBy?: UserDto;
4
+ updatedBy?: UserDto;
5
+ }
@@ -0,0 +1,31 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.InvitationChangelogEmbeddedDto = void 0;
13
+ const nestjs_1 = require("../../../nestjs");
14
+ const class_transformer_1 = require("class-transformer");
15
+ const user_dto_1 = require("../../user/user.dto");
16
+ class InvitationChangelogEmbeddedDto {
17
+ }
18
+ exports.InvitationChangelogEmbeddedDto = InvitationChangelogEmbeddedDto;
19
+ __decorate([
20
+ (0, nestjs_1.ApiProperty)({ type: () => user_dto_1.UserDto, required: false }),
21
+ (0, class_transformer_1.Type)(() => user_dto_1.UserDto),
22
+ (0, class_transformer_1.Expose)(),
23
+ __metadata("design:type", user_dto_1.UserDto)
24
+ ], InvitationChangelogEmbeddedDto.prototype, "createdBy", void 0);
25
+ __decorate([
26
+ (0, nestjs_1.ApiProperty)({ type: () => user_dto_1.UserDto, required: false }),
27
+ (0, class_transformer_1.Type)(() => user_dto_1.UserDto),
28
+ (0, class_transformer_1.Expose)(),
29
+ __metadata("design:type", user_dto_1.UserDto)
30
+ ], InvitationChangelogEmbeddedDto.prototype, "updatedBy", void 0);
31
+ //# sourceMappingURL=invitationChangelogEmbedded.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"invitationChangelogEmbedded.dto.js","sourceRoot":"","sources":["../../../../src/dto/invitation/changelog/invitationChangelogEmbedded.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,4CAA8C;AAC9C,yDAAiD;AACjD,kDAA8C;AAE9C,MAAa,8BAA8B;CAU1C;AAVD,wEAUC;AANA;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,kBAAO,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IACrD,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,kBAAO,CAAC;IACnB,IAAA,0BAAM,GAAE;8BACG,kBAAO;iEAAC;AAKpB;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,kBAAO,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IACrD,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,kBAAO,CAAC;IACnB,IAAA,0BAAM,GAAE;8BACG,kBAAO;iEAAC"}
@@ -0,0 +1,13 @@
1
+ import { InvitationChangelogDto } from './invitationChangelog.dto';
2
+ declare class EmbeddedInvitationChangelog {
3
+ invitationChangelogs?: InvitationChangelogDto[];
4
+ }
5
+ declare const InvitationChangelogPageDto_base: {
6
+ new (): {
7
+ _page: import("../../..").PageInfoDto;
8
+ _embedded: EmbeddedInvitationChangelog;
9
+ };
10
+ };
11
+ export declare class InvitationChangelogPageDto extends InvitationChangelogPageDto_base {
12
+ }
13
+ export {};
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.InvitationChangelogPageDto = void 0;
13
+ const class_transformer_1 = require("class-transformer");
14
+ const nestjs_1 = require("../../../nestjs");
15
+ const page_dto_1 = require("../../generic/page.dto");
16
+ const invitationChangelog_dto_1 = require("./invitationChangelog.dto");
17
+ class EmbeddedInvitationChangelog {
18
+ }
19
+ __decorate([
20
+ (0, nestjs_1.ApiProperty)({ type: () => [invitationChangelog_dto_1.InvitationChangelogDto], required: false }),
21
+ (0, class_transformer_1.Type)(() => invitationChangelog_dto_1.InvitationChangelogDto),
22
+ (0, class_transformer_1.Expose)({ name: 'items' }),
23
+ __metadata("design:type", Array)
24
+ ], EmbeddedInvitationChangelog.prototype, "invitationChangelogs", void 0);
25
+ class InvitationChangelogPageDto extends (0, page_dto_1.PageDto)(EmbeddedInvitationChangelog) {
26
+ }
27
+ exports.InvitationChangelogPageDto = InvitationChangelogPageDto;
28
+ //# sourceMappingURL=invitationChangelogPage.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"invitationChangelogPage.dto.js","sourceRoot":"","sources":["../../../../src/dto/invitation/changelog/invitationChangelogPage.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAAiD;AACjD,4CAA8C;AAC9C,qDAAiD;AACjD,uEAAmE;AAEnE,MAAM,2BAA2B;CAKhC;AADA;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,CAAC,gDAAsB,CAAC,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IACtE,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,gDAAsB,CAAC;IAClC,IAAA,0BAAM,EAAC,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC;;yEACsB;AAGjD,MAAa,0BAA2B,SAAQ,IAAA,kBAAO,EAAC,2BAA2B,CAAC;CAAG;AAAvF,gEAAuF"}
@@ -0,0 +1,7 @@
1
+ export declare class CreateInvitationDto {
2
+ email: string;
3
+ firstName: string;
4
+ lastName: string;
5
+ hasFullAccess?: boolean;
6
+ auditId: string;
7
+ }
@@ -0,0 +1,53 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.CreateInvitationDto = void 0;
13
+ const nestjs_1 = require("../../nestjs");
14
+ const class_validator_1 = require("class-validator");
15
+ const class_transformer_1 = require("class-transformer");
16
+ class CreateInvitationDto {
17
+ }
18
+ exports.CreateInvitationDto = CreateInvitationDto;
19
+ __decorate([
20
+ (0, nestjs_1.ApiProperty)({ type: String, required: true }),
21
+ (0, class_validator_1.IsEmail)(),
22
+ (0, class_validator_1.Matches)(/^[^+]*$/, {
23
+ message: 'Email addresses with a "+" sign are not allowed.',
24
+ }),
25
+ (0, class_transformer_1.Expose)(),
26
+ __metadata("design:type", String)
27
+ ], CreateInvitationDto.prototype, "email", void 0);
28
+ __decorate([
29
+ (0, nestjs_1.ApiProperty)({ type: String, required: true }),
30
+ (0, class_validator_1.IsString)(),
31
+ (0, class_transformer_1.Expose)(),
32
+ __metadata("design:type", String)
33
+ ], CreateInvitationDto.prototype, "firstName", void 0);
34
+ __decorate([
35
+ (0, nestjs_1.ApiProperty)({ type: String, required: true }),
36
+ (0, class_validator_1.IsString)(),
37
+ (0, class_transformer_1.Expose)(),
38
+ __metadata("design:type", String)
39
+ ], CreateInvitationDto.prototype, "lastName", void 0);
40
+ __decorate([
41
+ (0, nestjs_1.ApiProperty)({ type: Boolean, required: false }),
42
+ (0, class_transformer_1.Expose)(),
43
+ (0, class_validator_1.IsBoolean)(),
44
+ (0, class_validator_1.IsOptional)(),
45
+ __metadata("design:type", Boolean)
46
+ ], CreateInvitationDto.prototype, "hasFullAccess", void 0);
47
+ __decorate([
48
+ (0, nestjs_1.ApiProperty)({ type: String, required: true, format: 'uuid' }),
49
+ (0, class_validator_1.IsUUID)(),
50
+ (0, class_transformer_1.Expose)(),
51
+ __metadata("design:type", String)
52
+ ], CreateInvitationDto.prototype, "auditId", void 0);
53
+ //# sourceMappingURL=createInvitation.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"createInvitation.dto.js","sourceRoot":"","sources":["../../../src/dto/invitation/createInvitation.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yCAA2C;AAC3C,qDAA0F;AAC1F,yDAA2C;AAE3C,MAAa,mBAAmB;CA6B/B;AA7BD,kDA6BC;AAtBA;IANC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,yBAAO,GAAE;IACT,IAAA,yBAAO,EAAC,SAAS,EAAE;QACnB,OAAO,EAAE,kDAAkD;KAC3D,CAAC;IACD,IAAA,0BAAM,GAAE;;kDACM;AAKf;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAQ,GAAE;IACV,IAAA,0BAAM,GAAE;;sDACU;AAKnB;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAQ,GAAE;IACV,IAAA,0BAAM,GAAE;;qDACS;AAMlB;IAJC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IAC/C,IAAA,0BAAM,GAAE;IACR,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;;0DACW;AAKxB;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;IAC7D,IAAA,wBAAM,GAAE;IACR,IAAA,0BAAM,GAAE;;oDACQ"}
@@ -0,0 +1,16 @@
1
+ import { InvitationEmbeddedDto } from './invitationEmbedded.dto';
2
+ import { InvitationStatusEnum } from '../../enum/invitationStatus.enum';
3
+ declare const InvitationDto_base: import("../generic/base.dto").BaseDtoType<InvitationEmbeddedDto>;
4
+ export declare class InvitationDto extends InvitationDto_base {
5
+ id: string;
6
+ status: InvitationStatusEnum;
7
+ email: string;
8
+ firstName: string;
9
+ lastName: string;
10
+ retryCount: number;
11
+ maxRetries: number;
12
+ errorMessage?: string;
13
+ hasFullAccess: boolean;
14
+ auditId: string;
15
+ }
16
+ export {};
@@ -0,0 +1,71 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.InvitationDto = void 0;
13
+ const base_dto_1 = require("../generic/base.dto");
14
+ const class_transformer_1 = require("class-transformer");
15
+ const nestjs_1 = require("../../nestjs");
16
+ const invitationEmbedded_dto_1 = require("./invitationEmbedded.dto");
17
+ const invitationStatus_enum_1 = require("../../enum/invitationStatus.enum");
18
+ class InvitationDto extends (0, base_dto_1.BaseDto)(invitationEmbedded_dto_1.InvitationEmbeddedDto) {
19
+ }
20
+ exports.InvitationDto = InvitationDto;
21
+ __decorate([
22
+ (0, nestjs_1.ApiProperty)({ type: String, required: true, format: 'uuid' }),
23
+ (0, class_transformer_1.Expose)(),
24
+ __metadata("design:type", String)
25
+ ], InvitationDto.prototype, "id", void 0);
26
+ __decorate([
27
+ (0, nestjs_1.ApiProperty)({ enum: invitationStatus_enum_1.InvitationStatusEnum, required: true }),
28
+ (0, class_transformer_1.Expose)(),
29
+ __metadata("design:type", String)
30
+ ], InvitationDto.prototype, "status", void 0);
31
+ __decorate([
32
+ (0, nestjs_1.ApiProperty)({ type: String, required: true }),
33
+ (0, class_transformer_1.Expose)(),
34
+ __metadata("design:type", String)
35
+ ], InvitationDto.prototype, "email", void 0);
36
+ __decorate([
37
+ (0, nestjs_1.ApiProperty)({ type: String, required: true }),
38
+ (0, class_transformer_1.Expose)(),
39
+ __metadata("design:type", String)
40
+ ], InvitationDto.prototype, "firstName", void 0);
41
+ __decorate([
42
+ (0, nestjs_1.ApiProperty)({ type: String, required: true }),
43
+ (0, class_transformer_1.Expose)(),
44
+ __metadata("design:type", String)
45
+ ], InvitationDto.prototype, "lastName", void 0);
46
+ __decorate([
47
+ (0, nestjs_1.ApiProperty)({ type: Number, required: true }),
48
+ (0, class_transformer_1.Expose)(),
49
+ __metadata("design:type", Number)
50
+ ], InvitationDto.prototype, "retryCount", void 0);
51
+ __decorate([
52
+ (0, nestjs_1.ApiProperty)({ type: Number, required: true }),
53
+ (0, class_transformer_1.Expose)(),
54
+ __metadata("design:type", Number)
55
+ ], InvitationDto.prototype, "maxRetries", void 0);
56
+ __decorate([
57
+ (0, nestjs_1.ApiProperty)({ type: String, required: false }),
58
+ (0, class_transformer_1.Expose)(),
59
+ __metadata("design:type", String)
60
+ ], InvitationDto.prototype, "errorMessage", void 0);
61
+ __decorate([
62
+ (0, nestjs_1.ApiProperty)({ type: Boolean, required: true }),
63
+ (0, class_transformer_1.Expose)(),
64
+ __metadata("design:type", Boolean)
65
+ ], InvitationDto.prototype, "hasFullAccess", void 0);
66
+ __decorate([
67
+ (0, nestjs_1.ApiProperty)({ type: String, required: true, format: 'uuid' }),
68
+ (0, class_transformer_1.Expose)(),
69
+ __metadata("design:type", String)
70
+ ], InvitationDto.prototype, "auditId", void 0);
71
+ //# sourceMappingURL=invitation.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"invitation.dto.js","sourceRoot":"","sources":["../../../src/dto/invitation/invitation.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,kDAA8C;AAC9C,yDAA2C;AAC3C,yCAA2C;AAC3C,qEAAiE;AACjE,4EAAwE;AAExE,MAAa,aAAc,SAAQ,IAAA,kBAAO,EAAC,8CAAqB,CAAC;CAwChE;AAxCD,sCAwCC;AArCA;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;IAC7D,IAAA,0BAAM,GAAE;;yCACG;AAIZ;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,4CAAoB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC3D,IAAA,0BAAM,GAAE;;6CACqB;AAI9B;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;4CACM;AAIf;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;gDACU;AAInB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;+CACS;AAIlB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;iDACW;AAIpB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;iDACW;AAIpB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IAC9C,IAAA,0BAAM,GAAE;;mDACa;AAItB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC9C,IAAA,0BAAM,GAAE;;oDACe;AAIxB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;IAC7D,IAAA,0BAAM,GAAE;;8CACQ"}
@@ -0,0 +1,7 @@
1
+ import { AuditDto } from "../audit/audit.dto";
2
+ import { UserDto } from "../user/user.dto";
3
+ export declare class InvitationEmbeddedDto {
4
+ audit: AuditDto;
5
+ createdBy?: UserDto;
6
+ updatedBy?: UserDto;
7
+ }
@@ -0,0 +1,38 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.InvitationEmbeddedDto = void 0;
13
+ const class_transformer_1 = require("class-transformer");
14
+ const nestjs_1 = require("../../nestjs");
15
+ const audit_dto_1 = require("../audit/audit.dto");
16
+ const user_dto_1 = require("../user/user.dto");
17
+ class InvitationEmbeddedDto {
18
+ }
19
+ exports.InvitationEmbeddedDto = InvitationEmbeddedDto;
20
+ __decorate([
21
+ (0, nestjs_1.ApiProperty)({ type: () => audit_dto_1.AuditDto, required: false }),
22
+ (0, class_transformer_1.Type)(() => audit_dto_1.AuditDto),
23
+ (0, class_transformer_1.Expose)(),
24
+ __metadata("design:type", audit_dto_1.AuditDto)
25
+ ], InvitationEmbeddedDto.prototype, "audit", void 0);
26
+ __decorate([
27
+ (0, nestjs_1.ApiProperty)({ type: () => user_dto_1.UserDto, required: false }),
28
+ (0, class_transformer_1.Type)(() => user_dto_1.UserDto),
29
+ (0, class_transformer_1.Expose)(),
30
+ __metadata("design:type", user_dto_1.UserDto)
31
+ ], InvitationEmbeddedDto.prototype, "createdBy", void 0);
32
+ __decorate([
33
+ (0, nestjs_1.ApiProperty)({ type: () => user_dto_1.UserDto, required: false }),
34
+ (0, class_transformer_1.Type)(() => user_dto_1.UserDto),
35
+ (0, class_transformer_1.Expose)(),
36
+ __metadata("design:type", user_dto_1.UserDto)
37
+ ], InvitationEmbeddedDto.prototype, "updatedBy", void 0);
38
+ //# sourceMappingURL=invitationEmbedded.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"invitationEmbedded.dto.js","sourceRoot":"","sources":["../../../src/dto/invitation/invitationEmbedded.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAAiD;AACjD,yCAA2C;AAC3C,kDAA8C;AAC9C,+CAAyC;AAEzC,MAAa,qBAAqB;CAejC;AAfD,sDAeC;AAXA;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,oBAAQ,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IACtD,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,oBAAQ,CAAC;IACpB,IAAA,0BAAM,GAAE;8BACF,oBAAQ;oDAAC;AAKhB;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,kBAAO,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IACrD,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,kBAAO,CAAC;IACnB,IAAA,0BAAM,GAAE;8BACG,kBAAO;wDAAC;AAKpB;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,kBAAO,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IACrD,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,kBAAO,CAAC;IACnB,IAAA,0BAAM,GAAE;8BACG,kBAAO;wDAAC"}
@@ -0,0 +1,13 @@
1
+ import { InvitationDto } from './invitation.dto';
2
+ declare class EmbeddedInvitation {
3
+ invitations?: InvitationDto[];
4
+ }
5
+ declare const InvitationPageDto_base: {
6
+ new (): {
7
+ _page: import("../..").PageInfoDto;
8
+ _embedded: EmbeddedInvitation;
9
+ };
10
+ };
11
+ export declare class InvitationPageDto extends InvitationPageDto_base {
12
+ }
13
+ export {};
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.InvitationPageDto = void 0;
13
+ const class_transformer_1 = require("class-transformer");
14
+ const nestjs_1 = require("../../nestjs");
15
+ const page_dto_1 = require("../generic/page.dto");
16
+ const invitation_dto_1 = require("./invitation.dto");
17
+ class EmbeddedInvitation {
18
+ }
19
+ __decorate([
20
+ (0, nestjs_1.ApiProperty)({ type: () => [invitation_dto_1.InvitationDto], required: false }),
21
+ (0, class_transformer_1.Type)(() => invitation_dto_1.InvitationDto),
22
+ (0, class_transformer_1.Expose)({ name: 'items' }),
23
+ __metadata("design:type", Array)
24
+ ], EmbeddedInvitation.prototype, "invitations", void 0);
25
+ class InvitationPageDto extends (0, page_dto_1.PageDto)(EmbeddedInvitation) {
26
+ }
27
+ exports.InvitationPageDto = InvitationPageDto;
28
+ //# sourceMappingURL=invitationPage.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"invitationPage.dto.js","sourceRoot":"","sources":["../../../src/dto/invitation/invitationPage.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAAiD;AACjD,yCAA2C;AAC3C,kDAA8C;AAC9C,qDAAiD;AAEjD,MAAM,kBAAkB;CAKvB;AADA;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,CAAC,8BAAa,CAAC,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IAC7D,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,8BAAa,CAAC;IACzB,IAAA,0BAAM,EAAC,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC;;uDACI;AAG/B,MAAa,iBAAkB,SAAQ,IAAA,kBAAO,EAAC,kBAAkB,CAAC;CAAG;AAArE,8CAAqE"}
@@ -0,0 +1,5 @@
1
+ export declare class MyVDLUserDto {
2
+ email: string;
3
+ firstName: string;
4
+ lastName: string;
5
+ }
@@ -0,0 +1,33 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.MyVDLUserDto = void 0;
13
+ const class_transformer_1 = require("class-transformer");
14
+ const nestjs_1 = require("../../nestjs");
15
+ class MyVDLUserDto {
16
+ }
17
+ exports.MyVDLUserDto = MyVDLUserDto;
18
+ __decorate([
19
+ (0, nestjs_1.ApiProperty)({ type: String, required: true }),
20
+ (0, class_transformer_1.Expose)(),
21
+ __metadata("design:type", String)
22
+ ], MyVDLUserDto.prototype, "email", void 0);
23
+ __decorate([
24
+ (0, nestjs_1.ApiProperty)({ type: String, required: true }),
25
+ (0, class_transformer_1.Expose)(),
26
+ __metadata("design:type", String)
27
+ ], MyVDLUserDto.prototype, "firstName", void 0);
28
+ __decorate([
29
+ (0, nestjs_1.ApiProperty)({ type: String, required: true }),
30
+ (0, class_transformer_1.Expose)(),
31
+ __metadata("design:type", String)
32
+ ], MyVDLUserDto.prototype, "lastName", void 0);
33
+ //# sourceMappingURL=myVDLUser.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"myVDLUser.dto.js","sourceRoot":"","sources":["../../../src/dto/myVDLUser/myVDLUser.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAA2C;AAC3C,yCAA2C;AAE3C,MAAa,YAAY;CAYxB;AAZD,oCAYC;AATA;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;2CACM;AAIf;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;+CACU;AAInB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;8CACS"}
@@ -0,0 +1,13 @@
1
+ import { MyVDLUserDto } from "./myVDLUser.dto";
2
+ declare class EmbeddedMyVDLUser {
3
+ myVDLUsers?: MyVDLUserDto[];
4
+ }
5
+ declare const MyVDLUserPageDto_base: {
6
+ new (): {
7
+ _page: import("../..").PageInfoDto;
8
+ _embedded: EmbeddedMyVDLUser;
9
+ };
10
+ };
11
+ export declare class MyVDLUserPageDto extends MyVDLUserPageDto_base {
12
+ }
13
+ export {};
@@ -0,0 +1,28 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.MyVDLUserPageDto = void 0;
13
+ const class_transformer_1 = require("class-transformer");
14
+ const nestjs_1 = require("../../nestjs");
15
+ const page_dto_1 = require("../generic/page.dto");
16
+ const myVDLUser_dto_1 = require("./myVDLUser.dto");
17
+ class EmbeddedMyVDLUser {
18
+ }
19
+ __decorate([
20
+ (0, nestjs_1.ApiProperty)({ type: () => [myVDLUser_dto_1.MyVDLUserDto], required: false }),
21
+ (0, class_transformer_1.Type)(() => myVDLUser_dto_1.MyVDLUserDto),
22
+ (0, class_transformer_1.Expose)({ name: 'items' }),
23
+ __metadata("design:type", Array)
24
+ ], EmbeddedMyVDLUser.prototype, "myVDLUsers", void 0);
25
+ class MyVDLUserPageDto extends (0, page_dto_1.PageDto)(EmbeddedMyVDLUser) {
26
+ }
27
+ exports.MyVDLUserPageDto = MyVDLUserPageDto;
28
+ //# sourceMappingURL=myVDLUserPage.dto.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"myVDLUserPage.dto.js","sourceRoot":"","sources":["../../../src/dto/myVDLUser/myVDLUserPage.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAAiD;AACjD,yCAA2C;AAC3C,kDAA8C;AAC9C,mDAA+C;AAE/C,MAAM,iBAAiB;CAKtB;AADA;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,CAAC,4BAAY,CAAC,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IAC5D,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,4BAAY,CAAC;IACxB,IAAA,0BAAM,EAAC,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC;;qDACE;AAG7B,MAAa,gBAAiB,SAAQ,IAAA,kBAAO,EAAC,iBAAiB,CAAC;CAAG;AAAnE,4CAAmE"}
@@ -2,6 +2,6 @@ export declare class CreateUserDto {
2
2
  email: string;
3
3
  firstName?: string;
4
4
  lastName?: string;
5
- azureId: string;
5
+ azureId?: string;
6
6
  isMyVDL: boolean;
7
7
  }
@@ -37,7 +37,7 @@ __decorate([
37
37
  __metadata("design:type", String)
38
38
  ], CreateUserDto.prototype, "lastName", void 0);
39
39
  __decorate([
40
- (0, nestjs_1.ApiProperty)({ type: String, required: true }),
40
+ (0, nestjs_1.ApiProperty)({ type: String, required: false }),
41
41
  (0, class_validator_1.IsString)(),
42
42
  (0, class_transformer_1.Expose)(),
43
43
  __metadata("design:type", String)
@@ -1 +1 @@
1
- {"version":3,"file":"createUser.dto.js","sourceRoot":"","sources":["../../../src/dto/user/createUser.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yCAA2C;AAC3C,yDAA2C;AAC3C,qDAAyE;AAEzE,MAAa,aAAa;CA2BzB;AA3BD,sCA2BC;AAvBG;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,yBAAO,GAAE;IACT,IAAA,0BAAM,GAAE;;4CACM;AAMf;IAJC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;;gDACU;AAMnB;IAJC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;;+CACS;AAKlB;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAQ,GAAE;IACV,IAAA,0BAAM,GAAE;;8CACQ;AAKjB;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC9C,IAAA,2BAAS,GAAE;IACX,IAAA,0BAAM,GAAE;;8CACS"}
1
+ {"version":3,"file":"createUser.dto.js","sourceRoot":"","sources":["../../../src/dto/user/createUser.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yCAA2C;AAC3C,yDAA2C;AAC3C,qDAA2E;AAE3E,MAAa,aAAa;CA2BzB;AA3BD,sCA2BC;AAvBG;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,yBAAO,GAAE;IACT,IAAA,0BAAM,GAAE;;4CACM;AAMf;IAJC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;;gDACU;AAMnB;IAJC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;;+CACS;AAKlB;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IAC9C,IAAA,0BAAQ,GAAE;IACV,IAAA,0BAAM,GAAE;;8CACQ;AAKjB;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC9C,IAAA,2BAAS,GAAE;IACX,IAAA,0BAAM,GAAE;;8CACS"}
@@ -0,0 +1,7 @@
1
+ export declare enum InvitationStatusEnum {
2
+ QUEUED = "QUEUED",
3
+ IN_PROGRESS = "IN_PROGRESS",
4
+ ERROR = "ERROR",
5
+ SUCCESS = "SUCCESS",
6
+ RETRY = "RETRY"
7
+ }
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.InvitationStatusEnum = void 0;
4
+ var InvitationStatusEnum;
5
+ (function (InvitationStatusEnum) {
6
+ InvitationStatusEnum["QUEUED"] = "QUEUED";
7
+ InvitationStatusEnum["IN_PROGRESS"] = "IN_PROGRESS";
8
+ InvitationStatusEnum["ERROR"] = "ERROR";
9
+ InvitationStatusEnum["SUCCESS"] = "SUCCESS";
10
+ InvitationStatusEnum["RETRY"] = "RETRY";
11
+ })(InvitationStatusEnum || (exports.InvitationStatusEnum = InvitationStatusEnum = {}));
12
+ //# sourceMappingURL=invitationStatus.enum.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"invitationStatus.enum.js","sourceRoot":"","sources":["../../src/enum/invitationStatus.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,oBAMX;AAND,WAAY,oBAAoB;IAC/B,yCAAiB,CAAA;IACjB,mDAA2B,CAAA;IAC3B,uCAAe,CAAA;IACf,2CAAmB,CAAA;IACnB,uCAAe,CAAA;AAChB,CAAC,EANW,oBAAoB,oCAApB,oBAAoB,QAM/B"}