@rebilly/instruments 9.79.0 → 9.80.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 +3 -3
- package/dist/index.d.ts +2 -0
- package/dist/index.js +9 -1
- package/dist/index.min.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
## [9.
|
|
1
|
+
## [9.80.1](https://github.com/Rebilly/rebilly/compare/instruments/core-v9.80.0...instruments/core-v9.80.1) (2024-09-13)
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
###
|
|
4
|
+
### Bug Fixes
|
|
5
5
|
|
|
6
|
-
* **
|
|
6
|
+
* **instruments:** Add missing value in mount options interface ([#7569](https://github.com/Rebilly/rebilly/issues/7569)) ([0455936](https://github.com/Rebilly/rebilly/commit/04559367574650350aed0c66ea22b00ba7870916))
|
package/dist/index.d.ts
CHANGED
|
@@ -40,6 +40,7 @@ export interface I18n {
|
|
|
40
40
|
[key: string]: {
|
|
41
41
|
summary?: object;
|
|
42
42
|
form?: object;
|
|
43
|
+
consentCheck?: object;
|
|
43
44
|
confirmation?: object;
|
|
44
45
|
result?: object;
|
|
45
46
|
validations?: object;
|
|
@@ -249,6 +250,7 @@ export interface Features {
|
|
|
249
250
|
fullPageRedirect?: boolean;
|
|
250
251
|
showCoupons?: string[];
|
|
251
252
|
hideContinue?: boolean;
|
|
253
|
+
hideZeroAmountSummaryItems?: boolean;
|
|
252
254
|
}
|
|
253
255
|
export interface DevProperties {
|
|
254
256
|
paymentMethodsUrl?: string;
|
package/dist/index.js
CHANGED
|
@@ -6220,7 +6220,7 @@ function C$1({ options: e2 }) {
|
|
|
6220
6220
|
}
|
|
6221
6221
|
function o2() {
|
|
6222
6222
|
const i = {
|
|
6223
|
-
"REB-API-CONSUMER": `${["Rebilly", e2.appName, "js-sdk"].filter((g) => g).join("/")}@
|
|
6223
|
+
"REB-API-CONSUMER": `${["Rebilly", e2.appName, "js-sdk"].filter((g) => g).join("/")}@0455936`
|
|
6224
6224
|
};
|
|
6225
6225
|
return e2.apiKey && (i["REB-APIKEY"] = e2.apiKey), i;
|
|
6226
6226
|
}
|
|
@@ -24429,6 +24429,7 @@ const i18nSchema = {
|
|
|
24429
24429
|
summary: optional({ type: "object" }),
|
|
24430
24430
|
form: optional({ type: "object" }),
|
|
24431
24431
|
confirmation: optional({ type: "object" }),
|
|
24432
|
+
consentCheck: optional({ type: "object" }),
|
|
24432
24433
|
result: optional({ type: "object" }),
|
|
24433
24434
|
validations: optional({ type: "object" }),
|
|
24434
24435
|
paymentMethods: optional({ type: "object" })
|
|
@@ -25125,6 +25126,13 @@ const featuresSchema = {
|
|
|
25125
25126
|
hideZeroAmountSummaryItems: optional({
|
|
25126
25127
|
type: "boolean",
|
|
25127
25128
|
default: false
|
|
25129
|
+
}),
|
|
25130
|
+
showConsentCheck: optional({
|
|
25131
|
+
type: "array",
|
|
25132
|
+
items: {
|
|
25133
|
+
type: "string",
|
|
25134
|
+
enum: ["form", "confirmation"]
|
|
25135
|
+
}
|
|
25128
25136
|
})
|
|
25129
25137
|
},
|
|
25130
25138
|
default: {}
|