@rebilly/instruments 9.66.5 → 9.68.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 +3 -3
- package/dist/index.d.ts +4 -0
- package/dist/index.js +13 -0
- package/dist/index.min.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
## [9.
|
|
1
|
+
## [9.68.0](https://github.com/Rebilly/rebilly/compare/instruments/core-v9.67.0...instruments/core-v9.68.0) (2024-07-25)
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
###
|
|
4
|
+
### Features
|
|
5
5
|
|
|
6
|
-
* **
|
|
6
|
+
* **api-metadata, rebilly-js-sdk:** Update resources based on latest api definitions ([#6420](https://github.com/Rebilly/rebilly/issues/6420)) ([9a09024](https://github.com/Rebilly/rebilly/commit/9a090245895e97b54e3898318c68e55065358dc5))
|
package/dist/index.d.ts
CHANGED
|
@@ -225,8 +225,12 @@ export interface PaymentInstrumentsOptionFlags {
|
|
|
225
225
|
allowMakeDefault?: boolean;
|
|
226
226
|
allowCreate?: boolean;
|
|
227
227
|
}
|
|
228
|
+
export interface PaymentCardConfiguration {
|
|
229
|
+
input?: "default" | "split";
|
|
230
|
+
}
|
|
228
231
|
export interface PaymentInstrumentsDisplayOptions extends PaymentInstrumentsOptionFlags {
|
|
229
232
|
address?: Address;
|
|
233
|
+
paymentCard?: PaymentCardConfiguration;
|
|
230
234
|
paypal?: {
|
|
231
235
|
buttonHeight?: number;
|
|
232
236
|
};
|
package/dist/index.js
CHANGED
|
@@ -8378,6 +8378,9 @@ function Ue$1({ apiHandler: e2 }) {
|
|
|
8378
8378
|
},
|
|
8379
8379
|
deactivate({ id: t2 }) {
|
|
8380
8380
|
return e2.post(`payment-instruments/${t2}/deactivation`);
|
|
8381
|
+
},
|
|
8382
|
+
nameInquiry({ id: t2, data: s }) {
|
|
8383
|
+
return e2.post(`payment-instruments/${t2}/name-inquiry`, s);
|
|
8381
8384
|
}
|
|
8382
8385
|
};
|
|
8383
8386
|
}
|
|
@@ -24955,6 +24958,16 @@ const paymentInstrumentsDisplayOptionsSchema = {
|
|
|
24955
24958
|
}),
|
|
24956
24959
|
googlePay: optional(digitalWalletConfigurationSchema),
|
|
24957
24960
|
applePay: optional(digitalWalletConfigurationSchema),
|
|
24961
|
+
paymentCard: optional({
|
|
24962
|
+
type: "object",
|
|
24963
|
+
properties: {
|
|
24964
|
+
input: optional({
|
|
24965
|
+
type: "string",
|
|
24966
|
+
enum: ["default", "split"],
|
|
24967
|
+
default: "default"
|
|
24968
|
+
})
|
|
24969
|
+
}
|
|
24970
|
+
}),
|
|
24958
24971
|
additionalFields: optional({
|
|
24959
24972
|
type: "object",
|
|
24960
24973
|
properties: {
|