@rebilly/framepay 1.40.0 → 1.41.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/dist/index.d.ts +10 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -292,6 +292,16 @@ export declare class DigitalWalletValidationRequest {
|
|
|
292
292
|
post({ data, authorizationToken, organizationId, xsrfToken, sandbox, }: PostArgs): Promise<coreComponents['schemas']['ApplePayValidation']>;
|
|
293
293
|
}
|
|
294
294
|
|
|
295
|
+
export declare const ELEMENT_TYPES: {
|
|
296
|
+
readonly card: "card";
|
|
297
|
+
readonly bban: "bban";
|
|
298
|
+
readonly iban: "iban";
|
|
299
|
+
readonly googlePay: "googlePay";
|
|
300
|
+
readonly secondary: "secondary";
|
|
301
|
+
};
|
|
302
|
+
|
|
303
|
+
export declare type ElementType = (typeof ELEMENT_TYPES)[keyof typeof ELEMENT_TYPES];
|
|
304
|
+
|
|
295
305
|
export declare type EmitterInstance = typeof Emitter.prototype;
|
|
296
306
|
|
|
297
307
|
export declare type ExternalPayload = {
|