vk-payments 0.2.10 → 0.2.11
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/vk-payments.umd.js +8 -0
- package/bundles/vk-payments.umd.js.map +1 -1
- package/bundles/vk-payments.umd.min.js +1 -1
- package/bundles/vk-payments.umd.min.js.map +1 -1
- package/esm2015/lib/modo/components/modo/modo.component.js +9 -1
- package/esm2015/lib/modo/models/modo.models.js +5 -1
- package/esm5/lib/modo/components/modo/modo.component.js +9 -1
- package/esm5/lib/modo/models/modo.models.js +5 -1
- package/fesm2015/vk-payments.js +8 -0
- package/fesm2015/vk-payments.js.map +1 -1
- package/fesm5/vk-payments.js +8 -0
- package/fesm5/vk-payments.js.map +1 -1
- package/lib/modo/components/modo/modo.component.d.ts +2 -0
- package/lib/modo/models/modo.models.d.ts +2 -0
- package/package.json +1 -1
- package/vk-payments.metadata.json +1 -1
|
@@ -3600,6 +3600,8 @@
|
|
|
3600
3600
|
paymentRequest = {
|
|
3601
3601
|
amount: this.amount,
|
|
3602
3602
|
orderId: this.orderId,
|
|
3603
|
+
storeId: this.storeId,
|
|
3604
|
+
idVen: this.idVen
|
|
3603
3605
|
};
|
|
3604
3606
|
return [4 /*yield*/, this.modoApi.createPayment(paymentRequest, this.vkUrlApi).toPromise()];
|
|
3605
3607
|
case 1:
|
|
@@ -3649,6 +3651,8 @@
|
|
|
3649
3651
|
{ type: ModoApiService }
|
|
3650
3652
|
]; };
|
|
3651
3653
|
ModoComponent.propDecorators = {
|
|
3654
|
+
storeId: [{ type: core.Input }],
|
|
3655
|
+
idVen: [{ type: core.Input }],
|
|
3652
3656
|
amount: [{ type: core.Input }],
|
|
3653
3657
|
orderId: [{ type: core.Input }],
|
|
3654
3658
|
vkUrlApi: [{ type: core.Input }],
|
|
@@ -3659,6 +3663,10 @@
|
|
|
3659
3663
|
return ModoComponent;
|
|
3660
3664
|
}());
|
|
3661
3665
|
if (false) {
|
|
3666
|
+
/** @type {?} */
|
|
3667
|
+
ModoComponent.prototype.storeId;
|
|
3668
|
+
/** @type {?} */
|
|
3669
|
+
ModoComponent.prototype.idVen;
|
|
3662
3670
|
/** @type {?} */
|
|
3663
3671
|
ModoComponent.prototype.amount;
|
|
3664
3672
|
/** @type {?} */
|