@ballistix.digital/types-pbc-react 0.60.0 → 0.62.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/auditAttachment/createAuditAttachment.dto.js +2 -2
- package/dist/dto/auditAttachment/createAuditAttachment.dto.js.map +1 -1
- 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/questionAttachment/createQuestionAttachment.dto.js +2 -2
- package/dist/dto/questionAttachment/createQuestionAttachment.dto.js.map +1 -1
- package/dist/dto/response/peliqanIntegrationToken.dto.d.ts +4 -0
- package/dist/dto/response/peliqanIntegrationToken.dto.js +28 -0
- package/dist/dto/response/peliqanIntegrationToken.dto.js.map +1 -0
- package/dist/dto/response/response.dto.d.ts +2 -0
- package/dist/dto/response/response.dto.js +10 -0
- package/dist/dto/response/response.dto.js.map +1 -1
- package/dist/dto/response/updateResponse.dto.d.ts +2 -0
- package/dist/dto/response/updateResponse.dto.js +14 -0
- package/dist/dto/response/updateResponse.dto.js.map +1 -1
- package/dist/dto/responseAttachment/createResponseAttachmentDto.js +2 -2
- package/dist/dto/responseAttachment/createResponseAttachmentDto.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 +11 -1
- package/dist/index.js +26 -6
- package/dist/index.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -21,8 +21,8 @@ __decorate([
|
|
|
21
21
|
(0, nestjs_1.ApiProperty)({ type: String, required: true }),
|
|
22
22
|
(0, class_validator_1.IsString)(),
|
|
23
23
|
(0, isFileName_validator_1.IsFileName)(),
|
|
24
|
-
(0, class_validator_1.Matches)(/^(?!\.)[^<>:"/\\|?*]+\.(pdf|jpeg|jpg|png|txt|bmp|docx|xlsx|pptx|zip|msg|eml|csv)$/i, {
|
|
25
|
-
message: 'Supported filetypes are pdf, jpeg, jpg, png, txt, bmp, docx, xlsx, pptx, zip, msg, eml, csv',
|
|
24
|
+
(0, class_validator_1.Matches)(/^(?!\.)[^<>:"/\\|?*]+\.(pdf|jpeg|jpg|png|txt|bmp|docx|xlsx|pptx|zip|msg|eml|csv|xml)$/i, {
|
|
25
|
+
message: 'Supported filetypes are pdf, jpeg, jpg, png, txt, bmp, docx, xlsx, pptx, zip, msg, eml, csv, xml',
|
|
26
26
|
}),
|
|
27
27
|
(0, class_transformer_1.Expose)(),
|
|
28
28
|
__metadata("design:type", String)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"createAuditAttachment.dto.js","sourceRoot":"","sources":["../../../src/dto/auditAttachment/createAuditAttachment.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAA2C;AAC3C,qDAAwE;AACxE,yCAA2C;AAC3C,0EAA6D;AAE7D,MAAa,wBAAwB;CAoBpC;AApBD,4DAoBC;AAZA;IAPC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAQ,GAAE;IACV,IAAA,iCAAU,GAAE;IACZ,IAAA,yBAAO,EAAC,
|
|
1
|
+
{"version":3,"file":"createAuditAttachment.dto.js","sourceRoot":"","sources":["../../../src/dto/auditAttachment/createAuditAttachment.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAA2C;AAC3C,qDAAwE;AACxE,yCAA2C;AAC3C,0EAA6D;AAE7D,MAAa,wBAAwB;CAoBpC;AApBD,4DAoBC;AAZA;IAPC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAQ,GAAE;IACV,IAAA,iCAAU,GAAE;IACZ,IAAA,yBAAO,EAAC,wFAAwF,EAAE;QAClG,OAAO,EAAE,kGAAkG;KAC3G,CAAC;IACD,IAAA,0BAAM,GAAE;;sDACK;AAMd;IAJC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IAC9C,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;IACV,IAAA,0BAAM,GAAE;;6DACY;AAKrB;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;IAC7D,IAAA,wBAAM,EAAC,CAAC,CAAC;IACT,IAAA,0BAAM,GAAE;;yDACQ"}
|
|
@@ -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"}
|
|
@@ -21,8 +21,8 @@ __decorate([
|
|
|
21
21
|
(0, nestjs_1.ApiProperty)({ type: String, required: true }),
|
|
22
22
|
(0, class_validator_1.IsString)(),
|
|
23
23
|
(0, isFileName_validator_1.IsFileName)(),
|
|
24
|
-
(0, class_validator_1.Matches)(/^(?!\.)[^<>:"/\\|?*]+\.(pdf|jpeg|jpg|png|txt|bmp|docx|xlsx|pptx|zip|msg|eml|csv)$/i, {
|
|
25
|
-
message: 'Supported filetypes are pdf, jpeg, jpg, png, txt, bmp, docx, xlsx, pptx, zip, msg, eml, csv',
|
|
24
|
+
(0, class_validator_1.Matches)(/^(?!\.)[^<>:"/\\|?*]+\.(pdf|jpeg|jpg|png|txt|bmp|docx|xlsx|pptx|zip|msg|eml|csv|xml)$/i, {
|
|
25
|
+
message: 'Supported filetypes are pdf, jpeg, jpg, png, txt, bmp, docx, xlsx, pptx, zip, msg, eml, csv, xml',
|
|
26
26
|
}),
|
|
27
27
|
(0, class_transformer_1.Expose)(),
|
|
28
28
|
__metadata("design:type", String)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"createQuestionAttachment.dto.js","sourceRoot":"","sources":["../../../src/dto/questionAttachment/createQuestionAttachment.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAA2C;AAC3C,qDAAwE;AACxE,yCAA2C;AAC3C,0EAA6D;AAE7D,MAAa,2BAA2B;CAoBvC;AApBD,kEAoBC;AAZA;IAPC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAQ,GAAE;IACV,IAAA,iCAAU,GAAE;IACZ,IAAA,yBAAO,EAAC,
|
|
1
|
+
{"version":3,"file":"createQuestionAttachment.dto.js","sourceRoot":"","sources":["../../../src/dto/questionAttachment/createQuestionAttachment.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAA2C;AAC3C,qDAAwE;AACxE,yCAA2C;AAC3C,0EAA6D;AAE7D,MAAa,2BAA2B;CAoBvC;AApBD,kEAoBC;AAZA;IAPC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAQ,GAAE;IACV,IAAA,iCAAU,GAAE;IACZ,IAAA,yBAAO,EAAC,wFAAwF,EAAE;QAClG,OAAO,EAAE,kGAAkG;KAC3G,CAAC;IACD,IAAA,0BAAM,GAAE;;yDACK;AAMd;IAJC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IAC9C,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;IACV,IAAA,0BAAM,GAAE;;gEACY;AAKrB;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;IAC7D,IAAA,wBAAM,EAAC,CAAC,CAAC;IACT,IAAA,0BAAM,GAAE;;+DACW"}
|
|
@@ -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.PeliqanIntegrationTokenDto = void 0;
|
|
13
|
+
const nestjs_1 = require("../../nestjs");
|
|
14
|
+
const class_transformer_1 = require("class-transformer");
|
|
15
|
+
class PeliqanIntegrationTokenDto {
|
|
16
|
+
}
|
|
17
|
+
exports.PeliqanIntegrationTokenDto = PeliqanIntegrationTokenDto;
|
|
18
|
+
__decorate([
|
|
19
|
+
(0, nestjs_1.ApiProperty)({ type: String, required: true }),
|
|
20
|
+
(0, class_transformer_1.Expose)(),
|
|
21
|
+
__metadata("design:type", String)
|
|
22
|
+
], PeliqanIntegrationTokenDto.prototype, "token", 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
|
+
], PeliqanIntegrationTokenDto.prototype, "baseUrl", void 0);
|
|
28
|
+
//# sourceMappingURL=peliqanIntegrationToken.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"peliqanIntegrationToken.dto.js","sourceRoot":"","sources":["../../../src/dto/response/peliqanIntegrationToken.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yCAA2C;AAC3C,yDAA2C;AAE3C,MAAa,0BAA0B;CAQtC;AARD,gEAQC;AALA;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;yDACM;AAIf;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;2DACQ"}
|
|
@@ -43,4 +43,14 @@ __decorate([
|
|
|
43
43
|
(0, class_transformer_1.Expose)(),
|
|
44
44
|
__metadata("design:type", String)
|
|
45
45
|
], ResponseDto.prototype, "questionId", void 0);
|
|
46
|
+
__decorate([
|
|
47
|
+
(0, nestjs_1.ApiProperty)({ type: Boolean, required: true }),
|
|
48
|
+
(0, class_transformer_1.Expose)(),
|
|
49
|
+
__metadata("design:type", Boolean)
|
|
50
|
+
], ResponseDto.prototype, "peliqanConnected", void 0);
|
|
51
|
+
__decorate([
|
|
52
|
+
(0, nestjs_1.ApiProperty)({ type: String, required: false, nullable: true }),
|
|
53
|
+
(0, class_transformer_1.Expose)(),
|
|
54
|
+
__metadata("design:type", String)
|
|
55
|
+
], ResponseDto.prototype, "peliqanConnector", void 0);
|
|
46
56
|
//# sourceMappingURL=response.dto.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"response.dto.js","sourceRoot":"","sources":["../../../src/dto/response/response.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,kDAA8C;AAC9C,yDAA2C;AAC3C,yCAA2C;AAC3C,iEAA6D;AAC7D,wEAAoE;AAEpE,MAAa,WAAY,SAAQ,IAAA,kBAAO,EAAC,0CAAmB,CAAC;
|
|
1
|
+
{"version":3,"file":"response.dto.js","sourceRoot":"","sources":["../../../src/dto/response/response.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,kDAA8C;AAC9C,yDAA2C;AAC3C,yCAA2C;AAC3C,iEAA6D;AAC7D,wEAAoE;AAEpE,MAAa,WAAY,SAAQ,IAAA,kBAAO,EAAC,0CAAmB,CAAC;CA4B5D;AA5BD,kCA4BC;AAzBA;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;IAC7D,IAAA,0BAAM,GAAE;;uCACG;AAIZ;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IAC9C,IAAA,0BAAM,GAAE;;iDACa;AAItB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IAC/C,IAAA,0BAAM,GAAE;;oDACiB;AAI1B;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,wCAAkB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACzD,IAAA,0BAAM,GAAE;;2CACmB;AAI5B;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;IAC7D,IAAA,0BAAM,GAAE;;+CACW;AAIpB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC9C,IAAA,0BAAM,GAAE;;qDACkB;AAI3B;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC9D,IAAA,0BAAM,GAAE;;qDACwB"}
|
|
@@ -39,4 +39,18 @@ __decorate([
|
|
|
39
39
|
(0, class_transformer_1.Expose)(),
|
|
40
40
|
__metadata("design:type", String)
|
|
41
41
|
], UpdateResponseDto.prototype, "status", void 0);
|
|
42
|
+
__decorate([
|
|
43
|
+
(0, nestjs_1.ApiProperty)({ type: Boolean, required: false }),
|
|
44
|
+
(0, class_validator_1.IsBoolean)(),
|
|
45
|
+
(0, class_validator_1.IsOptional)(),
|
|
46
|
+
(0, class_transformer_1.Expose)(),
|
|
47
|
+
__metadata("design:type", Boolean)
|
|
48
|
+
], UpdateResponseDto.prototype, "peliqanConnected", void 0);
|
|
49
|
+
__decorate([
|
|
50
|
+
(0, nestjs_1.ApiProperty)({ type: String, required: false, nullable: true }),
|
|
51
|
+
(0, class_validator_1.IsString)(),
|
|
52
|
+
(0, class_validator_1.IsOptional)(),
|
|
53
|
+
(0, class_transformer_1.Expose)(),
|
|
54
|
+
__metadata("design:type", String)
|
|
55
|
+
], UpdateResponseDto.prototype, "peliqanConnector", void 0);
|
|
42
56
|
//# sourceMappingURL=updateResponse.dto.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"updateResponse.dto.js","sourceRoot":"","sources":["../../../src/dto/response/updateResponse.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yCAA2C;AAC3C,qDAAwE;AACxE,yDAA2C;AAC3C,wEAAoE;AAEpE,MAAa,iBAAiB;
|
|
1
|
+
{"version":3,"file":"updateResponse.dto.js","sourceRoot":"","sources":["../../../src/dto/response/updateResponse.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yCAA2C;AAC3C,qDAAwE;AACxE,yDAA2C;AAC3C,wEAAoE;AAEpE,MAAa,iBAAiB;CA+B7B;AA/BD,8CA+BC;AA1BA;IAJC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IAC9C,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;;uDACa;AAMtB;IAJC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IAC/C,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;;0DACiB;AAO1B;IALC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,wCAAkB,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IAC1D,IAAA,0BAAQ,GAAE;IACV,IAAA,sBAAI,EAAC,MAAM,CAAC,MAAM,CAAC,wCAAkB,CAAC,CAAC;IACvC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;;iDACmB;AAM5B;IAJC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IAC/C,IAAA,2BAAS,GAAE;IACX,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;;2DACkB;AAM3B;IAJC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC9D,IAAA,0BAAQ,GAAE;IACV,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;;2DACwB"}
|
|
@@ -21,8 +21,8 @@ __decorate([
|
|
|
21
21
|
(0, nestjs_1.ApiProperty)({ type: String, required: true }),
|
|
22
22
|
(0, class_validator_1.IsString)(),
|
|
23
23
|
(0, isFileName_validator_1.IsFileName)(),
|
|
24
|
-
(0, class_validator_1.Matches)(/^(?!\.)[^<>:"/\\|?*]+\.(pdf|jpeg|jpg|png|txt|bmp|docx|xlsx|pptx|zip|msg|eml|csv)$/i, {
|
|
25
|
-
message: 'Supported filetypes are pdf, jpeg, jpg, png, txt, bmp, docx, xlsx, pptx, zip, msg, eml, csv',
|
|
24
|
+
(0, class_validator_1.Matches)(/^(?!\.)[^<>:"/\\|?*]+\.(pdf|jpeg|jpg|png|txt|bmp|docx|xlsx|pptx|zip|msg|eml|csv|xml)$/i, {
|
|
25
|
+
message: 'Supported filetypes are pdf, jpeg, jpg, png, txt, bmp, docx, xlsx, pptx, zip, msg, eml, csv, xml',
|
|
26
26
|
}),
|
|
27
27
|
(0, class_transformer_1.Expose)(),
|
|
28
28
|
__metadata("design:type", String)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"createResponseAttachmentDto.js","sourceRoot":"","sources":["../../../src/dto/responseAttachment/createResponseAttachmentDto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAA2C;AAC3C,qDAAwE;AACxE,yCAA2C;AAC3C,0EAA6D;AAE7D,MAAa,2BAA2B;CAoBvC;AApBD,kEAoBC;AAZA;IAPC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAQ,GAAE;IACV,IAAA,iCAAU,GAAE;IACZ,IAAA,yBAAO,EAAC,
|
|
1
|
+
{"version":3,"file":"createResponseAttachmentDto.js","sourceRoot":"","sources":["../../../src/dto/responseAttachment/createResponseAttachmentDto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAA2C;AAC3C,qDAAwE;AACxE,yCAA2C;AAC3C,0EAA6D;AAE7D,MAAa,2BAA2B;CAoBvC;AApBD,kEAoBC;AAZA;IAPC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAQ,GAAE;IACV,IAAA,iCAAU,GAAE;IACZ,IAAA,yBAAO,EAAC,wFAAwF,EAAE;QAClG,OAAO,EAAE,kGAAkG;KAC3G,CAAC;IACD,IAAA,0BAAM,GAAE;;yDACK;AAMd;IAJC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IAC9C,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,GAAE;IACV,IAAA,0BAAM,GAAE;;gEACY;AAKrB;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;IAC7D,IAAA,wBAAM,EAAC,CAAC,CAAC;IACT,IAAA,0BAAM,GAAE;;+DACW"}
|
|
@@ -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"}
|