@ballistix.digital/types-pb-tool-nest 0.13.0 → 0.15.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/attachment/attachment.dto.d.ts +1 -1
- package/dist/dto/attachment/attachment.dto.js +6 -6
- package/dist/dto/attachment/attachment.dto.js.map +1 -1
- package/dist/dto/attachment/createAttachment.dto.d.ts +0 -1
- package/dist/dto/attachment/createAttachment.dto.js +1 -7
- package/dist/dto/attachment/createAttachment.dto.js.map +1 -1
- package/dist/dto/attachment/updateAttachment.dto.d.ts +0 -1
- package/dist/dto/attachment/updateAttachment.dto.js +1 -8
- package/dist/dto/attachment/updateAttachment.dto.js.map +1 -1
- package/dist/dto/taxReturn/taxReturn.dto.d.ts +8 -0
- package/dist/dto/taxReturn/taxReturn.dto.js +33 -1
- package/dist/dto/taxReturn/taxReturn.dto.js.map +1 -1
- package/dist/dto/taxReturn/taxReturnEmbedded.dto.d.ts +2 -0
- package/dist/dto/taxReturn/taxReturnEmbedded.dto.js +8 -1
- package/dist/dto/taxReturn/taxReturnEmbedded.dto.js.map +1 -1
- package/dist/dto/taxReturn/updateTaxReturn.dto.d.ts +5 -0
- package/dist/dto/taxReturn/updateTaxReturn.dto.js +24 -1
- package/dist/dto/taxReturn/updateTaxReturn.dto.js.map +1 -1
- package/dist/dto/taxReturnCalculated/taxReturnCalculatedView.dto.d.ts +10 -0
- package/dist/dto/taxReturnCalculated/taxReturnCalculatedView.dto.js +49 -0
- package/dist/dto/taxReturnCalculated/taxReturnCalculatedView.dto.js.map +1 -0
- package/dist/dto/taxReturnCalculated/taxReturnCalculatedViewEmbedded.dto.d.ts +4 -0
- package/dist/dto/taxReturnCalculated/taxReturnCalculatedViewEmbedded.dto.js +29 -0
- package/dist/dto/taxReturnCalculated/taxReturnCalculatedViewEmbedded.dto.js.map +1 -0
- package/dist/enum/taxReturnAttachmentStatus.enum.d.ts +3 -0
- package/dist/enum/taxReturnAttachmentStatus.enum.js +8 -0
- package/dist/enum/taxReturnAttachmentStatus.enum.js.map +1 -0
- package/dist/enum/taxReturnStatus.enum.d.ts +9 -0
- package/dist/enum/taxReturnStatus.enum.js +14 -0
- package/dist/enum/taxReturnStatus.enum.js.map +1 -0
- package/dist/index.d.ts +5 -1
- package/dist/index.js +10 -2
- package/dist/index.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
|
@@ -7,11 +7,11 @@ export declare class AttachmentDto extends AttachmentDto_base {
|
|
|
7
7
|
id: string;
|
|
8
8
|
name: string;
|
|
9
9
|
questionIdentifier: string;
|
|
10
|
+
indexNumber: number;
|
|
10
11
|
presignedUrl: string;
|
|
11
12
|
fileSize: number;
|
|
12
13
|
mimeType: string;
|
|
13
14
|
description: string;
|
|
14
|
-
publicationDate: string;
|
|
15
15
|
type: AttachmentTypeEnum;
|
|
16
16
|
status: AttachmentStatusEnum;
|
|
17
17
|
uploadStatus: AttachmentUploadStatusEnum;
|
|
@@ -20,7 +20,7 @@ const attachmentType_enum_1 = require("../../enum/attachmentType.enum");
|
|
|
20
20
|
const attachmentStatus_enum_1 = require("../../enum/attachmentStatus.enum");
|
|
21
21
|
class AttachmentDto extends (0, base_dto_1.BaseDto)(attachmentEmbedded_dto_1.AttachmentEmbeddedDto) {
|
|
22
22
|
static _OPENAPI_METADATA_FACTORY() {
|
|
23
|
-
return { id: { required: true, type: () => String }, name: { required: true, type: () => String }, questionIdentifier: { required: true, type: () => String },
|
|
23
|
+
return { id: { required: true, type: () => String }, name: { required: true, type: () => String }, questionIdentifier: { required: true, type: () => String }, indexNumber: { required: true, type: () => Number }, presignedUrl: { required: true, type: () => String }, fileSize: { required: true, type: () => Number }, mimeType: { required: true, type: () => String }, description: { required: true, type: () => String }, type: { required: true, enum: require("../../enum/attachmentType.enum").AttachmentTypeEnum }, status: { required: true, enum: require("../../enum/attachmentStatus.enum").AttachmentStatusEnum }, uploadStatus: { required: true, enum: require("../../enum/attachmentUploadStatus.enum").AttachmentUploadStatusEnum }, storageId: { required: true, type: () => String }, taxReturnId: { required: true, type: () => String } };
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
26
|
exports.AttachmentDto = AttachmentDto;
|
|
@@ -39,6 +39,11 @@ __decorate([
|
|
|
39
39
|
(0, class_transformer_1.Expose)(),
|
|
40
40
|
__metadata("design:type", String)
|
|
41
41
|
], AttachmentDto.prototype, "questionIdentifier", void 0);
|
|
42
|
+
__decorate([
|
|
43
|
+
(0, nestjs_1.ApiProperty)({ type: Number, required: true }),
|
|
44
|
+
(0, class_transformer_1.Expose)(),
|
|
45
|
+
__metadata("design:type", Number)
|
|
46
|
+
], AttachmentDto.prototype, "indexNumber", void 0);
|
|
42
47
|
__decorate([
|
|
43
48
|
(0, nestjs_1.ApiProperty)({ type: String, required: true }),
|
|
44
49
|
(0, class_transformer_1.Expose)(),
|
|
@@ -59,11 +64,6 @@ __decorate([
|
|
|
59
64
|
(0, class_transformer_1.Expose)(),
|
|
60
65
|
__metadata("design:type", String)
|
|
61
66
|
], AttachmentDto.prototype, "description", void 0);
|
|
62
|
-
__decorate([
|
|
63
|
-
(0, nestjs_1.ApiProperty)({ type: String, required: true, format: 'date-time' }),
|
|
64
|
-
(0, class_transformer_1.Expose)(),
|
|
65
|
-
__metadata("design:type", String)
|
|
66
|
-
], AttachmentDto.prototype, "publicationDate", void 0);
|
|
67
67
|
__decorate([
|
|
68
68
|
(0, nestjs_1.ApiProperty)({ enum: attachmentUploadStatus_enum_1.AttachmentUploadStatusEnum, required: true }),
|
|
69
69
|
(0, class_transformer_1.Expose)(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"attachment.dto.js","sourceRoot":"","sources":["../../../src/dto/attachment/attachment.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,yDAA2C;AAC3C,yCAA2C;AAE3C,kDAA8C;AAE9C,qEAAiE;AACjE,wFAAoF;AACpF,wEAAoE;AACpE,4EAAwE;AAExE,MAAa,aAAc,SAAQ,IAAA,kBAAO,EAAC,8CAAqB,CAAC;;;;CAoDhE;AApDD,sCAoDC;AAjDA;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;IAC7D,IAAA,0BAAM,GAAE;;yCACG;AAIZ;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;2CACK;AAId;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;yDACmB;AAI5B;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;
|
|
1
|
+
{"version":3,"file":"attachment.dto.js","sourceRoot":"","sources":["../../../src/dto/attachment/attachment.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,yDAA2C;AAC3C,yCAA2C;AAE3C,kDAA8C;AAE9C,qEAAiE;AACjE,wFAAoF;AACpF,wEAAoE;AACpE,4EAAwE;AAExE,MAAa,aAAc,SAAQ,IAAA,kBAAO,EAAC,8CAAqB,CAAC;;;;CAoDhE;AApDD,sCAoDC;AAjDA;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;IAC7D,IAAA,0BAAM,GAAE;;yCACG;AAIZ;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;2CACK;AAId;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;yDACmB;AAI5B;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;kDACY;AAIrB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;mDACY;AAIrB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;+CACS;AAIlB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;+CACS;AAIlB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;kDACY;AAIrB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,wDAA0B,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACjE,IAAA,0BAAM,GAAE;;2CACiB;AAI1B;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,4CAAoB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC3D,IAAA,0BAAM,GAAE;;6CACqB;AAI9B;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,wDAA0B,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACjE,IAAA,0BAAM,GAAE;;mDACiC;AAI1C;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;gDACU;AAInB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;IAC7D,IAAA,0BAAM,GAAE;;kDACW"}
|
|
@@ -18,7 +18,7 @@ const lodash_1 = require("lodash");
|
|
|
18
18
|
const attachmentType_enum_1 = require("../../enum/attachmentType.enum");
|
|
19
19
|
class CreateAttachmentDto {
|
|
20
20
|
static _OPENAPI_METADATA_FACTORY() {
|
|
21
|
-
return { name: { required: true, type: () => String }, questionIdentifier: { required: true, type: () => String }, description: { required: false, type: () => String },
|
|
21
|
+
return { name: { required: true, type: () => String }, questionIdentifier: { required: true, type: () => String }, description: { required: false, type: () => String }, attachmentTags: { required: true, type: () => [String] }, type: { required: true, enum: require("../../enum/attachmentType.enum").AttachmentTypeEnum, enum: (0, lodash_1.values)(attachmentType_enum_1.AttachmentTypeEnum) }, taxReturnId: { required: true, type: () => String } };
|
|
22
22
|
}
|
|
23
23
|
}
|
|
24
24
|
exports.CreateAttachmentDto = CreateAttachmentDto;
|
|
@@ -40,12 +40,6 @@ __decorate([
|
|
|
40
40
|
(0, class_transformer_1.Expose)(),
|
|
41
41
|
__metadata("design:type", String)
|
|
42
42
|
], CreateAttachmentDto.prototype, "description", void 0);
|
|
43
|
-
__decorate([
|
|
44
|
-
(0, nestjs_1.ApiProperty)({ type: String, required: false, format: 'date-time' }),
|
|
45
|
-
(0, class_validator_1.IsOptional)(),
|
|
46
|
-
(0, class_transformer_1.Expose)(),
|
|
47
|
-
__metadata("design:type", String)
|
|
48
|
-
], CreateAttachmentDto.prototype, "publicationDate", void 0);
|
|
49
43
|
__decorate([
|
|
50
44
|
(0, nestjs_1.ApiProperty)({ type: [String], required: true }),
|
|
51
45
|
(0, class_transformer_1.Expose)(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"createAttachment.dto.js","sourceRoot":"","sources":["../../../src/dto/attachment/createAttachment.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,yDAA2C;AAC3C,qDAAqE;AACrE,yCAA2C;AAE3C,mCAAgC;AAChC,wEAAoE;AAGpE,MAAa,mBAAmB;;
|
|
1
|
+
{"version":3,"file":"createAttachment.dto.js","sourceRoot":"","sources":["../../../src/dto/attachment/createAttachment.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,yDAA2C;AAC3C,qDAAqE;AACrE,yCAA2C;AAE3C,mCAAgC;AAChC,wEAAoE;AAGpE,MAAa,mBAAmB;;6UAqBzB,IAAA,eAAM,EAAC,wCAAkB,CAAC;;CAQhC;AA7BD,kDA6BC;AAzBA;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAQ,GAAE;IACV,IAAA,0BAAM,GAAE;;iDACI;AAIb;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;+DACmB;AAM5B;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;;wDACY;AAIrB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,CAAC,MAAM,CAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC/C,IAAA,0BAAM,GAAE;;2DACgB;AAKzB;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,wCAAkB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACzD,IAAA,sBAAI,EAAC,IAAA,eAAM,EAAC,wCAAkB,CAAC,CAAC;IAChC,IAAA,0BAAM,GAAE;;iDACgB;AAKzB;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;;wDACW"}
|
|
@@ -3,7 +3,6 @@ import { AttachmentStatusEnum } from '../../enum/attachmentStatus.enum';
|
|
|
3
3
|
export declare class UpdateAttachmentDto {
|
|
4
4
|
name?: string;
|
|
5
5
|
description?: string;
|
|
6
|
-
publicationDate?: string;
|
|
7
6
|
uploadStatus?: AttachmentUploadStatusEnum;
|
|
8
7
|
status?: AttachmentStatusEnum;
|
|
9
8
|
attachmentTags?: string[];
|
|
@@ -19,7 +19,7 @@ const attachmentUploadStatus_enum_1 = require("../../enum/attachmentUploadStatus
|
|
|
19
19
|
const attachmentStatus_enum_1 = require("../../enum/attachmentStatus.enum");
|
|
20
20
|
class UpdateAttachmentDto {
|
|
21
21
|
static _OPENAPI_METADATA_FACTORY() {
|
|
22
|
-
return { name: { required: false, type: () => String }, description: { required: false, type: () => String },
|
|
22
|
+
return { name: { required: false, type: () => String }, description: { required: false, type: () => String }, uploadStatus: { required: false, enum: require("../../enum/attachmentUploadStatus.enum").AttachmentUploadStatusEnum, enum: (0, lodash_1.values)(attachmentUploadStatus_enum_1.AttachmentUploadStatusEnum) }, status: { required: false, enum: require("../../enum/attachmentStatus.enum").AttachmentStatusEnum, enum: (0, lodash_1.values)(attachmentStatus_enum_1.AttachmentStatusEnum) }, attachmentTags: { required: false, type: () => [String] } };
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
25
|
exports.UpdateAttachmentDto = UpdateAttachmentDto;
|
|
@@ -37,13 +37,6 @@ __decorate([
|
|
|
37
37
|
(0, class_transformer_1.Expose)(),
|
|
38
38
|
__metadata("design:type", String)
|
|
39
39
|
], UpdateAttachmentDto.prototype, "description", void 0);
|
|
40
|
-
__decorate([
|
|
41
|
-
(0, nestjs_1.ApiProperty)({ type: String, required: false }),
|
|
42
|
-
(0, class_validator_1.IsOptional)(),
|
|
43
|
-
(0, class_validator_1.IsString)(),
|
|
44
|
-
(0, class_transformer_1.Expose)(),
|
|
45
|
-
__metadata("design:type", String)
|
|
46
|
-
], UpdateAttachmentDto.prototype, "publicationDate", void 0);
|
|
47
40
|
__decorate([
|
|
48
41
|
(0, nestjs_1.ApiProperty)({ enum: attachmentUploadStatus_enum_1.AttachmentUploadStatusEnum, required: false }),
|
|
49
42
|
(0, class_validator_1.IsOptional)(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"updateAttachment.dto.js","sourceRoot":"","sources":["../../../src/dto/attachment/updateAttachment.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,yCAA2C;AAC3C,yDAA2C;AAC3C,qDAA6D;AAC7D,mCAAgC;AAChC,wFAAoF;AACpF,4EAAwE;AAExE,MAAa,mBAAmB;;
|
|
1
|
+
{"version":3,"file":"updateAttachment.dto.js","sourceRoot":"","sources":["../../../src/dto/attachment/updateAttachment.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,yCAA2C;AAC3C,yDAA2C;AAC3C,qDAA6D;AAC7D,mCAAgC;AAChC,wFAAoF;AACpF,4EAAwE;AAExE,MAAa,mBAAmB;;iPAezB,IAAA,eAAM,EAAC,wDAA0B,CAAC,6GAMlC,IAAA,eAAM,EAAC,4CAAoB,CAAC;;CASlC;AA9BD,kDA8BC;AAzBA;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;;iDACK;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;;wDACY;AAMrB;IAJC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,wDAA0B,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IAClE,IAAA,4BAAU,GAAE;IACZ,IAAA,sBAAI,EAAC,IAAA,eAAM,EAAC,wDAA0B,CAAC,CAAC;IACxC,IAAA,0BAAM,GAAE;;yDACiC;AAM1C;IAJC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,4CAAoB,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IAC5D,IAAA,4BAAU,GAAE;IACZ,IAAA,sBAAI,EAAC,IAAA,eAAM,EAAC,4CAAoB,CAAC,CAAC;IAClC,IAAA,0BAAM,GAAE;;mDACqB;AAM9B;IAJC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,CAAC,MAAM,CAAC,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IAChD,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAQ,EAAC,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;IACxB,IAAA,0BAAM,GAAE;;2DACiB"}
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
import { TaxReturnEmbeddedDto } from './taxReturnEmbedded.dto';
|
|
2
2
|
import { LanguageEnum } from '../../enum/language.enum';
|
|
3
|
+
import { TaxReturnStatusEnum } from '../../enum/taxReturnStatus.enum';
|
|
4
|
+
import { TaxReturnAttachmentStatusEnum } from '../../enum/taxReturnAttachmentStatus.enum';
|
|
3
5
|
declare const TaxReturnDto_base: import("../generic/base.dto").BaseDtoType<TaxReturnEmbeddedDto>;
|
|
4
6
|
export declare class TaxReturnDto extends TaxReturnDto_base {
|
|
5
7
|
id: string;
|
|
@@ -7,6 +9,8 @@ export declare class TaxReturnDto extends TaxReturnDto_base {
|
|
|
7
9
|
pbId: string;
|
|
8
10
|
from: string;
|
|
9
11
|
to: string;
|
|
12
|
+
statusUpdatedAt: string;
|
|
13
|
+
deadline: string;
|
|
10
14
|
isActive: boolean;
|
|
11
15
|
project: string;
|
|
12
16
|
isBlocked: boolean;
|
|
@@ -23,6 +27,8 @@ export declare class TaxReturnDto extends TaxReturnDto_base {
|
|
|
23
27
|
phone: string;
|
|
24
28
|
mobile: string;
|
|
25
29
|
language: LanguageEnum;
|
|
30
|
+
status: TaxReturnStatusEnum;
|
|
31
|
+
attachmentsStatus: TaxReturnAttachmentStatusEnum;
|
|
26
32
|
dossierResponsibleName: string;
|
|
27
33
|
partnerFirstname: string;
|
|
28
34
|
partnerLastname: string;
|
|
@@ -30,8 +36,10 @@ export declare class TaxReturnDto extends TaxReturnDto_base {
|
|
|
30
36
|
partnerBirthdate: string;
|
|
31
37
|
partnerRelationId: string;
|
|
32
38
|
isArchived: boolean;
|
|
39
|
+
isMyVDL: boolean;
|
|
33
40
|
incomeYearId: string;
|
|
34
41
|
teamId: string;
|
|
35
42
|
userId: string;
|
|
43
|
+
taxReturnNextStatuses: TaxReturnStatusEnum[];
|
|
36
44
|
}
|
|
37
45
|
export {};
|
|
@@ -16,9 +16,11 @@ const nestjs_1 = require("../../nestjs");
|
|
|
16
16
|
const base_dto_1 = require("../generic/base.dto");
|
|
17
17
|
const taxReturnEmbedded_dto_1 = require("./taxReturnEmbedded.dto");
|
|
18
18
|
const language_enum_1 = require("../../enum/language.enum");
|
|
19
|
+
const taxReturnStatus_enum_1 = require("../../enum/taxReturnStatus.enum");
|
|
20
|
+
const taxReturnAttachmentStatus_enum_1 = require("../../enum/taxReturnAttachmentStatus.enum");
|
|
19
21
|
class TaxReturnDto extends (0, base_dto_1.BaseDto)(taxReturnEmbedded_dto_1.TaxReturnEmbeddedDto) {
|
|
20
22
|
static _OPENAPI_METADATA_FACTORY() {
|
|
21
|
-
return { id: { required: true, type: () => String }, company: { required: true, type: () => String }, pbId: { required: true, type: () => String }, from: { required: true, type: () => String }, to: { required: true, type: () => String }, isActive: { required: true, type: () => Boolean }, project: { required: true, type: () => String }, isBlocked: { required: true, type: () => Boolean }, name: { required: true, type: () => String }, firstname: { required: true, type: () => String }, lastname: { required: true, type: () => String }, nationalRegistrationNumber: { required: true, type: () => String }, birthdate: { required: true, type: () => String }, address: { required: true, type: () => String }, zipCode: { required: true, type: () => String }, city: { required: true, type: () => String }, country: { required: true, type: () => String }, email: { required: true, type: () => String }, phone: { required: true, type: () => String }, mobile: { required: true, type: () => String }, language: { required: true, enum: require("../../enum/language.enum").LanguageEnum }, dossierResponsibleName: { required: true, type: () => String }, partnerFirstname: { required: true, type: () => String }, partnerLastname: { required: true, type: () => String }, partnerNationalRegistrationNumber: { required: true, type: () => String }, partnerBirthdate: { required: true, type: () => String }, partnerRelationId: { required: true, type: () => String }, isArchived: { required: true, type: () => Boolean }, incomeYearId: { required: true, type: () => String }, teamId: { required: true, type: () => String }, userId: { required: true, type: () => String } };
|
|
23
|
+
return { id: { required: true, type: () => String }, company: { required: true, type: () => String }, pbId: { required: true, type: () => String }, from: { required: true, type: () => String }, to: { required: true, type: () => String }, statusUpdatedAt: { required: true, type: () => String }, deadline: { required: true, type: () => String }, isActive: { required: true, type: () => Boolean }, project: { required: true, type: () => String }, isBlocked: { required: true, type: () => Boolean }, name: { required: true, type: () => String }, firstname: { required: true, type: () => String }, lastname: { required: true, type: () => String }, nationalRegistrationNumber: { required: true, type: () => String }, birthdate: { required: true, type: () => String }, address: { required: true, type: () => String }, zipCode: { required: true, type: () => String }, city: { required: true, type: () => String }, country: { required: true, type: () => String }, email: { required: true, type: () => String }, phone: { required: true, type: () => String }, mobile: { required: true, type: () => String }, language: { required: true, enum: require("../../enum/language.enum").LanguageEnum }, status: { required: true, enum: require("../../enum/taxReturnStatus.enum").TaxReturnStatusEnum }, attachmentsStatus: { required: true, type: () => String, enum: require("../../enum/taxReturnAttachmentStatus.enum").TaxReturnAttachmentStatusEnum }, dossierResponsibleName: { required: true, type: () => String }, partnerFirstname: { required: true, type: () => String }, partnerLastname: { required: true, type: () => String }, partnerNationalRegistrationNumber: { required: true, type: () => String }, partnerBirthdate: { required: true, type: () => String }, partnerRelationId: { required: true, type: () => String }, isArchived: { required: true, type: () => Boolean }, isMyVDL: { required: true, type: () => Boolean }, incomeYearId: { required: true, type: () => String }, teamId: { required: true, type: () => String }, userId: { required: true, type: () => String }, taxReturnNextStatuses: { required: true, enum: require("../../enum/taxReturnStatus.enum").TaxReturnStatusEnum, isArray: true } };
|
|
22
24
|
}
|
|
23
25
|
}
|
|
24
26
|
exports.TaxReturnDto = TaxReturnDto;
|
|
@@ -47,6 +49,16 @@ __decorate([
|
|
|
47
49
|
(0, class_transformer_1.Expose)(),
|
|
48
50
|
__metadata("design:type", String)
|
|
49
51
|
], TaxReturnDto.prototype, "to", void 0);
|
|
52
|
+
__decorate([
|
|
53
|
+
(0, nestjs_1.ApiProperty)({ type: String, required: true, format: 'date-time' }),
|
|
54
|
+
(0, class_transformer_1.Expose)(),
|
|
55
|
+
__metadata("design:type", String)
|
|
56
|
+
], TaxReturnDto.prototype, "statusUpdatedAt", void 0);
|
|
57
|
+
__decorate([
|
|
58
|
+
(0, nestjs_1.ApiProperty)({ type: String, required: true, format: 'date-time' }),
|
|
59
|
+
(0, class_transformer_1.Expose)(),
|
|
60
|
+
__metadata("design:type", String)
|
|
61
|
+
], TaxReturnDto.prototype, "deadline", void 0);
|
|
50
62
|
__decorate([
|
|
51
63
|
(0, nestjs_1.ApiProperty)({ type: String, required: true }),
|
|
52
64
|
(0, class_transformer_1.Expose)(),
|
|
@@ -127,6 +139,16 @@ __decorate([
|
|
|
127
139
|
(0, class_transformer_1.Expose)(),
|
|
128
140
|
__metadata("design:type", String)
|
|
129
141
|
], TaxReturnDto.prototype, "language", void 0);
|
|
142
|
+
__decorate([
|
|
143
|
+
(0, nestjs_1.ApiProperty)({ enum: taxReturnStatus_enum_1.TaxReturnStatusEnum, required: true }),
|
|
144
|
+
(0, class_transformer_1.Expose)(),
|
|
145
|
+
__metadata("design:type", String)
|
|
146
|
+
], TaxReturnDto.prototype, "status", void 0);
|
|
147
|
+
__decorate([
|
|
148
|
+
(0, nestjs_1.ApiProperty)({ enum: taxReturnAttachmentStatus_enum_1.TaxReturnAttachmentStatusEnum, required: true }),
|
|
149
|
+
(0, class_transformer_1.Expose)(),
|
|
150
|
+
__metadata("design:type", String)
|
|
151
|
+
], TaxReturnDto.prototype, "attachmentsStatus", void 0);
|
|
130
152
|
__decorate([
|
|
131
153
|
(0, nestjs_1.ApiProperty)({ type: String, required: true }),
|
|
132
154
|
(0, class_transformer_1.Expose)(),
|
|
@@ -162,6 +184,11 @@ __decorate([
|
|
|
162
184
|
(0, class_transformer_1.Expose)(),
|
|
163
185
|
__metadata("design:type", Boolean)
|
|
164
186
|
], TaxReturnDto.prototype, "isArchived", void 0);
|
|
187
|
+
__decorate([
|
|
188
|
+
(0, nestjs_1.ApiProperty)({ type: Boolean, required: true }),
|
|
189
|
+
(0, class_transformer_1.Expose)(),
|
|
190
|
+
__metadata("design:type", Boolean)
|
|
191
|
+
], TaxReturnDto.prototype, "isMyVDL", void 0);
|
|
165
192
|
__decorate([
|
|
166
193
|
(0, nestjs_1.ApiProperty)({ type: String, required: true, format: 'uuid' }),
|
|
167
194
|
(0, class_transformer_1.Expose)(),
|
|
@@ -177,4 +204,9 @@ __decorate([
|
|
|
177
204
|
(0, class_transformer_1.Expose)(),
|
|
178
205
|
__metadata("design:type", String)
|
|
179
206
|
], TaxReturnDto.prototype, "userId", void 0);
|
|
207
|
+
__decorate([
|
|
208
|
+
(0, nestjs_1.ApiProperty)({ enum: taxReturnStatus_enum_1.TaxReturnStatusEnum, required: true, isArray: true }),
|
|
209
|
+
(0, class_transformer_1.Expose)(),
|
|
210
|
+
__metadata("design:type", Array)
|
|
211
|
+
], TaxReturnDto.prototype, "taxReturnNextStatuses", void 0);
|
|
180
212
|
//# sourceMappingURL=taxReturn.dto.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"taxReturn.dto.js","sourceRoot":"","sources":["../../../src/dto/taxReturn/taxReturn.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,yDAA2C;AAC3C,yCAA2C;AAE3C,kDAA8C;AAC9C,mEAA+D;AAC/D,4DAAwD;
|
|
1
|
+
{"version":3,"file":"taxReturn.dto.js","sourceRoot":"","sources":["../../../src/dto/taxReturn/taxReturn.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,yDAA2C;AAC3C,yCAA2C;AAE3C,kDAA8C;AAC9C,mEAA+D;AAC/D,4DAAwD;AACxD,0EAAsE;AACtE,8FAA0F;AAE1F,MAAa,YAAa,SAAQ,IAAA,kBAAO,EAAC,4CAAoB,CAAC;;;;CAoJ9D;AApJD,oCAoJC;AAjJA;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;IAC7D,IAAA,0BAAM,GAAE;;wCACG;AAIZ;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;6CACO;AAIhB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;IAC7D,IAAA,0BAAM,GAAE;;0CACI;AAIb;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,WAAW,EAAE,CAAC;IAClE,IAAA,0BAAM,GAAE;;0CACI;AAIb;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,WAAW,EAAE,CAAC;IAClE,IAAA,0BAAM,GAAE;;wCACE;AAIX;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,WAAW,EAAE,CAAC;IAClE,IAAA,0BAAM,GAAE;;qDACe;AAIxB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,WAAW,EAAE,CAAC;IAClE,IAAA,0BAAM,GAAE;;8CACQ;AAIjB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;8CACS;AAIlB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;6CACO;AAIhB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC9C,IAAA,0BAAM,GAAE;;+CACU;AAInB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;0CACI;AAIb;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;+CACS;AAIlB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;8CACQ;AAIjB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;gEAC0B;AAInC;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,WAAW,EAAE,CAAC;IAClE,IAAA,0BAAM,GAAE;;+CACS;AAIlB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;6CACO;AAIhB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;6CACO;AAIhB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;0CACI;AAIb;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;6CACO;AAIhB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;2CACK;AAId;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;2CACK;AAId;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;4CACM;AAIf;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,4BAAY,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACnD,IAAA,0BAAM,GAAE;;8CACc;AAIvB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,0CAAmB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC1D,IAAA,0BAAM,GAAE;;4CACmB;AAI5B;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,8DAA6B,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IACpE,IAAA,0BAAM,GAAE;;uDACwC;AAIjD;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;4DACsB;AAI/B;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;sDACgB;AAIzB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;qDACe;AAIxB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;uEACiC;AAI1C;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,WAAW,EAAE,CAAC;IAClE,IAAA,0BAAM,GAAE;;sDACgB;AAIzB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;IAC7D,IAAA,0BAAM,GAAE;;uDACiB;AAI1B;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC9C,IAAA,0BAAM,GAAE;;gDACW;AAIpB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,OAAO,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC9C,IAAA,0BAAM,GAAE;;6CACQ;AAIjB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;IAC7D,IAAA,0BAAM,GAAE;;kDACY;AAIrB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;IAC7D,IAAA,0BAAM,GAAE;;4CACM;AAIf;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;IAC7D,IAAA,0BAAM,GAAE;;4CACM;AAIf;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,0CAAmB,EAAE,QAAQ,EAAE,IAAI,EAAE,OAAO,EAAE,IAAI,EAAE,CAAC;IACzE,IAAA,0BAAM,GAAE;;2DACoC"}
|
|
@@ -3,11 +3,13 @@ import { ResponseDto } from '../response/response.dto';
|
|
|
3
3
|
import { TeamDto } from '../team/team.dto';
|
|
4
4
|
import { IncomeYearDto } from '../incomeYear/incomeYear.dto';
|
|
5
5
|
import { AttachmentDto } from '../attachment/attachment.dto';
|
|
6
|
+
import { TaxReturnCalculatedViewDto } from '../taxReturnCalculated/taxReturnCalculatedView.dto';
|
|
6
7
|
export declare class TaxReturnEmbeddedDto {
|
|
7
8
|
team: TeamDto;
|
|
8
9
|
incomeYear: IncomeYearDto;
|
|
9
10
|
responses: ResponseDto[];
|
|
10
11
|
attachments: AttachmentDto[];
|
|
12
|
+
calculated: TaxReturnCalculatedViewDto;
|
|
11
13
|
createdBy?: UserDto;
|
|
12
14
|
updatedBy?: UserDto;
|
|
13
15
|
}
|
|
@@ -18,9 +18,10 @@ const response_dto_1 = require("../response/response.dto");
|
|
|
18
18
|
const team_dto_1 = require("../team/team.dto");
|
|
19
19
|
const incomeYear_dto_1 = require("../incomeYear/incomeYear.dto");
|
|
20
20
|
const attachment_dto_1 = require("../attachment/attachment.dto");
|
|
21
|
+
const taxReturnCalculatedView_dto_1 = require("../taxReturnCalculated/taxReturnCalculatedView.dto");
|
|
21
22
|
class TaxReturnEmbeddedDto {
|
|
22
23
|
static _OPENAPI_METADATA_FACTORY() {
|
|
23
|
-
return { team: { required: true, type: () => require("../team/team.dto").TeamDto }, incomeYear: { required: true, type: () => require("../incomeYear/incomeYear.dto").IncomeYearDto }, responses: { required: true, type: () => [require("../response/response.dto").ResponseDto] }, attachments: { required: true, type: () => [require("../attachment/attachment.dto").AttachmentDto] }, createdBy: { required: false, type: () => require("../user/user.dto").UserDto }, updatedBy: { required: false, type: () => require("../user/user.dto").UserDto } };
|
|
24
|
+
return { team: { required: true, type: () => require("../team/team.dto").TeamDto }, incomeYear: { required: true, type: () => require("../incomeYear/incomeYear.dto").IncomeYearDto }, responses: { required: true, type: () => [require("../response/response.dto").ResponseDto] }, attachments: { required: true, type: () => [require("../attachment/attachment.dto").AttachmentDto] }, calculated: { required: true, type: () => require("../taxReturnCalculated/taxReturnCalculatedView.dto").TaxReturnCalculatedViewDto }, createdBy: { required: false, type: () => require("../user/user.dto").UserDto }, updatedBy: { required: false, type: () => require("../user/user.dto").UserDto } };
|
|
24
25
|
}
|
|
25
26
|
}
|
|
26
27
|
exports.TaxReturnEmbeddedDto = TaxReturnEmbeddedDto;
|
|
@@ -48,6 +49,12 @@ __decorate([
|
|
|
48
49
|
(0, class_transformer_1.Expose)(),
|
|
49
50
|
__metadata("design:type", Array)
|
|
50
51
|
], TaxReturnEmbeddedDto.prototype, "attachments", void 0);
|
|
52
|
+
__decorate([
|
|
53
|
+
(0, nestjs_1.ApiProperty)({ type: taxReturnCalculatedView_dto_1.TaxReturnCalculatedViewDto, required: false }),
|
|
54
|
+
(0, class_transformer_1.Type)(() => taxReturnCalculatedView_dto_1.TaxReturnCalculatedViewDto),
|
|
55
|
+
(0, class_transformer_1.Expose)(),
|
|
56
|
+
__metadata("design:type", taxReturnCalculatedView_dto_1.TaxReturnCalculatedViewDto)
|
|
57
|
+
], TaxReturnEmbeddedDto.prototype, "calculated", void 0);
|
|
51
58
|
__decorate([
|
|
52
59
|
(0, nestjs_1.ApiProperty)({ type: () => user_dto_1.UserDto, required: false }),
|
|
53
60
|
(0, class_transformer_1.Type)(() => user_dto_1.UserDto),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"taxReturnEmbedded.dto.js","sourceRoot":"","sources":["../../../src/dto/taxReturn/taxReturnEmbedded.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,yDAAiD;AACjD,yCAA2C;AAE3C,+CAA2C;AAC3C,2DAAuD;AACvD,+CAA2C;AAC3C,iEAA6D;AAC7D,iEAA6D;
|
|
1
|
+
{"version":3,"file":"taxReturnEmbedded.dto.js","sourceRoot":"","sources":["../../../src/dto/taxReturn/taxReturnEmbedded.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,yDAAiD;AACjD,yCAA2C;AAE3C,+CAA2C;AAC3C,2DAAuD;AACvD,+CAA2C;AAC3C,iEAA6D;AAC7D,iEAA6D;AAC7D,oGAAgG;AAEhG,MAAa,oBAAoB;;;;CAmChC;AAnCD,oDAmCC;AA/BA;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,kBAAO,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IAC/C,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,kBAAO,CAAC;IACnB,IAAA,0BAAM,GAAE;8BACH,kBAAO;kDAAC;AAKd;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,8BAAa,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IACrD,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,8BAAa,CAAC;IACzB,IAAA,0BAAM,GAAE;8BACG,8BAAa;wDAAC;AAK1B;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,CAAC,0BAAW,CAAC,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IAC3D,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,0BAAW,CAAC;IACvB,IAAA,0BAAM,GAAE;;uDACgB;AAKzB;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,CAAC,8BAAa,CAAC,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IAC7D,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,8BAAa,CAAC;IACzB,IAAA,0BAAM,GAAE;;yDACoB;AAK7B;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,wDAA0B,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IAClE,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,wDAA0B,CAAC;IACtC,IAAA,0BAAM,GAAE;8BACG,wDAA0B;wDAAC;AAKvC;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;uDAAC;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;uDAAC"}
|
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
import { TaxReturnStatusEnum } from '../../enum/taxReturnStatus.enum';
|
|
2
|
+
import { TaxReturnAttachmentStatusEnum } from '../../enum/taxReturnAttachmentStatus.enum';
|
|
1
3
|
export declare class UpdateTaxReturnDto {
|
|
4
|
+
status?: TaxReturnStatusEnum;
|
|
5
|
+
attachmentsStatus?: TaxReturnAttachmentStatusEnum;
|
|
6
|
+
deadline?: string;
|
|
2
7
|
isArchived?: boolean;
|
|
3
8
|
}
|
|
@@ -14,12 +14,35 @@ const openapi = require("@nestjs/swagger");
|
|
|
14
14
|
const nestjs_1 = require("../../nestjs");
|
|
15
15
|
const class_transformer_1 = require("class-transformer");
|
|
16
16
|
const class_validator_1 = require("class-validator");
|
|
17
|
+
const taxReturnStatus_enum_1 = require("../../enum/taxReturnStatus.enum");
|
|
18
|
+
const lodash_1 = require("lodash");
|
|
19
|
+
const taxReturnAttachmentStatus_enum_1 = require("../../enum/taxReturnAttachmentStatus.enum");
|
|
17
20
|
class UpdateTaxReturnDto {
|
|
18
21
|
static _OPENAPI_METADATA_FACTORY() {
|
|
19
|
-
return { isArchived: { required: false, type: () => Boolean } };
|
|
22
|
+
return { status: { required: false, enum: require("../../enum/taxReturnStatus.enum").TaxReturnStatusEnum, enum: (0, lodash_1.values)(taxReturnStatus_enum_1.TaxReturnStatusEnum) }, attachmentsStatus: { required: false, type: () => String, enum: require("../../enum/taxReturnAttachmentStatus.enum").TaxReturnAttachmentStatusEnum, enum: (0, lodash_1.values)(taxReturnAttachmentStatus_enum_1.TaxReturnAttachmentStatusEnum) }, deadline: { required: false, type: () => String }, isArchived: { required: false, type: () => Boolean } };
|
|
20
23
|
}
|
|
21
24
|
}
|
|
22
25
|
exports.UpdateTaxReturnDto = UpdateTaxReturnDto;
|
|
26
|
+
__decorate([
|
|
27
|
+
(0, nestjs_1.ApiProperty)({ enum: taxReturnStatus_enum_1.TaxReturnStatusEnum, required: false }),
|
|
28
|
+
(0, class_validator_1.IsIn)((0, lodash_1.values)(taxReturnStatus_enum_1.TaxReturnStatusEnum)),
|
|
29
|
+
(0, class_validator_1.IsOptional)(),
|
|
30
|
+
(0, class_transformer_1.Expose)(),
|
|
31
|
+
__metadata("design:type", String)
|
|
32
|
+
], UpdateTaxReturnDto.prototype, "status", void 0);
|
|
33
|
+
__decorate([
|
|
34
|
+
(0, nestjs_1.ApiProperty)({ enum: taxReturnAttachmentStatus_enum_1.TaxReturnAttachmentStatusEnum, required: false }),
|
|
35
|
+
(0, class_validator_1.IsIn)((0, lodash_1.values)(taxReturnAttachmentStatus_enum_1.TaxReturnAttachmentStatusEnum)),
|
|
36
|
+
(0, class_validator_1.IsOptional)(),
|
|
37
|
+
(0, class_transformer_1.Expose)(),
|
|
38
|
+
__metadata("design:type", String)
|
|
39
|
+
], UpdateTaxReturnDto.prototype, "attachmentsStatus", void 0);
|
|
40
|
+
__decorate([
|
|
41
|
+
(0, nestjs_1.ApiProperty)({ type: String, required: false, format: 'date-time' }),
|
|
42
|
+
(0, class_validator_1.IsOptional)(),
|
|
43
|
+
(0, class_transformer_1.Expose)(),
|
|
44
|
+
__metadata("design:type", String)
|
|
45
|
+
], UpdateTaxReturnDto.prototype, "deadline", void 0);
|
|
23
46
|
__decorate([
|
|
24
47
|
(0, nestjs_1.ApiProperty)({ type: Boolean, required: false }),
|
|
25
48
|
(0, class_validator_1.IsBoolean)(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"updateTaxReturn.dto.js","sourceRoot":"","sources":["../../../src/dto/taxReturn/updateTaxReturn.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,yCAA2C;AAC3C,yDAA2C;AAC3C,
|
|
1
|
+
{"version":3,"file":"updateTaxReturn.dto.js","sourceRoot":"","sources":["../../../src/dto/taxReturn/updateTaxReturn.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,yCAA2C;AAC3C,yDAA2C;AAC3C,qDAA8D;AAC9D,0EAAsE;AACtE,mCAAgC;AAChC,8FAA0F;AAE1F,MAAa,kBAAkB;;wHAExB,IAAA,eAAM,EAAC,0CAAmB,CAAC,8JAM3B,IAAA,eAAM,EAAC,8DAA6B,CAAC;;CAe3C;AAvBD,gDAuBC;AAlBA;IAJC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,0CAAmB,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IAC3D,IAAA,sBAAI,EAAC,IAAA,eAAM,EAAC,0CAAmB,CAAC,CAAC;IACjC,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;;kDACoB;AAM7B;IAJC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,8DAA6B,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IACrE,IAAA,sBAAI,EAAC,IAAA,eAAM,EAAC,8DAA6B,CAAC,CAAC;IAC3C,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;;6DACyC;AAKlD;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,EAAE,WAAW,EAAE,CAAC;IACnE,IAAA,4BAAU,GAAE;IACZ,IAAA,0BAAM,GAAE;;oDACS;AAMlB;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;;sDACY"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { TaxReturnCalculatedViewEmbeddedDto } from './taxReturnCalculatedViewEmbedded.dto';
|
|
2
|
+
declare const TaxReturnCalculatedViewDto_base: import("../generic/base.dto").BaseDtoType<TaxReturnCalculatedViewEmbeddedDto>;
|
|
3
|
+
export declare class TaxReturnCalculatedViewDto extends TaxReturnCalculatedViewDto_base {
|
|
4
|
+
id: string;
|
|
5
|
+
nrOfNewAttachments: number;
|
|
6
|
+
nrOfProcessedAttachments: number;
|
|
7
|
+
nrOfArchivedAttachments: number;
|
|
8
|
+
nrOfErrorAttachments: number;
|
|
9
|
+
}
|
|
10
|
+
export {};
|
|
@@ -0,0 +1,49 @@
|
|
|
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.TaxReturnCalculatedViewDto = void 0;
|
|
13
|
+
const openapi = require("@nestjs/swagger");
|
|
14
|
+
const class_transformer_1 = require("class-transformer");
|
|
15
|
+
const nestjs_1 = require("../../nestjs");
|
|
16
|
+
const base_dto_1 = require("../generic/base.dto");
|
|
17
|
+
const taxReturnCalculatedViewEmbedded_dto_1 = require("./taxReturnCalculatedViewEmbedded.dto");
|
|
18
|
+
class TaxReturnCalculatedViewDto extends (0, base_dto_1.BaseDto)(taxReturnCalculatedViewEmbedded_dto_1.TaxReturnCalculatedViewEmbeddedDto) {
|
|
19
|
+
static _OPENAPI_METADATA_FACTORY() {
|
|
20
|
+
return { id: { required: true, type: () => String }, nrOfNewAttachments: { required: true, type: () => Number }, nrOfProcessedAttachments: { required: true, type: () => Number }, nrOfArchivedAttachments: { required: true, type: () => Number }, nrOfErrorAttachments: { required: true, type: () => Number } };
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
exports.TaxReturnCalculatedViewDto = TaxReturnCalculatedViewDto;
|
|
24
|
+
__decorate([
|
|
25
|
+
(0, nestjs_1.ApiProperty)({ type: String, required: true, format: 'uuid' }),
|
|
26
|
+
(0, class_transformer_1.Expose)(),
|
|
27
|
+
__metadata("design:type", String)
|
|
28
|
+
], TaxReturnCalculatedViewDto.prototype, "id", void 0);
|
|
29
|
+
__decorate([
|
|
30
|
+
(0, nestjs_1.ApiProperty)({ type: Number, required: true }),
|
|
31
|
+
(0, class_transformer_1.Expose)(),
|
|
32
|
+
__metadata("design:type", Number)
|
|
33
|
+
], TaxReturnCalculatedViewDto.prototype, "nrOfNewAttachments", void 0);
|
|
34
|
+
__decorate([
|
|
35
|
+
(0, nestjs_1.ApiProperty)({ type: Number, required: true }),
|
|
36
|
+
(0, class_transformer_1.Expose)(),
|
|
37
|
+
__metadata("design:type", Number)
|
|
38
|
+
], TaxReturnCalculatedViewDto.prototype, "nrOfProcessedAttachments", void 0);
|
|
39
|
+
__decorate([
|
|
40
|
+
(0, nestjs_1.ApiProperty)({ type: Number, required: true }),
|
|
41
|
+
(0, class_transformer_1.Expose)(),
|
|
42
|
+
__metadata("design:type", Number)
|
|
43
|
+
], TaxReturnCalculatedViewDto.prototype, "nrOfArchivedAttachments", void 0);
|
|
44
|
+
__decorate([
|
|
45
|
+
(0, nestjs_1.ApiProperty)({ type: Number, required: true }),
|
|
46
|
+
(0, class_transformer_1.Expose)(),
|
|
47
|
+
__metadata("design:type", Number)
|
|
48
|
+
], TaxReturnCalculatedViewDto.prototype, "nrOfErrorAttachments", void 0);
|
|
49
|
+
//# sourceMappingURL=taxReturnCalculatedView.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"taxReturnCalculatedView.dto.js","sourceRoot":"","sources":["../../../src/dto/taxReturnCalculated/taxReturnCalculatedView.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,yDAA2C;AAC3C,yCAA2C;AAE3C,kDAA8C;AAC9C,+FAA2F;AAE3F,MAAa,0BAA2B,SAAQ,IAAA,kBAAO,EACtD,wEAAkC,CAClC;;;;CAoBA;AAtBD,gEAsBC;AAjBA;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;IAC7D,IAAA,0BAAM,GAAE;;sDACG;AAIZ;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;sEACkB;AAI3B;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;4EACwB;AAIjC;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;2EACuB;AAIhC;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;wEACoB"}
|
|
@@ -0,0 +1,29 @@
|
|
|
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.TaxReturnCalculatedViewEmbeddedDto = void 0;
|
|
13
|
+
const openapi = require("@nestjs/swagger");
|
|
14
|
+
const class_transformer_1 = require("class-transformer");
|
|
15
|
+
const nestjs_1 = require("../../nestjs");
|
|
16
|
+
const taxReturn_dto_1 = require("../taxReturn/taxReturn.dto");
|
|
17
|
+
class TaxReturnCalculatedViewEmbeddedDto {
|
|
18
|
+
static _OPENAPI_METADATA_FACTORY() {
|
|
19
|
+
return { taxReturn: { required: true, type: () => require("../taxReturn/taxReturn.dto").TaxReturnDto } };
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
exports.TaxReturnCalculatedViewEmbeddedDto = TaxReturnCalculatedViewEmbeddedDto;
|
|
23
|
+
__decorate([
|
|
24
|
+
(0, nestjs_1.ApiProperty)({ type: taxReturn_dto_1.TaxReturnDto, required: false }),
|
|
25
|
+
(0, class_transformer_1.Type)(() => taxReturn_dto_1.TaxReturnDto),
|
|
26
|
+
(0, class_transformer_1.Expose)(),
|
|
27
|
+
__metadata("design:type", taxReturn_dto_1.TaxReturnDto)
|
|
28
|
+
], TaxReturnCalculatedViewEmbeddedDto.prototype, "taxReturn", void 0);
|
|
29
|
+
//# sourceMappingURL=taxReturnCalculatedViewEmbedded.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"taxReturnCalculatedViewEmbedded.dto.js","sourceRoot":"","sources":["../../../src/dto/taxReturnCalculated/taxReturnCalculatedViewEmbedded.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,yDAAiD;AACjD,yCAA2C;AAE3C,8DAA0D;AAE1D,MAAa,kCAAkC;;;;CAK9C;AALD,gFAKC;AADA;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,4BAAY,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IACpD,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,4BAAY,CAAC;IACxB,IAAA,0BAAM,GAAE;8BACE,4BAAY;qEAAC"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.TaxReturnAttachmentStatusEnum = void 0;
|
|
4
|
+
var TaxReturnAttachmentStatusEnum;
|
|
5
|
+
(function (TaxReturnAttachmentStatusEnum) {
|
|
6
|
+
TaxReturnAttachmentStatusEnum["NEW_ATTACHMENTS"] = "NEW_ATTACHMENTS";
|
|
7
|
+
})(TaxReturnAttachmentStatusEnum || (exports.TaxReturnAttachmentStatusEnum = TaxReturnAttachmentStatusEnum = {}));
|
|
8
|
+
//# sourceMappingURL=taxReturnAttachmentStatus.enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"taxReturnAttachmentStatus.enum.js","sourceRoot":"","sources":["../../src/enum/taxReturnAttachmentStatus.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,6BAEX;AAFD,WAAY,6BAA6B;IACxC,oEAAmC,CAAA;AACpC,CAAC,EAFW,6BAA6B,6CAA7B,6BAA6B,QAExC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export declare enum TaxReturnStatusEnum {
|
|
2
|
+
NOT_STARTED = "NOT_STARTED",
|
|
3
|
+
SURVEY_SENT = "SURVEY_SENT",
|
|
4
|
+
REMINDER = "REMINDER",
|
|
5
|
+
SURVEY_SUBMITTED = "SURVEY_SUBMITTED",
|
|
6
|
+
DATA_COLLECTED = "DATA_COLLECTED",
|
|
7
|
+
SURVEY_REOPENED = "SURVEY_REOPENED",
|
|
8
|
+
ERROR = "ERROR"
|
|
9
|
+
}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.TaxReturnStatusEnum = void 0;
|
|
4
|
+
var TaxReturnStatusEnum;
|
|
5
|
+
(function (TaxReturnStatusEnum) {
|
|
6
|
+
TaxReturnStatusEnum["NOT_STARTED"] = "NOT_STARTED";
|
|
7
|
+
TaxReturnStatusEnum["SURVEY_SENT"] = "SURVEY_SENT";
|
|
8
|
+
TaxReturnStatusEnum["REMINDER"] = "REMINDER";
|
|
9
|
+
TaxReturnStatusEnum["SURVEY_SUBMITTED"] = "SURVEY_SUBMITTED";
|
|
10
|
+
TaxReturnStatusEnum["DATA_COLLECTED"] = "DATA_COLLECTED";
|
|
11
|
+
TaxReturnStatusEnum["SURVEY_REOPENED"] = "SURVEY_REOPENED";
|
|
12
|
+
TaxReturnStatusEnum["ERROR"] = "ERROR";
|
|
13
|
+
})(TaxReturnStatusEnum || (exports.TaxReturnStatusEnum = TaxReturnStatusEnum = {}));
|
|
14
|
+
//# sourceMappingURL=taxReturnStatus.enum.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"taxReturnStatus.enum.js","sourceRoot":"","sources":["../../src/enum/taxReturnStatus.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,mBAQX;AARD,WAAY,mBAAmB;IAC9B,kDAA2B,CAAA;IAC3B,kDAA2B,CAAA;IAC3B,4CAAqB,CAAA;IACrB,4DAAqC,CAAA;IACrC,wDAAiC,CAAA;IACjC,0DAAmC,CAAA;IACnC,sCAAe,CAAA;AAChB,CAAC,EARW,mBAAmB,mCAAnB,mBAAmB,QAQ9B"}
|
package/dist/index.d.ts
CHANGED
|
@@ -24,6 +24,8 @@ import { AttachmentUploadStatusEnum } from './enum/attachmentUploadStatus.enum';
|
|
|
24
24
|
import { AttachmentStatusEnum } from './enum/attachmentStatus.enum';
|
|
25
25
|
import { AttachmentTypeEnum } from './enum/attachmentType.enum';
|
|
26
26
|
import { NoteStatusEnum } from './enum/noteStatus.enum';
|
|
27
|
+
import { TaxReturnAttachmentStatusEnum } from './enum/taxReturnAttachmentStatus.enum';
|
|
28
|
+
import { TaxReturnStatusEnum } from './enum/taxReturnStatus.enum';
|
|
27
29
|
import type { DtoType, BaseDtoType, BaseViewDtoType } from './dto/generic/base.dto';
|
|
28
30
|
import { ComponentHealthDto } from './dto/status/componentHealth.dto';
|
|
29
31
|
import { ComponentDto } from './dto/status/component.dto';
|
|
@@ -90,4 +92,6 @@ import { CreateAttachmentTagLinkDto } from './dto/attachmentTagLink/createAttach
|
|
|
90
92
|
import { TaxReturnAccessRightPageDto } from './dto/taxReturnAccessRight/taxReturnAccessRightPage.dto';
|
|
91
93
|
import { TaxReturnAccessRightEmbeddedDto } from './dto/taxReturnAccessRight/taxReturnAccessRightEmbedded.dto';
|
|
92
94
|
import { TaxReturnAccessRightDto } from './dto/taxReturnAccessRight/taxReturnAccessRight.dto';
|
|
93
|
-
|
|
95
|
+
import { TaxReturnCalculatedViewEmbeddedDto } from './dto/taxReturnCalculated/taxReturnCalculatedViewEmbedded.dto';
|
|
96
|
+
import { TaxReturnCalculatedViewDto } from './dto/taxReturnCalculated/taxReturnCalculatedView.dto';
|
|
97
|
+
export { ExceptionDto, BaseDto, BaseViewDto, CollectionFilterDto, FilterDto, PageDto, PageInfoDto, EmbeddedDto, ComponentDto, ComponentHealthDto, HealthDto, NoteDto, NoteEmbeddedDto, CreateNoteDto, UpdateNoteDto, NotePageDto, NoteTagDto, NoteTagEmbeddedDto, NoteTagPageDto, CreateNoteTagDto, UpdateNoteTagDto, NoteTagLinkDto, NoteTagLinkEmbeddedDto, NoteTagLinkPageDto, CreateNoteTagLinkDto, UpdateNoteTagLinkDto, TaxReturnDto, UpdateTaxReturnDto, TaxReturnEmbeddedDto, TaxReturnPageDto, TaxReturnCalculatedViewDto, TaxReturnCalculatedViewEmbeddedDto, TaxReturnAccessRightDto, TaxReturnAccessRightEmbeddedDto, TaxReturnAccessRightPageDto, SurveyDto, SurveyEmbeddedDto, CreateSurveyDto, UpdateSurveyDto, SurveyPageDto, ResponseDto, ResponseEmbeddedDto, CreateResponseDto, UpdateResponseDto, ResponsePageDto, IncomeYearDto, IncomeYearEmbeddedDto, CreateIncomeYearDto, UpdateIncomeYearDto, IncomeYearPageDto, TeamDto, TeamEmbeddedDto, CreateTeamDto, UpdateTeamDto, TeamPageDto, AttachmentDto, AttachmentEmbeddedDto, AttachmentPageDto, CreateAttachmentDto, UpdateAttachmentDto, AttachmentTagDto, AttachmentTagEmbeddedDto, AttachmentTagPageDto, CreateAttachmentTagDto, UpdateAttachmentTagDto, AttachmentTagLinkDto, AttachmentTagLinkEmbeddedDto, AttachmentTagLinkPageDto, CreateAttachmentTagLinkDto, UpdateAttachmentTagLinkDto, UserDto, UserEmbeddedDto, CreateUserDto, UpdateUserDto, UserPageDto, RoleEnum, LanguageEnum, AttachmentStatusEnum, AttachmentUploadStatusEnum, AttachmentTypeEnum, NoteStatusEnum, TaxReturnStatusEnum, TaxReturnAttachmentStatusEnum, ValidationException, convertAndValidate, IsBiggerThan, IsEmptyAttribute, IsRequiredFields, IsRequiredFieldValue, IsSmallerThan, Default, TransformEmbedded, TransformFloat, TransformInteger, TransformTotal, DtoType, BaseDtoType, BaseViewDtoType, };
|