@primer-io/primer-js 0.5.1 → 0.6.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 +12 -0
- package/dist/custom-elements.json +123 -123
- package/dist/primer-loader.d.ts +11 -0
- package/dist/primer-loader.js +10 -10
- package/dist/web-types.json +1 -1
- package/package.json +1 -1
package/dist/primer-loader.d.ts
CHANGED
|
@@ -3511,6 +3511,13 @@ export interface CardPaymentMethodDisplay {
|
|
|
3511
3511
|
network: string;
|
|
3512
3512
|
description: string;
|
|
3513
3513
|
}
|
|
3514
|
+
export interface PaypalPaymentMethodDisplay {
|
|
3515
|
+
type: "paypal";
|
|
3516
|
+
fullName: string;
|
|
3517
|
+
email: string;
|
|
3518
|
+
paymentMethodType: "PayPal";
|
|
3519
|
+
description: string;
|
|
3520
|
+
}
|
|
3514
3521
|
export interface OtherPaymentMethodDisplay {
|
|
3515
3522
|
type: "other";
|
|
3516
3523
|
fullName?: string;
|
|
@@ -3527,6 +3534,10 @@ export type AssetConfig = ({
|
|
|
3527
3534
|
shouldShowCVV: boolean;
|
|
3528
3535
|
}) | ({
|
|
3529
3536
|
icon: string;
|
|
3537
|
+
} & PaypalPaymentMethodDisplay & {
|
|
3538
|
+
shouldShowCVV: boolean;
|
|
3539
|
+
}) | ({
|
|
3540
|
+
icon: string;
|
|
3530
3541
|
} & OtherPaymentMethodDisplay & {
|
|
3531
3542
|
shouldShowCVV: boolean;
|
|
3532
3543
|
});
|