@darraghor/nest-backend-libs 2.10.8 → 2.10.9
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.
|
@@ -11,7 +11,6 @@ var __metadata = (this && this.__metadata) || function (k, v) {
|
|
|
11
11
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
12
|
exports.Invitation = void 0;
|
|
13
13
|
const swagger_1 = require("@nestjs/swagger");
|
|
14
|
-
const class_transformer_1 = require("class-transformer");
|
|
15
14
|
const typeorm_1 = require("typeorm");
|
|
16
15
|
const organisation_entity_1 = require("../../organisation/entities/organisation.entity");
|
|
17
16
|
let Invitation = class Invitation {
|
|
@@ -67,12 +66,10 @@ __decorate([
|
|
|
67
66
|
__metadata("design:type", Date)
|
|
68
67
|
], Invitation.prototype, "acceptedOn", void 0);
|
|
69
68
|
__decorate([
|
|
70
|
-
(0, typeorm_1.Column)(),
|
|
71
69
|
(0, swagger_1.ApiProperty)(),
|
|
72
70
|
(0, typeorm_1.ManyToOne)(() => organisation_entity_1.Organisation, {
|
|
73
71
|
eager: true,
|
|
74
72
|
}),
|
|
75
|
-
(0, class_transformer_1.Type)(() => organisation_entity_1.Organisation),
|
|
76
73
|
__metadata("design:type", organisation_entity_1.Organisation)
|
|
77
74
|
], Invitation.prototype, "organisation", void 0);
|
|
78
75
|
__decorate([
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"invitation.entity.js","sourceRoot":"","sources":["../../../src/invitations/entities/invitation.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAiE;
|
|
1
|
+
{"version":3,"file":"invitation.entity.js","sourceRoot":"","sources":["../../../src/invitations/entities/invitation.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAAiE;AAEjE,qCASiB;AACjB,yFAA6E;AAGtE,IAAM,UAAU,GAAhB,MAAM,UAAU;IAGnB,EAAE,CAAU;IAQL,IAAI,CAAU;IAIrB,SAAS,CAAU;IAInB,YAAY,CAAU;IAItB,gBAAgB,CAAQ;IAIxB,SAAS,CAAQ;IAIjB,UAAU,CAAQ;IAMlB,YAAY,CAAgB;IAI5B,WAAW,CAAQ;IAInB,UAAU,CAAQ;IAIlB,WAAW,CAAQ;CACtB,CAAA;AAjDG;IAAC,IAAA,gCAAsB,GAAE;IACxB,IAAA,qBAAW,GAAE;;sCACF;AAEZ;IAAC,IAAA,gBAAM,EAAC,MAAM,EAAE;QACZ,IAAI,EAAE,MAAM;QACZ,OAAO,EAAE,GAAG,EAAE,CAAC,oBAAoB;KACtC,CAAC;IACD,IAAA,mBAAS,EAAC,MAAM,CAAC;IACjB,IAAA,qBAAW,GAAE;;wCACO;AAErB;IAAC,IAAA,gBAAM,GAAE;IACR,IAAA,qBAAW,GAAE;;6CACK;AAEnB;IAAC,IAAA,gBAAM,GAAE;IACR,IAAA,qBAAW,GAAE;;gDACQ;AAEtB;IAAC,IAAA,gBAAM,GAAE;IACR,IAAA,qBAAW,GAAE;8BACK,IAAI;oDAAC;AAExB;IAAC,IAAA,gBAAM,GAAE;IACR,IAAA,qBAAW,GAAE;8BACF,IAAI;6CAAC;AAEjB;IAAC,IAAA,gBAAM,GAAE;IACR,IAAA,6BAAmB,GAAE;8BACT,IAAI;8CAAC;AAElB;IAAC,IAAA,qBAAW,GAAE;IACb,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,kCAAY,EAAE;QAC3B,KAAK,EAAE,IAAI;KACd,CAAC;8BACa,kCAAY;gDAAC;AAE5B;IAAC,IAAA,0BAAgB,GAAE;IAClB,IAAA,qBAAW,GAAE;8BACA,IAAI;+CAAC;AAEnB;IAAC,IAAA,0BAAgB,GAAE;IAClB,IAAA,qBAAW,GAAE;8BACD,IAAI;8CAAC;AAElB;IAAC,IAAA,0BAAgB,GAAE;IAClB,IAAA,6BAAmB,GAAE;8BACR,IAAI;+CAAC;AAjDV,UAAU;IADtB,IAAA,gBAAM,GAAE;GACI,UAAU,CAkDtB;AAlDY,gCAAU"}
|
|
@@ -21,6 +21,7 @@ const organisation_module_1 = require("../organisation/organisation.module");
|
|
|
21
21
|
const config_1 = require("@nestjs/config");
|
|
22
22
|
const InvitationConfigurationVariables_1 = __importDefault(require("./InvitationConfigurationVariables"));
|
|
23
23
|
const InvitationConfigurationService_1 = require("./InvitationConfigurationService");
|
|
24
|
+
const organisation_entity_1 = require("../organisation/entities/organisation.entity");
|
|
24
25
|
let InvitationModule = class InvitationModule {
|
|
25
26
|
};
|
|
26
27
|
InvitationModule = __decorate([
|
|
@@ -28,7 +29,7 @@ InvitationModule = __decorate([
|
|
|
28
29
|
imports: [
|
|
29
30
|
config_1.ConfigModule.forFeature(InvitationConfigurationVariables_1.default),
|
|
30
31
|
logger_module_1.LoggerModule,
|
|
31
|
-
typeorm_1.TypeOrmModule.forFeature([invitation_entity_1.Invitation]),
|
|
32
|
+
typeorm_1.TypeOrmModule.forFeature([invitation_entity_1.Invitation, organisation_entity_1.Organisation]),
|
|
32
33
|
smtp_email_client_module_1.SmtpEmailClientModule,
|
|
33
34
|
organisation_module_1.OrganisationModule,
|
|
34
35
|
],
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"invitation.module.js","sourceRoot":"","sources":["../../src/invitations/invitation.module.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAAsC;AACtC,2DAAqD;AACrD,6CAA8C;AAC9C,oEAAwD;AACxD,mEAA6D;AAC7D,6DAAuD;AACvD,4FAAoF;AACpF,6EAAuE;AACvE,2CAA4C;AAC5C,0GAAiE;AACjE,qFAAiF;
|
|
1
|
+
{"version":3,"file":"invitation.module.js","sourceRoot":"","sources":["../../src/invitations/invitation.module.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAAsC;AACtC,2DAAqD;AACrD,6CAA8C;AAC9C,oEAAwD;AACxD,mEAA6D;AAC7D,6DAAuD;AACvD,4FAAoF;AACpF,6EAAuE;AACvE,2CAA4C;AAC5C,0GAAiE;AACjE,qFAAiF;AACjF,sFAA0E;AAcnE,IAAM,gBAAgB,GAAtB,MAAM,gBAAgB;CAAG,CAAA;AAAnB,gBAAgB;IAZ5B,IAAA,eAAM,EAAC;QACJ,OAAO,EAAE;YACL,qBAAY,CAAC,UAAU,CAAC,0CAAe,CAAC;YACxC,4BAAY;YACZ,uBAAa,CAAC,UAAU,CAAC,CAAC,8BAAU,EAAE,kCAAY,CAAC,CAAC;YACpD,gDAAqB;YACrB,wCAAkB;SACrB;QACD,WAAW,EAAE,CAAC,4CAAoB,CAAC;QACnC,SAAS,EAAE,CAAC,sCAAiB,EAAE,gEAA+B,CAAC;QAC/D,OAAO,EAAE,CAAC,sCAAiB,CAAC;KAC/B,CAAC;GACW,gBAAgB,CAAG;AAAnB,4CAAgB"}
|
package/package.json
CHANGED