@ballistix.digital/types-pb-tool-nest 0.37.0 → 0.38.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/latestNotificationTaskView/latestNotificationTaskView.dto.d.ts +8 -0
- package/dist/dto/latestNotificationTaskView/latestNotificationTaskView.dto.js +38 -0
- package/dist/dto/latestNotificationTaskView/latestNotificationTaskView.dto.js.map +1 -0
- package/dist/dto/latestNotificationTaskView/latestNotificationTaskViewEmbedded.dto.d.ts +6 -0
- package/dist/dto/latestNotificationTaskView/latestNotificationTaskViewEmbedded.dto.js +36 -0
- package/dist/dto/latestNotificationTaskView/latestNotificationTaskViewEmbedded.dto.js.map +1 -0
- package/dist/dto/notificationTask/bulkUpdateNotificationTaskDto.js.map +1 -0
- package/dist/dto/notificationTask/createNotificationTaskDto.js.map +1 -0
- package/dist/dto/notificationTask/notificationTaskDto.js.map +1 -0
- package/dist/dto/notificationTask/notificationTaskEmbeddedDto.js.map +1 -0
- package/dist/dto/notificationTask/notificationTaskPageDto.js.map +1 -0
- package/dist/dto/notificationTask/updateNotificationTaskDto.js.map +1 -0
- 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/taxReturnCalculated/taxReturnCalculatedView.dto.d.ts +1 -0
- package/dist/dto/taxReturnCalculated/taxReturnCalculatedView.dto.js +6 -1
- package/dist/dto/taxReturnCalculated/taxReturnCalculatedView.dto.js.map +1 -1
- package/dist/index.d.ts +9 -7
- package/dist/index.js +12 -8
- package/dist/index.js.map +1 -1
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/dist/dto/sendSurveyTask/bulkUpdateNotificationTaskDto.js.map +0 -1
- package/dist/dto/sendSurveyTask/createNotificationTaskDto.js.map +0 -1
- package/dist/dto/sendSurveyTask/notificationTaskDto.js.map +0 -1
- package/dist/dto/sendSurveyTask/notificationTaskEmbeddedDto.js.map +0 -1
- package/dist/dto/sendSurveyTask/notificationTaskPageDto.js.map +0 -1
- package/dist/dto/sendSurveyTask/updateNotificationTaskDto.js.map +0 -1
- /package/dist/dto/{sendSurveyTask → notificationTask}/bulkUpdateNotificationTaskDto.d.ts +0 -0
- /package/dist/dto/{sendSurveyTask → notificationTask}/bulkUpdateNotificationTaskDto.js +0 -0
- /package/dist/dto/{sendSurveyTask → notificationTask}/createNotificationTaskDto.d.ts +0 -0
- /package/dist/dto/{sendSurveyTask → notificationTask}/createNotificationTaskDto.js +0 -0
- /package/dist/dto/{sendSurveyTask → notificationTask}/notificationTaskDto.d.ts +0 -0
- /package/dist/dto/{sendSurveyTask → notificationTask}/notificationTaskDto.js +0 -0
- /package/dist/dto/{sendSurveyTask → notificationTask}/notificationTaskEmbeddedDto.d.ts +0 -0
- /package/dist/dto/{sendSurveyTask → notificationTask}/notificationTaskEmbeddedDto.js +0 -0
- /package/dist/dto/{sendSurveyTask → notificationTask}/notificationTaskPageDto.d.ts +0 -0
- /package/dist/dto/{sendSurveyTask → notificationTask}/notificationTaskPageDto.js +0 -0
- /package/dist/dto/{sendSurveyTask → notificationTask}/updateNotificationTaskDto.d.ts +0 -0
- /package/dist/dto/{sendSurveyTask → notificationTask}/updateNotificationTaskDto.js +0 -0
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { LatestNotificationTaskViewEmbeddedDto } from './latestNotificationTaskViewEmbedded.dto';
|
|
2
|
+
declare const LatestNotificationTaskViewDto_base: import("../generic/base.dto").BaseDtoType<LatestNotificationTaskViewEmbeddedDto>;
|
|
3
|
+
export declare class LatestNotificationTaskViewDto extends LatestNotificationTaskViewDto_base {
|
|
4
|
+
id: string;
|
|
5
|
+
notificationTaskId: string;
|
|
6
|
+
taxReturnId: string;
|
|
7
|
+
}
|
|
8
|
+
export {};
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
3
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
4
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
5
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
6
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
7
|
+
};
|
|
8
|
+
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
9
|
+
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10
|
+
};
|
|
11
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
+
exports.LatestNotificationTaskViewDto = 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 latestNotificationTaskViewEmbedded_dto_1 = require("./latestNotificationTaskViewEmbedded.dto");
|
|
18
|
+
class LatestNotificationTaskViewDto extends (0, base_dto_1.BaseDto)(latestNotificationTaskViewEmbedded_dto_1.LatestNotificationTaskViewEmbeddedDto) {
|
|
19
|
+
static _OPENAPI_METADATA_FACTORY() {
|
|
20
|
+
return { id: { required: true, type: () => String }, notificationTaskId: { required: true, type: () => String }, taxReturnId: { required: true, type: () => String } };
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
exports.LatestNotificationTaskViewDto = LatestNotificationTaskViewDto;
|
|
24
|
+
__decorate([
|
|
25
|
+
(0, nestjs_1.ApiProperty)({ type: String, required: true }),
|
|
26
|
+
__metadata("design:type", String)
|
|
27
|
+
], LatestNotificationTaskViewDto.prototype, "id", void 0);
|
|
28
|
+
__decorate([
|
|
29
|
+
(0, nestjs_1.ApiProperty)({ type: String, required: true, format: 'uuid' }),
|
|
30
|
+
(0, class_transformer_1.Expose)(),
|
|
31
|
+
__metadata("design:type", String)
|
|
32
|
+
], LatestNotificationTaskViewDto.prototype, "notificationTaskId", void 0);
|
|
33
|
+
__decorate([
|
|
34
|
+
(0, nestjs_1.ApiProperty)({ type: String, required: true, format: 'uuid' }),
|
|
35
|
+
(0, class_transformer_1.Expose)(),
|
|
36
|
+
__metadata("design:type", String)
|
|
37
|
+
], LatestNotificationTaskViewDto.prototype, "taxReturnId", void 0);
|
|
38
|
+
//# sourceMappingURL=latestNotificationTaskView.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"latestNotificationTaskView.dto.js","sourceRoot":"","sources":["../../../src/dto/latestNotificationTaskView/latestNotificationTaskView.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,yDAA2C;AAC3C,yCAA2C;AAC3C,kDAA8C;AAC9C,qGAAiG;AAEjG,MAAa,6BAA8B,SAAQ,IAAA,kBAAO,EACzD,8EAAqC,CACrC;;;;CAWA;AAbD,sEAaC;AATA;IADC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;yDAClC;AAIZ;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;IAC7D,IAAA,0BAAM,GAAE;;yEACkB;AAI3B;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;IAC7D,IAAA,0BAAM,GAAE;;kEACW"}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { TaxReturnDto } from '../taxReturn/taxReturn.dto';
|
|
2
|
+
import { NotificationTaskDto } from '../notificationTask/notificationTaskDto';
|
|
3
|
+
export declare class LatestNotificationTaskViewEmbeddedDto {
|
|
4
|
+
notificationTask: NotificationTaskDto;
|
|
5
|
+
taxReturn: TaxReturnDto;
|
|
6
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
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.LatestNotificationTaskViewEmbeddedDto = 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
|
+
const notificationTaskDto_1 = require("../notificationTask/notificationTaskDto");
|
|
18
|
+
class LatestNotificationTaskViewEmbeddedDto {
|
|
19
|
+
static _OPENAPI_METADATA_FACTORY() {
|
|
20
|
+
return { notificationTask: { required: true, type: () => require("../notificationTask/notificationTaskDto").NotificationTaskDto }, taxReturn: { required: true, type: () => require("../taxReturn/taxReturn.dto").TaxReturnDto } };
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
exports.LatestNotificationTaskViewEmbeddedDto = LatestNotificationTaskViewEmbeddedDto;
|
|
24
|
+
__decorate([
|
|
25
|
+
(0, nestjs_1.ApiProperty)({ type: notificationTaskDto_1.NotificationTaskDto, required: false }),
|
|
26
|
+
(0, class_transformer_1.Type)(() => notificationTaskDto_1.NotificationTaskDto),
|
|
27
|
+
(0, class_transformer_1.Expose)(),
|
|
28
|
+
__metadata("design:type", notificationTaskDto_1.NotificationTaskDto)
|
|
29
|
+
], LatestNotificationTaskViewEmbeddedDto.prototype, "notificationTask", void 0);
|
|
30
|
+
__decorate([
|
|
31
|
+
(0, nestjs_1.ApiProperty)({ type: taxReturn_dto_1.TaxReturnDto, required: false }),
|
|
32
|
+
(0, class_transformer_1.Type)(() => taxReturn_dto_1.TaxReturnDto),
|
|
33
|
+
(0, class_transformer_1.Expose)(),
|
|
34
|
+
__metadata("design:type", taxReturn_dto_1.TaxReturnDto)
|
|
35
|
+
], LatestNotificationTaskViewEmbeddedDto.prototype, "taxReturn", void 0);
|
|
36
|
+
//# sourceMappingURL=latestNotificationTaskViewEmbedded.dto.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"latestNotificationTaskViewEmbedded.dto.js","sourceRoot":"","sources":["../../../src/dto/latestNotificationTaskView/latestNotificationTaskViewEmbedded.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,yDAAiD;AACjD,yCAA2C;AAE3C,8DAA0D;AAC1D,iFAA8E;AAE9E,MAAa,qCAAqC;;;;CAUjD;AAVD,sFAUC;AANA;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,yCAAmB,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IAC3D,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,yCAAmB,CAAC;IAC/B,IAAA,0BAAM,GAAE;8BACS,yCAAmB;+EAAC;AAKtC;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;wEAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"bulkUpdateNotificationTaskDto.js","sourceRoot":"","sources":["../../../src/dto/notificationTask/bulkUpdateNotificationTaskDto.ts"],"names":[],"mappings":";;;AAAA,2EAAwE;AACxE,kDAA8C;AAE9C,MAAa,6BAA8B,SAAQ,IAAA,kBAAO,EACzD,qDAAyB,CACzB;CAAG;AAFJ,sEAEI"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"createNotificationTaskDto.js","sourceRoot":"","sources":["../../../src/dto/notificationTask/createNotificationTaskDto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yCAA2C;AAC3C,yDAA2C;AAC3C,oFAAgF;AAChF,qDAA4E;AAC5E,mCAAgC;AAEhC,MAAa,yBAAyB;CA2BrC;AA3BD,8DA2BC;AAvBA;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;;8DACW;AAKpB;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IAC9C,IAAA,0BAAQ,GAAE;IACV,IAAA,0BAAM,GAAE;;4DACU;AAKnB;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,oDAAwB,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC/D,IAAA,sBAAI,EAAC,IAAA,eAAM,EAAC,oDAAwB,CAAC,CAAC;IACtC,IAAA,0BAAM,GAAE;;uDACsB;AAM/B;IAJC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,OAAO,EAAE,CAAC,EAAE,CAAC;IAC1D,IAAA,4BAAU,GAAE;IACZ,IAAA,uBAAK,GAAE;IACP,IAAA,0BAAM,GAAE;;6DACW;AAMpB;IAJC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,OAAO,EAAE,CAAC,EAAE,CAAC;IAC1D,IAAA,4BAAU,GAAE;IACZ,IAAA,uBAAK,GAAE;IACP,IAAA,0BAAM,GAAE;;6DACW"}
|
|
@@ -0,0 +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;CA4B5E;AA5BD,kDA4BC;AAzBA;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,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;;wDACW"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"notificationTaskEmbeddedDto.js","sourceRoot":"","sources":["../../../src/dto/notificationTask/notificationTaskEmbeddedDto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yCAA2C;AAC3C,+CAA2C;AAC3C,yDAAiD;AACjD,8DAA0D;AAE1D,MAAa,2BAA2B;CAevC;AAfD,kEAeC;AAXA;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,4BAAY,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IAC1D,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,4BAAY,CAAC;IACxB,IAAA,0BAAM,GAAE;8BACG,4BAAY;8DAAC;AAKzB;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,kBAAO,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IACrD,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,kBAAO,CAAC;IACnB,IAAA,0BAAM,GAAE;8BACG,kBAAO;8DAAC;AAKpB;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,kBAAO,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IACrD,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,kBAAO,CAAC;IACnB,IAAA,0BAAM,GAAE;8BACG,kBAAO;8DAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"notificationTaskPageDto.js","sourceRoot":"","sources":["../../../src/dto/notificationTask/notificationTaskPageDto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yDAAiD;AACjD,yCAA2C;AAE3C,kDAA8C;AAC9C,+DAA4D;AAE5D,MAAM,wBAAwB;CAK7B;AADA;IAHC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,CAAC,yCAAmB,CAAC,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IACnE,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,yCAAmB,CAAC;IAC/B,IAAA,0BAAM,EAAC,EAAE,IAAI,EAAE,OAAO,EAAE,CAAC;;6DACU;AAGrC,MAAa,uBAAwB,SAAQ,IAAA,kBAAO,EAAC,wBAAwB,CAAC;CAAG;AAAjF,0DAAiF"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"updateNotificationTaskDto.js","sourceRoot":"","sources":["../../../src/dto/notificationTask/updateNotificationTaskDto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,yCAA2C;AAC3C,yDAA2C;AAC3C,oFAAgF;AAChF,wFAAoF;AACpF,qDAA4E;AAC5E,mCAAgC;AAEhC,MAAa,yBAAyB;CAoCrC;AApCD,8DAoCC;AA/BA;IAJC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,EAAE,MAAM,EAAE,CAAC;IAC9D,IAAA,4BAAU,GAAE;IACZ,IAAA,wBAAM,GAAE;IACR,IAAA,0BAAM,GAAE;;8DACY;AAMrB;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;;4DACU;AAMnB;IAJC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,oDAAwB,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IAChE,IAAA,4BAAU,GAAE;IACZ,IAAA,sBAAI,EAAC,IAAA,eAAM,EAAC,oDAAwB,CAAC,CAAC;IACtC,IAAA,0BAAM,GAAE;;uDACuB;AAMhC;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;;yDAC2B;AAMpC;IAJC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,KAAK,EAAE,OAAO,EAAE,CAAC,EAAE,CAAC;IAC1D,IAAA,4BAAU,GAAE;IACZ,IAAA,uBAAK,GAAE;IACP,IAAA,0BAAM,GAAE;;6DACW;AAMpB;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;;+DACa"}
|
|
@@ -5,6 +5,7 @@ import { IncomeYearDto } from '../incomeYear/incomeYear.dto';
|
|
|
5
5
|
import { AttachmentDto } from '../attachment/attachment.dto';
|
|
6
6
|
import { TaxReturnCalculatedViewDto } from '../taxReturnCalculated/taxReturnCalculatedView.dto';
|
|
7
7
|
import { NoteDto } from '../note/note.dto';
|
|
8
|
+
import { LatestNotificationTaskViewDto } from '../latestNotificationTaskView/latestNotificationTaskView.dto';
|
|
8
9
|
export declare class TaxReturnEmbeddedDto {
|
|
9
10
|
team: TeamDto;
|
|
10
11
|
incomeYear: IncomeYearDto;
|
|
@@ -12,6 +13,7 @@ export declare class TaxReturnEmbeddedDto {
|
|
|
12
13
|
notes: NoteDto[];
|
|
13
14
|
attachments: AttachmentDto[];
|
|
14
15
|
calculated: TaxReturnCalculatedViewDto;
|
|
16
|
+
latestNotificationTaskView: LatestNotificationTaskViewDto;
|
|
15
17
|
createdBy?: UserDto;
|
|
16
18
|
updatedBy?: UserDto;
|
|
17
19
|
}
|
|
@@ -20,9 +20,10 @@ const incomeYear_dto_1 = require("../incomeYear/incomeYear.dto");
|
|
|
20
20
|
const attachment_dto_1 = require("../attachment/attachment.dto");
|
|
21
21
|
const taxReturnCalculatedView_dto_1 = require("../taxReturnCalculated/taxReturnCalculatedView.dto");
|
|
22
22
|
const note_dto_1 = require("../note/note.dto");
|
|
23
|
+
const latestNotificationTaskView_dto_1 = require("../latestNotificationTaskView/latestNotificationTaskView.dto");
|
|
23
24
|
class TaxReturnEmbeddedDto {
|
|
24
25
|
static _OPENAPI_METADATA_FACTORY() {
|
|
25
|
-
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] }, notes: { required: true, type: () => [require("../note/note.dto").NoteDto] }, 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 } };
|
|
26
|
+
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] }, notes: { required: true, type: () => [require("../note/note.dto").NoteDto] }, attachments: { required: true, type: () => [require("../attachment/attachment.dto").AttachmentDto] }, calculated: { required: true, type: () => require("../taxReturnCalculated/taxReturnCalculatedView.dto").TaxReturnCalculatedViewDto }, latestNotificationTaskView: { required: true, type: () => require("../latestNotificationTaskView/latestNotificationTaskView.dto").LatestNotificationTaskViewDto }, createdBy: { required: false, type: () => require("../user/user.dto").UserDto }, updatedBy: { required: false, type: () => require("../user/user.dto").UserDto } };
|
|
26
27
|
}
|
|
27
28
|
}
|
|
28
29
|
exports.TaxReturnEmbeddedDto = TaxReturnEmbeddedDto;
|
|
@@ -62,6 +63,12 @@ __decorate([
|
|
|
62
63
|
(0, class_transformer_1.Expose)(),
|
|
63
64
|
__metadata("design:type", taxReturnCalculatedView_dto_1.TaxReturnCalculatedViewDto)
|
|
64
65
|
], TaxReturnEmbeddedDto.prototype, "calculated", void 0);
|
|
66
|
+
__decorate([
|
|
67
|
+
(0, nestjs_1.ApiProperty)({ type: latestNotificationTaskView_dto_1.LatestNotificationTaskViewDto, required: false }),
|
|
68
|
+
(0, class_transformer_1.Type)(() => latestNotificationTaskView_dto_1.LatestNotificationTaskViewDto),
|
|
69
|
+
(0, class_transformer_1.Expose)(),
|
|
70
|
+
__metadata("design:type", latestNotificationTaskView_dto_1.LatestNotificationTaskViewDto)
|
|
71
|
+
], TaxReturnEmbeddedDto.prototype, "latestNotificationTaskView", void 0);
|
|
65
72
|
__decorate([
|
|
66
73
|
(0, nestjs_1.ApiProperty)({ type: () => user_dto_1.UserDto, required: false }),
|
|
67
74
|
(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;AAC7D,oGAAgG;AAChG,+CAA2C;
|
|
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;AAChG,+CAA2C;AAC3C,iHAA6G;AAE7G,MAAa,oBAAoB;;;;CA6ChC;AA7CD,oDA6CC;AAzCA;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,kBAAO,CAAC,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IACvD,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,kBAAO,CAAC;IACnB,IAAA,0BAAM,GAAE;;mDACQ;AAKjB;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,8DAA6B,EAAE,QAAQ,EAAE,KAAK,EAAE,CAAC;IACrE,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,8DAA6B,CAAC;IACzC,IAAA,0BAAM,GAAE;8BACmB,8DAA6B;wEAAC;AAK1D;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"}
|
|
@@ -17,7 +17,7 @@ const base_dto_1 = require("../generic/base.dto");
|
|
|
17
17
|
const taxReturnCalculatedViewEmbedded_dto_1 = require("./taxReturnCalculatedViewEmbedded.dto");
|
|
18
18
|
class TaxReturnCalculatedViewDto extends (0, base_dto_1.BaseDto)(taxReturnCalculatedViewEmbedded_dto_1.TaxReturnCalculatedViewEmbeddedDto) {
|
|
19
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 }, nrOfVisibleAttachments: { required: true, type: () => Number }, nrOfAttachments: { required: true, type: () => Number }, attachmentUpdatedAt: { required: true, type: () => String }, responseUpdatedAt: { required: true, type: () => String } };
|
|
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 }, nrOfVisibleAttachments: { required: true, type: () => Number }, nrOfAttachments: { required: true, type: () => Number }, attachmentUpdatedAt: { required: true, type: () => String }, responseUpdatedAt: { required: true, type: () => String }, nrOfNotificationTasks: { required: true, type: () => Number } };
|
|
21
21
|
}
|
|
22
22
|
}
|
|
23
23
|
exports.TaxReturnCalculatedViewDto = TaxReturnCalculatedViewDto;
|
|
@@ -66,4 +66,9 @@ __decorate([
|
|
|
66
66
|
(0, class_transformer_1.Expose)(),
|
|
67
67
|
__metadata("design:type", String)
|
|
68
68
|
], TaxReturnCalculatedViewDto.prototype, "responseUpdatedAt", void 0);
|
|
69
|
+
__decorate([
|
|
70
|
+
(0, nestjs_1.ApiProperty)({ type: Number, required: true }),
|
|
71
|
+
(0, class_transformer_1.Expose)(),
|
|
72
|
+
__metadata("design:type", Number)
|
|
73
|
+
], TaxReturnCalculatedViewDto.prototype, "nrOfNotificationTasks", void 0);
|
|
69
74
|
//# sourceMappingURL=taxReturnCalculatedView.dto.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"taxReturnCalculatedView.dto.js","sourceRoot":"","sources":["../../../src/dto/taxReturnCalculated/taxReturnCalculatedView.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,yDAA2C;AAC3C,yCAA2C;
|
|
1
|
+
{"version":3,"file":"taxReturnCalculatedView.dto.js","sourceRoot":"","sources":["../../../src/dto/taxReturnCalculated/taxReturnCalculatedView.dto.ts"],"names":[],"mappings":";;;;;;;;;;;;;AAAA,yDAA2C;AAC3C,yCAA2C;AAC3C,kDAA8C;AAC9C,+FAA2F;AAE3F,MAAa,0BAA2B,SAAQ,IAAA,kBAAO,EACtD,wEAAkC,CAClC;;;;CAwCA;AA1CD,gEA0CC;AArCA;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;AAI7B;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;0EACsB;AAI/B;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;mEACe;AAIxB;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;uEACoB;AAI7B;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;qEACkB;AAI3B;IAFC,IAAA,oBAAW,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;IAC7C,IAAA,0BAAM,GAAE;;yEACqB"}
|
package/dist/index.d.ts
CHANGED
|
@@ -42,12 +42,12 @@ import { UpdateSurveyDto } from './dto/survey/updateSurvey.dto';
|
|
|
42
42
|
import { SurveyPageDto } from './dto/survey/surveyPage.dto';
|
|
43
43
|
import { SurveyEmbeddedDto } from './dto/survey/surveyEmbedded.dto';
|
|
44
44
|
import { BulkUpdateSurveyDto } from './dto/survey/bulkUpdateSurvey.dto';
|
|
45
|
-
import { NotificationTaskEmbeddedDto } from './dto/
|
|
46
|
-
import { NotificationTaskPageDto } from './dto/
|
|
47
|
-
import { NotificationTaskDto } from './dto/
|
|
48
|
-
import { UpdateNotificationTaskDto } from './dto/
|
|
49
|
-
import { CreateNotificationTaskDto } from './dto/
|
|
50
|
-
import { BulkUpdateNotificationTaskDto } from './dto/
|
|
45
|
+
import { NotificationTaskEmbeddedDto } from './dto/notificationTask/notificationTaskEmbeddedDto';
|
|
46
|
+
import { NotificationTaskPageDto } from './dto/notificationTask/notificationTaskPageDto';
|
|
47
|
+
import { NotificationTaskDto } from './dto/notificationTask/notificationTaskDto';
|
|
48
|
+
import { UpdateNotificationTaskDto } from './dto/notificationTask/updateNotificationTaskDto';
|
|
49
|
+
import { CreateNotificationTaskDto } from './dto/notificationTask/createNotificationTaskDto';
|
|
50
|
+
import { BulkUpdateNotificationTaskDto } from './dto/notificationTask/bulkUpdateNotificationTaskDto';
|
|
51
51
|
import { ResponseDto } from './dto/response/response.dto';
|
|
52
52
|
import { CreateResponseDto } from './dto/response/createResponse.dto';
|
|
53
53
|
import { UpdateResponseDto } from './dto/response/updateResponse.dto';
|
|
@@ -120,4 +120,6 @@ import { TaxReturnAccessRightEmbeddedDto } from './dto/taxReturnAccessRight/taxR
|
|
|
120
120
|
import { TaxReturnAccessRightDto } from './dto/taxReturnAccessRight/taxReturnAccessRight.dto';
|
|
121
121
|
import { TaxReturnCalculatedViewEmbeddedDto } from './dto/taxReturnCalculated/taxReturnCalculatedViewEmbedded.dto';
|
|
122
122
|
import { TaxReturnCalculatedViewDto } from './dto/taxReturnCalculated/taxReturnCalculatedView.dto';
|
|
123
|
-
|
|
123
|
+
import { LatestNotificationTaskViewDto } from './dto/latestNotificationTaskView/latestNotificationTaskView.dto';
|
|
124
|
+
import { LatestNotificationTaskViewEmbeddedDto } from './dto/latestNotificationTaskView/latestNotificationTaskViewEmbedded.dto';
|
|
125
|
+
export { ExceptionDto, BaseDto, BaseViewDto, CollectionFilterDto, FilterDto, PageDto, PageInfoDto, BulkDto, EmbeddedDto, CronJobDto, CronJobPageDto, CronJobOptionsDto, ComponentDto, ComponentHealthDto, HealthDto, NoteDto, NoteEmbeddedDto, CreateNoteDto, UpdateNoteDto, BulkUpdateNoteDto, NotePageDto, NoteTagDto, NoteTagEmbeddedDto, NoteTagPageDto, CreateNoteTagDto, UpdateNoteTagDto, BulkUpdateNoteTagDto, NoteTagLinkDto, NoteTagLinkEmbeddedDto, NoteTagLinkPageDto, CreateNoteTagLinkDto, UpdateNoteTagLinkDto, BulkUpdateNoteTagLinkDto, TaxReturnDto, UpdateTaxReturnDto, TaxReturnEmbeddedDto, TaxReturnPageDto, BulkUpdateTaxReturnDto, TaxReturnCalculatedViewDto, TaxReturnCalculatedViewEmbeddedDto, CreateManyTaxReturnAccessRightDto, CreateTaxReturnAccessRightDto, TaxReturnAccessRightDto, TaxReturnAccessRightEmbeddedDto, TaxReturnAccessRightPageDto, SurveyDto, SurveyEmbeddedDto, CreateSurveyDto, UpdateSurveyDto, SurveyPageDto, BulkUpdateSurveyDto, NotificationTaskDto, NotificationTaskEmbeddedDto, NotificationTaskPageDto, CreateNotificationTaskDto, UpdateNotificationTaskDto, BulkUpdateNotificationTaskDto, LatestNotificationTaskViewDto, LatestNotificationTaskViewEmbeddedDto, ResponseDto, ResponseEmbeddedDto, CreateResponseDto, UpdateResponseDto, ResponsePageDto, BulkUpdateResponseDto, IncomeYearDto, IncomeYearEmbeddedDto, CreateIncomeYearDto, UpdateIncomeYearDto, IncomeYearPageDto, BulkUpdateIncomeYearDto, TeamDto, TeamEmbeddedDto, CreateTeamDto, UpdateTeamDto, TeamPageDto, BulkUpdateTeamDto, AttachmentDto, AttachmentEmbeddedDto, AttachmentPageDto, CreateAttachmentDto, UpdateAttachmentDto, BulkUpdateAttachmentDto, AttachmentTagDto, AttachmentTagEmbeddedDto, AttachmentTagPageDto, CreateAttachmentTagDto, UpdateAttachmentTagDto, BulkUpdateAttachmentTagDto, AttachmentTagLinkDto, AttachmentTagLinkEmbeddedDto, AttachmentTagLinkPageDto, CreateAttachmentTagLinkDto, UpdateAttachmentTagLinkDto, BulkUpdateAttachmentTagLinkDto, UserDto, UserEmbeddedDto, CreateUserDto, UpdateUserDto, UserPageDto, BulkUpdateUserDto, RoleEnum, LanguageEnum, AttachmentStatusEnum, AttachmentUploadStatusEnum, AttachmentTypeEnum, NoteStatusEnum, TaxReturnStatusEnum, TaxReturnErrorStatusEnum, NotificationTaskStatusEnum, NotificationTaskTypeEnum, ValidationException, convertAndValidate, IsBiggerThan, IsEmptyAttribute, IsRequiredFields, IsRequiredFieldValue, IsSmallerThan, Default, TransformEmbedded, TransformFloat, TransformInteger, TransformTotal, DtoType, BaseDtoType, BaseViewDtoType, };
|
package/dist/index.js
CHANGED
|
@@ -4,8 +4,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
exports.SurveyPageDto = exports.UpdateSurveyDto = exports.CreateSurveyDto = exports.SurveyEmbeddedDto = exports.SurveyDto = exports.TaxReturnAccessRightPageDto = exports.TaxReturnAccessRightEmbeddedDto = exports.TaxReturnAccessRightDto = exports.CreateTaxReturnAccessRightDto = exports.CreateManyTaxReturnAccessRightDto = exports.TaxReturnCalculatedViewEmbeddedDto = exports.TaxReturnCalculatedViewDto = exports.BulkUpdateTaxReturnDto = exports.TaxReturnPageDto = exports.TaxReturnEmbeddedDto = exports.UpdateTaxReturnDto = exports.TaxReturnDto = exports.BulkUpdateNoteTagLinkDto = exports.UpdateNoteTagLinkDto = exports.CreateNoteTagLinkDto = exports.NoteTagLinkPageDto = exports.NoteTagLinkEmbeddedDto = exports.NoteTagLinkDto = exports.BulkUpdateNoteTagDto = exports.UpdateNoteTagDto = exports.CreateNoteTagDto = exports.NoteTagPageDto = exports.NoteTagEmbeddedDto = exports.NoteTagDto = exports.NotePageDto = exports.BulkUpdateNoteDto = exports.UpdateNoteDto = exports.CreateNoteDto = exports.NoteEmbeddedDto = exports.NoteDto = exports.HealthDto = exports.ComponentHealthDto = exports.ComponentDto = exports.CronJobOptionsDto = exports.CronJobPageDto = exports.CronJobDto = exports.EmbeddedDto = exports.BulkDto = exports.PageInfoDto = exports.PageDto = exports.FilterDto = exports.CollectionFilterDto = exports.BaseViewDto = exports.BaseDto = exports.ExceptionDto = void 0;
|
|
7
|
-
exports.
|
|
8
|
-
exports.TransformTotal = exports.TransformInteger = exports.TransformFloat = exports.TransformEmbedded = exports.Default = exports.IsSmallerThan = exports.IsRequiredFieldValue = exports.IsRequiredFields = exports.IsEmptyAttribute = exports.IsBiggerThan = exports.convertAndValidate = exports.ValidationException = exports.NotificationTaskTypeEnum = exports.NotificationTaskStatusEnum = exports.TaxReturnErrorStatusEnum = exports.TaxReturnStatusEnum = exports.NoteStatusEnum = exports.AttachmentTypeEnum = exports.AttachmentUploadStatusEnum = exports.AttachmentStatusEnum = exports.LanguageEnum = void 0;
|
|
7
|
+
exports.UserPageDto = exports.UpdateUserDto = exports.CreateUserDto = exports.UserEmbeddedDto = exports.UserDto = exports.BulkUpdateAttachmentTagLinkDto = exports.UpdateAttachmentTagLinkDto = exports.CreateAttachmentTagLinkDto = exports.AttachmentTagLinkPageDto = exports.AttachmentTagLinkEmbeddedDto = exports.AttachmentTagLinkDto = exports.BulkUpdateAttachmentTagDto = exports.UpdateAttachmentTagDto = exports.CreateAttachmentTagDto = exports.AttachmentTagPageDto = exports.AttachmentTagEmbeddedDto = exports.AttachmentTagDto = exports.BulkUpdateAttachmentDto = exports.UpdateAttachmentDto = exports.CreateAttachmentDto = exports.AttachmentPageDto = exports.AttachmentEmbeddedDto = exports.AttachmentDto = exports.BulkUpdateTeamDto = exports.TeamPageDto = exports.UpdateTeamDto = exports.CreateTeamDto = exports.TeamEmbeddedDto = exports.TeamDto = exports.BulkUpdateIncomeYearDto = exports.IncomeYearPageDto = exports.UpdateIncomeYearDto = exports.CreateIncomeYearDto = exports.IncomeYearEmbeddedDto = exports.IncomeYearDto = exports.BulkUpdateResponseDto = exports.ResponsePageDto = exports.UpdateResponseDto = exports.CreateResponseDto = exports.ResponseEmbeddedDto = exports.ResponseDto = exports.LatestNotificationTaskViewEmbeddedDto = exports.LatestNotificationTaskViewDto = exports.BulkUpdateNotificationTaskDto = exports.UpdateNotificationTaskDto = exports.CreateNotificationTaskDto = exports.NotificationTaskPageDto = exports.NotificationTaskEmbeddedDto = exports.NotificationTaskDto = exports.BulkUpdateSurveyDto = void 0;
|
|
8
|
+
exports.TransformTotal = exports.TransformInteger = exports.TransformFloat = exports.TransformEmbedded = exports.Default = exports.IsSmallerThan = exports.IsRequiredFieldValue = exports.IsRequiredFields = exports.IsEmptyAttribute = exports.IsBiggerThan = exports.convertAndValidate = exports.ValidationException = exports.NotificationTaskTypeEnum = exports.NotificationTaskStatusEnum = exports.TaxReturnErrorStatusEnum = exports.TaxReturnStatusEnum = exports.NoteStatusEnum = exports.AttachmentTypeEnum = exports.AttachmentUploadStatusEnum = exports.AttachmentStatusEnum = exports.LanguageEnum = exports.RoleEnum = exports.BulkUpdateUserDto = void 0;
|
|
9
9
|
const exception_dto_1 = require("./dto/exception/exception.dto");
|
|
10
10
|
Object.defineProperty(exports, "ExceptionDto", { enumerable: true, get: function () { return exception_dto_1.ExceptionDto; } });
|
|
11
11
|
const baseView_dto_1 = require("./dto/generic/baseView.dto");
|
|
@@ -92,17 +92,17 @@ const surveyEmbedded_dto_1 = require("./dto/survey/surveyEmbedded.dto");
|
|
|
92
92
|
Object.defineProperty(exports, "SurveyEmbeddedDto", { enumerable: true, get: function () { return surveyEmbedded_dto_1.SurveyEmbeddedDto; } });
|
|
93
93
|
const bulkUpdateSurvey_dto_1 = require("./dto/survey/bulkUpdateSurvey.dto");
|
|
94
94
|
Object.defineProperty(exports, "BulkUpdateSurveyDto", { enumerable: true, get: function () { return bulkUpdateSurvey_dto_1.BulkUpdateSurveyDto; } });
|
|
95
|
-
const notificationTaskEmbeddedDto_1 = require("./dto/
|
|
95
|
+
const notificationTaskEmbeddedDto_1 = require("./dto/notificationTask/notificationTaskEmbeddedDto");
|
|
96
96
|
Object.defineProperty(exports, "NotificationTaskEmbeddedDto", { enumerable: true, get: function () { return notificationTaskEmbeddedDto_1.NotificationTaskEmbeddedDto; } });
|
|
97
|
-
const notificationTaskPageDto_1 = require("./dto/
|
|
97
|
+
const notificationTaskPageDto_1 = require("./dto/notificationTask/notificationTaskPageDto");
|
|
98
98
|
Object.defineProperty(exports, "NotificationTaskPageDto", { enumerable: true, get: function () { return notificationTaskPageDto_1.NotificationTaskPageDto; } });
|
|
99
|
-
const notificationTaskDto_1 = require("./dto/
|
|
99
|
+
const notificationTaskDto_1 = require("./dto/notificationTask/notificationTaskDto");
|
|
100
100
|
Object.defineProperty(exports, "NotificationTaskDto", { enumerable: true, get: function () { return notificationTaskDto_1.NotificationTaskDto; } });
|
|
101
|
-
const updateNotificationTaskDto_1 = require("./dto/
|
|
101
|
+
const updateNotificationTaskDto_1 = require("./dto/notificationTask/updateNotificationTaskDto");
|
|
102
102
|
Object.defineProperty(exports, "UpdateNotificationTaskDto", { enumerable: true, get: function () { return updateNotificationTaskDto_1.UpdateNotificationTaskDto; } });
|
|
103
|
-
const createNotificationTaskDto_1 = require("./dto/
|
|
103
|
+
const createNotificationTaskDto_1 = require("./dto/notificationTask/createNotificationTaskDto");
|
|
104
104
|
Object.defineProperty(exports, "CreateNotificationTaskDto", { enumerable: true, get: function () { return createNotificationTaskDto_1.CreateNotificationTaskDto; } });
|
|
105
|
-
const bulkUpdateNotificationTaskDto_1 = require("./dto/
|
|
105
|
+
const bulkUpdateNotificationTaskDto_1 = require("./dto/notificationTask/bulkUpdateNotificationTaskDto");
|
|
106
106
|
Object.defineProperty(exports, "BulkUpdateNotificationTaskDto", { enumerable: true, get: function () { return bulkUpdateNotificationTaskDto_1.BulkUpdateNotificationTaskDto; } });
|
|
107
107
|
const response_dto_1 = require("./dto/response/response.dto");
|
|
108
108
|
Object.defineProperty(exports, "ResponseDto", { enumerable: true, get: function () { return response_dto_1.ResponseDto; } });
|
|
@@ -248,4 +248,8 @@ const taxReturnCalculatedViewEmbedded_dto_1 = require("./dto/taxReturnCalculated
|
|
|
248
248
|
Object.defineProperty(exports, "TaxReturnCalculatedViewEmbeddedDto", { enumerable: true, get: function () { return taxReturnCalculatedViewEmbedded_dto_1.TaxReturnCalculatedViewEmbeddedDto; } });
|
|
249
249
|
const taxReturnCalculatedView_dto_1 = require("./dto/taxReturnCalculated/taxReturnCalculatedView.dto");
|
|
250
250
|
Object.defineProperty(exports, "TaxReturnCalculatedViewDto", { enumerable: true, get: function () { return taxReturnCalculatedView_dto_1.TaxReturnCalculatedViewDto; } });
|
|
251
|
+
const latestNotificationTaskView_dto_1 = require("./dto/latestNotificationTaskView/latestNotificationTaskView.dto");
|
|
252
|
+
Object.defineProperty(exports, "LatestNotificationTaskViewDto", { enumerable: true, get: function () { return latestNotificationTaskView_dto_1.LatestNotificationTaskViewDto; } });
|
|
253
|
+
const latestNotificationTaskViewEmbedded_dto_1 = require("./dto/latestNotificationTaskView/latestNotificationTaskViewEmbedded.dto");
|
|
254
|
+
Object.defineProperty(exports, "LatestNotificationTaskViewEmbeddedDto", { enumerable: true, get: function () { return latestNotificationTaskViewEmbedded_dto_1.LatestNotificationTaskViewEmbeddedDto; } });
|
|
251
255
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;AAAA,iEAA6D;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"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"}
|