@ballistix.digital/types-pbc-react 0.60.0 → 0.61.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.
- package/dist/dto/notificationTask/notificationTaskDto.d.ts +5 -0
- package/dist/dto/notificationTask/notificationTaskDto.js +25 -0
- package/dist/dto/notificationTask/notificationTaskDto.js.map +1 -1
- package/dist/dto/notificationTask/notificationTaskEmbeddedDto.d.ts +9 -1
- package/dist/dto/notificationTask/notificationTaskEmbeddedDto.js +28 -0
- package/dist/dto/notificationTask/notificationTaskEmbeddedDto.js.map +1 -1
- package/dist/dto/surveyAccessRight/bulkUpdateSurveyAccessRight.dto.d.ts +10 -0
- package/dist/dto/surveyAccessRight/bulkUpdateSurveyAccessRight.dto.js +9 -0
- package/dist/dto/surveyAccessRight/bulkUpdateSurveyAccessRight.dto.js.map +1 -0
- package/dist/dto/surveyAccessRight/changelog/surveyAccessRightChangelog.dto.d.ts +11 -0
- package/dist/dto/surveyAccessRight/changelog/surveyAccessRightChangelog.dto.js +46 -0
- package/dist/dto/surveyAccessRight/changelog/surveyAccessRightChangelog.dto.js.map +1 -0
- package/dist/dto/surveyAccessRight/changelog/surveyAccessRightChangelogEmbedded.dto.d.ts +5 -0
- package/dist/dto/surveyAccessRight/changelog/surveyAccessRightChangelogEmbedded.dto.js +31 -0
- package/dist/dto/surveyAccessRight/changelog/surveyAccessRightChangelogEmbedded.dto.js.map +1 -0
- package/dist/dto/surveyAccessRight/changelog/surveyAccessRightChangelogPage.dto.d.ts +13 -0
- package/dist/dto/surveyAccessRight/changelog/surveyAccessRightChangelogPage.dto.js +28 -0
- package/dist/dto/surveyAccessRight/changelog/surveyAccessRightChangelogPage.dto.js.map +1 -0
- package/dist/dto/surveyAccessRight/createSurveyAccessRight.dto.d.ts +4 -0
- package/dist/dto/surveyAccessRight/createSurveyAccessRight.dto.js +31 -0
- package/dist/dto/surveyAccessRight/createSurveyAccessRight.dto.js.map +1 -0
- package/dist/dto/surveyAccessRight/surveyAccessRight.dto.d.ts +8 -0
- package/dist/dto/surveyAccessRight/surveyAccessRight.dto.js +35 -0
- package/dist/dto/surveyAccessRight/surveyAccessRight.dto.js.map +1 -0
- package/dist/dto/surveyAccessRight/surveyAccessRightEmbedded.dto.d.ts +8 -0
- package/dist/dto/surveyAccessRight/surveyAccessRightEmbedded.dto.js +44 -0
- package/dist/dto/surveyAccessRight/surveyAccessRightEmbedded.dto.js.map +1 -0
- package/dist/dto/surveyAccessRight/surveyAccessRightPage.dto.d.ts +13 -0
- package/dist/dto/surveyAccessRight/surveyAccessRightPage.dto.js +28 -0
- package/dist/dto/surveyAccessRight/surveyAccessRightPage.dto.js.map +1 -0
- package/dist/dto/surveyAccessRight/updateSurveyAccessRight.dto.d.ts +2 -0
- package/dist/dto/surveyAccessRight/updateSurveyAccessRight.dto.js +7 -0
- package/dist/dto/surveyAccessRight/updateSurveyAccessRight.dto.js.map +1 -0
- package/dist/enum/notificationTaskType.enum.d.ts +1 -0
- package/dist/enum/notificationTaskType.enum.js +1 -0
- package/dist/enum/notificationTaskType.enum.js.map +1 -1
- package/dist/index.d.ts +10 -1
- package/dist/index.js +24 -6
- package/dist/index.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -7,7 +7,12 @@ export declare class NotificationTaskDto extends NotificationTaskDto_base {
|
|
|
7
7
|
status: NotificationTaskStatusEnum;
|
|
8
8
|
type: NotificationTaskTypeEnum;
|
|
9
9
|
recipientId: string;
|
|
10
|
+
auditId?: string;
|
|
11
|
+
cycleId?: string;
|
|
12
|
+
questionId?: string;
|
|
13
|
+
invitationId?: string;
|
|
10
14
|
retryCount: number;
|
|
15
|
+
maxRetries: number;
|
|
11
16
|
errorMessage?: string;
|
|
12
17
|
reference?: string;
|
|
13
18
|
surveyId: string;
|
|
@@ -39,11 +39,36 @@ __decorate([
|
|
|
39
39
|
(0, class_transformer_1.Expose)(),
|
|
40
40
|
__metadata("design:type", String)
|
|
41
41
|
], NotificationTaskDto.prototype, "recipientId", void 0);
|
|
42
|
+
__decorate([
|
|
43
|
+
(0, nestjs_1.ApiProperty)({ type: String, required: false, format: 'uuid' }),
|
|
44
|
+
(0, class_transformer_1.Expose)(),
|
|
45
|
+
__metadata("design:type", String)
|
|
46
|
+
], NotificationTaskDto.prototype, "auditId", void 0);
|
|
47
|
+
__decorate([
|
|
48
|
+
(0, nestjs_1.ApiProperty)({ type: String, required: false, format: 'uuid' }),
|
|
49
|
+
(0, class_transformer_1.Expose)(),
|
|
50
|
+
__metadata("design:type", String)
|
|
51
|
+
], NotificationTaskDto.prototype, "cycleId", void 0);
|
|
52
|
+
__decorate([
|
|
53
|
+
(0, nestjs_1.ApiProperty)({ type: String, required: false, format: 'uuid' }),
|
|
54
|
+
(0, class_transformer_1.Expose)(),
|
|
55
|
+
__metadata("design:type", String)
|
|
56
|
+
], NotificationTaskDto.prototype, "questionId", void 0);
|
|
57
|
+
__decorate([
|
|
58
|
+
(0, nestjs_1.ApiProperty)({ type: String, required: false, format: 'uuid' }),
|
|
59
|
+
(0, class_transformer_1.Expose)(),
|
|
60
|
+
__metadata("design:type", String)
|
|
61
|
+
], NotificationTaskDto.prototype, "invitationId", void 0);
|
|
42
62
|
__decorate([
|
|
43
63
|
(0, nestjs_1.ApiProperty)({ type: Number, required: true }),
|
|
44
64
|
(0, class_transformer_1.Expose)(),
|
|
45
65
|
__metadata("design:type", Number)
|
|
46
66
|
], NotificationTaskDto.prototype, "retryCount", void 0);
|
|
67
|
+
__decorate([
|
|
68
|
+
(0, nestjs_1.ApiProperty)({ type: Number, required: true }),
|
|
69
|
+
(0, class_transformer_1.Expose)(),
|
|
70
|
+
__metadata("design:type", Number)
|
|
71
|
+
], NotificationTaskDto.prototype, "maxRetries", void 0);
|
|
47
72
|
__decorate([
|
|
48
73
|
(0, nestjs_1.ApiProperty)({ type: String, required: true }),
|
|
49
74
|
(0, class_transformer_1.Expose)(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"notificationTaskDto.js","sourceRoot":"","sources":["../../../src/dto/notificationTask/notificationTaskDto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,kDAA8C;AAC9C,+EAA4E;AAC5E,yCAA2C;AAC3C,yDAA2C;AAC3C,oFAAgF;AAChF,wFAAoF;AAEpF,MAAa,mBAAoB,SAAQ,IAAA,kBAAO,EAAC,yDAA2B,CAAC;
|
|
1
|
+
{"version":3,"file":"notificationTaskDto.js","sourceRoot":"","sources":["../../../src/dto/notificationTask/notificationTaskDto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,kDAA8C;AAC9C,+EAA4E;AAC5E,yCAA2C;AAC3C,yDAA2C;AAC3C,oFAAgF;AAChF,wFAAoF;AAEpF,MAAa,mBAAoB,SAAQ,IAAA,kBAAO,EAAC,yDAA2B,CAAC;CAoD5E;AApDD,kDAoDC;AAjDA;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;IAC7D,IAAA,0BAAM,GAAE;;+CACE;AAIX;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,wDAA0B,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACjE,IAAA,0BAAM,GAAE;;mDAC0B;AAInC;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,oDAAwB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC/D,IAAA,0BAAM,GAAE;;iDACsB;AAI/B;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;IAC7D,IAAA,0BAAM,GAAE;;wDACW;AAIpB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;IAC9D,IAAA,0BAAM,GAAE;;oDACQ;AAIjB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;IAC9D,IAAA,0BAAM,GAAE;;oDACQ;AAIjB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;IAC9D,IAAA,0BAAM,GAAE;;uDACW;AAIpB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;IAC9D,IAAA,0BAAM,GAAE;;yDACa;AAItB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;uDACU;AAInB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;uDACU;AAInB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;yDACa;AAItB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;sDACU;AAInB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;IAC7D,IAAA,0BAAM,GAAE;;qDACQ"}
|
|
@@ -1,8 +1,16 @@
|
|
|
1
1
|
import { UserDto } from '../user/user.dto';
|
|
2
2
|
import { SurveyDto } from '../survey/survey.dto';
|
|
3
|
+
import { AuditDto } from '../audit/audit.dto';
|
|
4
|
+
import { CycleDto } from '../cycle/cycle.dto';
|
|
5
|
+
import { QuestionDto } from '../question/question.dto';
|
|
6
|
+
import { InvitationDto } from '../invitation/invitation.dto';
|
|
3
7
|
export declare class NotificationTaskEmbeddedDto {
|
|
4
8
|
survey?: SurveyDto;
|
|
5
|
-
|
|
9
|
+
audit?: AuditDto;
|
|
10
|
+
cycle?: CycleDto;
|
|
11
|
+
question?: QuestionDto;
|
|
12
|
+
invitation?: InvitationDto;
|
|
13
|
+
recipient?: UserDto;
|
|
6
14
|
createdBy?: UserDto;
|
|
7
15
|
updatedBy?: UserDto;
|
|
8
16
|
}
|
|
@@ -14,6 +14,10 @@ const nestjs_1 = require("../../nestjs");
|
|
|
14
14
|
const user_dto_1 = require("../user/user.dto");
|
|
15
15
|
const class_transformer_1 = require("class-transformer");
|
|
16
16
|
const survey_dto_1 = require("../survey/survey.dto");
|
|
17
|
+
const audit_dto_1 = require("../audit/audit.dto");
|
|
18
|
+
const cycle_dto_1 = require("../cycle/cycle.dto");
|
|
19
|
+
const question_dto_1 = require("../question/question.dto");
|
|
20
|
+
const invitation_dto_1 = require("../invitation/invitation.dto");
|
|
17
21
|
class NotificationTaskEmbeddedDto {
|
|
18
22
|
}
|
|
19
23
|
exports.NotificationTaskEmbeddedDto = NotificationTaskEmbeddedDto;
|
|
@@ -23,6 +27,30 @@ __decorate([
|
|
|
23
27
|
(0, class_transformer_1.Expose)(),
|
|
24
28
|
__metadata("design:type", survey_dto_1.SurveyDto)
|
|
25
29
|
], NotificationTaskEmbeddedDto.prototype, "survey", void 0);
|
|
30
|
+
__decorate([
|
|
31
|
+
(0, nestjs_1.ApiProperty)({ type: () => audit_dto_1.AuditDto, required: false }),
|
|
32
|
+
(0, class_transformer_1.Type)(() => audit_dto_1.AuditDto),
|
|
33
|
+
(0, class_transformer_1.Expose)(),
|
|
34
|
+
__metadata("design:type", audit_dto_1.AuditDto)
|
|
35
|
+
], NotificationTaskEmbeddedDto.prototype, "audit", void 0);
|
|
36
|
+
__decorate([
|
|
37
|
+
(0, nestjs_1.ApiProperty)({ type: () => cycle_dto_1.CycleDto, required: false }),
|
|
38
|
+
(0, class_transformer_1.Type)(() => cycle_dto_1.CycleDto),
|
|
39
|
+
(0, class_transformer_1.Expose)(),
|
|
40
|
+
__metadata("design:type", cycle_dto_1.CycleDto)
|
|
41
|
+
], NotificationTaskEmbeddedDto.prototype, "cycle", void 0);
|
|
42
|
+
__decorate([
|
|
43
|
+
(0, nestjs_1.ApiProperty)({ type: () => question_dto_1.QuestionDto, required: false }),
|
|
44
|
+
(0, class_transformer_1.Type)(() => question_dto_1.QuestionDto),
|
|
45
|
+
(0, class_transformer_1.Expose)(),
|
|
46
|
+
__metadata("design:type", question_dto_1.QuestionDto)
|
|
47
|
+
], NotificationTaskEmbeddedDto.prototype, "question", void 0);
|
|
48
|
+
__decorate([
|
|
49
|
+
(0, nestjs_1.ApiProperty)({ type: () => invitation_dto_1.InvitationDto, required: false }),
|
|
50
|
+
(0, class_transformer_1.Type)(() => invitation_dto_1.InvitationDto),
|
|
51
|
+
(0, class_transformer_1.Expose)(),
|
|
52
|
+
__metadata("design:type", invitation_dto_1.InvitationDto)
|
|
53
|
+
], NotificationTaskEmbeddedDto.prototype, "invitation", void 0);
|
|
26
54
|
__decorate([
|
|
27
55
|
(0, nestjs_1.ApiProperty)({ type: () => user_dto_1.UserDto, required: false }),
|
|
28
56
|
(0, class_transformer_1.Type)(() => user_dto_1.UserDto),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"notificationTaskEmbeddedDto.js","sourceRoot":"","sources":["../../../src/dto/notificationTask/notificationTaskEmbeddedDto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yCAA2C;AAC3C,+CAA2C;AAC3C,yDAAiD;AACjD,qDAAiD;
|
|
1
|
+
{"version":3,"file":"notificationTaskEmbeddedDto.js","sourceRoot":"","sources":["../../../src/dto/notificationTask/notificationTaskEmbeddedDto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yCAA2C;AAC3C,+CAA2C;AAC3C,yDAAiD;AACjD,qDAAiD;AACjD,kDAA8C;AAC9C,kDAA8C;AAC9C,2DAAuD;AACvD,iEAA6D;AAE7D,MAAa,2BAA2B;CAwCvC;AAxCD,kEAwCC;AApCA;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,sBAAS,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IACvD,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,sBAAS,CAAC;IACrB,IAAA,0BAAM,GAAE;8BACA,sBAAS;2DAAC;AAKnB;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;8BACD,oBAAQ;0DAAC;AAKjB;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;8BACD,oBAAQ;0DAAC;AAKjB;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,0BAAW,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IACzD,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,0BAAW,CAAC;IACvB,IAAA,0BAAM,GAAE;8BACE,0BAAW;6DAAC;AAKvB;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,8BAAa,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IAC3D,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,8BAAa,CAAC;IACzB,IAAA,0BAAM,GAAE;8BACI,8BAAa;+DAAC;AAK3B;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;8DAAC;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;8DAAC;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;8DAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.BulkUpdateSurveyAccessRightDto = void 0;
|
|
4
|
+
const bulk_dto_1 = require("../generic/bulk.dto");
|
|
5
|
+
const updateSurveyAccessRight_dto_1 = require("./updateSurveyAccessRight.dto");
|
|
6
|
+
class BulkUpdateSurveyAccessRightDto extends (0, bulk_dto_1.BulkDto)(updateSurveyAccessRight_dto_1.UpdateSurveyAccessRightDto) {
|
|
7
|
+
}
|
|
8
|
+
exports.BulkUpdateSurveyAccessRightDto = BulkUpdateSurveyAccessRightDto;
|
|
9
|
+
//# sourceMappingURL=bulkUpdateSurveyAccessRight.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bulkUpdateSurveyAccessRight.dto.js","sourceRoot":"","sources":["../../../src/dto/surveyAccessRight/bulkUpdateSurveyAccessRight.dto.ts"],"names":[],"mappings":";;;AAAA,kDAA8C;AAC9C,+EAA2E;AAE3E,MAAa,8BAA+B,SAAQ,IAAA,kBAAO,EAAC,wDAA0B,CAAC;CAAG;AAA1F,wEAA0F"}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { ChangelogOperationEnum } from '../../../enum/changelogOperationEnum';
|
|
2
|
+
import { SurveyAccessRightChangelogEmbeddedDto } from './surveyAccessRightChangelogEmbedded.dto';
|
|
3
|
+
declare const SurveyAccessRightChangelogDto_base: import("../../generic/base.dto").BaseDtoType<SurveyAccessRightChangelogEmbeddedDto>;
|
|
4
|
+
export declare class SurveyAccessRightChangelogDto extends SurveyAccessRightChangelogDto_base {
|
|
5
|
+
id: string;
|
|
6
|
+
operation: ChangelogOperationEnum;
|
|
7
|
+
surveyAccessRightId: string;
|
|
8
|
+
userId: string;
|
|
9
|
+
surveyId: string;
|
|
10
|
+
}
|
|
11
|
+
export {};
|
|
@@ -0,0 +1,46 @@
|
|
|
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.SurveyAccessRightChangelogDto = 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 surveyAccessRightChangelogEmbedded_dto_1 = require("./surveyAccessRightChangelogEmbedded.dto");
|
|
18
|
+
class SurveyAccessRightChangelogDto extends (0, base_dto_1.BaseDto)(surveyAccessRightChangelogEmbedded_dto_1.SurveyAccessRightChangelogEmbeddedDto) {
|
|
19
|
+
}
|
|
20
|
+
exports.SurveyAccessRightChangelogDto = SurveyAccessRightChangelogDto;
|
|
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
|
+
], SurveyAccessRightChangelogDto.prototype, "id", void 0);
|
|
26
|
+
__decorate([
|
|
27
|
+
(0, nestjs_1.ApiProperty)({ enum: changelogOperationEnum_1.ChangelogOperationEnum, required: true }),
|
|
28
|
+
(0, class_transformer_1.Expose)(),
|
|
29
|
+
__metadata("design:type", String)
|
|
30
|
+
], SurveyAccessRightChangelogDto.prototype, "operation", void 0);
|
|
31
|
+
__decorate([
|
|
32
|
+
(0, nestjs_1.ApiProperty)({ type: String, required: true, format: 'uuid' }),
|
|
33
|
+
(0, class_transformer_1.Expose)(),
|
|
34
|
+
__metadata("design:type", String)
|
|
35
|
+
], SurveyAccessRightChangelogDto.prototype, "surveyAccessRightId", void 0);
|
|
36
|
+
__decorate([
|
|
37
|
+
(0, nestjs_1.ApiProperty)({ type: String, required: true, format: 'uuid' }),
|
|
38
|
+
(0, class_transformer_1.Expose)(),
|
|
39
|
+
__metadata("design:type", String)
|
|
40
|
+
], SurveyAccessRightChangelogDto.prototype, "userId", void 0);
|
|
41
|
+
__decorate([
|
|
42
|
+
(0, nestjs_1.ApiProperty)({ type: String, required: true, format: 'uuid' }),
|
|
43
|
+
(0, class_transformer_1.Expose)(),
|
|
44
|
+
__metadata("design:type", String)
|
|
45
|
+
], SurveyAccessRightChangelogDto.prototype, "surveyId", void 0);
|
|
46
|
+
//# sourceMappingURL=surveyAccessRightChangelog.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"surveyAccessRightChangelog.dto.js","sourceRoot":"","sources":["../../../../src/dto/surveyAccessRight/changelog/surveyAccessRightChangelog.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qDAAiD;AACjD,yDAA2C;AAC3C,4CAA8C;AAC9C,iFAA8E;AAC9E,qGAAiG;AAEjG,MAAa,6BAA8B,SAAQ,IAAA,kBAAO,EAAC,8EAAqC,CAAC;CAoBhG;AApBD,sEAoBC;AAjBA;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;IAC7D,IAAA,0BAAM,GAAE;;yDACG;AAIZ;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,+CAAsB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7D,IAAA,0BAAM,GAAE;;gEAC0B;AAInC;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;IAC7D,IAAA,0BAAM,GAAE;;0EACoB;AAI7B;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;IAC7D,IAAA,0BAAM,GAAE;;6DACO;AAIhB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;IAC7D,IAAA,0BAAM,GAAE;;+DACS"}
|
|
@@ -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.SurveyAccessRightChangelogEmbeddedDto = 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 SurveyAccessRightChangelogEmbeddedDto {
|
|
17
|
+
}
|
|
18
|
+
exports.SurveyAccessRightChangelogEmbeddedDto = SurveyAccessRightChangelogEmbeddedDto;
|
|
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
|
+
], SurveyAccessRightChangelogEmbeddedDto.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
|
+
], SurveyAccessRightChangelogEmbeddedDto.prototype, "updatedBy", void 0);
|
|
31
|
+
//# sourceMappingURL=surveyAccessRightChangelogEmbedded.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"surveyAccessRightChangelogEmbedded.dto.js","sourceRoot":"","sources":["../../../../src/dto/surveyAccessRight/changelog/surveyAccessRightChangelogEmbedded.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,4CAA8C;AAC9C,yDAAiD;AACjD,kDAA8C;AAE9C,MAAa,qCAAqC;CAUjD;AAVD,sFAUC;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;wEAAC;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;wEAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { SurveyAccessRightChangelogDto } from "./surveyAccessRightChangelog.dto";
|
|
2
|
+
declare class EmbeddedSurveyAccessRightChangelog {
|
|
3
|
+
surveyAccessRightChangelogs?: SurveyAccessRightChangelogDto[];
|
|
4
|
+
}
|
|
5
|
+
declare const SurveyAccessRightChangelogPageDto_base: {
|
|
6
|
+
new (): {
|
|
7
|
+
_page: import("../../..").PageInfoDto;
|
|
8
|
+
_embedded: EmbeddedSurveyAccessRightChangelog;
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
export declare class SurveyAccessRightChangelogPageDto extends SurveyAccessRightChangelogPageDto_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.SurveyAccessRightChangelogPageDto = 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 surveyAccessRightChangelog_dto_1 = require("./surveyAccessRightChangelog.dto");
|
|
17
|
+
class EmbeddedSurveyAccessRightChangelog {
|
|
18
|
+
}
|
|
19
|
+
__decorate([
|
|
20
|
+
(0, nestjs_1.ApiProperty)({ type: () => [surveyAccessRightChangelog_dto_1.SurveyAccessRightChangelogDto], required: false }),
|
|
21
|
+
(0, class_transformer_1.Type)(() => surveyAccessRightChangelog_dto_1.SurveyAccessRightChangelogDto),
|
|
22
|
+
(0, class_transformer_1.Expose)({ name: 'items' }),
|
|
23
|
+
__metadata("design:type", Array)
|
|
24
|
+
], EmbeddedSurveyAccessRightChangelog.prototype, "surveyAccessRightChangelogs", void 0);
|
|
25
|
+
class SurveyAccessRightChangelogPageDto extends (0, page_dto_1.PageDto)(EmbeddedSurveyAccessRightChangelog) {
|
|
26
|
+
}
|
|
27
|
+
exports.SurveyAccessRightChangelogPageDto = SurveyAccessRightChangelogPageDto;
|
|
28
|
+
//# sourceMappingURL=surveyAccessRightChangelogPage.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"surveyAccessRightChangelogPage.dto.js","sourceRoot":"","sources":["../../../../src/dto/surveyAccessRight/changelog/surveyAccessRightChangelogPage.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAAiD;AACjD,4CAA8C;AAC9C,qDAAiD;AACjD,qFAAiF;AAEjF,MAAM,kCAAkC;CAKvC;AADA;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,CAAC,8DAA6B,CAAC,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IAC7E,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,8DAA6B,CAAC;IACzC,IAAA,0BAAM,EAAC,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC;;uFACoC;AAG/D,MAAa,iCAAkC,SAAQ,IAAA,kBAAO,EAAC,kCAAkC,CAAC;CAAG;AAArG,8EAAqG"}
|
|
@@ -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.CreateSurveyAccessRightDto = 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 CreateSurveyAccessRightDto {
|
|
17
|
+
}
|
|
18
|
+
exports.CreateSurveyAccessRightDto = CreateSurveyAccessRightDto;
|
|
19
|
+
__decorate([
|
|
20
|
+
(0, nestjs_1.ApiProperty)({ type: String, required: true, format: 'uuid' }),
|
|
21
|
+
(0, class_validator_1.IsUUID)(),
|
|
22
|
+
(0, class_transformer_1.Expose)(),
|
|
23
|
+
__metadata("design:type", String)
|
|
24
|
+
], CreateSurveyAccessRightDto.prototype, "userId", void 0);
|
|
25
|
+
__decorate([
|
|
26
|
+
(0, nestjs_1.ApiProperty)({ type: String, required: true, format: 'uuid' }),
|
|
27
|
+
(0, class_validator_1.IsUUID)(),
|
|
28
|
+
(0, class_transformer_1.Expose)(),
|
|
29
|
+
__metadata("design:type", String)
|
|
30
|
+
], CreateSurveyAccessRightDto.prototype, "surveyId", void 0);
|
|
31
|
+
//# sourceMappingURL=createSurveyAccessRight.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"createSurveyAccessRight.dto.js","sourceRoot":"","sources":["../../../src/dto/surveyAccessRight/createSurveyAccessRight.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yCAA2C;AAC3C,qDAAyC;AACzC,yDAA2C;AAE3C,MAAa,0BAA0B;CAUtC;AAVD,gEAUC;AANA;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;;0DACO;AAKhB;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;;4DACS"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { SurveyAccessRightEmbeddedDto } from './surveyAccessRightEmbedded.dto';
|
|
2
|
+
declare const SurveyAccessRightDto_base: import("../generic/base.dto").BaseDtoType<SurveyAccessRightEmbeddedDto>;
|
|
3
|
+
export declare class SurveyAccessRightDto extends SurveyAccessRightDto_base {
|
|
4
|
+
id: string;
|
|
5
|
+
userId: string;
|
|
6
|
+
surveyId: string;
|
|
7
|
+
}
|
|
8
|
+
export {};
|
|
@@ -0,0 +1,35 @@
|
|
|
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.SurveyAccessRightDto = 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 surveyAccessRightEmbedded_dto_1 = require("./surveyAccessRightEmbedded.dto");
|
|
17
|
+
class SurveyAccessRightDto extends (0, base_dto_1.BaseDto)(surveyAccessRightEmbedded_dto_1.SurveyAccessRightEmbeddedDto) {
|
|
18
|
+
}
|
|
19
|
+
exports.SurveyAccessRightDto = SurveyAccessRightDto;
|
|
20
|
+
__decorate([
|
|
21
|
+
(0, nestjs_1.ApiProperty)({ type: String, required: true, format: 'uuid' }),
|
|
22
|
+
(0, class_transformer_1.Expose)(),
|
|
23
|
+
__metadata("design:type", String)
|
|
24
|
+
], SurveyAccessRightDto.prototype, "id", void 0);
|
|
25
|
+
__decorate([
|
|
26
|
+
(0, nestjs_1.ApiProperty)({ type: String, required: true, format: 'uuid' }),
|
|
27
|
+
(0, class_transformer_1.Expose)(),
|
|
28
|
+
__metadata("design:type", String)
|
|
29
|
+
], SurveyAccessRightDto.prototype, "userId", void 0);
|
|
30
|
+
__decorate([
|
|
31
|
+
(0, nestjs_1.ApiProperty)({ type: String, required: true, format: 'uuid' }),
|
|
32
|
+
(0, class_transformer_1.Expose)(),
|
|
33
|
+
__metadata("design:type", String)
|
|
34
|
+
], SurveyAccessRightDto.prototype, "surveyId", void 0);
|
|
35
|
+
//# sourceMappingURL=surveyAccessRight.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"surveyAccessRight.dto.js","sourceRoot":"","sources":["../../../src/dto/surveyAccessRight/surveyAccessRight.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,kDAA8C;AAC9C,yDAA2C;AAC3C,yCAA2C;AAC3C,mFAA+E;AAE/E,MAAa,oBAAqB,SAAQ,IAAA,kBAAO,EAAC,4DAA4B,CAAC;CAY9E;AAZD,oDAYC;AATA;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;IAC7D,IAAA,0BAAM,GAAE;;gDACG;AAIZ;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;IAC7D,IAAA,0BAAM,GAAE;;oDACO;AAIhB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;IAC7D,IAAA,0BAAM,GAAE;;sDACS"}
|
|
@@ -0,0 +1,44 @@
|
|
|
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.SurveyAccessRightEmbeddedDto = 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
|
+
const survey_dto_1 = require("../survey/survey.dto");
|
|
17
|
+
class SurveyAccessRightEmbeddedDto {
|
|
18
|
+
}
|
|
19
|
+
exports.SurveyAccessRightEmbeddedDto = SurveyAccessRightEmbeddedDto;
|
|
20
|
+
__decorate([
|
|
21
|
+
(0, nestjs_1.ApiProperty)({ type: () => survey_dto_1.SurveyDto, required: false }),
|
|
22
|
+
(0, class_transformer_1.Type)(() => survey_dto_1.SurveyDto),
|
|
23
|
+
(0, class_transformer_1.Expose)(),
|
|
24
|
+
__metadata("design:type", survey_dto_1.SurveyDto)
|
|
25
|
+
], SurveyAccessRightEmbeddedDto.prototype, "survey", 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
|
+
], SurveyAccessRightEmbeddedDto.prototype, "user", 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
|
+
], SurveyAccessRightEmbeddedDto.prototype, "createdBy", void 0);
|
|
38
|
+
__decorate([
|
|
39
|
+
(0, nestjs_1.ApiProperty)({ type: () => user_dto_1.UserDto, required: false }),
|
|
40
|
+
(0, class_transformer_1.Type)(() => user_dto_1.UserDto),
|
|
41
|
+
(0, class_transformer_1.Expose)(),
|
|
42
|
+
__metadata("design:type", user_dto_1.UserDto)
|
|
43
|
+
], SurveyAccessRightEmbeddedDto.prototype, "updatedBy", void 0);
|
|
44
|
+
//# sourceMappingURL=surveyAccessRightEmbedded.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"surveyAccessRightEmbedded.dto.js","sourceRoot":"","sources":["../../../src/dto/surveyAccessRight/surveyAccessRightEmbedded.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yCAA2C;AAC3C,yDAAiD;AACjD,+CAA2C;AAC3C,qDAAiD;AAEjD,MAAa,4BAA4B;CAoBxC;AApBD,oEAoBC;AAhBA;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,sBAAS,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IACvD,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,sBAAS,CAAC;IACrB,IAAA,0BAAM,GAAE;8BACD,sBAAS;4DAAC;AAKlB;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;8BACH,kBAAO;0DAAC;AAKd;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;+DAAC;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;+DAAC"}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { SurveyAccessRightDto } from './surveyAccessRight.dto';
|
|
2
|
+
declare class EmbeddedSurveyAccessRight {
|
|
3
|
+
surveyAccessRights?: SurveyAccessRightDto[];
|
|
4
|
+
}
|
|
5
|
+
declare const SurveyAccessRightPageDto_base: {
|
|
6
|
+
new (): {
|
|
7
|
+
_page: import("../..").PageInfoDto;
|
|
8
|
+
_embedded: EmbeddedSurveyAccessRight;
|
|
9
|
+
};
|
|
10
|
+
};
|
|
11
|
+
export declare class SurveyAccessRightPageDto extends SurveyAccessRightPageDto_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.SurveyAccessRightPageDto = 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 surveyAccessRight_dto_1 = require("./surveyAccessRight.dto");
|
|
17
|
+
class EmbeddedSurveyAccessRight {
|
|
18
|
+
}
|
|
19
|
+
__decorate([
|
|
20
|
+
(0, nestjs_1.ApiProperty)({ type: () => [surveyAccessRight_dto_1.SurveyAccessRightDto], required: false }),
|
|
21
|
+
(0, class_transformer_1.Type)(() => surveyAccessRight_dto_1.SurveyAccessRightDto),
|
|
22
|
+
(0, class_transformer_1.Expose)({ name: 'items' }),
|
|
23
|
+
__metadata("design:type", Array)
|
|
24
|
+
], EmbeddedSurveyAccessRight.prototype, "surveyAccessRights", void 0);
|
|
25
|
+
class SurveyAccessRightPageDto extends (0, page_dto_1.PageDto)(EmbeddedSurveyAccessRight) {
|
|
26
|
+
}
|
|
27
|
+
exports.SurveyAccessRightPageDto = SurveyAccessRightPageDto;
|
|
28
|
+
//# sourceMappingURL=surveyAccessRightPage.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"surveyAccessRightPage.dto.js","sourceRoot":"","sources":["../../../src/dto/surveyAccessRight/surveyAccessRightPage.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAAiD;AACjD,yCAA2C;AAC3C,kDAA8C;AAC9C,mEAA+D;AAE/D,MAAM,yBAAyB;CAK9B;AADA;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,CAAC,4CAAoB,CAAC,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IACpE,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,4CAAoB,CAAC;IAChC,IAAA,0BAAM,EAAC,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC;;qEACkB;AAG7C,MAAa,wBAAyB,SAAQ,IAAA,kBAAO,EAAC,yBAAyB,CAAC;CAAG;AAAnF,4DAAmF"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.UpdateSurveyAccessRightDto = void 0;
|
|
4
|
+
class UpdateSurveyAccessRightDto {
|
|
5
|
+
}
|
|
6
|
+
exports.UpdateSurveyAccessRightDto = UpdateSurveyAccessRightDto;
|
|
7
|
+
//# sourceMappingURL=updateSurveyAccessRight.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"updateSurveyAccessRight.dto.js","sourceRoot":"","sources":["../../../src/dto/surveyAccessRight/updateSurveyAccessRight.dto.ts"],"names":[],"mappings":";;;AAAA,MAAa,0BAA0B;CACtC;AADD,gEACC"}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export declare enum NotificationTaskTypeEnum {
|
|
2
2
|
CYCLE_ACCESS_RIGHT_CREATED_EMAIL = "CYCLE_ACCESS_RIGHT_CREATED_EMAIL",
|
|
3
3
|
QUESTION_ACCESS_RIGHT_CREATED_EMAIL = "QUESTION_ACCESS_RIGHT_CREATED_EMAIL",
|
|
4
|
+
SURVEY_ACCESS_RIGHT_CREATED_EMAIL = "SURVEY_ACCESS_RIGHT_CREATED_EMAIL",
|
|
4
5
|
FULL_ACCESS_AUDIT_ACCESS_RIGHT_CREATED_EMAIL = "FULL_ACCESS_AUDIT_ACCESS_RIGHT_CREATED_EMAIL",
|
|
5
6
|
SURVEY_OPENED_EMAIL = "SURVEY_OPENED_EMAIL",
|
|
6
7
|
ACCOUNT_ACTIVATION_EMAIL = "ACCOUNT_ACTIVATION_EMAIL",
|
|
@@ -5,6 +5,7 @@ var NotificationTaskTypeEnum;
|
|
|
5
5
|
(function (NotificationTaskTypeEnum) {
|
|
6
6
|
NotificationTaskTypeEnum["CYCLE_ACCESS_RIGHT_CREATED_EMAIL"] = "CYCLE_ACCESS_RIGHT_CREATED_EMAIL";
|
|
7
7
|
NotificationTaskTypeEnum["QUESTION_ACCESS_RIGHT_CREATED_EMAIL"] = "QUESTION_ACCESS_RIGHT_CREATED_EMAIL";
|
|
8
|
+
NotificationTaskTypeEnum["SURVEY_ACCESS_RIGHT_CREATED_EMAIL"] = "SURVEY_ACCESS_RIGHT_CREATED_EMAIL";
|
|
8
9
|
NotificationTaskTypeEnum["FULL_ACCESS_AUDIT_ACCESS_RIGHT_CREATED_EMAIL"] = "FULL_ACCESS_AUDIT_ACCESS_RIGHT_CREATED_EMAIL";
|
|
9
10
|
NotificationTaskTypeEnum["SURVEY_OPENED_EMAIL"] = "SURVEY_OPENED_EMAIL";
|
|
10
11
|
NotificationTaskTypeEnum["ACCOUNT_ACTIVATION_EMAIL"] = "ACCOUNT_ACTIVATION_EMAIL";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"notificationTaskType.enum.js","sourceRoot":"","sources":["../../src/enum/notificationTaskType.enum.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"notificationTaskType.enum.js","sourceRoot":"","sources":["../../src/enum/notificationTaskType.enum.ts"],"names":[],"mappings":";;;AASA,IAAY,wBAcX;AAdD,WAAY,wBAAwB;IACnC,iGAAqE,CAAA;IACrE,uGAA2E,CAAA;IAC3E,mGAAuE,CAAA;IACvE,yHAA6F,CAAA;IAC7F,uEAA2C,CAAA;IAC3C,iFAAqD,CAAA;IACrD,yEAA6C,CAAA;IAC7C,2EAA+C,CAAA;IAC/C,yEAA6C,CAAA;IAC7C,2DAA+B,CAAA;IAC/B,uDAA2B,CAAA;IAC3B,qEAAyC,CAAA;IACzC,uHAA2F,CAAA;AAC5F,CAAC,EAdW,wBAAwB,wCAAxB,wBAAwB,QAcnC"}
|
package/dist/index.d.ts
CHANGED
|
@@ -215,6 +215,15 @@ import { PreviousResponseChangelogViewDto } from './dto/response/changelog/previ
|
|
|
215
215
|
import { PreviousAuditChangelogEmbeddedDto } from './dto/audit/changelog/previousAuditChangelogEmbedded.dto';
|
|
216
216
|
import { PreviousSurveyChangelogEmbeddedDto } from './dto/survey/changelog/previousSurveyChangelogEmbedded.dto';
|
|
217
217
|
import { PreviousSurveyChangelogViewDto } from './dto/survey/changelog/previousSurveyChangelogView.dto';
|
|
218
|
+
import { SurveyAccessRightDto } from './dto/surveyAccessRight/surveyAccessRight.dto';
|
|
219
|
+
import { SurveyAccessRightEmbeddedDto } from './dto/surveyAccessRight/surveyAccessRightEmbedded.dto';
|
|
220
|
+
import { CreateSurveyAccessRightDto } from './dto/surveyAccessRight/createSurveyAccessRight.dto';
|
|
221
|
+
import { UpdateSurveyAccessRightDto } from './dto/surveyAccessRight/updateSurveyAccessRight.dto';
|
|
222
|
+
import { SurveyAccessRightPageDto } from './dto/surveyAccessRight/surveyAccessRightPage.dto';
|
|
223
|
+
import { BulkUpdateSurveyAccessRightDto } from './dto/surveyAccessRight/bulkUpdateSurveyAccessRight.dto';
|
|
224
|
+
import { SurveyAccessRightChangelogDto } from './dto/surveyAccessRight/changelog/surveyAccessRightChangelog.dto';
|
|
225
|
+
import { SurveyAccessRightChangelogEmbeddedDto } from './dto/surveyAccessRight/changelog/surveyAccessRightChangelogEmbedded.dto';
|
|
226
|
+
import { SurveyAccessRightChangelogPageDto } from './dto/surveyAccessRight/changelog/surveyAccessRightChangelogPage.dto';
|
|
218
227
|
import { PreviousAuditChangelogViewDto } from './dto/audit/changelog/previousAuditChangelogView.dto';
|
|
219
228
|
import { PreviousResponseAttachmentChangelogEmbeddedDto } from './dto/responseAttachment/changelog/previousResponseAttachmentChangelogEmbedded.dto';
|
|
220
229
|
import { PreviousResponseAttachmentChangelogViewDto } from './dto/responseAttachment/changelog/previousResponseAttachmentChangelogView.dto';
|
|
@@ -260,4 +269,4 @@ import { TodoStatusEnum } from "./enum/todoStatus.enum";
|
|
|
260
269
|
import { TodoTypeEnum } from "./enum/todoType.enum";
|
|
261
270
|
import { AuditCalculatedViewDto } from './dto/audit/view/auditCalculatedView.dto';
|
|
262
271
|
import { GlobalStatisticsViewDto } from './dto/statistics/globalStatisticsView.dto';
|
|
263
|
-
export { ExceptionDto, BaseDto, BaseViewDto, CollectionFilterDto, FilterDto, PageDto, PageInfoDto, BulkDto, EmbeddedDto, CronJobDto, CronJobPageDto, CronJobOptionsDto, ComponentDto, ComponentHealthDto, HealthDto, SurveyDto, SurveyEmbeddedDto, CreateSurveyDto, UpdateSurveyDto, SurveyPageDto, BulkUpdateSurveyDto, SurveyCalculatedViewDto, SurveyChangelogDto, SurveyChangelogEmbeddedDto, SurveyChangelogPageDto, PreviousSurveyChangelogEmbeddedDto, PreviousSurveyChangelogViewDto, BulkUpdateFavoriteDto, CreateFavoriteDto, FavoriteDto, FavoriteEmbeddedDto, FavoritePageDto, UpdateFavoriteDto, CreateInvitationDto, InvitationDto, InvitationEmbeddedDto, InvitationPageDto, InvitationChangelogDto, InvitationChangelogEmbeddedDto, InvitationChangelogPageDto, FavoriteChangelogDto, FavoriteChangelogEmbeddedDto, FavoriteChangelogPageDto, MyVDLUserDto, MyVDLUserPageDto, NotificationTaskDto, NotificationTaskEmbeddedDto, NotificationTaskPageDto, AuditDto, AuditEmbeddedDto, AuditPageDto, BulkUpdateAuditDto, CreateAuditDto, UpdateAuditDto, AuditCalculatedViewDto, GlobalStatisticsViewDto, AuditAccessRightDto, AuditAccessRightEmbeddedDto, CreateAuditAccessRightDto, UpdateAuditAccessRightDto, AuditAccessRightPageDto, BulkUpdateAuditAccessRightDto, AuditAccessRightChangelogDto, AuditAccessRightChangelogEmbeddedDto, AuditAccessRightChangelogPageDto, AuditChangelogDto, AuditChangelogEmbeddedDto, AuditChangelogPageDto, AuditChangelogSummaryViewDto, AuditChangelogSummaryViewEmbeddedDto, AuditChangelogSummaryViewPageDto, PreviousAuditChangelogEmbeddedDto, PreviousAuditChangelogViewDto, AuditResponseAttachmentViewDto, AuditResponseAttachmentViewEmbeddedDto, AuditResponseAttachmentViewPageDto, AuditTeamDto, AuditTeamEmbeddedDto, CreateAuditTeamDto, UpdateAuditTeamDto, AuditTeamPageDto, BulkUpdateAuditTeamDto, AuditTeamChangelogDto, AuditTeamChangelogEmbeddedDto, AuditTeamChangelogPageDto, AuditAttachmentDto, AuditAttachmentEmbeddedDto, AuditAttachmentPageDto, CreateAuditAttachmentDto, UpdateAuditAttachmentDto, BulkUpdateAuditAttachmentDto, AuditAttachmentChangelogDto, AuditAttachmentChangelogEmbeddedDto, AuditAttachmentChangelogPageDto, PreviousAuditAttachmentChangelogEmbeddedDto, PreviousAuditAttachmentChangelogViewDto, ResponseAttachmentDto, ResponseAttachmentEmbeddedDto, ResponseAttachmentPageDto, CreateResponseAttachmentDto, UpdateResponseAttachmentDto, BulkUpdateResponseAttachmentDto, ResponseAttachmentChangelogDto, ResponseAttachmentChangelogEmbeddedDto, ResponseAttachmentChangelogPageDto, PreviousResponseAttachmentChangelogEmbeddedDto, PreviousResponseAttachmentChangelogViewDto, BulkUpdateCommentDto, CommentDto, CommentEmbeddedDto, CommentPageDto, CreateCommentDto, UpdateCommentDto, CommentChangelogDto, CommentChangelogEmbeddedDto, CommentChangelogPageDto, PreviousCommentChangelogEmbeddedDto, PreviousCommentChangelogViewDto, BulkUpdateCustomerDto, CreateCustomerDto, CustomerDto, CustomerEmbeddedDto, CustomerPageDto, UpdateCustomerDto, CustomerAccessRightChangelogDto, CustomerAccessRightChangelogEmbeddedDto, CustomerAccessRightChangelogPageDto, BulkUpdateCustomerAccessRightDto, CreateCustomerAccessRightDto, CustomerAccessRightDto, CustomerAccessRightEmbeddedDto, CustomerAccessRightPageDto, UpdateCustomerAccessRightDto, CustomerChangelogDto, CustomerChangelogEmbeddedDto, CustomerChangelogPageDto, BulkUpdateCycleDto, CreateCycleDto, CycleDto, CycleCalculatedViewDto, CycleEmbeddedDto, CyclePageDto, UpdateCycleDto, CycleAccessRightDto, CycleAccessRightEmbeddedDto, CreateCycleAccessRightDto, UpdateCycleAccessRightDto, CycleAccessRightPageDto, BulkUpdateCycleAccessRightDto, CycleAccessRightChangelogDto, CycleAccessRightChangelogEmbeddedDto, CycleAccessRightChangelogPageDto, CycleAssignmentDto, CycleAssignmentEmbeddedDto, CreateCycleAssignmentDto, UpdateCycleAssignmentDto, CycleAssignmentPageDto, BulkUpdateCycleAssignmentDto, CycleAssignmentChangelogDto, CycleAssignmentChangelogEmbeddedDto, CycleAssignmentChangelogPageDto, CycleChangelogDto, CycleChangelogEmbeddedDto, CycleChangelogPageDto, PreviousCycleChangelogViewDto, PreviousCycleChangelogEmbeddedDto, BulkUpdateQuestionDto, CreateQuestionDto, QuestionDto, QuestionCalculatedViewDto, QuestionEmbeddedDto, QuestionPageDto, UpdateQuestionDto, QuestionAccessRightDto, QuestionAccessRightEmbeddedDto, CreateQuestionAccessRightDto, UpdateQuestionAccessRightDto, QuestionAccessRightPageDto, BulkUpdateQuestionAccessRightDto, QuestionAccessRightChangelogDto, QuestionAccessRightChangelogEmbeddedDto, QuestionAccessRightChangelogPageDto, QuestionAssignmentDto, QuestionAssignmentEmbeddedDto, CreateQuestionAssignmentDto, UpdateQuestionAssignmentDto, QuestionAssignmentPageDto, BulkUpdateQuestionAssignmentDto, QuestionAssignmentChangelogDto, QuestionAssignmentChangelogEmbeddedDto, QuestionAssignmentChangelogPageDto, QuestionChangelogDto, QuestionChangelogEmbeddedDto, QuestionChangelogPageDto, QuestionChangelogSummaryViewDto, QuestionChangelogSummaryViewEmbeddedDto, QuestionChangelogSummaryViewPageDto, PreviousQuestionChangelogEmbeddedDto, PreviousQuestionChangelogViewDto, QuestionAttachmentDto, QuestionAttachmentEmbeddedDto, QuestionAttachmentPageDto, CreateQuestionAttachmentDto, UpdateQuestionAttachmentDto, BulkUpdateQuestionAttachmentDto, QuestionAttachmentChangelogDto, QuestionAttachmentChangelogEmbeddedDto, QuestionAttachmentChangelogPageDto, PreviousQuestionAttachmentChangelogEmbeddedDto, PreviousQuestionAttachmentChangelogViewDto, BulkUpdateResponseDto, ResponseDto, ResponseEmbeddedDto, ResponsePageDto, UpdateResponseDto, ResponseChangelogDto, ResponseChangelogEmbeddedDto, ResponseChangelogPageDto, PreviousResponseChangelogEmbeddedDto, PreviousResponseChangelogViewDto, UserDto, UserEmbeddedDto, CreateUserDto, UpdateUserDto, UserPageDto, BulkUpdateUserDto, UserChangelogDto, UserChangelogEmbeddedDto, UserChangelogPageDto, UserRoleEnum, AttachmentStatusEnum, AttachmentUploadStatusEnum, NotificationTaskStatusEnum, NotificationTaskTypeEnum, SurveyErrorStatusEnum, SurveyStatusEnum, QuestionStatusEnum, QuestionCategoryEnum, QuestionTypeEnum, ResponseStatusEnum, CommentStatusEnum, AuditTypeEnum, ChangelogOperationEnum, AuditStatusEnum, CycleStatusEnum, InvitationStatusEnum, CombinedQuestionResponseStatusEnum, TodoStatusEnum, TodoTypeEnum, ValidationException, convertAndValidate, IsBiggerThan, IsEmptyAttribute, IsRequiredFields, IsRequiredFieldValue, IsSmallerThan, Default, TransformEmbedded, TransformFloat, TransformInteger, TransformTotal, DtoType, BaseDtoType, BaseViewDtoType, };
|
|
272
|
+
export { ExceptionDto, BaseDto, BaseViewDto, CollectionFilterDto, FilterDto, PageDto, PageInfoDto, BulkDto, EmbeddedDto, CronJobDto, CronJobPageDto, CronJobOptionsDto, ComponentDto, ComponentHealthDto, HealthDto, SurveyDto, SurveyEmbeddedDto, CreateSurveyDto, UpdateSurveyDto, SurveyPageDto, BulkUpdateSurveyDto, SurveyCalculatedViewDto, SurveyChangelogDto, SurveyChangelogEmbeddedDto, SurveyChangelogPageDto, PreviousSurveyChangelogEmbeddedDto, PreviousSurveyChangelogViewDto, SurveyAccessRightDto, SurveyAccessRightEmbeddedDto, CreateSurveyAccessRightDto, UpdateSurveyAccessRightDto, SurveyAccessRightPageDto, BulkUpdateSurveyAccessRightDto, SurveyAccessRightChangelogDto, SurveyAccessRightChangelogEmbeddedDto, SurveyAccessRightChangelogPageDto, BulkUpdateFavoriteDto, CreateFavoriteDto, FavoriteDto, FavoriteEmbeddedDto, FavoritePageDto, UpdateFavoriteDto, CreateInvitationDto, InvitationDto, InvitationEmbeddedDto, InvitationPageDto, InvitationChangelogDto, InvitationChangelogEmbeddedDto, InvitationChangelogPageDto, FavoriteChangelogDto, FavoriteChangelogEmbeddedDto, FavoriteChangelogPageDto, MyVDLUserDto, MyVDLUserPageDto, NotificationTaskDto, NotificationTaskEmbeddedDto, NotificationTaskPageDto, AuditDto, AuditEmbeddedDto, AuditPageDto, BulkUpdateAuditDto, CreateAuditDto, UpdateAuditDto, AuditCalculatedViewDto, GlobalStatisticsViewDto, AuditAccessRightDto, AuditAccessRightEmbeddedDto, CreateAuditAccessRightDto, UpdateAuditAccessRightDto, AuditAccessRightPageDto, BulkUpdateAuditAccessRightDto, AuditAccessRightChangelogDto, AuditAccessRightChangelogEmbeddedDto, AuditAccessRightChangelogPageDto, AuditChangelogDto, AuditChangelogEmbeddedDto, AuditChangelogPageDto, AuditChangelogSummaryViewDto, AuditChangelogSummaryViewEmbeddedDto, AuditChangelogSummaryViewPageDto, PreviousAuditChangelogEmbeddedDto, PreviousAuditChangelogViewDto, AuditResponseAttachmentViewDto, AuditResponseAttachmentViewEmbeddedDto, AuditResponseAttachmentViewPageDto, AuditTeamDto, AuditTeamEmbeddedDto, CreateAuditTeamDto, UpdateAuditTeamDto, AuditTeamPageDto, BulkUpdateAuditTeamDto, AuditTeamChangelogDto, AuditTeamChangelogEmbeddedDto, AuditTeamChangelogPageDto, AuditAttachmentDto, AuditAttachmentEmbeddedDto, AuditAttachmentPageDto, CreateAuditAttachmentDto, UpdateAuditAttachmentDto, BulkUpdateAuditAttachmentDto, AuditAttachmentChangelogDto, AuditAttachmentChangelogEmbeddedDto, AuditAttachmentChangelogPageDto, PreviousAuditAttachmentChangelogEmbeddedDto, PreviousAuditAttachmentChangelogViewDto, ResponseAttachmentDto, ResponseAttachmentEmbeddedDto, ResponseAttachmentPageDto, CreateResponseAttachmentDto, UpdateResponseAttachmentDto, BulkUpdateResponseAttachmentDto, ResponseAttachmentChangelogDto, ResponseAttachmentChangelogEmbeddedDto, ResponseAttachmentChangelogPageDto, PreviousResponseAttachmentChangelogEmbeddedDto, PreviousResponseAttachmentChangelogViewDto, BulkUpdateCommentDto, CommentDto, CommentEmbeddedDto, CommentPageDto, CreateCommentDto, UpdateCommentDto, CommentChangelogDto, CommentChangelogEmbeddedDto, CommentChangelogPageDto, PreviousCommentChangelogEmbeddedDto, PreviousCommentChangelogViewDto, BulkUpdateCustomerDto, CreateCustomerDto, CustomerDto, CustomerEmbeddedDto, CustomerPageDto, UpdateCustomerDto, CustomerAccessRightChangelogDto, CustomerAccessRightChangelogEmbeddedDto, CustomerAccessRightChangelogPageDto, BulkUpdateCustomerAccessRightDto, CreateCustomerAccessRightDto, CustomerAccessRightDto, CustomerAccessRightEmbeddedDto, CustomerAccessRightPageDto, UpdateCustomerAccessRightDto, CustomerChangelogDto, CustomerChangelogEmbeddedDto, CustomerChangelogPageDto, BulkUpdateCycleDto, CreateCycleDto, CycleDto, CycleCalculatedViewDto, CycleEmbeddedDto, CyclePageDto, UpdateCycleDto, CycleAccessRightDto, CycleAccessRightEmbeddedDto, CreateCycleAccessRightDto, UpdateCycleAccessRightDto, CycleAccessRightPageDto, BulkUpdateCycleAccessRightDto, CycleAccessRightChangelogDto, CycleAccessRightChangelogEmbeddedDto, CycleAccessRightChangelogPageDto, CycleAssignmentDto, CycleAssignmentEmbeddedDto, CreateCycleAssignmentDto, UpdateCycleAssignmentDto, CycleAssignmentPageDto, BulkUpdateCycleAssignmentDto, CycleAssignmentChangelogDto, CycleAssignmentChangelogEmbeddedDto, CycleAssignmentChangelogPageDto, CycleChangelogDto, CycleChangelogEmbeddedDto, CycleChangelogPageDto, PreviousCycleChangelogViewDto, PreviousCycleChangelogEmbeddedDto, BulkUpdateQuestionDto, CreateQuestionDto, QuestionDto, QuestionCalculatedViewDto, QuestionEmbeddedDto, QuestionPageDto, UpdateQuestionDto, QuestionAccessRightDto, QuestionAccessRightEmbeddedDto, CreateQuestionAccessRightDto, UpdateQuestionAccessRightDto, QuestionAccessRightPageDto, BulkUpdateQuestionAccessRightDto, QuestionAccessRightChangelogDto, QuestionAccessRightChangelogEmbeddedDto, QuestionAccessRightChangelogPageDto, QuestionAssignmentDto, QuestionAssignmentEmbeddedDto, CreateQuestionAssignmentDto, UpdateQuestionAssignmentDto, QuestionAssignmentPageDto, BulkUpdateQuestionAssignmentDto, QuestionAssignmentChangelogDto, QuestionAssignmentChangelogEmbeddedDto, QuestionAssignmentChangelogPageDto, QuestionChangelogDto, QuestionChangelogEmbeddedDto, QuestionChangelogPageDto, QuestionChangelogSummaryViewDto, QuestionChangelogSummaryViewEmbeddedDto, QuestionChangelogSummaryViewPageDto, PreviousQuestionChangelogEmbeddedDto, PreviousQuestionChangelogViewDto, QuestionAttachmentDto, QuestionAttachmentEmbeddedDto, QuestionAttachmentPageDto, CreateQuestionAttachmentDto, UpdateQuestionAttachmentDto, BulkUpdateQuestionAttachmentDto, QuestionAttachmentChangelogDto, QuestionAttachmentChangelogEmbeddedDto, QuestionAttachmentChangelogPageDto, PreviousQuestionAttachmentChangelogEmbeddedDto, PreviousQuestionAttachmentChangelogViewDto, BulkUpdateResponseDto, ResponseDto, ResponseEmbeddedDto, ResponsePageDto, UpdateResponseDto, ResponseChangelogDto, ResponseChangelogEmbeddedDto, ResponseChangelogPageDto, PreviousResponseChangelogEmbeddedDto, PreviousResponseChangelogViewDto, UserDto, UserEmbeddedDto, CreateUserDto, UpdateUserDto, UserPageDto, BulkUpdateUserDto, UserChangelogDto, UserChangelogEmbeddedDto, UserChangelogPageDto, UserRoleEnum, AttachmentStatusEnum, AttachmentUploadStatusEnum, NotificationTaskStatusEnum, NotificationTaskTypeEnum, SurveyErrorStatusEnum, SurveyStatusEnum, QuestionStatusEnum, QuestionCategoryEnum, QuestionTypeEnum, ResponseStatusEnum, CommentStatusEnum, AuditTypeEnum, ChangelogOperationEnum, AuditStatusEnum, CycleStatusEnum, InvitationStatusEnum, CombinedQuestionResponseStatusEnum, TodoStatusEnum, TodoTypeEnum, ValidationException, convertAndValidate, IsBiggerThan, IsEmptyAttribute, IsRequiredFields, IsRequiredFieldValue, IsSmallerThan, Default, TransformEmbedded, TransformFloat, TransformInteger, TransformTotal, DtoType, BaseDtoType, BaseViewDtoType, };
|