@yuno-payments/sdk-web-types 1.16.0-beta.3 → 1.16.0-beta.5
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 +2 -1
- package/dist/types.ts +2 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -337,6 +337,7 @@ type CreateArgs = {
|
|
|
337
337
|
designType?: DesignType;
|
|
338
338
|
errorIcon?: string | null;
|
|
339
339
|
enableFocusAnimation?: boolean;
|
|
340
|
+
defaultCardConfig?: CardConfig$1;
|
|
340
341
|
};
|
|
341
342
|
cardLoadPreviewConfig?: CardLoadPreviewSecureConfig;
|
|
342
343
|
};
|
|
@@ -407,7 +408,7 @@ interface VaultedToken {
|
|
|
407
408
|
created_at: Date;
|
|
408
409
|
updated_at: Date;
|
|
409
410
|
}
|
|
410
|
-
type CardType = 'CREDIT' | 'DEBIT';
|
|
411
|
+
type CardType = 'CREDIT' | 'DEBIT' | 'VOUCHER';
|
|
411
412
|
interface SecureField {
|
|
412
413
|
render(elementSelector: string): Promise<void>;
|
|
413
414
|
focus(): Promise<void>;
|
package/dist/types.ts
CHANGED
|
@@ -337,6 +337,7 @@ type CreateArgs = {
|
|
|
337
337
|
designType?: DesignType;
|
|
338
338
|
errorIcon?: string | null;
|
|
339
339
|
enableFocusAnimation?: boolean;
|
|
340
|
+
defaultCardConfig?: CardConfig$1;
|
|
340
341
|
};
|
|
341
342
|
cardLoadPreviewConfig?: CardLoadPreviewSecureConfig;
|
|
342
343
|
};
|
|
@@ -407,7 +408,7 @@ interface VaultedToken {
|
|
|
407
408
|
created_at: Date;
|
|
408
409
|
updated_at: Date;
|
|
409
410
|
}
|
|
410
|
-
type CardType = 'CREDIT' | 'DEBIT';
|
|
411
|
+
type CardType = 'CREDIT' | 'DEBIT' | 'VOUCHER';
|
|
411
412
|
interface SecureField {
|
|
412
413
|
render(elementSelector: string): Promise<void>;
|
|
413
414
|
focus(): Promise<void>;
|