@darraghor/nest-backend-libs 2.17.8 → 2.17.10
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/organisation-subscriptions/models/saveSubscriptionDto.d.ts +0 -1
- package/dist/organisation-subscriptions/models/saveSubscriptionDto.js +0 -6
- package/dist/organisation-subscriptions/models/saveSubscriptionDto.js.map +1 -1
- package/dist/organisation-subscriptions/organisation-subscriptions.controller.d.ts +3 -3
- package/dist/organisation-subscriptions/organisation-subscriptions.controller.js +14 -11
- package/dist/organisation-subscriptions/organisation-subscriptions.controller.js.map +1 -1
- package/dist/organisation-subscriptions/organisation-subscriptions.service.d.ts +2 -2
- package/dist/organisation-subscriptions/organisation-subscriptions.service.js +4 -4
- package/dist/organisation-subscriptions/organisation-subscriptions.service.js.map +1 -1
- package/package.json +1 -1
|
@@ -18,7 +18,6 @@ class SaveOrganisationSubscriptionRecordDto {
|
|
|
18
18
|
stripeCustomerId;
|
|
19
19
|
stripePriceId;
|
|
20
20
|
validUntil;
|
|
21
|
-
organisationUuid;
|
|
22
21
|
}
|
|
23
22
|
__decorate([
|
|
24
23
|
(0, swagger_1.ApiProperty)(),
|
|
@@ -42,10 +41,5 @@ __decorate([
|
|
|
42
41
|
(0, class_validator_1.IsDate)(),
|
|
43
42
|
__metadata("design:type", Date)
|
|
44
43
|
], SaveOrganisationSubscriptionRecordDto.prototype, "validUntil", void 0);
|
|
45
|
-
__decorate([
|
|
46
|
-
(0, swagger_1.ApiProperty)(),
|
|
47
|
-
(0, class_validator_1.IsString)(),
|
|
48
|
-
__metadata("design:type", String)
|
|
49
|
-
], SaveOrganisationSubscriptionRecordDto.prototype, "organisationUuid", void 0);
|
|
50
44
|
exports.SaveOrganisationSubscriptionRecordDto = SaveOrganisationSubscriptionRecordDto;
|
|
51
45
|
//# sourceMappingURL=saveSubscriptionDto.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"saveSubscriptionDto.js","sourceRoot":"","sources":["../../../src/organisation-subscriptions/models/saveSubscriptionDto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAA4C;AAC5C,yDAAkD;AAClD,qDAAiD;AAEjD,MAAa,qCAAqC;IAG9C,oBAAoB,CAAU;IAI9B,gBAAgB,CAAU;IAI1B,aAAa,CAAU;IAMvB,UAAU,CAAQ;
|
|
1
|
+
{"version":3,"file":"saveSubscriptionDto.js","sourceRoot":"","sources":["../../../src/organisation-subscriptions/models/saveSubscriptionDto.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,6CAA4C;AAC5C,yDAAkD;AAClD,qDAAiD;AAEjD,MAAa,qCAAqC;IAG9C,oBAAoB,CAAU;IAI9B,gBAAgB,CAAU;IAI1B,aAAa,CAAU;IAMvB,UAAU,CAAQ;CACrB;AAjBG;IAAC,IAAA,qBAAW,GAAE;IACb,IAAA,0BAAQ,GAAE;;mFACmB;AAE9B;IAAC,IAAA,qBAAW,GAAE;IACb,IAAA,0BAAQ,GAAE;;+EACe;AAE1B;IAAC,IAAA,qBAAW,GAAE;IACb,IAAA,0BAAQ,GAAE;;4EACY;AAEvB;IAAC,IAAA,qBAAW,GAAE;IACb,IAAA,6BAAS,EAAC,GAAG,EAAE,CAAC,IAAI,CAAC;IACrB,IAAA,wBAAI,EAAC,GAAG,EAAE,CAAC,IAAI,CAAC;IAChB,IAAA,wBAAM,GAAE;8BACI,IAAI;yEAAC;AAjBtB,sFAkBC"}
|
|
@@ -6,7 +6,7 @@ export declare class OrganisationSubscriptionsController {
|
|
|
6
6
|
private readonly osrService;
|
|
7
7
|
constructor(osrService: OrganisationSubscriptionService);
|
|
8
8
|
findAll(orgUuid: string, request: RequestWithUser): Promise<OrganisationSubscriptionRecord[]>;
|
|
9
|
-
addSubscription(body: SaveOrganisationSubscriptionRecordDto): Promise<OrganisationSubscriptionRecord>;
|
|
10
|
-
updateSubscription(subUuid: string, body: SaveOrganisationSubscriptionRecordDto): Promise<OrganisationSubscriptionRecord>;
|
|
11
|
-
deleteSubscription(uuid: string): Promise<boolean>;
|
|
9
|
+
addSubscription(orgUuid: string, body: SaveOrganisationSubscriptionRecordDto): Promise<OrganisationSubscriptionRecord>;
|
|
10
|
+
updateSubscription(subUuid: string, orgUuid: string, body: SaveOrganisationSubscriptionRecordDto): Promise<OrganisationSubscriptionRecord>;
|
|
11
|
+
deleteSubscription(orgUuid: string, uuid: string): Promise<boolean>;
|
|
12
12
|
}
|
|
@@ -29,13 +29,13 @@ let OrganisationSubscriptionsController = class OrganisationSubscriptionsControl
|
|
|
29
29
|
async findAll(orgUuid, request) {
|
|
30
30
|
return this.osrService.findAllForOwnerOfOrg(orgUuid, request.user.id);
|
|
31
31
|
}
|
|
32
|
-
async addSubscription(body) {
|
|
33
|
-
return this.osrService.create(body);
|
|
32
|
+
async addSubscription(orgUuid, body) {
|
|
33
|
+
return this.osrService.create(body, orgUuid);
|
|
34
34
|
}
|
|
35
|
-
async updateSubscription(subUuid, body) {
|
|
36
|
-
return this.osrService.update(subUuid, body);
|
|
35
|
+
async updateSubscription(subUuid, orgUuid, body) {
|
|
36
|
+
return this.osrService.update(subUuid, body, orgUuid);
|
|
37
37
|
}
|
|
38
|
-
async deleteSubscription(uuid) {
|
|
38
|
+
async deleteSubscription(orgUuid, uuid) {
|
|
39
39
|
return this.osrService.delete(uuid);
|
|
40
40
|
}
|
|
41
41
|
};
|
|
@@ -52,9 +52,10 @@ __decorate([
|
|
|
52
52
|
(0, authz_1.MandatoryUserClaims)("modify:all"),
|
|
53
53
|
(0, common_1.Post)(),
|
|
54
54
|
(0, swagger_1.ApiOkResponse)({ type: organisation_subscription_entity_1.OrganisationSubscriptionRecord }),
|
|
55
|
-
__param(0, (0, common_1.
|
|
55
|
+
__param(0, (0, common_1.Param)("orgUuid")),
|
|
56
|
+
__param(1, (0, common_1.Body)()),
|
|
56
57
|
__metadata("design:type", Function),
|
|
57
|
-
__metadata("design:paramtypes", [saveSubscriptionDto_1.SaveOrganisationSubscriptionRecordDto]),
|
|
58
|
+
__metadata("design:paramtypes", [String, saveSubscriptionDto_1.SaveOrganisationSubscriptionRecordDto]),
|
|
58
59
|
__metadata("design:returntype", Promise)
|
|
59
60
|
], OrganisationSubscriptionsController.prototype, "addSubscription", null);
|
|
60
61
|
__decorate([
|
|
@@ -62,18 +63,20 @@ __decorate([
|
|
|
62
63
|
(0, common_1.Put)(":uuid"),
|
|
63
64
|
(0, swagger_1.ApiOkResponse)({ type: organisation_subscription_entity_1.OrganisationSubscriptionRecord }),
|
|
64
65
|
__param(0, (0, common_1.Param)("uuid")),
|
|
65
|
-
__param(1, (0, common_1.
|
|
66
|
+
__param(1, (0, common_1.Param)("orgUuid")),
|
|
67
|
+
__param(2, (0, common_1.Body)()),
|
|
66
68
|
__metadata("design:type", Function),
|
|
67
|
-
__metadata("design:paramtypes", [String, saveSubscriptionDto_1.SaveOrganisationSubscriptionRecordDto]),
|
|
69
|
+
__metadata("design:paramtypes", [String, String, saveSubscriptionDto_1.SaveOrganisationSubscriptionRecordDto]),
|
|
68
70
|
__metadata("design:returntype", Promise)
|
|
69
71
|
], OrganisationSubscriptionsController.prototype, "updateSubscription", null);
|
|
70
72
|
__decorate([
|
|
71
73
|
(0, authz_1.MandatoryUserClaims)("modify:all"),
|
|
72
74
|
(0, common_1.Delete)(":uuid"),
|
|
73
75
|
(0, swagger_1.ApiOkResponse)({ type: [organisation_subscription_entity_1.OrganisationSubscriptionRecord] }),
|
|
74
|
-
__param(0, (0, common_1.Param)("
|
|
76
|
+
__param(0, (0, common_1.Param)("orgUuid")),
|
|
77
|
+
__param(1, (0, common_1.Param)("uuid")),
|
|
75
78
|
__metadata("design:type", Function),
|
|
76
|
-
__metadata("design:paramtypes", [String]),
|
|
79
|
+
__metadata("design:paramtypes", [String, String]),
|
|
77
80
|
__metadata("design:returntype", Promise)
|
|
78
81
|
], OrganisationSubscriptionsController.prototype, "deleteSubscription", null);
|
|
79
82
|
OrganisationSubscriptionsController = __decorate([
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"organisation-subscriptions.controller.js","sourceRoot":"","sources":["../../src/organisation-subscriptions/organisation-subscriptions.controller.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,gDAAgD;AAChD,2CAUwB;AACxB,6CAAsE;AACtE,+CAA2C;AAE3C,kGAA2F;AAC3F,6FAAqF;AACrF,oCAAuE;AACvE,sEAAmF;AAM5E,IAAM,mCAAmC,GAAzC,MAAM,mCAAmC;IACf;IAA7B,YAA6B,UAA2C;QAA3C,eAAU,GAAV,UAAU,CAAiC;IAAG,CAAC;IAItE,AAAN,KAAK,CAAC,OAAO,CACS,OAAe,EACtB,OAAwB;QAEnC,OAAO,IAAI,CAAC,UAAU,CAAC,oBAAoB,CAAC,OAAO,EAAE,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;IAC1E,CAAC;IAKK,AAAN,KAAK,CAAC,eAAe,
|
|
1
|
+
{"version":3,"file":"organisation-subscriptions.controller.js","sourceRoot":"","sources":["../../src/organisation-subscriptions/organisation-subscriptions.controller.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,gDAAgD;AAChD,2CAUwB;AACxB,6CAAsE;AACtE,+CAA2C;AAE3C,kGAA2F;AAC3F,6FAAqF;AACrF,oCAAuE;AACvE,sEAAmF;AAM5E,IAAM,mCAAmC,GAAzC,MAAM,mCAAmC;IACf;IAA7B,YAA6B,UAA2C;QAA3C,eAAU,GAAV,UAAU,CAAiC;IAAG,CAAC;IAItE,AAAN,KAAK,CAAC,OAAO,CACS,OAAe,EACtB,OAAwB;QAEnC,OAAO,IAAI,CAAC,UAAU,CAAC,oBAAoB,CAAC,OAAO,EAAE,OAAO,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;IAC1E,CAAC;IAKK,AAAN,KAAK,CAAC,eAAe,CACC,OAAe,EACzB,IAA2C;QAEnD,OAAO,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;IACjD,CAAC;IAKK,AAAN,KAAK,CAAC,kBAAkB,CACL,OAAe,EACZ,OAAe,EACzB,IAA2C;QAEnD,OAAO,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,OAAO,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC;IAC1D,CAAC;IAIK,AAAN,KAAK,CAAC,kBAAkB,CACF,OAAe,EAClB,IAAY;QAE3B,OAAO,IAAI,CAAC,UAAU,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;IACxC,CAAC;CACJ,CAAA;AApCS;IAFL,IAAA,YAAG,GAAE;IACL,IAAA,uBAAa,EAAC,EAAC,IAAI,EAAE,CAAC,iEAA8B,CAAC,EAAC,CAAC;IAEnD,WAAA,IAAA,cAAK,EAAC,SAAS,CAAC,CAAA;IAChB,WAAA,IAAA,gBAAO,GAAE,CAAA;;;;kEAGb;AAKK;IAHL,IAAA,2BAAmB,EAAC,YAAY,CAAC;IACjC,IAAA,aAAI,GAAE;IACN,IAAA,uBAAa,EAAC,EAAC,IAAI,EAAE,iEAA8B,EAAC,CAAC;IAEjD,WAAA,IAAA,cAAK,EAAC,SAAS,CAAC,CAAA;IAChB,WAAA,IAAA,aAAI,GAAE,CAAA;;6CAAO,2DAAqC;;0EAGtD;AAKK;IAHL,IAAA,2BAAmB,EAAC,YAAY,CAAC;IACjC,IAAA,YAAG,EAAC,OAAO,CAAC;IACZ,IAAA,uBAAa,EAAC,EAAC,IAAI,EAAE,iEAA8B,EAAC,CAAC;IAEjD,WAAA,IAAA,cAAK,EAAC,MAAM,CAAC,CAAA;IACb,WAAA,IAAA,cAAK,EAAC,SAAS,CAAC,CAAA;IAChB,WAAA,IAAA,aAAI,GAAE,CAAA;;qDAAO,2DAAqC;;6EAGtD;AAIK;IAHL,IAAA,2BAAmB,EAAC,YAAY,CAAC;IACjC,IAAA,eAAM,EAAC,OAAO,CAAC;IACf,IAAA,uBAAa,EAAC,EAAC,IAAI,EAAE,CAAC,iEAA8B,CAAC,EAAC,CAAC;IAEnD,WAAA,IAAA,cAAK,EAAC,SAAS,CAAC,CAAA;IAChB,WAAA,IAAA,cAAK,EAAC,MAAM,CAAC,CAAA;;;;6EAGjB;AAxCQ,mCAAmC;IAJ/C,IAAA,kBAAS,EAAC,IAAA,oBAAS,EAAC,KAAK,CAAC,EAAE,gCAAwB,CAAC;IACrD,IAAA,uBAAa,GAAE;IACf,IAAA,mBAAU,EAAC,qCAAqC,CAAC;IACjD,IAAA,iBAAO,EAAC,eAAe,CAAC;qCAEoB,oEAA+B;GAD/D,mCAAmC,CAyC/C;AAzCY,kFAAmC"}
|
|
@@ -7,7 +7,7 @@ export declare class OrganisationSubscriptionService {
|
|
|
7
7
|
private orgSubRepository;
|
|
8
8
|
constructor(orgRepo: Repository<Organisation>, orgSubRepository: Repository<OrganisationSubscriptionRecord>);
|
|
9
9
|
findAllForOwnerOfOrg(orgUuid: string, currentUserId: number): Promise<OrganisationSubscriptionRecord[]>;
|
|
10
|
-
create(subRecord: SaveOrganisationSubscriptionRecordDto): Promise<OrganisationSubscriptionRecord>;
|
|
11
|
-
update(subUuid: string, subRecord: SaveOrganisationSubscriptionRecordDto): Promise<OrganisationSubscriptionRecord>;
|
|
10
|
+
create(subRecord: SaveOrganisationSubscriptionRecordDto, orgUuid: string): Promise<OrganisationSubscriptionRecord>;
|
|
11
|
+
update(subUuid: string, subRecord: SaveOrganisationSubscriptionRecordDto, orgUuid: string): Promise<OrganisationSubscriptionRecord>;
|
|
12
12
|
delete(subUuid: string): Promise<boolean>;
|
|
13
13
|
}
|
|
@@ -44,11 +44,11 @@ let OrganisationSubscriptionService = class OrganisationSubscriptionService {
|
|
|
44
44
|
});
|
|
45
45
|
return org.subscriptionRecords;
|
|
46
46
|
}
|
|
47
|
-
async create(subRecord) {
|
|
47
|
+
async create(subRecord, orgUuid) {
|
|
48
48
|
// find the org
|
|
49
49
|
const org = await this.orgRepo.findOneOrFail({
|
|
50
50
|
where: {
|
|
51
|
-
uuid:
|
|
51
|
+
uuid: orgUuid,
|
|
52
52
|
},
|
|
53
53
|
});
|
|
54
54
|
const sub = this.orgSubRepository.create();
|
|
@@ -59,10 +59,10 @@ let OrganisationSubscriptionService = class OrganisationSubscriptionService {
|
|
|
59
59
|
sub.validUntil = subRecord.validUntil;
|
|
60
60
|
return this.orgSubRepository.save(sub);
|
|
61
61
|
}
|
|
62
|
-
async update(subUuid, subRecord) {
|
|
62
|
+
async update(subUuid, subRecord, orgUuid) {
|
|
63
63
|
const org = await this.orgRepo.findOneOrFail({
|
|
64
64
|
where: {
|
|
65
|
-
uuid:
|
|
65
|
+
uuid: orgUuid,
|
|
66
66
|
},
|
|
67
67
|
});
|
|
68
68
|
const sub = await this.orgSubRepository.findOneOrFail({
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"organisation-subscriptions.service.js","sourceRoot":"","sources":["../../src/organisation-subscriptions/organisation-subscriptions.service.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,2CAA0C;AAC1C,6CAAiD;AACjD,qCAAmC;AACnC,6DAAoD;AACpD,sFAA0E;AAC1E,kGAA2F;AAIpF,IAAM,+BAA+B,GAArC,MAAM,+BAA+B;IAG5B;IAEA;IAJZ,YAEY,OAAiC,EAEjC,gBAA4D;QAF5D,YAAO,GAAP,OAAO,CAA0B;QAEjC,qBAAgB,GAAhB,gBAAgB,CAA4C;IACrE,CAAC;IAEJ,KAAK,CAAC,oBAAoB,CACtB,OAAe,EACf,aAAqB;QAErB,oCAAoC;QACpC,MAAM,GAAG,GAAG,MAAM,IAAI,CAAC,OAAO,CAAC,aAAa,CAAC;YACzC,KAAK,EAAE;gBACH,IAAI,EAAE,OAAO;gBACb,WAAW,EAAE;oBACT,QAAQ,EAAE,aAAa;oBACvB,KAAK,EAAE;wBACH,IAAI,EAAE,iBAAK,CAAC,KAAK;qBACpB;iBACJ;aACJ;YACD,SAAS,EAAE;gBACP,mBAAmB,EAAE,IAAI;aAC5B;SACJ,CAAC,CAAC;QAEH,OAAO,GAAG,CAAC,mBAAmB,CAAC;IACnC,CAAC;IAED,KAAK,CAAC,MAAM,CACR,SAAgD;
|
|
1
|
+
{"version":3,"file":"organisation-subscriptions.service.js","sourceRoot":"","sources":["../../src/organisation-subscriptions/organisation-subscriptions.service.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED