taxtank-core 0.29.20 → 0.29.21
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/bundles/taxtank-core.umd.js +3 -0
- package/bundles/taxtank-core.umd.js.map +1 -1
- package/esm2015/lib/services/http/subscription/service-subscription/subscription.service.js +4 -1
- package/fesm2015/taxtank-core.js +3 -0
- package/fesm2015/taxtank-core.js.map +1 -1
- package/lib/services/http/subscription/service-subscription/subscription.service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -16225,6 +16225,9 @@
|
|
|
16225
16225
|
return newSubscription;
|
|
16226
16226
|
}));
|
|
16227
16227
|
};
|
|
16228
|
+
SubscriptionService.prototype.getStripeClientSecret = function (subscription) {
|
|
16229
|
+
return this.http.post(this.apiUrl, subscription).pipe(operators.map(function (response) { return response; }));
|
|
16230
|
+
};
|
|
16228
16231
|
SubscriptionService.prototype.getActive = function () {
|
|
16229
16232
|
return this.get().pipe(operators.map(function (subscriptions) { return subscriptions.getActive(); }));
|
|
16230
16233
|
};
|