@rebilly/instruments 8.4.0 → 8.6.0
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/CHANGELOG.md +14 -0
- package/dist/index.js +11 -3
- package/dist/index.min.js +3 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [8.6.0](https://github.com/Rebilly/rebilly/compare/instruments/core-v8.5.0...instruments/core-v8.6.0) (2023-12-05)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **rebilly-js-sdk:** Add ReadyToPayout resource ([#2494](https://github.com/Rebilly/rebilly/issues/2494)) ([e047f3e](https://github.com/Rebilly/rebilly/commit/e047f3e9b3ce61412d7347b5984e216abdcb8bfd))
|
|
7
|
+
|
|
8
|
+
## [8.5.0](https://github.com/Rebilly/rebilly/compare/instruments/core-v8.4.0...instruments/core-v8.5.0) (2023-12-04)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **billing-portal:** AJV attributes validation, API service implementation ([#2490](https://github.com/Rebilly/rebilly/issues/2490)) ([f4235c0](https://github.com/Rebilly/rebilly/commit/f4235c0cdb39f1546897ee949469594b02b37ce2))
|
|
14
|
+
|
|
1
15
|
## [8.4.0](https://github.com/Rebilly/rebilly/compare/instruments/core-v8.3.1...instruments/core-v8.4.0) (2023-11-30)
|
|
2
16
|
|
|
3
17
|
|
package/dist/index.js
CHANGED
|
@@ -5982,7 +5982,7 @@ function cloneArrayDeep(val, instanceClone) {
|
|
|
5982
5982
|
return res;
|
|
5983
5983
|
}
|
|
5984
5984
|
var cloneDeep_1 = cloneDeep;
|
|
5985
|
-
const version = "55.
|
|
5985
|
+
const version = "55.5.0";
|
|
5986
5986
|
let urlAlphabet = "useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict";
|
|
5987
5987
|
let nanoid = (size2 = 21) => {
|
|
5988
5988
|
let id2 = "";
|
|
@@ -9424,6 +9424,13 @@ function QuotesResource({ apiHandler }) {
|
|
|
9424
9424
|
}
|
|
9425
9425
|
};
|
|
9426
9426
|
}
|
|
9427
|
+
function ReadyToPayoutResource({ apiHandler }) {
|
|
9428
|
+
return {
|
|
9429
|
+
readyToPayout({ data }) {
|
|
9430
|
+
return apiHandler.post(`ready-to-payout`, data);
|
|
9431
|
+
}
|
|
9432
|
+
};
|
|
9433
|
+
}
|
|
9427
9434
|
function TransactionsResource({ apiHandler }) {
|
|
9428
9435
|
return {
|
|
9429
9436
|
getAll({
|
|
@@ -9478,6 +9485,7 @@ class StorefrontApiInstance {
|
|
|
9478
9485
|
this.products = ProductsResource({ apiHandler });
|
|
9479
9486
|
this.purchase = PurchaseResource({ apiHandler });
|
|
9480
9487
|
this.quotes = QuotesResource({ apiHandler });
|
|
9488
|
+
this.readyToPayout = ReadyToPayoutResource({ apiHandler });
|
|
9481
9489
|
this.transactions = TransactionsResource({ apiHandler });
|
|
9482
9490
|
this.websites = WebsitesResource({ apiHandler });
|
|
9483
9491
|
this.checkoutForm = this.checkoutForms;
|
|
@@ -23152,7 +23160,7 @@ function handleComputedProperty(options) {
|
|
|
23152
23160
|
var _a;
|
|
23153
23161
|
return Object.assign({}, options, {
|
|
23154
23162
|
_computed: {
|
|
23155
|
-
version: "8.
|
|
23163
|
+
version: "8.5.0",
|
|
23156
23164
|
paymentMethodsUrl: ((_a = options._dev) == null ? void 0 : _a.paymentMethodsUrl) ?? "https://forms.secure-payments.app"
|
|
23157
23165
|
}
|
|
23158
23166
|
});
|
|
@@ -26301,7 +26309,7 @@ class RebillyInstrumentsInstance {
|
|
|
26301
26309
|
await show({ componentName, payload });
|
|
26302
26310
|
}
|
|
26303
26311
|
get version() {
|
|
26304
|
-
return `RebillyInstruments Ver.${"8.
|
|
26312
|
+
return `RebillyInstruments Ver.${"8.5.0"}`;
|
|
26305
26313
|
}
|
|
26306
26314
|
on(eventName, callback) {
|
|
26307
26315
|
on({ eventName, callback });
|