@rebilly/instruments 8.43.0 → 8.43.1
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 +7 -0
- package/dist/index.js +7 -3
- package/dist/index.min.js +4 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [8.43.1](https://github.com/Rebilly/rebilly/compare/instruments/core-v8.43.0...instruments/core-v8.43.1) (2024-02-06)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **instrument:** Show re-attempt button for invoice payment ([#3312](https://github.com/Rebilly/rebilly/issues/3312)) ([308488e](https://github.com/Rebilly/rebilly/commit/308488ef5af1e87d58ad16c5b2216f66eb80d4a6))
|
|
7
|
+
|
|
1
8
|
## [8.43.0](https://github.com/Rebilly/rebilly/compare/instruments/core-v8.42.1...instruments/core-v8.43.0) (2024-02-06)
|
|
2
9
|
|
|
3
10
|
|
package/dist/index.js
CHANGED
|
@@ -5996,7 +5996,7 @@ function cloneArrayDeep(val, instanceClone) {
|
|
|
5996
5996
|
return res;
|
|
5997
5997
|
}
|
|
5998
5998
|
var cloneDeep_1 = cloneDeep;
|
|
5999
|
-
const version = "55.
|
|
5999
|
+
const version = "55.18.0";
|
|
6000
6000
|
let urlAlphabet = "useandom-26T198340PX75pxJACKVERYMINDBUSHWOLF_GQZbfghjklqvwyzrict";
|
|
6001
6001
|
let nanoid = (size2 = 21) => {
|
|
6002
6002
|
let id2 = "";
|
|
@@ -14561,6 +14561,9 @@ class DataInstance {
|
|
|
14561
14561
|
get isPayment() {
|
|
14562
14562
|
return Boolean(this.invoice || this.transaction || this.money);
|
|
14563
14563
|
}
|
|
14564
|
+
get isInvoice() {
|
|
14565
|
+
return Boolean(this.invoice);
|
|
14566
|
+
}
|
|
14564
14567
|
get isPurchase() {
|
|
14565
14568
|
return Boolean(this.previewPurchase);
|
|
14566
14569
|
}
|
|
@@ -14601,6 +14604,7 @@ class DataInstance {
|
|
|
14601
14604
|
...this,
|
|
14602
14605
|
amountAndCurrency: this.amountAndCurrency,
|
|
14603
14606
|
isPayment: this.isPayment,
|
|
14607
|
+
isInvoice: this.isInvoice,
|
|
14604
14608
|
isPurchase: this.isPurchase,
|
|
14605
14609
|
hasAmountDue: this.hasAmountDue,
|
|
14606
14610
|
summaryItems: this.summaryItems,
|
|
@@ -23449,7 +23453,7 @@ function handleComputedProperty(options) {
|
|
|
23449
23453
|
var _a;
|
|
23450
23454
|
return Object.assign({}, options, {
|
|
23451
23455
|
_computed: {
|
|
23452
|
-
version: "8.
|
|
23456
|
+
version: "8.43.0",
|
|
23453
23457
|
paymentMethodsUrl: ((_a = options._dev) == null ? void 0 : _a.paymentMethodsUrl) ?? "https://forms.secure-payments.app"
|
|
23454
23458
|
}
|
|
23455
23459
|
});
|
|
@@ -26789,7 +26793,7 @@ class RebillyInstrumentsInstance {
|
|
|
26789
26793
|
await show({ componentName, payload });
|
|
26790
26794
|
}
|
|
26791
26795
|
get version() {
|
|
26792
|
-
return `RebillyInstruments Ver.${"8.
|
|
26796
|
+
return `RebillyInstruments Ver.${"8.43.0"}`;
|
|
26793
26797
|
}
|
|
26794
26798
|
on(eventName, callback) {
|
|
26795
26799
|
on({ eventName, callback });
|