@rebilly/framepay 1.40.0 → 1.40.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +10 -0
  2. 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 = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rebilly/framepay",
3
- "version": "1.40.0",
3
+ "version": "1.40.1",
4
4
  "description": "A wrapper to load Rebilly's FramePay library and provide TypeScript types",
5
5
  "type": "module",
6
6
  "license": "MIT",