@darraghor/nest-backend-libs 2.18.1 → 2.18.3
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/organisation-subscriptions.module.js +2 -0
- package/dist/organisation-subscriptions/organisation-subscriptions.module.js.map +1 -1
- package/dist/stripe-client/index.d.ts +1 -0
- package/dist/stripe-client/index.js +3 -1
- package/dist/stripe-client/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -14,6 +14,7 @@ const organisation_subscriptions_service_1 = require("./organisation-subscriptio
|
|
|
14
14
|
const organisation_entity_1 = require("../organisation/entities/organisation.entity");
|
|
15
15
|
const organisation_subscriptions_controller_1 = require("./organisation-subscriptions.controller");
|
|
16
16
|
const organisation_subscription_entity_1 = require("./entities/organisation-subscription.entity");
|
|
17
|
+
const payment_session_module_1 = require("../payment-sessions/payment-session.module");
|
|
17
18
|
let OrganisationSubscriptionsModule = class OrganisationSubscriptionsModule {
|
|
18
19
|
};
|
|
19
20
|
OrganisationSubscriptionsModule = __decorate([
|
|
@@ -24,6 +25,7 @@ OrganisationSubscriptionsModule = __decorate([
|
|
|
24
25
|
organisation_entity_1.Organisation,
|
|
25
26
|
organisation_subscription_entity_1.OrganisationSubscriptionRecord,
|
|
26
27
|
]),
|
|
28
|
+
payment_session_module_1.PaymentSessionModule,
|
|
27
29
|
],
|
|
28
30
|
controllers: [organisation_subscriptions_controller_1.OrganisationSubscriptionsController],
|
|
29
31
|
providers: [organisation_subscriptions_service_1.OrganisationSubscriptionService],
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"organisation-subscriptions.module.js","sourceRoot":"","sources":["../../src/organisation-subscriptions/organisation-subscriptions.module.ts"],"names":[],"mappings":";;;;;;;;;AAAA,2CAAsC;AACtC,2DAAqD;AACrD,6CAA8C;AAC9C,6FAAqF;AACrF,sFAA0E;AAC1E,mGAA4F;AAC5F,kGAA2F;
|
|
1
|
+
{"version":3,"file":"organisation-subscriptions.module.js","sourceRoot":"","sources":["../../src/organisation-subscriptions/organisation-subscriptions.module.ts"],"names":[],"mappings":";;;;;;;;;AAAA,2CAAsC;AACtC,2DAAqD;AACrD,6CAA8C;AAC9C,6FAAqF;AACrF,sFAA0E;AAC1E,mGAA4F;AAC5F,kGAA2F;AAC3F,uFAAgF;AAezE,IAAM,+BAA+B,GAArC,MAAM,+BAA+B;CAAG,CAAA;AAAlC,+BAA+B;IAb3C,IAAA,eAAM,EAAC;QACJ,OAAO,EAAE;YACL,4BAAY;YACZ,uBAAa,CAAC,UAAU,CAAC;gBACrB,kCAAY;gBACZ,iEAA8B;aACjC,CAAC;YACF,6CAAoB;SACvB;QACD,WAAW,EAAE,CAAC,2EAAmC,CAAC;QAClD,SAAS,EAAE,CAAC,oEAA+B,CAAC;QAC5C,OAAO,EAAE,CAAC,oEAA+B,CAAC;KAC7C,CAAC;GACW,+BAA+B,CAAG;AAAlC,0EAA+B"}
|
|
@@ -4,3 +4,4 @@ export { StripeCheckoutSessionRequestDto } from "./models/StripeCheckoutSessionR
|
|
|
4
4
|
export { StripeCheckoutSessionResponseDto } from "./models/StripeCheckoutSessionResponseDto";
|
|
5
5
|
export { StripeCheckoutLineItem } from "./models/StripeCheckoutLineItem";
|
|
6
6
|
export { StripeAccountModule } from "./stripe-account.module";
|
|
7
|
+
export { StripeEventHandler } from "./services/queued-payment-event.handler";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.StripeAccountModule = exports.StripeCheckoutLineItem = exports.StripeCheckoutSessionResponseDto = exports.StripeCheckoutSessionRequestDto = exports.StripeUnauthenticatedCheckoutController = exports.StripeCheckoutController = void 0;
|
|
3
|
+
exports.StripeEventHandler = exports.StripeAccountModule = exports.StripeCheckoutLineItem = exports.StripeCheckoutSessionResponseDto = exports.StripeCheckoutSessionRequestDto = exports.StripeUnauthenticatedCheckoutController = exports.StripeCheckoutController = void 0;
|
|
4
4
|
var stripe_checkout_controller_1 = require("./controllers/stripe-checkout-controller");
|
|
5
5
|
Object.defineProperty(exports, "StripeCheckoutController", { enumerable: true, get: function () { return stripe_checkout_controller_1.StripeCheckoutController; } });
|
|
6
6
|
var stripe_unauthenticated_checkout_controller_1 = require("./controllers/stripe-unauthenticated-checkout-controller");
|
|
@@ -13,4 +13,6 @@ var StripeCheckoutLineItem_1 = require("./models/StripeCheckoutLineItem");
|
|
|
13
13
|
Object.defineProperty(exports, "StripeCheckoutLineItem", { enumerable: true, get: function () { return StripeCheckoutLineItem_1.StripeCheckoutLineItem; } });
|
|
14
14
|
var stripe_account_module_1 = require("./stripe-account.module");
|
|
15
15
|
Object.defineProperty(exports, "StripeAccountModule", { enumerable: true, get: function () { return stripe_account_module_1.StripeAccountModule; } });
|
|
16
|
+
var queued_payment_event_handler_1 = require("./services/queued-payment-event.handler");
|
|
17
|
+
Object.defineProperty(exports, "StripeEventHandler", { enumerable: true, get: function () { return queued_payment_event_handler_1.StripeEventHandler; } });
|
|
16
18
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/stripe-client/index.ts"],"names":[],"mappings":";;;AAAA,uFAAkF;AAA1E,sIAAA,wBAAwB,OAAA;AAChC,uHAAiH;AAAzG,qKAAA,uCAAuC,OAAA;AAC/C,4FAAyF;AAAjF,kJAAA,+BAA+B,OAAA;AACvC,8FAA2F;AAAnF,oJAAA,gCAAgC,OAAA;AACxC,0EAAuE;AAA/D,gIAAA,sBAAsB,OAAA;AAC9B,iEAA4D;AAApD,4HAAA,mBAAmB,OAAA"}
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/stripe-client/index.ts"],"names":[],"mappings":";;;AAAA,uFAAkF;AAA1E,sIAAA,wBAAwB,OAAA;AAChC,uHAAiH;AAAzG,qKAAA,uCAAuC,OAAA;AAC/C,4FAAyF;AAAjF,kJAAA,+BAA+B,OAAA;AACvC,8FAA2F;AAAnF,oJAAA,gCAAgC,OAAA;AACxC,0EAAuE;AAA/D,gIAAA,sBAAsB,OAAA;AAC9B,iEAA4D;AAApD,4HAAA,mBAAmB,OAAA;AAC3B,wFAA2E;AAAnE,kIAAA,kBAAkB,OAAA"}
|
package/package.json
CHANGED