@justifi/webcomponents 4.10.0 → 4.12.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/cjs/Business-f8e37adb.js +144 -0
- package/dist/cjs/{Payment-89a8bc21.js → Payment-eceed10f.js} +1 -0
- package/dist/cjs/{SubAccount-05867651.js → SubAccount-b3902202.js} +1 -1
- package/dist/cjs/additional-questions-details_5.cjs.entry.js +5 -6
- package/dist/cjs/business-additional-questions-schema-bdfd29c3.js +78 -0
- package/dist/cjs/business-details-core.cjs.entry.js +9 -4
- package/dist/cjs/{business-form-types-3cdd5447.js → business-form-types-61b8196a.js} +33 -0
- package/dist/cjs/{form-control-datepart_3.cjs.entry.js → form-control-date_4.cjs.entry.js} +70 -56
- package/dist/cjs/form-control-datepart.cjs.entry.js +80 -0
- package/dist/cjs/form-control-monetary.cjs.entry.js +1 -1
- package/dist/cjs/{form-control-number_3.cjs.entry.js → form-control-select_2.cjs.entry.js} +4 -46
- package/dist/cjs/{form-input-masks-e3bf2614.js → form-input-masks-baa06faf.js} +1 -1
- package/dist/cjs/gross-payment-chart-core.cjs.entry.js +10 -5
- package/dist/cjs/{index-69b9386b.js → index-5d5f2219.js} +3 -0
- package/dist/cjs/justifi-additional-questions-form-step_5.cjs.entry.js +38 -26
- package/dist/cjs/justifi-additional-questions_4.cjs.entry.js +20 -21
- package/dist/cjs/justifi-bank-account-form.cjs.entry.js +1 -1
- package/dist/cjs/justifi-billing-form_4.cjs.entry.js +5 -5
- package/dist/cjs/justifi-business-details.cjs.entry.js +23 -7
- package/dist/cjs/justifi-business-form.cjs.entry.js +71 -54
- package/dist/cjs/justifi-business-list.cjs.entry.js +4 -6
- package/dist/cjs/justifi-business-owners.cjs.entry.js +2 -2
- package/dist/cjs/justifi-card-form.cjs.entry.js +1 -1
- package/dist/cjs/justifi-checkout-core.cjs.entry.js +34 -24
- package/dist/cjs/justifi-checkout.cjs.entry.js +15 -11
- package/dist/cjs/justifi-details.cjs.entry.js +2 -2
- package/dist/cjs/justifi-gross-payment-chart.cjs.entry.js +30 -6
- package/dist/cjs/{justifi-new-payment-method_3.cjs.entry.js → justifi-new-payment-method_4.cjs.entry.js} +95 -11
- package/dist/cjs/justifi-owner-form.cjs.entry.js +42 -20
- package/dist/cjs/justifi-payment-balance-transactions.cjs.entry.js +3 -4
- package/dist/cjs/justifi-payment-details.cjs.entry.js +29 -8
- package/dist/cjs/justifi-payment-form.cjs.entry.js +19 -7
- package/dist/cjs/justifi-payment-method-selector.cjs.entry.js +2 -2
- package/dist/cjs/justifi-payment-provisioning.cjs.entry.js +25 -18
- package/dist/cjs/justifi-payments-list.cjs.entry.js +29 -9
- package/dist/cjs/justifi-payout-details.cjs.entry.js +31 -11
- package/dist/cjs/justifi-payouts-list.cjs.entry.js +30 -10
- package/dist/cjs/justifi-proceeds-list.cjs.entry.js +3 -4
- package/dist/cjs/justifi-refund-form.cjs.entry.js +2 -2
- package/dist/cjs/justifi-subaccount-details.cjs.entry.js +5 -6
- package/dist/cjs/justifi-subaccounts-list.cjs.entry.js +4 -5
- package/dist/cjs/justifi-table_2.cjs.entry.js +1 -1
- package/dist/cjs/loader.cjs.js +2 -2
- package/dist/cjs/payload-parsers-32c43c76.js +144 -0
- package/dist/cjs/payment-details-core.cjs.entry.js +10 -5
- package/dist/cjs/{payment.service-0b0086dc.js → payment.service-9db24ab9.js} +1 -1
- package/dist/cjs/payments-list-core.cjs.entry.js +11 -6
- package/dist/cjs/payout-details-core.cjs.entry.js +11 -7
- package/dist/cjs/{payout.service-5cc3b4e9.js → payout.service-a0efb71a.js} +1 -1
- package/dist/cjs/payouts-list-core.cjs.entry.js +11 -6
- package/dist/cjs/subaccount-account-details_4.cjs.entry.js +5 -6
- package/dist/cjs/subaccount-bank-details.cjs.entry.js +2 -2
- package/dist/cjs/subaccount-terms-details.cjs.entry.js +2 -2
- package/dist/cjs/{utils-23e70ef2.js → utils-6e35fa70.js} +1 -1
- package/dist/cjs/{utils-2b9940e1.js → utils-6f62f7a1.js} +0 -7
- package/dist/cjs/utils-f8079741.js +41 -0
- package/dist/cjs/{utils-df5167a8.js → utils-fc72268d.js} +8 -1
- package/dist/cjs/webcomponents.cjs.js +2 -2
- package/dist/collection/api/Business.js +3 -20
- package/dist/collection/api/Checkout.js +6 -1
- package/dist/collection/api/ComponentError.js +14 -0
- package/dist/collection/api/Identity.js +7 -4
- package/dist/collection/api/Payment.js +1 -0
- package/dist/collection/api/services/checkout.service.js +7 -3
- package/dist/collection/api/services/utils.js +11 -0
- package/dist/collection/api/shared.js +11 -1
- package/dist/collection/collection-manifest.json +3 -2
- package/dist/collection/components/business-details/additional-questions-details/test/additional-questions.spec.js +1 -1
- package/dist/collection/components/business-details/business-details-core.js +30 -2
- package/dist/collection/components/business-details/business-details.js +30 -0
- package/dist/collection/components/business-details/generic-info-details/generic-info-details.js +2 -2
- package/dist/collection/components/business-details/generic-info-details/test/generic-info-details.spec.js +1 -1
- package/dist/collection/components/business-details/get-business.js +15 -3
- package/dist/collection/components/business-details/legal-address-details/test/legal-address-details.spec.js +1 -1
- package/dist/collection/components/business-details/owner-details/test/owner-details.spec.js +1 -1
- package/dist/collection/components/business-details/representative-details/test/representative-details.spec.js +1 -1
- package/dist/collection/components/business-details/test/busines-details-core.spec.js +56 -16
- package/dist/collection/components/business-details/test/business-details.spec.js +20 -4
- package/dist/collection/components/business-details/test/get-business.spec.js +13 -6
- package/dist/collection/components/business-forms/business-form/business-core-info/business-core-info.js +2 -2
- package/dist/collection/components/business-forms/business-form/business-form.js +124 -50
- package/dist/collection/components/business-forms/business-form/business-representative/business-representative.js +12 -12
- package/dist/collection/components/business-forms/business-form/legal-address-form/legal-address-form.js +4 -2
- package/dist/collection/components/business-forms/{business-form/business-address/business-address-form.js → owner-form/identity-address/identity-address-form.js} +13 -10
- package/dist/collection/components/business-forms/owner-form/identity-address/test/identity-address.e2e.js +9 -0
- package/dist/collection/components/business-forms/{business-form/business-address/test/business-address.spec.js → owner-form/identity-address/test/identity-address.spec.js} +21 -14
- package/dist/collection/components/business-forms/owner-form/owner-form.js +75 -13
- package/dist/collection/components/business-forms/payment-provisioning/additional-questions/business-additional-questions-form-step.js +20 -2
- package/dist/collection/components/business-forms/payment-provisioning/business-core-info/business-core-info-form-step.js +21 -4
- package/dist/collection/components/business-forms/payment-provisioning/business-owners/business-owners-form-step.js +44 -4
- package/dist/collection/components/business-forms/payment-provisioning/business-representative/business-representative-form-step.js +31 -6
- package/dist/collection/components/business-forms/payment-provisioning/legal-address-form/legal-address-form-step.js +23 -4
- package/dist/collection/components/business-forms/payment-provisioning/payment-provisioning.js +74 -15
- package/dist/collection/components/business-forms/schemas/business-additional-questions-schema.js +15 -6
- package/dist/collection/components/business-forms/schemas/business-address-schema.js +40 -14
- package/dist/collection/components/business-forms/schemas/business-core-info-schema.js +55 -12
- package/dist/collection/components/business-forms/schemas/business-form-schema.js +4 -4
- package/dist/collection/components/business-forms/schemas/business-identity-schema.js +40 -34
- package/dist/collection/components/business-forms/schemas/schema-helpers.js +8 -0
- package/dist/collection/components/business-forms/utils/business-form-types.js +30 -0
- package/dist/collection/components/business-forms/utils/helpers.js +22 -0
- package/dist/collection/components/business-forms/utils/payload-parsers.js +1 -0
- package/dist/collection/components/business-list/business-list.js +0 -2
- package/dist/collection/components/checkout/checkout-actions.js +2 -2
- package/dist/collection/components/checkout/checkout-core.css +361 -0
- package/dist/collection/components/checkout/checkout-core.js +32 -27
- package/dist/collection/components/checkout/checkout.js +5 -5
- package/dist/collection/components/checkout/new-payment-method.js +12 -6
- package/dist/collection/components/checkout/payment-method-options.css +18 -2
- package/dist/collection/components/checkout/payment-method-options.js +62 -5
- package/dist/collection/components/checkout/payment-method-payload.js +1 -0
- package/dist/collection/components/checkout/saved-payment-method.js +11 -6
- package/dist/collection/components/checkout/sezzel-payment-method.js +247 -0
- package/dist/collection/components/form/form-control-date.css +1803 -0
- package/dist/collection/components/form/form-control-date.js +192 -0
- package/dist/collection/components/form/form-control-text.js +35 -1
- package/dist/collection/components/form/utils.js +6 -0
- package/dist/collection/components/gross-payment-chart/get-gross-payment-chart-data.js +17 -2
- package/dist/collection/components/gross-payment-chart/gross-payment-chart-core.js +30 -1
- package/dist/collection/components/gross-payment-chart/gross-payment-chart.js +35 -1
- package/dist/collection/components/gross-payment-chart/test/get-gross-payment-chart-data.spec.js +26 -8
- package/dist/collection/components/gross-payment-chart/test/gross-payment-chart-core.spec.js +51 -11
- package/dist/collection/components/gross-payment-chart/test/gross-payment-chart.spec.js +55 -3
- package/dist/collection/components/payment-details/get-payment-details.js +15 -3
- package/dist/collection/components/payment-details/payment-details-core.js +30 -1
- package/dist/collection/components/payment-details/payment-details.js +35 -1
- package/dist/collection/components/payment-details/test/get-payment-details.spec.js +11 -3
- package/dist/collection/components/payment-details/test/payment-details-core.spec.js +55 -12
- package/dist/collection/components/payment-details/test/payment-details.spec.js +69 -3
- package/dist/collection/components/payment-form/payment-form.js +54 -3
- package/dist/collection/components/payment-form/payment-method-selector.js +1 -1
- package/dist/collection/components/payment-form/test/payment-form.spec.js +60 -1
- package/dist/collection/components/payment-method-form/payment-method-form.js +1 -1
- package/dist/collection/components/payments-list/get-payments.js +15 -4
- package/dist/collection/components/payments-list/payments-list-core.js +28 -2
- package/dist/collection/components/payments-list/payments-list.js +35 -1
- package/dist/collection/components/payments-list/test/get-payments.spec.js +11 -3
- package/dist/collection/components/payments-list/test/payments-list-core.spec.js +43 -28
- package/dist/collection/components/payments-list/test/payments-list.spec.js +31 -3
- package/dist/collection/components/payout-details/get-payout-details.js +17 -6
- package/dist/collection/components/payout-details/payout-details-core.js +31 -3
- package/dist/collection/components/payout-details/payout-details.js +35 -1
- package/dist/collection/components/payout-details/test/get-payout-details.spec.js +15 -5
- package/dist/collection/components/payout-details/test/payout-details-core.spec.js +54 -16
- package/dist/collection/components/payout-details/test/payout-details.spec.js +50 -1
- package/dist/collection/components/payouts-list/get-payouts.js +17 -5
- package/dist/collection/components/payouts-list/payouts-list-core.js +28 -2
- package/dist/collection/components/payouts-list/payouts-list.js +34 -1
- package/dist/collection/components/payouts-list/test/get-payouts.spec.js +11 -3
- package/dist/collection/components/payouts-list/test/payouts-list-core.spec.js +42 -29
- package/dist/collection/components/payouts-list/test/payouts-list.spec.js +33 -0
- package/dist/collection/components/select-input/select-input.js +1 -1
- package/dist/collection/components/select-input/test/select-input.spec.js +4 -4
- package/dist/collection/components/subaccount-details/subaccount-merchant-details/subaccount-merchant-details.js +3 -3
- package/dist/collection/components/text-input/test/text-input.spec.js +4 -4
- package/dist/collection/components/text-input/text-input.js +1 -1
- package/dist/collection/utils/form-input-masks.js +1 -1
- package/dist/collection/utils/utils.js +0 -5
- package/dist/docs.json +1583 -607
- package/dist/esm/Business-2410f7e3.js +136 -0
- package/dist/esm/{Payment-55886c86.js → Payment-ef9fc1ae.js} +1 -0
- package/dist/esm/{SubAccount-61ac70eb.js → SubAccount-f4ae9809.js} +1 -1
- package/dist/esm/additional-questions-details_5.entry.js +5 -6
- package/dist/esm/business-additional-questions-schema-5571d40f.js +75 -0
- package/dist/esm/business-details-core.entry.js +9 -4
- package/dist/esm/business-form-types-46ecd908.js +50 -0
- package/dist/esm/{form-control-datepart_3.entry.js → form-control-date_4.entry.js} +68 -55
- package/dist/esm/form-control-datepart.entry.js +76 -0
- package/dist/esm/form-control-monetary.entry.js +1 -1
- package/dist/esm/{form-control-number_3.entry.js → form-control-select_2.entry.js} +5 -46
- package/dist/esm/{form-input-masks-a8187c77.js → form-input-masks-850c8cd4.js} +1 -1
- package/dist/esm/gross-payment-chart-core.entry.js +10 -5
- package/dist/esm/{index-df86d9a2.js → index-83dcf934.js} +3 -0
- package/dist/esm/justifi-additional-questions-form-step_5.entry.js +36 -24
- package/dist/esm/justifi-additional-questions_4.entry.js +20 -21
- package/dist/esm/justifi-bank-account-form.entry.js +1 -1
- package/dist/esm/justifi-billing-form_4.entry.js +5 -5
- package/dist/esm/justifi-business-details.entry.js +23 -7
- package/dist/esm/justifi-business-form.entry.js +71 -54
- package/dist/esm/justifi-business-list.entry.js +4 -6
- package/dist/esm/justifi-business-owners.entry.js +2 -2
- package/dist/esm/justifi-card-form.entry.js +1 -1
- package/dist/esm/justifi-checkout-core.entry.js +34 -24
- package/dist/esm/justifi-checkout.entry.js +15 -11
- package/dist/esm/justifi-details.entry.js +2 -2
- package/dist/esm/justifi-gross-payment-chart.entry.js +29 -5
- package/dist/esm/{justifi-new-payment-method_3.entry.js → justifi-new-payment-method_4.entry.js} +95 -12
- package/dist/esm/justifi-owner-form.entry.js +42 -20
- package/dist/esm/justifi-payment-balance-transactions.entry.js +3 -4
- package/dist/esm/justifi-payment-details.entry.js +29 -8
- package/dist/esm/justifi-payment-form.entry.js +19 -7
- package/dist/esm/justifi-payment-method-selector.entry.js +2 -2
- package/dist/esm/justifi-payment-provisioning.entry.js +25 -18
- package/dist/esm/justifi-payments-list.entry.js +29 -9
- package/dist/esm/justifi-payout-details.entry.js +31 -11
- package/dist/esm/justifi-payouts-list.entry.js +30 -10
- package/dist/esm/justifi-proceeds-list.entry.js +3 -4
- package/dist/esm/justifi-refund-form.entry.js +2 -2
- package/dist/esm/justifi-subaccount-details.entry.js +5 -6
- package/dist/esm/justifi-subaccounts-list.entry.js +4 -5
- package/dist/esm/justifi-table_2.entry.js +1 -1
- package/dist/esm/loader.js +3 -3
- package/dist/esm/payload-parsers-192e0c3e.js +131 -0
- package/dist/esm/payment-details-core.entry.js +10 -5
- package/dist/esm/{payment.service-f274ef98.js → payment.service-ec28a959.js} +1 -1
- package/dist/esm/payments-list-core.entry.js +11 -6
- package/dist/esm/payout-details-core.entry.js +11 -7
- package/dist/esm/{payout.service-af293f61.js → payout.service-5fd5986c.js} +1 -1
- package/dist/esm/payouts-list-core.entry.js +11 -6
- package/dist/esm/subaccount-account-details_4.entry.js +5 -6
- package/dist/esm/subaccount-bank-details.entry.js +2 -2
- package/dist/esm/subaccount-terms-details.entry.js +2 -2
- package/dist/esm/{utils-d01c5f3a.js → utils-210fdf39.js} +1 -1
- package/dist/esm/{utils-d9e90399.js → utils-243abdb4.js} +1 -7
- package/dist/esm/utils-4609f32c.js +38 -0
- package/dist/esm/{utils-2828201a.js → utils-6f05d9d7.js} +8 -2
- package/dist/esm/webcomponents.js +3 -3
- package/dist/module/Business.js +48 -21
- package/dist/module/Payment.js +1 -0
- package/dist/module/SubAccount.js +1 -1
- package/dist/module/business-additional-questions-form-step.js +4 -2
- package/dist/module/business-additional-questions-schema.js +16 -7
- package/dist/module/business-address-schema.js +42 -16
- package/dist/module/business-core-info-form-step.js +5 -4
- package/dist/module/business-core-info-schema.js +56 -13
- package/dist/module/business-core-info.js +2 -2
- package/dist/module/business-details-core2.js +8 -3
- package/dist/module/business-form-types.js +32 -1
- package/dist/module/business-identity-schema.js +41 -35
- package/dist/module/business-owners-form-step.js +14 -10
- package/dist/module/business-representative-form-step.js +22 -13
- package/dist/module/business-representative.js +17 -17
- package/dist/module/checkout-core.js +50 -33
- package/dist/module/form-control-date.d.ts +11 -0
- package/dist/module/form-control-date.js +6 -0
- package/dist/module/form-control-date2.js +68 -0
- package/dist/module/form-control-text2.js +5 -1
- package/dist/module/form-input-masks.js +1 -1
- package/dist/module/generic-info-details2.js +2 -2
- package/dist/module/gross-payment-chart-core2.js +8 -2
- package/dist/module/helpers.js +25 -0
- package/dist/module/{business-address-form.js → identity-address-form.js} +17 -20
- package/dist/module/justifi-business-details.js +22 -5
- package/dist/module/justifi-business-form.js +81 -61
- package/dist/module/justifi-business-list.js +1 -3
- package/dist/module/justifi-checkout.js +31 -21
- package/dist/module/justifi-gross-payment-chart.js +28 -4
- package/dist/module/justifi-identity-address-form.d.ts +11 -0
- package/dist/module/justifi-identity-address-form.js +6 -0
- package/dist/module/justifi-payment-balance-transactions.js +1 -1
- package/dist/module/justifi-payment-details.js +26 -5
- package/dist/module/justifi-payment-form.js +18 -4
- package/dist/module/justifi-payment-provisioning.js +35 -27
- package/dist/module/justifi-payments-list.js +26 -6
- package/dist/module/justifi-payout-details.js +28 -8
- package/dist/module/justifi-payouts-list.js +27 -7
- package/dist/module/justifi-sezzel-payment-method.d.ts +11 -0
- package/dist/module/justifi-sezzel-payment-method.js +6 -0
- package/dist/module/justifi-subaccount-details.js +1 -1
- package/dist/module/justifi-subaccounts-list.js +1 -1
- package/dist/module/legal-address-form-step.js +10 -13
- package/dist/module/legal-address-form.js +5 -9
- package/dist/module/new-payment-method.js +5 -4
- package/dist/module/owner-form.js +46 -20
- package/dist/module/payload-parsers.js +11 -1
- package/dist/module/payment-details-core2.js +9 -3
- package/dist/module/payment-method-form.js +1 -1
- package/dist/module/payment-method-options.js +34 -12
- package/dist/module/payments-list-core2.js +9 -3
- package/dist/module/payout-details-core2.js +10 -5
- package/dist/module/payouts-list-core2.js +9 -3
- package/dist/module/saved-payment-method.js +4 -4
- package/dist/module/select-input2.js +1 -1
- package/dist/module/sezzel-payment-method.js +99 -0
- package/dist/module/subaccount-merchant-details2.js +3 -3
- package/dist/module/text-input2.js +1 -1
- package/dist/module/utils2.js +1 -7
- package/dist/module/utils3.js +31 -1
- package/dist/module/utils4.js +7 -1
- package/dist/types/api/Business.d.ts +0 -19
- package/dist/types/api/Checkout.d.ts +63 -2
- package/dist/types/api/ComponentError.d.ts +18 -0
- package/dist/types/api/Identity.d.ts +2 -0
- package/dist/types/api/Payment.d.ts +2 -1
- package/dist/types/api/SubAccount.d.ts +0 -2
- package/dist/types/api/services/checkout.service.d.ts +8 -2
- package/dist/types/api/services/utils.d.ts +2 -0
- package/dist/types/api/shared.d.ts +9 -0
- package/dist/types/components/business-details/business-details-core.d.ts +3 -0
- package/dist/types/components/business-details/business-details.d.ts +3 -0
- package/dist/types/components/business-forms/business-form/business-form.d.ts +9 -2
- package/dist/types/components/business-forms/business-form/business-representative/business-representative.d.ts +3 -3
- package/dist/types/components/business-forms/owner-form/identity-address/identity-address-form.d.ts +10 -0
- package/dist/types/components/business-forms/owner-form/owner-form.d.ts +9 -3
- package/dist/types/components/business-forms/payment-provisioning/additional-questions/business-additional-questions-form-step.d.ts +1 -0
- package/dist/types/components/business-forms/payment-provisioning/business-core-info/business-core-info-form-step.d.ts +1 -0
- package/dist/types/components/business-forms/payment-provisioning/business-owners/business-owners-form-step.d.ts +3 -1
- package/dist/types/components/business-forms/payment-provisioning/business-representative/business-representative-form-step.d.ts +2 -0
- package/dist/types/components/business-forms/payment-provisioning/legal-address-form/legal-address-form-step.d.ts +1 -0
- package/dist/types/components/business-forms/payment-provisioning/payment-provisioning.d.ts +6 -2
- package/dist/types/components/business-forms/schemas/business-additional-questions-schema.d.ts +1 -1
- package/dist/types/components/business-forms/schemas/business-address-schema.d.ts +1 -12
- package/dist/types/components/business-forms/schemas/business-core-info-schema.d.ts +3 -3
- package/dist/types/components/business-forms/schemas/business-form-schema.d.ts +11 -11
- package/dist/types/components/business-forms/schemas/business-identity-schema.d.ts +7 -37
- package/dist/types/components/business-forms/schemas/schema-helpers.d.ts +6 -0
- package/dist/types/components/business-forms/utils/business-form-types.d.ts +15 -0
- package/dist/types/components/business-forms/utils/helpers.d.ts +8 -0
- package/dist/types/components/checkout/checkout-actions.d.ts +3 -3
- package/dist/types/components/checkout/checkout-core.d.ts +5 -4
- package/dist/types/components/checkout/checkout.d.ts +1 -1
- package/dist/types/components/checkout/new-payment-method.d.ts +2 -1
- package/dist/types/components/checkout/payment-method-options.d.ts +5 -1
- package/dist/types/components/checkout/payment-method-payload.d.ts +8 -0
- package/dist/types/components/checkout/saved-payment-method.d.ts +2 -1
- package/dist/types/components/checkout/sezzel-payment-method.d.ts +23 -0
- package/dist/types/components/form/form-control-date.d.ts +18 -0
- package/dist/types/components/form/form-control-text.d.ts +2 -0
- package/dist/types/components/form/utils.d.ts +1 -0
- package/dist/types/components/gross-payment-chart/get-gross-payment-chart-data.d.ts +5 -8
- package/dist/types/components/gross-payment-chart/gross-payment-chart-core.d.ts +3 -0
- package/dist/types/components/gross-payment-chart/gross-payment-chart.d.ts +4 -0
- package/dist/types/components/payment-details/payment-details-core.d.ts +3 -0
- package/dist/types/components/payment-details/payment-details.d.ts +4 -0
- package/dist/types/components/payment-form/payment-form.d.ts +4 -1
- package/dist/types/components/payments-list/payments-list-core.d.ts +2 -0
- package/dist/types/components/payments-list/payments-list.d.ts +4 -0
- package/dist/types/components/payout-details/payout-details-core.d.ts +3 -0
- package/dist/types/components/payout-details/payout-details.d.ts +4 -0
- package/dist/types/components/payouts-list/payouts-list-core.d.ts +2 -0
- package/dist/types/components/payouts-list/payouts-list.d.ts +4 -0
- package/dist/types/components.d.ts +329 -52
- package/dist/types/utils/utils.d.ts +0 -1
- package/dist/webcomponents/p-02fa533c.js +1 -0
- package/dist/webcomponents/p-0315876e.entry.js +1 -0
- package/dist/webcomponents/p-0c269feb.entry.js +1 -0
- package/dist/webcomponents/p-0eb56b44.entry.js +1 -0
- package/dist/webcomponents/p-0eb77101.entry.js +1 -0
- package/dist/webcomponents/p-1334f776.entry.js +1 -0
- package/dist/webcomponents/p-19001cc5.entry.js +1 -0
- package/dist/webcomponents/p-2319abaf.entry.js +1 -0
- package/dist/webcomponents/p-26fe62d6.entry.js +1 -0
- package/dist/webcomponents/p-28b38699.js +1 -0
- package/dist/webcomponents/{p-4df6174c.entry.js → p-29376518.entry.js} +1 -1
- package/dist/webcomponents/p-2bee72bd.entry.js +1 -0
- package/dist/webcomponents/p-3302bc76.js +1 -0
- package/dist/webcomponents/p-3adc0688.entry.js +1 -0
- package/dist/webcomponents/p-3fe05c4a.entry.js +1 -0
- package/dist/webcomponents/p-41b1ad3a.entry.js +1 -0
- package/dist/webcomponents/p-4616768c.entry.js +1 -0
- package/dist/webcomponents/p-56780f10.entry.js +1 -0
- package/dist/webcomponents/p-5c269619.js +1 -0
- package/dist/webcomponents/p-5ff7826e.entry.js +1 -0
- package/dist/webcomponents/{p-8482c23f.js → p-65510838.js} +1 -1
- package/dist/webcomponents/p-6f294d5d.js +1 -0
- package/dist/webcomponents/{p-4d50d08a.entry.js → p-7d8d2984.entry.js} +1 -1
- package/dist/webcomponents/p-7da249b8.entry.js +1 -0
- package/dist/webcomponents/p-84b9ffc9.entry.js +1 -0
- package/dist/webcomponents/{p-07b326d0.entry.js → p-8657128b.entry.js} +1 -1
- package/dist/webcomponents/p-8abba4c2.entry.js +1 -0
- package/dist/webcomponents/p-8c9d9812.entry.js +1 -0
- package/dist/webcomponents/p-910bb656.js +1 -0
- package/dist/webcomponents/p-9245777b.js +1 -0
- package/dist/webcomponents/{p-221b9504.entry.js → p-927150b4.entry.js} +1 -1
- package/dist/webcomponents/p-96cebc8b.entry.js +1 -0
- package/dist/webcomponents/{p-0e189d6a.entry.js → p-99d6b67e.entry.js} +1 -1
- package/dist/webcomponents/p-9e3f9e05.entry.js +1 -0
- package/dist/webcomponents/{p-688bb5da.js → p-9ee8ad4d.js} +1 -1
- package/dist/webcomponents/{p-a46174e0.entry.js → p-9f3facf1.entry.js} +1 -1
- package/dist/webcomponents/p-9f529959.entry.js +1 -0
- package/dist/webcomponents/{p-fb49ef28.entry.js → p-a6f170ba.entry.js} +1 -1
- package/dist/webcomponents/p-a8caec98.entry.js +1 -0
- package/dist/webcomponents/p-a90f7ca0.js +1 -0
- package/dist/webcomponents/p-abc03d5a.entry.js +1 -0
- package/dist/webcomponents/p-b318b899.js +1 -0
- package/dist/webcomponents/{p-1bfadb9f.entry.js → p-c1b92cec.entry.js} +1 -1
- package/dist/webcomponents/{p-a68519e5.entry.js → p-c556deda.entry.js} +1 -1
- package/dist/webcomponents/{p-3d4aaa4a.entry.js → p-c6e207f6.entry.js} +1 -1
- package/dist/webcomponents/{p-b68f1dd9.entry.js → p-cdfde1ca.entry.js} +1 -1
- package/dist/webcomponents/p-d69a485a.entry.js +1 -0
- package/dist/webcomponents/p-e2ba8d84.entry.js +1 -0
- package/dist/webcomponents/{p-ebf7c70f.entry.js → p-e4342f49.entry.js} +1 -1
- package/dist/webcomponents/p-ed72a5cc.js +1 -0
- package/dist/webcomponents/{p-6b51cf97.entry.js → p-f0698778.entry.js} +1 -1
- package/dist/webcomponents/p-f4ae621e.entry.js +1 -0
- package/dist/webcomponents/p-f76283a5.entry.js +19 -0
- package/dist/webcomponents/p-fce2b224.entry.js +1 -0
- package/dist/webcomponents/p-fd60d5af.js +1 -0
- package/dist/webcomponents/p-ff211f76.js +1 -0
- package/dist/webcomponents/webcomponents.css +1 -1
- package/dist/webcomponents/webcomponents.esm.js +1 -1
- package/package.json +1 -1
- package/dist/cjs/Business-663db337.js +0 -92
- package/dist/cjs/Identity-1c4528b8.js +0 -49
- package/dist/cjs/business-additional-questions-schema-cbac27f2.js +0 -26
- package/dist/cjs/business-form-select-options-7ccd8dca.js +0 -85
- package/dist/cjs/justifi-business-address-form-step.cjs.entry.js +0 -35
- package/dist/cjs/payload-parsers-9e72e80f.js +0 -99
- package/dist/cjs/utils-f5d82f21.js +0 -10
- package/dist/collection/api/mockData/MockOnboardingData.js +0 -117
- package/dist/collection/api/mockData/MockPayments.js +0 -243
- package/dist/collection/api/mockData/MockSubAccount.js +0 -102
- package/dist/collection/api/mockData/mockGrossVolumeReport.js +0 -125
- package/dist/collection/components/business-forms/business-form/business-address/test/business-address.e2e.js +0 -9
- package/dist/collection/components/business-forms/payment-provisioning/business-address/business-address-form-step.css +0 -2536
- package/dist/collection/components/business-forms/payment-provisioning/business-address/business-address-form-step.js +0 -97
- package/dist/collection/components/business-forms/payment-provisioning/business-address/test/business-address-form-step.spec.js +0 -97
- package/dist/collection/components/business-forms/schemas/business-owners-schema.js +0 -16
- package/dist/collection/components/business-forms/utils/business-form-select-options.js +0 -80
- package/dist/collection/components/card-form/test/card-form.e2e.js +0 -13
- package/dist/esm/Business-6cc4e473.js +0 -87
- package/dist/esm/Identity-5f8f916f.js +0 -46
- package/dist/esm/business-additional-questions-schema-2cb80f70.js +0 -23
- package/dist/esm/business-form-select-options-6b9293fe.js +0 -82
- package/dist/esm/business-form-types-de9f38cd.js +0 -19
- package/dist/esm/justifi-business-address-form-step.entry.js +0 -31
- package/dist/esm/payload-parsers-caea809d.js +0 -91
- package/dist/esm/utils-546ca6aa.js +0 -8
- package/dist/module/Identity.js +0 -46
- package/dist/module/business-form-select-options.js +0 -82
- package/dist/module/justifi-business-address-form-step.d.ts +0 -11
- package/dist/module/justifi-business-address-form-step.js +0 -75
- package/dist/module/justifi-business-address-form.d.ts +0 -11
- package/dist/module/justifi-business-address-form.js +0 -6
- package/dist/types/api/mockData/MockOnboardingData.d.ts +0 -8
- package/dist/types/api/mockData/MockPayments.d.ts +0 -3
- package/dist/types/api/mockData/MockSubAccount.d.ts +0 -3
- package/dist/types/components/business-forms/business-form/business-address/business-address-form.d.ts +0 -9
- package/dist/types/components/business-forms/payment-provisioning/business-address/business-address-form-step.d.ts +0 -9
- package/dist/types/components/business-forms/schemas/business-owners-schema.d.ts +0 -33
- package/dist/types/components/business-forms/utils/business-form-select-options.d.ts +0 -11
- package/dist/webcomponents/p-03b1d0d5.entry.js +0 -1
- package/dist/webcomponents/p-0923e39c.js +0 -1
- package/dist/webcomponents/p-16dcf053.entry.js +0 -1
- package/dist/webcomponents/p-17d72f4a.js +0 -1
- package/dist/webcomponents/p-2df32b4a.entry.js +0 -1
- package/dist/webcomponents/p-34352d04.js +0 -1
- package/dist/webcomponents/p-38ba2848.entry.js +0 -1
- package/dist/webcomponents/p-41870765.entry.js +0 -1
- package/dist/webcomponents/p-461f42b8.entry.js +0 -1
- package/dist/webcomponents/p-48c2400e.js +0 -1
- package/dist/webcomponents/p-491ca87f.js +0 -1
- package/dist/webcomponents/p-5be4e217.entry.js +0 -1
- package/dist/webcomponents/p-60714f2a.entry.js +0 -1
- package/dist/webcomponents/p-60b2344a.js +0 -1
- package/dist/webcomponents/p-63296409.js +0 -1
- package/dist/webcomponents/p-65500b31.entry.js +0 -19
- package/dist/webcomponents/p-6d39b8bc.entry.js +0 -1
- package/dist/webcomponents/p-6ed680e9.js +0 -1
- package/dist/webcomponents/p-7b2cddc7.js +0 -1
- package/dist/webcomponents/p-7ec301b5.entry.js +0 -1
- package/dist/webcomponents/p-817211f2.entry.js +0 -1
- package/dist/webcomponents/p-9207ccb2.entry.js +0 -1
- package/dist/webcomponents/p-975ab96e.js +0 -1
- package/dist/webcomponents/p-9b99370e.js +0 -1
- package/dist/webcomponents/p-9e4b81ad.entry.js +0 -1
- package/dist/webcomponents/p-a141c531.js +0 -1
- package/dist/webcomponents/p-a2dbe90f.entry.js +0 -1
- package/dist/webcomponents/p-a4122c35.entry.js +0 -1
- package/dist/webcomponents/p-af8363a1.entry.js +0 -1
- package/dist/webcomponents/p-b1bc23af.entry.js +0 -1
- package/dist/webcomponents/p-b37d6888.entry.js +0 -1
- package/dist/webcomponents/p-b5a3bf86.entry.js +0 -1
- package/dist/webcomponents/p-b8f22856.js +0 -1
- package/dist/webcomponents/p-cb8f9cb8.entry.js +0 -1
- package/dist/webcomponents/p-d0761829.entry.js +0 -1
- package/dist/webcomponents/p-da34bba7.entry.js +0 -1
- package/dist/webcomponents/p-dbe32e75.entry.js +0 -1
- package/dist/webcomponents/p-e0c1cba8.js +0 -1
- package/dist/webcomponents/p-e924f2e1.entry.js +0 -1
- package/dist/webcomponents/p-ea03b424.entry.js +0 -1
- package/dist/webcomponents/p-ec230480.entry.js +0 -1
- package/dist/webcomponents/p-eed5f4ad.entry.js +0 -1
- package/dist/webcomponents/p-fe8a94c1.entry.js +0 -1
- /package/dist/collection/components/business-forms/{business-form/business-address/business-address-form.css → owner-form/identity-address/identity-address-form.css} +0 -0
- /package/dist/types/{api → home/runner/work/web-component-library/web-component-library/packages/webcomponents/.stencil}/mockData/mockGrossVolumeReport.d.ts +0 -0
- /package/dist/types/home/runner/work/web-component-library/web-component-library/packages/webcomponents/.stencil/{config.d.ts → packages/webcomponents/config.d.ts} +0 -0
package/dist/docs.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"timestamp": "2024-
|
|
2
|
+
"timestamp": "2024-05-09T21:44:16",
|
|
3
3
|
"compiler": {
|
|
4
4
|
"name": "@stencil/core",
|
|
5
5
|
"version": "4.10.0",
|
|
@@ -115,7 +115,28 @@
|
|
|
115
115
|
}
|
|
116
116
|
],
|
|
117
117
|
"methods": [],
|
|
118
|
-
"events": [
|
|
118
|
+
"events": [
|
|
119
|
+
{
|
|
120
|
+
"event": "error-event",
|
|
121
|
+
"detail": "ComponentError",
|
|
122
|
+
"bubbles": true,
|
|
123
|
+
"complexType": {
|
|
124
|
+
"original": "ComponentError",
|
|
125
|
+
"resolved": "ComponentError",
|
|
126
|
+
"references": {
|
|
127
|
+
"ComponentError": {
|
|
128
|
+
"location": "import",
|
|
129
|
+
"path": "../../api/ComponentError",
|
|
130
|
+
"id": "src/api/ComponentError.ts::ComponentError"
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
},
|
|
134
|
+
"cancelable": true,
|
|
135
|
+
"composed": true,
|
|
136
|
+
"docs": "",
|
|
137
|
+
"docsTags": []
|
|
138
|
+
}
|
|
139
|
+
],
|
|
119
140
|
"listeners": [],
|
|
120
141
|
"styles": [],
|
|
121
142
|
"slots": [],
|
|
@@ -143,6 +164,200 @@
|
|
|
143
164
|
]
|
|
144
165
|
}
|
|
145
166
|
},
|
|
167
|
+
{
|
|
168
|
+
"filePath": "src/components/form/form-control-date.tsx",
|
|
169
|
+
"encapsulation": "shadow",
|
|
170
|
+
"tag": "form-control-date",
|
|
171
|
+
"readme": "# form-control-text\n\n\n",
|
|
172
|
+
"docs": "",
|
|
173
|
+
"docsTags": [],
|
|
174
|
+
"usage": {},
|
|
175
|
+
"props": [
|
|
176
|
+
{
|
|
177
|
+
"name": "defaultValue",
|
|
178
|
+
"type": "string",
|
|
179
|
+
"complexType": {
|
|
180
|
+
"original": "string",
|
|
181
|
+
"resolved": "string",
|
|
182
|
+
"references": {}
|
|
183
|
+
},
|
|
184
|
+
"mutable": false,
|
|
185
|
+
"attr": "default-value",
|
|
186
|
+
"reflectToAttr": false,
|
|
187
|
+
"docs": "",
|
|
188
|
+
"docsTags": [],
|
|
189
|
+
"values": [
|
|
190
|
+
{
|
|
191
|
+
"type": "string"
|
|
192
|
+
}
|
|
193
|
+
],
|
|
194
|
+
"optional": false,
|
|
195
|
+
"required": false
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"name": "disabled",
|
|
199
|
+
"type": "boolean",
|
|
200
|
+
"complexType": {
|
|
201
|
+
"original": "boolean",
|
|
202
|
+
"resolved": "boolean",
|
|
203
|
+
"references": {}
|
|
204
|
+
},
|
|
205
|
+
"mutable": false,
|
|
206
|
+
"attr": "disabled",
|
|
207
|
+
"reflectToAttr": false,
|
|
208
|
+
"docs": "",
|
|
209
|
+
"docsTags": [],
|
|
210
|
+
"values": [
|
|
211
|
+
{
|
|
212
|
+
"type": "boolean"
|
|
213
|
+
}
|
|
214
|
+
],
|
|
215
|
+
"optional": false,
|
|
216
|
+
"required": false
|
|
217
|
+
},
|
|
218
|
+
{
|
|
219
|
+
"name": "error",
|
|
220
|
+
"type": "string",
|
|
221
|
+
"complexType": {
|
|
222
|
+
"original": "string",
|
|
223
|
+
"resolved": "string",
|
|
224
|
+
"references": {}
|
|
225
|
+
},
|
|
226
|
+
"mutable": false,
|
|
227
|
+
"attr": "error",
|
|
228
|
+
"reflectToAttr": false,
|
|
229
|
+
"docs": "",
|
|
230
|
+
"docsTags": [],
|
|
231
|
+
"values": [
|
|
232
|
+
{
|
|
233
|
+
"type": "string"
|
|
234
|
+
}
|
|
235
|
+
],
|
|
236
|
+
"optional": false,
|
|
237
|
+
"required": false
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"name": "inputHandler",
|
|
241
|
+
"type": "any",
|
|
242
|
+
"complexType": {
|
|
243
|
+
"original": "any",
|
|
244
|
+
"resolved": "any",
|
|
245
|
+
"references": {}
|
|
246
|
+
},
|
|
247
|
+
"mutable": false,
|
|
248
|
+
"attr": "input-handler",
|
|
249
|
+
"reflectToAttr": false,
|
|
250
|
+
"docs": "",
|
|
251
|
+
"docsTags": [],
|
|
252
|
+
"values": [
|
|
253
|
+
{
|
|
254
|
+
"type": "any"
|
|
255
|
+
}
|
|
256
|
+
],
|
|
257
|
+
"optional": false,
|
|
258
|
+
"required": false
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"name": "label",
|
|
262
|
+
"type": "string",
|
|
263
|
+
"complexType": {
|
|
264
|
+
"original": "string",
|
|
265
|
+
"resolved": "string",
|
|
266
|
+
"references": {}
|
|
267
|
+
},
|
|
268
|
+
"mutable": false,
|
|
269
|
+
"attr": "label",
|
|
270
|
+
"reflectToAttr": false,
|
|
271
|
+
"docs": "",
|
|
272
|
+
"docsTags": [],
|
|
273
|
+
"values": [
|
|
274
|
+
{
|
|
275
|
+
"type": "string"
|
|
276
|
+
}
|
|
277
|
+
],
|
|
278
|
+
"optional": false,
|
|
279
|
+
"required": false
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"name": "name",
|
|
283
|
+
"type": "string",
|
|
284
|
+
"complexType": {
|
|
285
|
+
"original": "string",
|
|
286
|
+
"resolved": "string",
|
|
287
|
+
"references": {}
|
|
288
|
+
},
|
|
289
|
+
"mutable": false,
|
|
290
|
+
"attr": "name",
|
|
291
|
+
"reflectToAttr": false,
|
|
292
|
+
"docs": "",
|
|
293
|
+
"docsTags": [],
|
|
294
|
+
"values": [
|
|
295
|
+
{
|
|
296
|
+
"type": "string"
|
|
297
|
+
}
|
|
298
|
+
],
|
|
299
|
+
"optional": false,
|
|
300
|
+
"required": false
|
|
301
|
+
}
|
|
302
|
+
],
|
|
303
|
+
"methods": [],
|
|
304
|
+
"events": [
|
|
305
|
+
{
|
|
306
|
+
"event": "formControlBlur",
|
|
307
|
+
"detail": "any",
|
|
308
|
+
"bubbles": true,
|
|
309
|
+
"complexType": {
|
|
310
|
+
"original": "any",
|
|
311
|
+
"resolved": "any",
|
|
312
|
+
"references": {}
|
|
313
|
+
},
|
|
314
|
+
"cancelable": true,
|
|
315
|
+
"composed": true,
|
|
316
|
+
"docs": "",
|
|
317
|
+
"docsTags": []
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"event": "formControlInput",
|
|
321
|
+
"detail": "any",
|
|
322
|
+
"bubbles": true,
|
|
323
|
+
"complexType": {
|
|
324
|
+
"original": "any",
|
|
325
|
+
"resolved": "any",
|
|
326
|
+
"references": {}
|
|
327
|
+
},
|
|
328
|
+
"cancelable": true,
|
|
329
|
+
"composed": true,
|
|
330
|
+
"docs": "",
|
|
331
|
+
"docsTags": []
|
|
332
|
+
}
|
|
333
|
+
],
|
|
334
|
+
"listeners": [],
|
|
335
|
+
"styles": [],
|
|
336
|
+
"slots": [],
|
|
337
|
+
"parts": [
|
|
338
|
+
{
|
|
339
|
+
"name": "label",
|
|
340
|
+
"docs": ""
|
|
341
|
+
}
|
|
342
|
+
],
|
|
343
|
+
"dependents": [
|
|
344
|
+
"justifi-business-representative",
|
|
345
|
+
"justifi-business-representative-form-step",
|
|
346
|
+
"justifi-owner-form"
|
|
347
|
+
],
|
|
348
|
+
"dependencies": [],
|
|
349
|
+
"dependencyGraph": {
|
|
350
|
+
"justifi-business-representative": [
|
|
351
|
+
"form-control-date"
|
|
352
|
+
],
|
|
353
|
+
"justifi-business-representative-form-step": [
|
|
354
|
+
"form-control-date"
|
|
355
|
+
],
|
|
356
|
+
"justifi-owner-form": [
|
|
357
|
+
"form-control-date"
|
|
358
|
+
]
|
|
359
|
+
}
|
|
360
|
+
},
|
|
146
361
|
{
|
|
147
362
|
"filePath": "src/components/form/form-control-datepart.tsx",
|
|
148
363
|
"encapsulation": "shadow",
|
|
@@ -350,24 +565,12 @@
|
|
|
350
565
|
}
|
|
351
566
|
],
|
|
352
567
|
"dependents": [
|
|
353
|
-
"justifi-business-owners"
|
|
354
|
-
"justifi-business-representative",
|
|
355
|
-
"justifi-business-representative-form-step",
|
|
356
|
-
"justifi-owner-form"
|
|
568
|
+
"justifi-business-owners"
|
|
357
569
|
],
|
|
358
570
|
"dependencies": [],
|
|
359
571
|
"dependencyGraph": {
|
|
360
572
|
"justifi-business-owners": [
|
|
361
573
|
"form-control-datepart"
|
|
362
|
-
],
|
|
363
|
-
"justifi-business-representative": [
|
|
364
|
-
"form-control-datepart"
|
|
365
|
-
],
|
|
366
|
-
"justifi-business-representative-form-step": [
|
|
367
|
-
"form-control-datepart"
|
|
368
|
-
],
|
|
369
|
-
"justifi-owner-form": [
|
|
370
|
-
"form-control-datepart"
|
|
371
574
|
]
|
|
372
575
|
}
|
|
373
576
|
},
|
|
@@ -719,23 +922,13 @@
|
|
|
719
922
|
}
|
|
720
923
|
],
|
|
721
924
|
"dependents": [
|
|
722
|
-
"justifi-business-address-form",
|
|
723
|
-
"justifi-business-address-form-step",
|
|
724
925
|
"justifi-business-owners",
|
|
725
926
|
"justifi-business-representative",
|
|
726
927
|
"justifi-business-representative-form-step",
|
|
727
|
-
"justifi-legal-address-form",
|
|
728
|
-
"justifi-legal-address-form-step",
|
|
729
928
|
"justifi-owner-form"
|
|
730
929
|
],
|
|
731
930
|
"dependencies": [],
|
|
732
931
|
"dependencyGraph": {
|
|
733
|
-
"justifi-business-address-form": [
|
|
734
|
-
"form-control-number"
|
|
735
|
-
],
|
|
736
|
-
"justifi-business-address-form-step": [
|
|
737
|
-
"form-control-number"
|
|
738
|
-
],
|
|
739
932
|
"justifi-business-owners": [
|
|
740
933
|
"form-control-number"
|
|
741
934
|
],
|
|
@@ -745,12 +938,6 @@
|
|
|
745
938
|
"justifi-business-representative-form-step": [
|
|
746
939
|
"form-control-number"
|
|
747
940
|
],
|
|
748
|
-
"justifi-legal-address-form": [
|
|
749
|
-
"form-control-number"
|
|
750
|
-
],
|
|
751
|
-
"justifi-legal-address-form-step": [
|
|
752
|
-
"form-control-number"
|
|
753
|
-
],
|
|
754
941
|
"justifi-owner-form": [
|
|
755
942
|
"form-control-number"
|
|
756
943
|
]
|
|
@@ -1178,34 +1365,21 @@
|
|
|
1178
1365
|
}
|
|
1179
1366
|
],
|
|
1180
1367
|
"dependents": [
|
|
1181
|
-
"justifi-business-address-form",
|
|
1182
|
-
"justifi-business-address-form-step",
|
|
1183
1368
|
"justifi-business-core-info",
|
|
1184
1369
|
"justifi-business-core-info-form-step",
|
|
1185
|
-
"justifi-
|
|
1186
|
-
"justifi-business-representative-form-step",
|
|
1370
|
+
"justifi-identity-address-form",
|
|
1187
1371
|
"justifi-legal-address-form",
|
|
1188
|
-
"justifi-legal-address-form-step"
|
|
1189
|
-
"justifi-owner-form"
|
|
1372
|
+
"justifi-legal-address-form-step"
|
|
1190
1373
|
],
|
|
1191
1374
|
"dependencies": [],
|
|
1192
1375
|
"dependencyGraph": {
|
|
1193
|
-
"justifi-business-address-form": [
|
|
1194
|
-
"form-control-select"
|
|
1195
|
-
],
|
|
1196
|
-
"justifi-business-address-form-step": [
|
|
1197
|
-
"form-control-select"
|
|
1198
|
-
],
|
|
1199
1376
|
"justifi-business-core-info": [
|
|
1200
1377
|
"form-control-select"
|
|
1201
1378
|
],
|
|
1202
1379
|
"justifi-business-core-info-form-step": [
|
|
1203
1380
|
"form-control-select"
|
|
1204
1381
|
],
|
|
1205
|
-
"justifi-
|
|
1206
|
-
"form-control-select"
|
|
1207
|
-
],
|
|
1208
|
-
"justifi-business-representative-form-step": [
|
|
1382
|
+
"justifi-identity-address-form": [
|
|
1209
1383
|
"form-control-select"
|
|
1210
1384
|
],
|
|
1211
1385
|
"justifi-legal-address-form": [
|
|
@@ -1213,9 +1387,6 @@
|
|
|
1213
1387
|
],
|
|
1214
1388
|
"justifi-legal-address-form-step": [
|
|
1215
1389
|
"form-control-select"
|
|
1216
|
-
],
|
|
1217
|
-
"justifi-owner-form": [
|
|
1218
|
-
"form-control-select"
|
|
1219
1390
|
]
|
|
1220
1391
|
}
|
|
1221
1392
|
},
|
|
@@ -1312,29 +1483,70 @@
|
|
|
1312
1483
|
"required": false
|
|
1313
1484
|
},
|
|
1314
1485
|
{
|
|
1315
|
-
"name": "
|
|
1316
|
-
"type": "
|
|
1486
|
+
"name": "keyDownHandler",
|
|
1487
|
+
"type": "(event: any) => void",
|
|
1317
1488
|
"complexType": {
|
|
1318
|
-
"original": "
|
|
1319
|
-
"resolved": "
|
|
1489
|
+
"original": "(event: any) => void",
|
|
1490
|
+
"resolved": "(event: any) => void",
|
|
1320
1491
|
"references": {}
|
|
1321
1492
|
},
|
|
1322
1493
|
"mutable": false,
|
|
1323
|
-
"attr": "label",
|
|
1324
1494
|
"reflectToAttr": false,
|
|
1325
1495
|
"docs": "",
|
|
1326
1496
|
"docsTags": [],
|
|
1327
1497
|
"values": [
|
|
1328
1498
|
{
|
|
1329
|
-
"type": "
|
|
1499
|
+
"type": "(event: any) => void"
|
|
1330
1500
|
}
|
|
1331
1501
|
],
|
|
1332
|
-
"optional":
|
|
1502
|
+
"optional": true,
|
|
1333
1503
|
"required": false
|
|
1334
1504
|
},
|
|
1335
1505
|
{
|
|
1336
|
-
"name": "
|
|
1337
|
-
"type": "
|
|
1506
|
+
"name": "label",
|
|
1507
|
+
"type": "string",
|
|
1508
|
+
"complexType": {
|
|
1509
|
+
"original": "string",
|
|
1510
|
+
"resolved": "string",
|
|
1511
|
+
"references": {}
|
|
1512
|
+
},
|
|
1513
|
+
"mutable": false,
|
|
1514
|
+
"attr": "label",
|
|
1515
|
+
"reflectToAttr": false,
|
|
1516
|
+
"docs": "",
|
|
1517
|
+
"docsTags": [],
|
|
1518
|
+
"values": [
|
|
1519
|
+
{
|
|
1520
|
+
"type": "string"
|
|
1521
|
+
}
|
|
1522
|
+
],
|
|
1523
|
+
"optional": false,
|
|
1524
|
+
"required": false
|
|
1525
|
+
},
|
|
1526
|
+
{
|
|
1527
|
+
"name": "maxLength",
|
|
1528
|
+
"type": "number",
|
|
1529
|
+
"complexType": {
|
|
1530
|
+
"original": "number",
|
|
1531
|
+
"resolved": "number",
|
|
1532
|
+
"references": {}
|
|
1533
|
+
},
|
|
1534
|
+
"mutable": false,
|
|
1535
|
+
"attr": "max-length",
|
|
1536
|
+
"reflectToAttr": false,
|
|
1537
|
+
"docs": "",
|
|
1538
|
+
"docsTags": [],
|
|
1539
|
+
"values": [
|
|
1540
|
+
{
|
|
1541
|
+
"type": "number"
|
|
1542
|
+
}
|
|
1543
|
+
],
|
|
1544
|
+
"optional": true,
|
|
1545
|
+
"required": false
|
|
1546
|
+
},
|
|
1547
|
+
{
|
|
1548
|
+
"name": "name",
|
|
1549
|
+
"type": "any",
|
|
1338
1550
|
"complexType": {
|
|
1339
1551
|
"original": "any",
|
|
1340
1552
|
"resolved": "any",
|
|
@@ -1395,13 +1607,12 @@
|
|
|
1395
1607
|
}
|
|
1396
1608
|
],
|
|
1397
1609
|
"dependents": [
|
|
1398
|
-
"justifi-business-address-form",
|
|
1399
|
-
"justifi-business-address-form-step",
|
|
1400
1610
|
"justifi-business-core-info",
|
|
1401
1611
|
"justifi-business-core-info-form-step",
|
|
1402
1612
|
"justifi-business-owners",
|
|
1403
1613
|
"justifi-business-representative",
|
|
1404
1614
|
"justifi-business-representative-form-step",
|
|
1615
|
+
"justifi-identity-address-form",
|
|
1405
1616
|
"justifi-legal-address-form",
|
|
1406
1617
|
"justifi-legal-address-form-step",
|
|
1407
1618
|
"justifi-owner-form",
|
|
@@ -1409,12 +1620,6 @@
|
|
|
1409
1620
|
],
|
|
1410
1621
|
"dependencies": [],
|
|
1411
1622
|
"dependencyGraph": {
|
|
1412
|
-
"justifi-business-address-form": [
|
|
1413
|
-
"form-control-text"
|
|
1414
|
-
],
|
|
1415
|
-
"justifi-business-address-form-step": [
|
|
1416
|
-
"form-control-text"
|
|
1417
|
-
],
|
|
1418
1623
|
"justifi-business-core-info": [
|
|
1419
1624
|
"form-control-text"
|
|
1420
1625
|
],
|
|
@@ -1430,6 +1635,9 @@
|
|
|
1430
1635
|
"justifi-business-representative-form-step": [
|
|
1431
1636
|
"form-control-text"
|
|
1432
1637
|
],
|
|
1638
|
+
"justifi-identity-address-form": [
|
|
1639
|
+
"form-control-text"
|
|
1640
|
+
],
|
|
1433
1641
|
"justifi-legal-address-form": [
|
|
1434
1642
|
"form-control-text"
|
|
1435
1643
|
],
|
|
@@ -1532,7 +1740,28 @@
|
|
|
1532
1740
|
}
|
|
1533
1741
|
],
|
|
1534
1742
|
"methods": [],
|
|
1535
|
-
"events": [
|
|
1743
|
+
"events": [
|
|
1744
|
+
{
|
|
1745
|
+
"event": "error-event",
|
|
1746
|
+
"detail": "ComponentError",
|
|
1747
|
+
"bubbles": true,
|
|
1748
|
+
"complexType": {
|
|
1749
|
+
"original": "ComponentError",
|
|
1750
|
+
"resolved": "ComponentError",
|
|
1751
|
+
"references": {
|
|
1752
|
+
"ComponentError": {
|
|
1753
|
+
"location": "import",
|
|
1754
|
+
"path": "../../api/ComponentError",
|
|
1755
|
+
"id": "src/api/ComponentError.ts::ComponentError"
|
|
1756
|
+
}
|
|
1757
|
+
}
|
|
1758
|
+
},
|
|
1759
|
+
"cancelable": true,
|
|
1760
|
+
"composed": true,
|
|
1761
|
+
"docs": "",
|
|
1762
|
+
"docsTags": []
|
|
1763
|
+
}
|
|
1764
|
+
],
|
|
1536
1765
|
"listeners": [],
|
|
1537
1766
|
"styles": [],
|
|
1538
1767
|
"slots": [],
|
|
@@ -1639,6 +1868,27 @@
|
|
|
1639
1868
|
],
|
|
1640
1869
|
"usage": {},
|
|
1641
1870
|
"props": [
|
|
1871
|
+
{
|
|
1872
|
+
"name": "allowOptionalFields",
|
|
1873
|
+
"type": "boolean",
|
|
1874
|
+
"complexType": {
|
|
1875
|
+
"original": "boolean",
|
|
1876
|
+
"resolved": "boolean",
|
|
1877
|
+
"references": {}
|
|
1878
|
+
},
|
|
1879
|
+
"mutable": false,
|
|
1880
|
+
"attr": "allow-optional-fields",
|
|
1881
|
+
"reflectToAttr": false,
|
|
1882
|
+
"docs": "",
|
|
1883
|
+
"docsTags": [],
|
|
1884
|
+
"values": [
|
|
1885
|
+
{
|
|
1886
|
+
"type": "boolean"
|
|
1887
|
+
}
|
|
1888
|
+
],
|
|
1889
|
+
"optional": true,
|
|
1890
|
+
"required": false
|
|
1891
|
+
},
|
|
1642
1892
|
{
|
|
1643
1893
|
"name": "authToken",
|
|
1644
1894
|
"type": "string",
|
|
@@ -2252,63 +2502,40 @@
|
|
|
2252
2502
|
}
|
|
2253
2503
|
},
|
|
2254
2504
|
{
|
|
2255
|
-
"filePath": "src/components/business-forms/business-form/business-
|
|
2256
|
-
"encapsulation": "
|
|
2257
|
-
"tag": "justifi-business-
|
|
2258
|
-
"readme": "# justifi-business-
|
|
2259
|
-
"docs": "",
|
|
2260
|
-
"docsTags": [
|
|
2261
|
-
"usage": {},
|
|
2262
|
-
"props": [
|
|
2505
|
+
"filePath": "src/components/business-forms/business-form/business-core-info/business-core-info.tsx",
|
|
2506
|
+
"encapsulation": "none",
|
|
2507
|
+
"tag": "justifi-business-core-info",
|
|
2508
|
+
"readme": "# justifi-business-generic-info-form\n\n\n",
|
|
2509
|
+
"docs": "\nThe difference between this component and business-core-info-details\nis that this component is meant to be a form and send data\nand the other one is meant to be just read only.",
|
|
2510
|
+
"docsTags": [
|
|
2263
2511
|
{
|
|
2264
|
-
"name": "
|
|
2265
|
-
"
|
|
2266
|
-
"complexType": {
|
|
2267
|
-
"original": "any",
|
|
2268
|
-
"resolved": "any",
|
|
2269
|
-
"references": {}
|
|
2270
|
-
},
|
|
2271
|
-
"mutable": false,
|
|
2272
|
-
"attr": "default-values",
|
|
2273
|
-
"reflectToAttr": false,
|
|
2274
|
-
"docs": "",
|
|
2275
|
-
"docsTags": [],
|
|
2276
|
-
"values": [
|
|
2277
|
-
{
|
|
2278
|
-
"type": "any"
|
|
2279
|
-
}
|
|
2280
|
-
],
|
|
2281
|
-
"optional": false,
|
|
2282
|
-
"required": false
|
|
2512
|
+
"name": "exportedPart",
|
|
2513
|
+
"text": "label: Label for inputs"
|
|
2283
2514
|
},
|
|
2284
2515
|
{
|
|
2285
|
-
"name": "
|
|
2286
|
-
"
|
|
2287
|
-
"complexType": {
|
|
2288
|
-
"original": "any",
|
|
2289
|
-
"resolved": "any",
|
|
2290
|
-
"references": {}
|
|
2291
|
-
},
|
|
2292
|
-
"mutable": false,
|
|
2293
|
-
"attr": "errors",
|
|
2294
|
-
"reflectToAttr": false,
|
|
2295
|
-
"docs": "",
|
|
2296
|
-
"docsTags": [],
|
|
2297
|
-
"values": [
|
|
2298
|
-
{
|
|
2299
|
-
"type": "any"
|
|
2300
|
-
}
|
|
2301
|
-
],
|
|
2302
|
-
"optional": false,
|
|
2303
|
-
"required": false
|
|
2516
|
+
"name": "exportedPart",
|
|
2517
|
+
"text": "input: The input fields"
|
|
2304
2518
|
},
|
|
2305
2519
|
{
|
|
2306
|
-
"name": "
|
|
2307
|
-
"
|
|
2520
|
+
"name": "exportedPart",
|
|
2521
|
+
"text": "input-invalid: Invalid state for inputfs"
|
|
2522
|
+
}
|
|
2523
|
+
],
|
|
2524
|
+
"usage": {},
|
|
2525
|
+
"props": [
|
|
2526
|
+
{
|
|
2527
|
+
"name": "formController",
|
|
2528
|
+
"type": "FormController",
|
|
2308
2529
|
"complexType": {
|
|
2309
|
-
"original": "
|
|
2310
|
-
"resolved": "
|
|
2311
|
-
"references": {
|
|
2530
|
+
"original": "FormController",
|
|
2531
|
+
"resolved": "FormController",
|
|
2532
|
+
"references": {
|
|
2533
|
+
"FormController": {
|
|
2534
|
+
"location": "import",
|
|
2535
|
+
"path": "../../../form/form",
|
|
2536
|
+
"id": "src/components/form/form.ts::FormController"
|
|
2537
|
+
}
|
|
2538
|
+
}
|
|
2312
2539
|
},
|
|
2313
2540
|
"mutable": false,
|
|
2314
2541
|
"reflectToAttr": false,
|
|
@@ -2316,7 +2543,7 @@
|
|
|
2316
2543
|
"docsTags": [],
|
|
2317
2544
|
"values": [
|
|
2318
2545
|
{
|
|
2319
|
-
"type": "
|
|
2546
|
+
"type": "FormController"
|
|
2320
2547
|
}
|
|
2321
2548
|
],
|
|
2322
2549
|
"optional": false,
|
|
@@ -2330,257 +2557,104 @@
|
|
|
2330
2557
|
"slots": [],
|
|
2331
2558
|
"parts": [],
|
|
2332
2559
|
"dependents": [
|
|
2333
|
-
"justifi-business-
|
|
2334
|
-
"justifi-business-representative-form-step",
|
|
2335
|
-
"justifi-owner-form"
|
|
2560
|
+
"justifi-business-form"
|
|
2336
2561
|
],
|
|
2337
2562
|
"dependencies": [
|
|
2338
2563
|
"form-control-text",
|
|
2339
2564
|
"form-control-select",
|
|
2340
|
-
"form-control-number"
|
|
2565
|
+
"form-control-number-masked"
|
|
2341
2566
|
],
|
|
2342
2567
|
"dependencyGraph": {
|
|
2343
|
-
"justifi-business-
|
|
2568
|
+
"justifi-business-core-info": [
|
|
2344
2569
|
"form-control-text",
|
|
2345
2570
|
"form-control-select",
|
|
2346
|
-
"form-control-number"
|
|
2347
|
-
],
|
|
2348
|
-
"justifi-business-representative": [
|
|
2349
|
-
"justifi-business-address-form"
|
|
2350
|
-
],
|
|
2351
|
-
"justifi-business-representative-form-step": [
|
|
2352
|
-
"justifi-business-address-form"
|
|
2571
|
+
"form-control-number-masked"
|
|
2353
2572
|
],
|
|
2354
|
-
"justifi-
|
|
2355
|
-
"justifi-business-
|
|
2573
|
+
"justifi-business-form": [
|
|
2574
|
+
"justifi-business-core-info"
|
|
2356
2575
|
]
|
|
2357
2576
|
}
|
|
2358
2577
|
},
|
|
2359
2578
|
{
|
|
2360
|
-
"filePath": "src/components/business-forms/payment-provisioning/business-
|
|
2361
|
-
"encapsulation": "
|
|
2362
|
-
"tag": "justifi-business-
|
|
2363
|
-
"readme": "# justifi-business-
|
|
2364
|
-
"docs": "",
|
|
2365
|
-
"docsTags": [
|
|
2579
|
+
"filePath": "src/components/business-forms/payment-provisioning/business-core-info/business-core-info-form-step.tsx",
|
|
2580
|
+
"encapsulation": "none",
|
|
2581
|
+
"tag": "justifi-business-core-info-form-step",
|
|
2582
|
+
"readme": "# justifi-business-generic-info-form\n\n\n",
|
|
2583
|
+
"docs": "\nThe difference between this component and business-generic-info-details\nis that this component is meant to be a form and send data\nand the other one is meant to be just read only.",
|
|
2584
|
+
"docsTags": [
|
|
2585
|
+
{
|
|
2586
|
+
"name": "exportedPart",
|
|
2587
|
+
"text": "label: Label for inputs"
|
|
2588
|
+
},
|
|
2589
|
+
{
|
|
2590
|
+
"name": "exportedPart",
|
|
2591
|
+
"text": "input: The input fields"
|
|
2592
|
+
},
|
|
2593
|
+
{
|
|
2594
|
+
"name": "exportedPart",
|
|
2595
|
+
"text": "input-invalid: Invalid state for inputfs"
|
|
2596
|
+
}
|
|
2597
|
+
],
|
|
2366
2598
|
"usage": {},
|
|
2367
2599
|
"props": [
|
|
2368
2600
|
{
|
|
2369
|
-
"name": "
|
|
2370
|
-
"type": "
|
|
2601
|
+
"name": "allowOptionalFields",
|
|
2602
|
+
"type": "boolean",
|
|
2371
2603
|
"complexType": {
|
|
2372
|
-
"original": "
|
|
2373
|
-
"resolved": "
|
|
2604
|
+
"original": "boolean",
|
|
2605
|
+
"resolved": "boolean",
|
|
2374
2606
|
"references": {}
|
|
2375
2607
|
},
|
|
2376
2608
|
"mutable": false,
|
|
2377
|
-
"attr": "
|
|
2609
|
+
"attr": "allow-optional-fields",
|
|
2378
2610
|
"reflectToAttr": false,
|
|
2379
2611
|
"docs": "",
|
|
2380
2612
|
"docsTags": [],
|
|
2381
2613
|
"values": [
|
|
2382
2614
|
{
|
|
2383
|
-
"type": "
|
|
2615
|
+
"type": "boolean"
|
|
2384
2616
|
}
|
|
2385
2617
|
],
|
|
2386
|
-
"optional":
|
|
2618
|
+
"optional": true,
|
|
2387
2619
|
"required": false
|
|
2388
2620
|
},
|
|
2389
2621
|
{
|
|
2390
|
-
"name": "
|
|
2391
|
-
"type": "
|
|
2622
|
+
"name": "authToken",
|
|
2623
|
+
"type": "string",
|
|
2392
2624
|
"complexType": {
|
|
2393
|
-
"original": "
|
|
2394
|
-
"resolved": "
|
|
2625
|
+
"original": "string",
|
|
2626
|
+
"resolved": "string",
|
|
2395
2627
|
"references": {}
|
|
2396
2628
|
},
|
|
2397
2629
|
"mutable": false,
|
|
2398
|
-
"attr": "
|
|
2630
|
+
"attr": "auth-token",
|
|
2399
2631
|
"reflectToAttr": false,
|
|
2400
2632
|
"docs": "",
|
|
2401
2633
|
"docsTags": [],
|
|
2402
2634
|
"values": [
|
|
2403
2635
|
{
|
|
2404
|
-
"type": "
|
|
2636
|
+
"type": "string"
|
|
2405
2637
|
}
|
|
2406
2638
|
],
|
|
2407
2639
|
"optional": false,
|
|
2408
2640
|
"required": false
|
|
2409
2641
|
},
|
|
2410
2642
|
{
|
|
2411
|
-
"name": "
|
|
2412
|
-
"type": "
|
|
2643
|
+
"name": "businessId",
|
|
2644
|
+
"type": "string",
|
|
2413
2645
|
"complexType": {
|
|
2414
|
-
"original": "
|
|
2415
|
-
"resolved": "
|
|
2646
|
+
"original": "string",
|
|
2647
|
+
"resolved": "string",
|
|
2416
2648
|
"references": {}
|
|
2417
2649
|
},
|
|
2418
2650
|
"mutable": false,
|
|
2651
|
+
"attr": "business-id",
|
|
2419
2652
|
"reflectToAttr": false,
|
|
2420
2653
|
"docs": "",
|
|
2421
2654
|
"docsTags": [],
|
|
2422
2655
|
"values": [
|
|
2423
2656
|
{
|
|
2424
|
-
"type": "
|
|
2425
|
-
}
|
|
2426
|
-
],
|
|
2427
|
-
"optional": false,
|
|
2428
|
-
"required": false
|
|
2429
|
-
}
|
|
2430
|
-
],
|
|
2431
|
-
"methods": [],
|
|
2432
|
-
"events": [],
|
|
2433
|
-
"listeners": [],
|
|
2434
|
-
"styles": [],
|
|
2435
|
-
"slots": [],
|
|
2436
|
-
"parts": [],
|
|
2437
|
-
"dependents": [],
|
|
2438
|
-
"dependencies": [
|
|
2439
|
-
"form-control-text",
|
|
2440
|
-
"form-control-select",
|
|
2441
|
-
"form-control-number"
|
|
2442
|
-
],
|
|
2443
|
-
"dependencyGraph": {
|
|
2444
|
-
"justifi-business-address-form-step": [
|
|
2445
|
-
"form-control-text",
|
|
2446
|
-
"form-control-select",
|
|
2447
|
-
"form-control-number"
|
|
2448
|
-
]
|
|
2449
|
-
}
|
|
2450
|
-
},
|
|
2451
|
-
{
|
|
2452
|
-
"filePath": "src/components/business-forms/business-form/business-core-info/business-core-info.tsx",
|
|
2453
|
-
"encapsulation": "none",
|
|
2454
|
-
"tag": "justifi-business-core-info",
|
|
2455
|
-
"readme": "# justifi-business-generic-info-form\n\n\n",
|
|
2456
|
-
"docs": "\nThe difference between this component and business-core-info-details\nis that this component is meant to be a form and send data\nand the other one is meant to be just read only.",
|
|
2457
|
-
"docsTags": [
|
|
2458
|
-
{
|
|
2459
|
-
"name": "exportedPart",
|
|
2460
|
-
"text": "label: Label for inputs"
|
|
2461
|
-
},
|
|
2462
|
-
{
|
|
2463
|
-
"name": "exportedPart",
|
|
2464
|
-
"text": "input: The input fields"
|
|
2465
|
-
},
|
|
2466
|
-
{
|
|
2467
|
-
"name": "exportedPart",
|
|
2468
|
-
"text": "input-invalid: Invalid state for inputfs"
|
|
2469
|
-
}
|
|
2470
|
-
],
|
|
2471
|
-
"usage": {},
|
|
2472
|
-
"props": [
|
|
2473
|
-
{
|
|
2474
|
-
"name": "formController",
|
|
2475
|
-
"type": "FormController",
|
|
2476
|
-
"complexType": {
|
|
2477
|
-
"original": "FormController",
|
|
2478
|
-
"resolved": "FormController",
|
|
2479
|
-
"references": {
|
|
2480
|
-
"FormController": {
|
|
2481
|
-
"location": "import",
|
|
2482
|
-
"path": "../../../form/form",
|
|
2483
|
-
"id": "src/components/form/form.ts::FormController"
|
|
2484
|
-
}
|
|
2485
|
-
}
|
|
2486
|
-
},
|
|
2487
|
-
"mutable": false,
|
|
2488
|
-
"reflectToAttr": false,
|
|
2489
|
-
"docs": "",
|
|
2490
|
-
"docsTags": [],
|
|
2491
|
-
"values": [
|
|
2492
|
-
{
|
|
2493
|
-
"type": "FormController"
|
|
2494
|
-
}
|
|
2495
|
-
],
|
|
2496
|
-
"optional": false,
|
|
2497
|
-
"required": false
|
|
2498
|
-
}
|
|
2499
|
-
],
|
|
2500
|
-
"methods": [],
|
|
2501
|
-
"events": [],
|
|
2502
|
-
"listeners": [],
|
|
2503
|
-
"styles": [],
|
|
2504
|
-
"slots": [],
|
|
2505
|
-
"parts": [],
|
|
2506
|
-
"dependents": [
|
|
2507
|
-
"justifi-business-form"
|
|
2508
|
-
],
|
|
2509
|
-
"dependencies": [
|
|
2510
|
-
"form-control-text",
|
|
2511
|
-
"form-control-select",
|
|
2512
|
-
"form-control-number-masked"
|
|
2513
|
-
],
|
|
2514
|
-
"dependencyGraph": {
|
|
2515
|
-
"justifi-business-core-info": [
|
|
2516
|
-
"form-control-text",
|
|
2517
|
-
"form-control-select",
|
|
2518
|
-
"form-control-number-masked"
|
|
2519
|
-
],
|
|
2520
|
-
"justifi-business-form": [
|
|
2521
|
-
"justifi-business-core-info"
|
|
2522
|
-
]
|
|
2523
|
-
}
|
|
2524
|
-
},
|
|
2525
|
-
{
|
|
2526
|
-
"filePath": "src/components/business-forms/payment-provisioning/business-core-info/business-core-info-form-step.tsx",
|
|
2527
|
-
"encapsulation": "none",
|
|
2528
|
-
"tag": "justifi-business-core-info-form-step",
|
|
2529
|
-
"readme": "# justifi-business-generic-info-form\n\n\n",
|
|
2530
|
-
"docs": "\nThe difference between this component and business-generic-info-details\nis that this component is meant to be a form and send data\nand the other one is meant to be just read only.",
|
|
2531
|
-
"docsTags": [
|
|
2532
|
-
{
|
|
2533
|
-
"name": "exportedPart",
|
|
2534
|
-
"text": "label: Label for inputs"
|
|
2535
|
-
},
|
|
2536
|
-
{
|
|
2537
|
-
"name": "exportedPart",
|
|
2538
|
-
"text": "input: The input fields"
|
|
2539
|
-
},
|
|
2540
|
-
{
|
|
2541
|
-
"name": "exportedPart",
|
|
2542
|
-
"text": "input-invalid: Invalid state for inputfs"
|
|
2543
|
-
}
|
|
2544
|
-
],
|
|
2545
|
-
"usage": {},
|
|
2546
|
-
"props": [
|
|
2547
|
-
{
|
|
2548
|
-
"name": "authToken",
|
|
2549
|
-
"type": "string",
|
|
2550
|
-
"complexType": {
|
|
2551
|
-
"original": "string",
|
|
2552
|
-
"resolved": "string",
|
|
2553
|
-
"references": {}
|
|
2554
|
-
},
|
|
2555
|
-
"mutable": false,
|
|
2556
|
-
"attr": "auth-token",
|
|
2557
|
-
"reflectToAttr": false,
|
|
2558
|
-
"docs": "",
|
|
2559
|
-
"docsTags": [],
|
|
2560
|
-
"values": [
|
|
2561
|
-
{
|
|
2562
|
-
"type": "string"
|
|
2563
|
-
}
|
|
2564
|
-
],
|
|
2565
|
-
"optional": false,
|
|
2566
|
-
"required": false
|
|
2567
|
-
},
|
|
2568
|
-
{
|
|
2569
|
-
"name": "businessId",
|
|
2570
|
-
"type": "string",
|
|
2571
|
-
"complexType": {
|
|
2572
|
-
"original": "string",
|
|
2573
|
-
"resolved": "string",
|
|
2574
|
-
"references": {}
|
|
2575
|
-
},
|
|
2576
|
-
"mutable": false,
|
|
2577
|
-
"attr": "business-id",
|
|
2578
|
-
"reflectToAttr": false,
|
|
2579
|
-
"docs": "",
|
|
2580
|
-
"docsTags": [],
|
|
2581
|
-
"values": [
|
|
2582
|
-
{
|
|
2583
|
-
"type": "string"
|
|
2657
|
+
"type": "string"
|
|
2584
2658
|
}
|
|
2585
2659
|
],
|
|
2586
2660
|
"optional": false,
|
|
@@ -2776,7 +2850,28 @@
|
|
|
2776
2850
|
}
|
|
2777
2851
|
],
|
|
2778
2852
|
"methods": [],
|
|
2779
|
-
"events": [
|
|
2853
|
+
"events": [
|
|
2854
|
+
{
|
|
2855
|
+
"event": "error-event",
|
|
2856
|
+
"detail": "ComponentError",
|
|
2857
|
+
"bubbles": true,
|
|
2858
|
+
"complexType": {
|
|
2859
|
+
"original": "ComponentError",
|
|
2860
|
+
"resolved": "ComponentError",
|
|
2861
|
+
"references": {
|
|
2862
|
+
"ComponentError": {
|
|
2863
|
+
"location": "import",
|
|
2864
|
+
"path": "../../api/ComponentError",
|
|
2865
|
+
"id": "src/api/ComponentError.ts::ComponentError"
|
|
2866
|
+
}
|
|
2867
|
+
}
|
|
2868
|
+
},
|
|
2869
|
+
"cancelable": true,
|
|
2870
|
+
"composed": true,
|
|
2871
|
+
"docs": "",
|
|
2872
|
+
"docsTags": []
|
|
2873
|
+
}
|
|
2874
|
+
],
|
|
2780
2875
|
"listeners": [],
|
|
2781
2876
|
"styles": [],
|
|
2782
2877
|
"slots": [],
|
|
@@ -2862,6 +2957,28 @@
|
|
|
2862
2957
|
"optional": false,
|
|
2863
2958
|
"required": false
|
|
2864
2959
|
},
|
|
2960
|
+
{
|
|
2961
|
+
"name": "formTitle",
|
|
2962
|
+
"type": "string",
|
|
2963
|
+
"complexType": {
|
|
2964
|
+
"original": "string",
|
|
2965
|
+
"resolved": "string",
|
|
2966
|
+
"references": {}
|
|
2967
|
+
},
|
|
2968
|
+
"mutable": false,
|
|
2969
|
+
"attr": "form-title",
|
|
2970
|
+
"reflectToAttr": false,
|
|
2971
|
+
"docs": "",
|
|
2972
|
+
"docsTags": [],
|
|
2973
|
+
"default": "'Business Information'",
|
|
2974
|
+
"values": [
|
|
2975
|
+
{
|
|
2976
|
+
"type": "string"
|
|
2977
|
+
}
|
|
2978
|
+
],
|
|
2979
|
+
"optional": true,
|
|
2980
|
+
"required": false
|
|
2981
|
+
},
|
|
2865
2982
|
{
|
|
2866
2983
|
"name": "hideErrors",
|
|
2867
2984
|
"type": "boolean",
|
|
@@ -2883,10 +3000,52 @@
|
|
|
2883
3000
|
],
|
|
2884
3001
|
"optional": true,
|
|
2885
3002
|
"required": false
|
|
3003
|
+
},
|
|
3004
|
+
{
|
|
3005
|
+
"name": "removeTitle",
|
|
3006
|
+
"type": "boolean",
|
|
3007
|
+
"complexType": {
|
|
3008
|
+
"original": "boolean",
|
|
3009
|
+
"resolved": "boolean",
|
|
3010
|
+
"references": {}
|
|
3011
|
+
},
|
|
3012
|
+
"mutable": false,
|
|
3013
|
+
"attr": "remove-title",
|
|
3014
|
+
"reflectToAttr": false,
|
|
3015
|
+
"docs": "",
|
|
3016
|
+
"docsTags": [],
|
|
3017
|
+
"default": "false",
|
|
3018
|
+
"values": [
|
|
3019
|
+
{
|
|
3020
|
+
"type": "boolean"
|
|
3021
|
+
}
|
|
3022
|
+
],
|
|
3023
|
+
"optional": true,
|
|
3024
|
+
"required": false
|
|
2886
3025
|
}
|
|
2887
3026
|
],
|
|
2888
3027
|
"methods": [],
|
|
2889
3028
|
"events": [
|
|
3029
|
+
{
|
|
3030
|
+
"event": "click-event",
|
|
3031
|
+
"detail": "BusinessFormClickEvent",
|
|
3032
|
+
"bubbles": true,
|
|
3033
|
+
"complexType": {
|
|
3034
|
+
"original": "BusinessFormClickEvent",
|
|
3035
|
+
"resolved": "BusinessFormClickEvent",
|
|
3036
|
+
"references": {
|
|
3037
|
+
"BusinessFormClickEvent": {
|
|
3038
|
+
"location": "import",
|
|
3039
|
+
"path": "../utils/business-form-types",
|
|
3040
|
+
"id": "src/components/business-forms/utils/business-form-types.ts::BusinessFormClickEvent"
|
|
3041
|
+
}
|
|
3042
|
+
}
|
|
3043
|
+
},
|
|
3044
|
+
"cancelable": true,
|
|
3045
|
+
"composed": true,
|
|
3046
|
+
"docs": "",
|
|
3047
|
+
"docsTags": []
|
|
3048
|
+
},
|
|
2890
3049
|
{
|
|
2891
3050
|
"event": "clickEvent",
|
|
2892
3051
|
"detail": "BusinessFormClickEvent",
|
|
@@ -2953,7 +3112,6 @@
|
|
|
2953
3112
|
],
|
|
2954
3113
|
"justifi-legal-address-form": [
|
|
2955
3114
|
"form-control-text",
|
|
2956
|
-
"form-control-number",
|
|
2957
3115
|
"form-control-select"
|
|
2958
3116
|
],
|
|
2959
3117
|
"justifi-additional-questions": [
|
|
@@ -2961,16 +3119,14 @@
|
|
|
2961
3119
|
],
|
|
2962
3120
|
"justifi-business-representative": [
|
|
2963
3121
|
"form-control-text",
|
|
2964
|
-
"form-control-select",
|
|
2965
3122
|
"form-control-number-masked",
|
|
2966
|
-
"form-control-
|
|
3123
|
+
"form-control-date",
|
|
2967
3124
|
"form-control-number",
|
|
2968
|
-
"justifi-
|
|
3125
|
+
"justifi-identity-address-form"
|
|
2969
3126
|
],
|
|
2970
|
-
"justifi-
|
|
3127
|
+
"justifi-identity-address-form": [
|
|
2971
3128
|
"form-control-text",
|
|
2972
|
-
"form-control-select"
|
|
2973
|
-
"form-control-number"
|
|
3129
|
+
"form-control-select"
|
|
2974
3130
|
]
|
|
2975
3131
|
}
|
|
2976
3132
|
},
|
|
@@ -3219,6 +3375,27 @@
|
|
|
3219
3375
|
],
|
|
3220
3376
|
"usage": {},
|
|
3221
3377
|
"props": [
|
|
3378
|
+
{
|
|
3379
|
+
"name": "allowOptionalFields",
|
|
3380
|
+
"type": "boolean",
|
|
3381
|
+
"complexType": {
|
|
3382
|
+
"original": "boolean",
|
|
3383
|
+
"resolved": "boolean",
|
|
3384
|
+
"references": {}
|
|
3385
|
+
},
|
|
3386
|
+
"mutable": false,
|
|
3387
|
+
"attr": "allow-optional-fields",
|
|
3388
|
+
"reflectToAttr": false,
|
|
3389
|
+
"docs": "",
|
|
3390
|
+
"docsTags": [],
|
|
3391
|
+
"values": [
|
|
3392
|
+
{
|
|
3393
|
+
"type": "boolean"
|
|
3394
|
+
}
|
|
3395
|
+
],
|
|
3396
|
+
"optional": true,
|
|
3397
|
+
"required": false
|
|
3398
|
+
},
|
|
3222
3399
|
{
|
|
3223
3400
|
"name": "authToken",
|
|
3224
3401
|
"type": "string",
|
|
@@ -3299,6 +3476,26 @@
|
|
|
3299
3476
|
}
|
|
3300
3477
|
],
|
|
3301
3478
|
"events": [
|
|
3479
|
+
{
|
|
3480
|
+
"event": "click-event",
|
|
3481
|
+
"detail": "OwnerFormClickEvent",
|
|
3482
|
+
"bubbles": true,
|
|
3483
|
+
"complexType": {
|
|
3484
|
+
"original": "OwnerFormClickEvent",
|
|
3485
|
+
"resolved": "OwnerFormClickEvent",
|
|
3486
|
+
"references": {
|
|
3487
|
+
"OwnerFormClickEvent": {
|
|
3488
|
+
"location": "import",
|
|
3489
|
+
"path": "../../utils/business-form-types",
|
|
3490
|
+
"id": "src/components/business-forms/utils/business-form-types.ts::OwnerFormClickEvent"
|
|
3491
|
+
}
|
|
3492
|
+
}
|
|
3493
|
+
},
|
|
3494
|
+
"cancelable": true,
|
|
3495
|
+
"composed": true,
|
|
3496
|
+
"docs": "",
|
|
3497
|
+
"docsTags": []
|
|
3498
|
+
},
|
|
3302
3499
|
{
|
|
3303
3500
|
"event": "formLoading",
|
|
3304
3501
|
"detail": "boolean",
|
|
@@ -3370,16 +3567,14 @@
|
|
|
3370
3567
|
],
|
|
3371
3568
|
"justifi-owner-form": [
|
|
3372
3569
|
"form-control-text",
|
|
3373
|
-
"form-control-select",
|
|
3374
3570
|
"form-control-number-masked",
|
|
3375
|
-
"form-control-
|
|
3571
|
+
"form-control-date",
|
|
3376
3572
|
"form-control-number",
|
|
3377
|
-
"justifi-
|
|
3573
|
+
"justifi-identity-address-form"
|
|
3378
3574
|
],
|
|
3379
|
-
"justifi-
|
|
3575
|
+
"justifi-identity-address-form": [
|
|
3380
3576
|
"form-control-text",
|
|
3381
|
-
"form-control-select"
|
|
3382
|
-
"form-control-number"
|
|
3577
|
+
"form-control-select"
|
|
3383
3578
|
],
|
|
3384
3579
|
"justifi-payment-provisioning": [
|
|
3385
3580
|
"justifi-business-owners-form-step"
|
|
@@ -3427,36 +3622,28 @@
|
|
|
3427
3622
|
"listeners": [],
|
|
3428
3623
|
"styles": [],
|
|
3429
3624
|
"slots": [],
|
|
3430
|
-
"parts": [
|
|
3431
|
-
{
|
|
3432
|
-
"name": "label",
|
|
3433
|
-
"docs": ""
|
|
3434
|
-
}
|
|
3435
|
-
],
|
|
3625
|
+
"parts": [],
|
|
3436
3626
|
"dependents": [
|
|
3437
3627
|
"justifi-business-form"
|
|
3438
3628
|
],
|
|
3439
3629
|
"dependencies": [
|
|
3440
3630
|
"form-control-text",
|
|
3441
|
-
"form-control-select",
|
|
3442
3631
|
"form-control-number-masked",
|
|
3443
|
-
"form-control-
|
|
3632
|
+
"form-control-date",
|
|
3444
3633
|
"form-control-number",
|
|
3445
|
-
"justifi-
|
|
3634
|
+
"justifi-identity-address-form"
|
|
3446
3635
|
],
|
|
3447
3636
|
"dependencyGraph": {
|
|
3448
3637
|
"justifi-business-representative": [
|
|
3449
3638
|
"form-control-text",
|
|
3450
|
-
"form-control-select",
|
|
3451
3639
|
"form-control-number-masked",
|
|
3452
|
-
"form-control-
|
|
3640
|
+
"form-control-date",
|
|
3453
3641
|
"form-control-number",
|
|
3454
|
-
"justifi-
|
|
3642
|
+
"justifi-identity-address-form"
|
|
3455
3643
|
],
|
|
3456
|
-
"justifi-
|
|
3644
|
+
"justifi-identity-address-form": [
|
|
3457
3645
|
"form-control-text",
|
|
3458
|
-
"form-control-select"
|
|
3459
|
-
"form-control-number"
|
|
3646
|
+
"form-control-select"
|
|
3460
3647
|
],
|
|
3461
3648
|
"justifi-business-form": [
|
|
3462
3649
|
"justifi-business-representative"
|
|
@@ -3472,6 +3659,27 @@
|
|
|
3472
3659
|
"docsTags": [],
|
|
3473
3660
|
"usage": {},
|
|
3474
3661
|
"props": [
|
|
3662
|
+
{
|
|
3663
|
+
"name": "allowOptionalFields",
|
|
3664
|
+
"type": "boolean",
|
|
3665
|
+
"complexType": {
|
|
3666
|
+
"original": "boolean",
|
|
3667
|
+
"resolved": "boolean",
|
|
3668
|
+
"references": {}
|
|
3669
|
+
},
|
|
3670
|
+
"mutable": false,
|
|
3671
|
+
"attr": "allow-optional-fields",
|
|
3672
|
+
"reflectToAttr": false,
|
|
3673
|
+
"docs": "",
|
|
3674
|
+
"docsTags": [],
|
|
3675
|
+
"values": [
|
|
3676
|
+
{
|
|
3677
|
+
"type": "boolean"
|
|
3678
|
+
}
|
|
3679
|
+
],
|
|
3680
|
+
"optional": true,
|
|
3681
|
+
"required": false
|
|
3682
|
+
},
|
|
3475
3683
|
{
|
|
3476
3684
|
"name": "authToken",
|
|
3477
3685
|
"type": "string",
|
|
@@ -3610,36 +3818,28 @@
|
|
|
3610
3818
|
"listeners": [],
|
|
3611
3819
|
"styles": [],
|
|
3612
3820
|
"slots": [],
|
|
3613
|
-
"parts": [
|
|
3614
|
-
{
|
|
3615
|
-
"name": "label",
|
|
3616
|
-
"docs": ""
|
|
3617
|
-
}
|
|
3618
|
-
],
|
|
3821
|
+
"parts": [],
|
|
3619
3822
|
"dependents": [
|
|
3620
3823
|
"justifi-payment-provisioning"
|
|
3621
3824
|
],
|
|
3622
3825
|
"dependencies": [
|
|
3623
3826
|
"form-control-text",
|
|
3624
|
-
"form-control-select",
|
|
3625
3827
|
"form-control-number-masked",
|
|
3626
|
-
"form-control-
|
|
3828
|
+
"form-control-date",
|
|
3627
3829
|
"form-control-number",
|
|
3628
|
-
"justifi-
|
|
3830
|
+
"justifi-identity-address-form"
|
|
3629
3831
|
],
|
|
3630
3832
|
"dependencyGraph": {
|
|
3631
3833
|
"justifi-business-representative-form-step": [
|
|
3632
3834
|
"form-control-text",
|
|
3633
|
-
"form-control-select",
|
|
3634
3835
|
"form-control-number-masked",
|
|
3635
|
-
"form-control-
|
|
3836
|
+
"form-control-date",
|
|
3636
3837
|
"form-control-number",
|
|
3637
|
-
"justifi-
|
|
3838
|
+
"justifi-identity-address-form"
|
|
3638
3839
|
],
|
|
3639
|
-
"justifi-
|
|
3840
|
+
"justifi-identity-address-form": [
|
|
3640
3841
|
"form-control-text",
|
|
3641
|
-
"form-control-select"
|
|
3642
|
-
"form-control-number"
|
|
3842
|
+
"form-control-select"
|
|
3643
3843
|
],
|
|
3644
3844
|
"justifi-payment-provisioning": [
|
|
3645
3845
|
"justifi-business-representative-form-step"
|
|
@@ -4037,6 +4237,7 @@
|
|
|
4037
4237
|
],
|
|
4038
4238
|
"justifi-payment-method-options": [
|
|
4039
4239
|
"justifi-new-payment-method",
|
|
4240
|
+
"justifi-sezzel-payment-method",
|
|
4040
4241
|
"justifi-saved-payment-method"
|
|
4041
4242
|
],
|
|
4042
4243
|
"justifi-new-payment-method": [
|
|
@@ -4101,7 +4302,7 @@
|
|
|
4101
4302
|
"required": false
|
|
4102
4303
|
},
|
|
4103
4304
|
{
|
|
4104
|
-
"name": "
|
|
4305
|
+
"name": "complete",
|
|
4105
4306
|
"type": "Function",
|
|
4106
4307
|
"complexType": {
|
|
4107
4308
|
"original": "Function",
|
|
@@ -4126,29 +4327,7 @@
|
|
|
4126
4327
|
"required": false
|
|
4127
4328
|
},
|
|
4128
4329
|
{
|
|
4129
|
-
"name": "
|
|
4130
|
-
"type": "string",
|
|
4131
|
-
"complexType": {
|
|
4132
|
-
"original": "string",
|
|
4133
|
-
"resolved": "string",
|
|
4134
|
-
"references": {}
|
|
4135
|
-
},
|
|
4136
|
-
"mutable": true,
|
|
4137
|
-
"attr": "iframe-origin",
|
|
4138
|
-
"reflectToAttr": false,
|
|
4139
|
-
"docs": "URL for the rendered iFrame. End-users need not use this.",
|
|
4140
|
-
"docsTags": [],
|
|
4141
|
-
"default": "config.iframeOrigin",
|
|
4142
|
-
"values": [
|
|
4143
|
-
{
|
|
4144
|
-
"type": "string"
|
|
4145
|
-
}
|
|
4146
|
-
],
|
|
4147
|
-
"optional": true,
|
|
4148
|
-
"required": false
|
|
4149
|
-
},
|
|
4150
|
-
{
|
|
4151
|
-
"name": "pay",
|
|
4330
|
+
"name": "getCheckout",
|
|
4152
4331
|
"type": "Function",
|
|
4153
4332
|
"complexType": {
|
|
4154
4333
|
"original": "Function",
|
|
@@ -4171,6 +4350,28 @@
|
|
|
4171
4350
|
],
|
|
4172
4351
|
"optional": false,
|
|
4173
4352
|
"required": false
|
|
4353
|
+
},
|
|
4354
|
+
{
|
|
4355
|
+
"name": "iframeOrigin",
|
|
4356
|
+
"type": "string",
|
|
4357
|
+
"complexType": {
|
|
4358
|
+
"original": "string",
|
|
4359
|
+
"resolved": "string",
|
|
4360
|
+
"references": {}
|
|
4361
|
+
},
|
|
4362
|
+
"mutable": true,
|
|
4363
|
+
"attr": "iframe-origin",
|
|
4364
|
+
"reflectToAttr": false,
|
|
4365
|
+
"docs": "URL for the rendered iFrame. End-users need not use this.",
|
|
4366
|
+
"docsTags": [],
|
|
4367
|
+
"default": "config.iframeOrigin",
|
|
4368
|
+
"values": [
|
|
4369
|
+
{
|
|
4370
|
+
"type": "string"
|
|
4371
|
+
}
|
|
4372
|
+
],
|
|
4373
|
+
"optional": true,
|
|
4374
|
+
"required": false
|
|
4174
4375
|
}
|
|
4175
4376
|
],
|
|
4176
4377
|
"methods": [
|
|
@@ -4200,16 +4401,16 @@
|
|
|
4200
4401
|
"events": [
|
|
4201
4402
|
{
|
|
4202
4403
|
"event": "submitted",
|
|
4203
|
-
"detail": "
|
|
4404
|
+
"detail": "IApiResponse<{ payment_mode: \"ecom\" | \"bnpl\"; payment_token: null; payment_status: string; payment_response: null; checkout_id: string; additional_transactions: any[]; checkout: ICheckout; }>",
|
|
4204
4405
|
"bubbles": true,
|
|
4205
4406
|
"complexType": {
|
|
4206
|
-
"original": "
|
|
4207
|
-
"resolved": "
|
|
4407
|
+
"original": "ICheckoutCompleteResponse",
|
|
4408
|
+
"resolved": "IApiResponse<{ payment_mode: \"ecom\" | \"bnpl\"; payment_token: null; payment_status: string; payment_response: null; checkout_id: string; additional_transactions: any[]; checkout: ICheckout; }>",
|
|
4208
4409
|
"references": {
|
|
4209
|
-
"
|
|
4410
|
+
"ICheckoutCompleteResponse": {
|
|
4210
4411
|
"location": "import",
|
|
4211
|
-
"path": "
|
|
4212
|
-
"id": "src/
|
|
4412
|
+
"path": "../../api/Checkout",
|
|
4413
|
+
"id": "src/api/Checkout.ts::ICheckoutCompleteResponse"
|
|
4213
4414
|
}
|
|
4214
4415
|
}
|
|
4215
4416
|
},
|
|
@@ -4222,7 +4423,12 @@
|
|
|
4222
4423
|
"listeners": [],
|
|
4223
4424
|
"styles": [],
|
|
4224
4425
|
"slots": [],
|
|
4225
|
-
"parts": [
|
|
4426
|
+
"parts": [
|
|
4427
|
+
{
|
|
4428
|
+
"name": "pay-button",
|
|
4429
|
+
"docs": ""
|
|
4430
|
+
}
|
|
4431
|
+
],
|
|
4226
4432
|
"dependents": [
|
|
4227
4433
|
"justifi-checkout"
|
|
4228
4434
|
],
|
|
@@ -4235,6 +4441,7 @@
|
|
|
4235
4441
|
],
|
|
4236
4442
|
"justifi-payment-method-options": [
|
|
4237
4443
|
"justifi-new-payment-method",
|
|
4444
|
+
"justifi-sezzel-payment-method",
|
|
4238
4445
|
"justifi-saved-payment-method"
|
|
4239
4446
|
],
|
|
4240
4447
|
"justifi-new-payment-method": [
|
|
@@ -4358,7 +4565,28 @@
|
|
|
4358
4565
|
}
|
|
4359
4566
|
],
|
|
4360
4567
|
"methods": [],
|
|
4361
|
-
"events": [
|
|
4568
|
+
"events": [
|
|
4569
|
+
{
|
|
4570
|
+
"event": "error-event",
|
|
4571
|
+
"detail": "ComponentError",
|
|
4572
|
+
"bubbles": true,
|
|
4573
|
+
"complexType": {
|
|
4574
|
+
"original": "ComponentError",
|
|
4575
|
+
"resolved": "ComponentError",
|
|
4576
|
+
"references": {
|
|
4577
|
+
"ComponentError": {
|
|
4578
|
+
"location": "import",
|
|
4579
|
+
"path": "../../api/ComponentError",
|
|
4580
|
+
"id": "src/api/ComponentError.ts::ComponentError"
|
|
4581
|
+
}
|
|
4582
|
+
}
|
|
4583
|
+
},
|
|
4584
|
+
"cancelable": true,
|
|
4585
|
+
"composed": true,
|
|
4586
|
+
"docs": "",
|
|
4587
|
+
"docsTags": []
|
|
4588
|
+
}
|
|
4589
|
+
],
|
|
4362
4590
|
"listeners": [],
|
|
4363
4591
|
"styles": [],
|
|
4364
4592
|
"slots": [],
|
|
@@ -4373,6 +4601,109 @@
|
|
|
4373
4601
|
]
|
|
4374
4602
|
}
|
|
4375
4603
|
},
|
|
4604
|
+
{
|
|
4605
|
+
"filePath": "src/components/business-forms/owner-form/identity-address/identity-address-form.tsx",
|
|
4606
|
+
"encapsulation": "shadow",
|
|
4607
|
+
"tag": "justifi-identity-address-form",
|
|
4608
|
+
"readme": "# justifi-business-address\n\n\n",
|
|
4609
|
+
"docs": "",
|
|
4610
|
+
"docsTags": [],
|
|
4611
|
+
"usage": {},
|
|
4612
|
+
"props": [
|
|
4613
|
+
{
|
|
4614
|
+
"name": "defaultValues",
|
|
4615
|
+
"type": "any",
|
|
4616
|
+
"complexType": {
|
|
4617
|
+
"original": "any",
|
|
4618
|
+
"resolved": "any",
|
|
4619
|
+
"references": {}
|
|
4620
|
+
},
|
|
4621
|
+
"mutable": false,
|
|
4622
|
+
"attr": "default-values",
|
|
4623
|
+
"reflectToAttr": false,
|
|
4624
|
+
"docs": "",
|
|
4625
|
+
"docsTags": [],
|
|
4626
|
+
"values": [
|
|
4627
|
+
{
|
|
4628
|
+
"type": "any"
|
|
4629
|
+
}
|
|
4630
|
+
],
|
|
4631
|
+
"optional": false,
|
|
4632
|
+
"required": false
|
|
4633
|
+
},
|
|
4634
|
+
{
|
|
4635
|
+
"name": "errors",
|
|
4636
|
+
"type": "any",
|
|
4637
|
+
"complexType": {
|
|
4638
|
+
"original": "any",
|
|
4639
|
+
"resolved": "any",
|
|
4640
|
+
"references": {}
|
|
4641
|
+
},
|
|
4642
|
+
"mutable": false,
|
|
4643
|
+
"attr": "errors",
|
|
4644
|
+
"reflectToAttr": false,
|
|
4645
|
+
"docs": "",
|
|
4646
|
+
"docsTags": [],
|
|
4647
|
+
"values": [
|
|
4648
|
+
{
|
|
4649
|
+
"type": "any"
|
|
4650
|
+
}
|
|
4651
|
+
],
|
|
4652
|
+
"optional": false,
|
|
4653
|
+
"required": false
|
|
4654
|
+
},
|
|
4655
|
+
{
|
|
4656
|
+
"name": "handleFormUpdate",
|
|
4657
|
+
"type": "(values: any) => void",
|
|
4658
|
+
"complexType": {
|
|
4659
|
+
"original": "(values: any) => void",
|
|
4660
|
+
"resolved": "(values: any) => void",
|
|
4661
|
+
"references": {}
|
|
4662
|
+
},
|
|
4663
|
+
"mutable": false,
|
|
4664
|
+
"reflectToAttr": false,
|
|
4665
|
+
"docs": "",
|
|
4666
|
+
"docsTags": [],
|
|
4667
|
+
"values": [
|
|
4668
|
+
{
|
|
4669
|
+
"type": "(values: any) => void"
|
|
4670
|
+
}
|
|
4671
|
+
],
|
|
4672
|
+
"optional": false,
|
|
4673
|
+
"required": false
|
|
4674
|
+
}
|
|
4675
|
+
],
|
|
4676
|
+
"methods": [],
|
|
4677
|
+
"events": [],
|
|
4678
|
+
"listeners": [],
|
|
4679
|
+
"styles": [],
|
|
4680
|
+
"slots": [],
|
|
4681
|
+
"parts": [],
|
|
4682
|
+
"dependents": [
|
|
4683
|
+
"justifi-business-representative",
|
|
4684
|
+
"justifi-business-representative-form-step",
|
|
4685
|
+
"justifi-owner-form"
|
|
4686
|
+
],
|
|
4687
|
+
"dependencies": [
|
|
4688
|
+
"form-control-text",
|
|
4689
|
+
"form-control-select"
|
|
4690
|
+
],
|
|
4691
|
+
"dependencyGraph": {
|
|
4692
|
+
"justifi-identity-address-form": [
|
|
4693
|
+
"form-control-text",
|
|
4694
|
+
"form-control-select"
|
|
4695
|
+
],
|
|
4696
|
+
"justifi-business-representative": [
|
|
4697
|
+
"justifi-identity-address-form"
|
|
4698
|
+
],
|
|
4699
|
+
"justifi-business-representative-form-step": [
|
|
4700
|
+
"justifi-identity-address-form"
|
|
4701
|
+
],
|
|
4702
|
+
"justifi-owner-form": [
|
|
4703
|
+
"justifi-identity-address-form"
|
|
4704
|
+
]
|
|
4705
|
+
}
|
|
4706
|
+
},
|
|
4376
4707
|
{
|
|
4377
4708
|
"filePath": "src/components/business-forms/business-form/legal-address-form/legal-address-form.tsx",
|
|
4378
4709
|
"encapsulation": "none",
|
|
@@ -4433,13 +4764,11 @@
|
|
|
4433
4764
|
],
|
|
4434
4765
|
"dependencies": [
|
|
4435
4766
|
"form-control-text",
|
|
4436
|
-
"form-control-number",
|
|
4437
4767
|
"form-control-select"
|
|
4438
4768
|
],
|
|
4439
4769
|
"dependencyGraph": {
|
|
4440
4770
|
"justifi-legal-address-form": [
|
|
4441
4771
|
"form-control-text",
|
|
4442
|
-
"form-control-number",
|
|
4443
4772
|
"form-control-select"
|
|
4444
4773
|
],
|
|
4445
4774
|
"justifi-business-form": [
|
|
@@ -4469,6 +4798,27 @@
|
|
|
4469
4798
|
],
|
|
4470
4799
|
"usage": {},
|
|
4471
4800
|
"props": [
|
|
4801
|
+
{
|
|
4802
|
+
"name": "allowOptionalFields",
|
|
4803
|
+
"type": "boolean",
|
|
4804
|
+
"complexType": {
|
|
4805
|
+
"original": "boolean",
|
|
4806
|
+
"resolved": "boolean",
|
|
4807
|
+
"references": {}
|
|
4808
|
+
},
|
|
4809
|
+
"mutable": false,
|
|
4810
|
+
"attr": "allow-optional-fields",
|
|
4811
|
+
"reflectToAttr": false,
|
|
4812
|
+
"docs": "",
|
|
4813
|
+
"docsTags": [],
|
|
4814
|
+
"values": [
|
|
4815
|
+
{
|
|
4816
|
+
"type": "boolean"
|
|
4817
|
+
}
|
|
4818
|
+
],
|
|
4819
|
+
"optional": true,
|
|
4820
|
+
"required": false
|
|
4821
|
+
},
|
|
4472
4822
|
{
|
|
4473
4823
|
"name": "authToken",
|
|
4474
4824
|
"type": "string",
|
|
@@ -4613,14 +4963,12 @@
|
|
|
4613
4963
|
],
|
|
4614
4964
|
"dependencies": [
|
|
4615
4965
|
"form-control-text",
|
|
4616
|
-
"form-control-select"
|
|
4617
|
-
"form-control-number"
|
|
4966
|
+
"form-control-select"
|
|
4618
4967
|
],
|
|
4619
4968
|
"dependencyGraph": {
|
|
4620
4969
|
"justifi-legal-address-form-step": [
|
|
4621
4970
|
"form-control-text",
|
|
4622
|
-
"form-control-select"
|
|
4623
|
-
"form-control-number"
|
|
4971
|
+
"form-control-select"
|
|
4624
4972
|
],
|
|
4625
4973
|
"justifi-payment-provisioning": [
|
|
4626
4974
|
"justifi-legal-address-form-step"
|
|
@@ -4750,23 +5098,28 @@
|
|
|
4750
5098
|
],
|
|
4751
5099
|
"methods": [
|
|
4752
5100
|
{
|
|
4753
|
-
"name": "
|
|
5101
|
+
"name": "resolvePaymentMethod",
|
|
4754
5102
|
"returns": {
|
|
4755
|
-
"type": "Promise<
|
|
5103
|
+
"type": "Promise<PaymentMethodPayload>",
|
|
4756
5104
|
"docs": ""
|
|
4757
5105
|
},
|
|
4758
5106
|
"complexType": {
|
|
4759
|
-
"signature": "() => Promise<
|
|
5107
|
+
"signature": "() => Promise<PaymentMethodPayload>",
|
|
4760
5108
|
"parameters": [],
|
|
4761
5109
|
"references": {
|
|
4762
5110
|
"Promise": {
|
|
4763
5111
|
"location": "global",
|
|
4764
5112
|
"id": "global::Promise"
|
|
5113
|
+
},
|
|
5114
|
+
"PaymentMethodPayload": {
|
|
5115
|
+
"location": "import",
|
|
5116
|
+
"path": "./payment-method-payload",
|
|
5117
|
+
"id": "src/components/checkout/payment-method-payload.ts::PaymentMethodPayload"
|
|
4765
5118
|
}
|
|
4766
5119
|
},
|
|
4767
|
-
"return": "Promise<
|
|
5120
|
+
"return": "Promise<PaymentMethodPayload>"
|
|
4768
5121
|
},
|
|
4769
|
-
"signature": "
|
|
5122
|
+
"signature": "resolvePaymentMethod() => Promise<PaymentMethodPayload>",
|
|
4770
5123
|
"parameters": [],
|
|
4771
5124
|
"docs": "",
|
|
4772
5125
|
"docsTags": []
|
|
@@ -4823,24 +5176,45 @@
|
|
|
4823
5176
|
"usage": {},
|
|
4824
5177
|
"props": [
|
|
4825
5178
|
{
|
|
4826
|
-
"name": "
|
|
4827
|
-
"type": "
|
|
5179
|
+
"name": "allowOptionalFields",
|
|
5180
|
+
"type": "boolean",
|
|
4828
5181
|
"complexType": {
|
|
4829
|
-
"original": "
|
|
4830
|
-
"resolved": "
|
|
5182
|
+
"original": "boolean",
|
|
5183
|
+
"resolved": "boolean",
|
|
4831
5184
|
"references": {}
|
|
4832
5185
|
},
|
|
4833
5186
|
"mutable": false,
|
|
4834
|
-
"attr": "
|
|
5187
|
+
"attr": "allow-optional-fields",
|
|
4835
5188
|
"reflectToAttr": false,
|
|
4836
5189
|
"docs": "",
|
|
4837
5190
|
"docsTags": [],
|
|
4838
5191
|
"values": [
|
|
4839
5192
|
{
|
|
4840
|
-
"type": "
|
|
5193
|
+
"type": "boolean"
|
|
4841
5194
|
}
|
|
4842
5195
|
],
|
|
4843
|
-
"optional":
|
|
5196
|
+
"optional": true,
|
|
5197
|
+
"required": false
|
|
5198
|
+
},
|
|
5199
|
+
{
|
|
5200
|
+
"name": "authToken",
|
|
5201
|
+
"type": "string",
|
|
5202
|
+
"complexType": {
|
|
5203
|
+
"original": "string",
|
|
5204
|
+
"resolved": "string",
|
|
5205
|
+
"references": {}
|
|
5206
|
+
},
|
|
5207
|
+
"mutable": false,
|
|
5208
|
+
"attr": "auth-token",
|
|
5209
|
+
"reflectToAttr": false,
|
|
5210
|
+
"docs": "",
|
|
5211
|
+
"docsTags": [],
|
|
5212
|
+
"values": [
|
|
5213
|
+
{
|
|
5214
|
+
"type": "string"
|
|
5215
|
+
}
|
|
5216
|
+
],
|
|
5217
|
+
"optional": false,
|
|
4844
5218
|
"required": false
|
|
4845
5219
|
},
|
|
4846
5220
|
{
|
|
@@ -4995,6 +5369,26 @@
|
|
|
4995
5369
|
}
|
|
4996
5370
|
],
|
|
4997
5371
|
"events": [
|
|
5372
|
+
{
|
|
5373
|
+
"event": "click-event",
|
|
5374
|
+
"detail": "OwnerFormClickEvent",
|
|
5375
|
+
"bubbles": true,
|
|
5376
|
+
"complexType": {
|
|
5377
|
+
"original": "OwnerFormClickEvent",
|
|
5378
|
+
"resolved": "OwnerFormClickEvent",
|
|
5379
|
+
"references": {
|
|
5380
|
+
"OwnerFormClickEvent": {
|
|
5381
|
+
"location": "import",
|
|
5382
|
+
"path": "../utils/business-form-types",
|
|
5383
|
+
"id": "src/components/business-forms/utils/business-form-types.ts::OwnerFormClickEvent"
|
|
5384
|
+
}
|
|
5385
|
+
}
|
|
5386
|
+
},
|
|
5387
|
+
"cancelable": true,
|
|
5388
|
+
"composed": true,
|
|
5389
|
+
"docs": "",
|
|
5390
|
+
"docsTags": []
|
|
5391
|
+
},
|
|
4998
5392
|
{
|
|
4999
5393
|
"event": "formLoading",
|
|
5000
5394
|
"detail": "boolean",
|
|
@@ -5053,36 +5447,28 @@
|
|
|
5053
5447
|
"listeners": [],
|
|
5054
5448
|
"styles": [],
|
|
5055
5449
|
"slots": [],
|
|
5056
|
-
"parts": [
|
|
5057
|
-
{
|
|
5058
|
-
"name": "label",
|
|
5059
|
-
"docs": ""
|
|
5060
|
-
}
|
|
5061
|
-
],
|
|
5450
|
+
"parts": [],
|
|
5062
5451
|
"dependents": [
|
|
5063
5452
|
"justifi-business-owners-form-step"
|
|
5064
5453
|
],
|
|
5065
5454
|
"dependencies": [
|
|
5066
5455
|
"form-control-text",
|
|
5067
|
-
"form-control-select",
|
|
5068
5456
|
"form-control-number-masked",
|
|
5069
|
-
"form-control-
|
|
5457
|
+
"form-control-date",
|
|
5070
5458
|
"form-control-number",
|
|
5071
|
-
"justifi-
|
|
5459
|
+
"justifi-identity-address-form"
|
|
5072
5460
|
],
|
|
5073
5461
|
"dependencyGraph": {
|
|
5074
5462
|
"justifi-owner-form": [
|
|
5075
5463
|
"form-control-text",
|
|
5076
|
-
"form-control-select",
|
|
5077
5464
|
"form-control-number-masked",
|
|
5078
|
-
"form-control-
|
|
5465
|
+
"form-control-date",
|
|
5079
5466
|
"form-control-number",
|
|
5080
|
-
"justifi-
|
|
5467
|
+
"justifi-identity-address-form"
|
|
5081
5468
|
],
|
|
5082
|
-
"justifi-
|
|
5469
|
+
"justifi-identity-address-form": [
|
|
5083
5470
|
"form-control-text",
|
|
5084
|
-
"form-control-select"
|
|
5085
|
-
"form-control-number"
|
|
5471
|
+
"form-control-select"
|
|
5086
5472
|
],
|
|
5087
5473
|
"justifi-business-owners-form-step": [
|
|
5088
5474
|
"justifi-owner-form"
|
|
@@ -5319,7 +5705,28 @@
|
|
|
5319
5705
|
}
|
|
5320
5706
|
],
|
|
5321
5707
|
"methods": [],
|
|
5322
|
-
"events": [
|
|
5708
|
+
"events": [
|
|
5709
|
+
{
|
|
5710
|
+
"event": "error-event",
|
|
5711
|
+
"detail": "ComponentError",
|
|
5712
|
+
"bubbles": true,
|
|
5713
|
+
"complexType": {
|
|
5714
|
+
"original": "ComponentError",
|
|
5715
|
+
"resolved": "ComponentError",
|
|
5716
|
+
"references": {
|
|
5717
|
+
"ComponentError": {
|
|
5718
|
+
"location": "import",
|
|
5719
|
+
"path": "../../api/ComponentError",
|
|
5720
|
+
"id": "src/api/ComponentError.ts::ComponentError"
|
|
5721
|
+
}
|
|
5722
|
+
}
|
|
5723
|
+
},
|
|
5724
|
+
"cancelable": true,
|
|
5725
|
+
"composed": true,
|
|
5726
|
+
"docs": "",
|
|
5727
|
+
"docsTags": []
|
|
5728
|
+
}
|
|
5729
|
+
],
|
|
5323
5730
|
"listeners": [],
|
|
5324
5731
|
"styles": [],
|
|
5325
5732
|
"slots": [],
|
|
@@ -5475,6 +5882,28 @@
|
|
|
5475
5882
|
}
|
|
5476
5883
|
],
|
|
5477
5884
|
"methods": [
|
|
5885
|
+
{
|
|
5886
|
+
"name": "disableSubmitButton",
|
|
5887
|
+
"returns": {
|
|
5888
|
+
"type": "Promise<void>",
|
|
5889
|
+
"docs": ""
|
|
5890
|
+
},
|
|
5891
|
+
"complexType": {
|
|
5892
|
+
"signature": "() => Promise<void>",
|
|
5893
|
+
"parameters": [],
|
|
5894
|
+
"references": {
|
|
5895
|
+
"Promise": {
|
|
5896
|
+
"location": "global",
|
|
5897
|
+
"id": "global::Promise"
|
|
5898
|
+
}
|
|
5899
|
+
},
|
|
5900
|
+
"return": "Promise<void>"
|
|
5901
|
+
},
|
|
5902
|
+
"signature": "disableSubmitButton() => Promise<void>",
|
|
5903
|
+
"parameters": [],
|
|
5904
|
+
"docs": "",
|
|
5905
|
+
"docsTags": []
|
|
5906
|
+
},
|
|
5478
5907
|
{
|
|
5479
5908
|
"name": "enableSubmitButton",
|
|
5480
5909
|
"returns": {
|
|
@@ -5538,6 +5967,26 @@
|
|
|
5538
5967
|
}
|
|
5539
5968
|
],
|
|
5540
5969
|
"events": [
|
|
5970
|
+
{
|
|
5971
|
+
"event": "error-event",
|
|
5972
|
+
"detail": "ComponentError",
|
|
5973
|
+
"bubbles": true,
|
|
5974
|
+
"complexType": {
|
|
5975
|
+
"original": "ComponentError",
|
|
5976
|
+
"resolved": "ComponentError",
|
|
5977
|
+
"references": {
|
|
5978
|
+
"ComponentError": {
|
|
5979
|
+
"location": "import",
|
|
5980
|
+
"path": "../../api/ComponentError",
|
|
5981
|
+
"id": "src/api/ComponentError.ts::ComponentError"
|
|
5982
|
+
}
|
|
5983
|
+
}
|
|
5984
|
+
},
|
|
5985
|
+
"cancelable": true,
|
|
5986
|
+
"composed": true,
|
|
5987
|
+
"docs": "",
|
|
5988
|
+
"docsTags": []
|
|
5989
|
+
},
|
|
5541
5990
|
{
|
|
5542
5991
|
"event": "submitted",
|
|
5543
5992
|
"detail": "BankAccountCreateResponse | CardCreateResponse",
|
|
@@ -5613,10 +6062,10 @@
|
|
|
5613
6062
|
},
|
|
5614
6063
|
{
|
|
5615
6064
|
"name": "paymentMethodFormType",
|
|
5616
|
-
"type": "PaymentMethodTypes.bankAccount | PaymentMethodTypes.card",
|
|
6065
|
+
"type": "PaymentMethodTypes.bankAccount | PaymentMethodTypes.card | PaymentMethodTypes.sezzel",
|
|
5617
6066
|
"complexType": {
|
|
5618
6067
|
"original": "PaymentMethodTypes",
|
|
5619
|
-
"resolved": "PaymentMethodTypes.bankAccount | PaymentMethodTypes.card",
|
|
6068
|
+
"resolved": "PaymentMethodTypes.bankAccount | PaymentMethodTypes.card | PaymentMethodTypes.sezzel",
|
|
5620
6069
|
"references": {
|
|
5621
6070
|
"PaymentMethodTypes": {
|
|
5622
6071
|
"location": "import",
|
|
@@ -5636,6 +6085,9 @@
|
|
|
5636
6085
|
},
|
|
5637
6086
|
{
|
|
5638
6087
|
"type": "PaymentMethodTypes.card"
|
|
6088
|
+
},
|
|
6089
|
+
{
|
|
6090
|
+
"type": "PaymentMethodTypes.sezzel"
|
|
5639
6091
|
}
|
|
5640
6092
|
],
|
|
5641
6093
|
"optional": false,
|
|
@@ -5912,6 +6364,32 @@
|
|
|
5912
6364
|
"optional": false,
|
|
5913
6365
|
"required": false
|
|
5914
6366
|
},
|
|
6367
|
+
{
|
|
6368
|
+
"name": "bnpl",
|
|
6369
|
+
"type": "IBnpl",
|
|
6370
|
+
"complexType": {
|
|
6371
|
+
"original": "IBnpl",
|
|
6372
|
+
"resolved": "IBnpl",
|
|
6373
|
+
"references": {
|
|
6374
|
+
"IBnpl": {
|
|
6375
|
+
"location": "import",
|
|
6376
|
+
"path": "../../api",
|
|
6377
|
+
"id": "src/api/index.ts::IBnpl"
|
|
6378
|
+
}
|
|
6379
|
+
}
|
|
6380
|
+
},
|
|
6381
|
+
"mutable": false,
|
|
6382
|
+
"reflectToAttr": false,
|
|
6383
|
+
"docs": "",
|
|
6384
|
+
"docsTags": [],
|
|
6385
|
+
"values": [
|
|
6386
|
+
{
|
|
6387
|
+
"type": "IBnpl"
|
|
6388
|
+
}
|
|
6389
|
+
],
|
|
6390
|
+
"optional": false,
|
|
6391
|
+
"required": false
|
|
6392
|
+
},
|
|
5915
6393
|
{
|
|
5916
6394
|
"name": "clientId",
|
|
5917
6395
|
"type": "string",
|
|
@@ -5955,6 +6433,27 @@
|
|
|
5955
6433
|
"optional": true,
|
|
5956
6434
|
"required": false
|
|
5957
6435
|
},
|
|
6436
|
+
{
|
|
6437
|
+
"name": "paymentAmount",
|
|
6438
|
+
"type": "string",
|
|
6439
|
+
"complexType": {
|
|
6440
|
+
"original": "string",
|
|
6441
|
+
"resolved": "string",
|
|
6442
|
+
"references": {}
|
|
6443
|
+
},
|
|
6444
|
+
"mutable": false,
|
|
6445
|
+
"attr": "payment-amount",
|
|
6446
|
+
"reflectToAttr": false,
|
|
6447
|
+
"docs": "",
|
|
6448
|
+
"docsTags": [],
|
|
6449
|
+
"values": [
|
|
6450
|
+
{
|
|
6451
|
+
"type": "string"
|
|
6452
|
+
}
|
|
6453
|
+
],
|
|
6454
|
+
"optional": false,
|
|
6455
|
+
"required": false
|
|
6456
|
+
},
|
|
5958
6457
|
{
|
|
5959
6458
|
"name": "savedPaymentMethods",
|
|
5960
6459
|
"type": "any[]",
|
|
@@ -6042,23 +6541,28 @@
|
|
|
6042
6541
|
],
|
|
6043
6542
|
"methods": [
|
|
6044
6543
|
{
|
|
6045
|
-
"name": "
|
|
6544
|
+
"name": "resolvePaymentMethod",
|
|
6046
6545
|
"returns": {
|
|
6047
|
-
"type": "Promise<
|
|
6546
|
+
"type": "Promise<PaymentMethodPayload>",
|
|
6048
6547
|
"docs": ""
|
|
6049
6548
|
},
|
|
6050
6549
|
"complexType": {
|
|
6051
|
-
"signature": "() => Promise<
|
|
6550
|
+
"signature": "() => Promise<PaymentMethodPayload>",
|
|
6052
6551
|
"parameters": [],
|
|
6053
6552
|
"references": {
|
|
6054
6553
|
"Promise": {
|
|
6055
6554
|
"location": "global",
|
|
6056
6555
|
"id": "global::Promise"
|
|
6556
|
+
},
|
|
6557
|
+
"PaymentMethodPayload": {
|
|
6558
|
+
"location": "import",
|
|
6559
|
+
"path": "./payment-method-payload",
|
|
6560
|
+
"id": "src/components/checkout/payment-method-payload.ts::PaymentMethodPayload"
|
|
6057
6561
|
}
|
|
6058
6562
|
},
|
|
6059
|
-
"return": "Promise<
|
|
6563
|
+
"return": "Promise<PaymentMethodPayload>"
|
|
6060
6564
|
},
|
|
6061
|
-
"signature": "
|
|
6565
|
+
"signature": "resolvePaymentMethod() => Promise<PaymentMethodPayload>",
|
|
6062
6566
|
"parameters": [],
|
|
6063
6567
|
"docs": "",
|
|
6064
6568
|
"docsTags": []
|
|
@@ -6095,11 +6599,13 @@
|
|
|
6095
6599
|
],
|
|
6096
6600
|
"dependencies": [
|
|
6097
6601
|
"justifi-new-payment-method",
|
|
6602
|
+
"justifi-sezzel-payment-method",
|
|
6098
6603
|
"justifi-saved-payment-method"
|
|
6099
6604
|
],
|
|
6100
6605
|
"dependencyGraph": {
|
|
6101
6606
|
"justifi-payment-method-options": [
|
|
6102
6607
|
"justifi-new-payment-method",
|
|
6608
|
+
"justifi-sezzel-payment-method",
|
|
6103
6609
|
"justifi-saved-payment-method"
|
|
6104
6610
|
],
|
|
6105
6611
|
"justifi-new-payment-method": [
|
|
@@ -6126,10 +6632,10 @@
|
|
|
6126
6632
|
"props": [
|
|
6127
6633
|
{
|
|
6128
6634
|
"name": "selectedPaymentMethodType",
|
|
6129
|
-
"type": "PaymentMethodTypes.bankAccount | PaymentMethodTypes.card",
|
|
6635
|
+
"type": "PaymentMethodTypes.bankAccount | PaymentMethodTypes.card | PaymentMethodTypes.sezzel",
|
|
6130
6636
|
"complexType": {
|
|
6131
6637
|
"original": "PaymentMethodTypes",
|
|
6132
|
-
"resolved": "PaymentMethodTypes.bankAccount | PaymentMethodTypes.card",
|
|
6638
|
+
"resolved": "PaymentMethodTypes.bankAccount | PaymentMethodTypes.card | PaymentMethodTypes.sezzel",
|
|
6133
6639
|
"references": {
|
|
6134
6640
|
"PaymentMethodTypes": {
|
|
6135
6641
|
"location": "import",
|
|
@@ -6149,6 +6655,9 @@
|
|
|
6149
6655
|
},
|
|
6150
6656
|
{
|
|
6151
6657
|
"type": "PaymentMethodTypes.card"
|
|
6658
|
+
},
|
|
6659
|
+
{
|
|
6660
|
+
"type": "PaymentMethodTypes.sezzel"
|
|
6152
6661
|
}
|
|
6153
6662
|
],
|
|
6154
6663
|
"optional": false,
|
|
@@ -6208,6 +6717,28 @@
|
|
|
6208
6717
|
],
|
|
6209
6718
|
"usage": {},
|
|
6210
6719
|
"props": [
|
|
6720
|
+
{
|
|
6721
|
+
"name": "allowOptionalFields",
|
|
6722
|
+
"type": "boolean",
|
|
6723
|
+
"complexType": {
|
|
6724
|
+
"original": "boolean",
|
|
6725
|
+
"resolved": "boolean",
|
|
6726
|
+
"references": {}
|
|
6727
|
+
},
|
|
6728
|
+
"mutable": false,
|
|
6729
|
+
"attr": "allow-optional-fields",
|
|
6730
|
+
"reflectToAttr": false,
|
|
6731
|
+
"docs": "",
|
|
6732
|
+
"docsTags": [],
|
|
6733
|
+
"default": "false",
|
|
6734
|
+
"values": [
|
|
6735
|
+
{
|
|
6736
|
+
"type": "boolean"
|
|
6737
|
+
}
|
|
6738
|
+
],
|
|
6739
|
+
"optional": true,
|
|
6740
|
+
"required": false
|
|
6741
|
+
},
|
|
6211
6742
|
{
|
|
6212
6743
|
"name": "authToken",
|
|
6213
6744
|
"type": "string",
|
|
@@ -6250,6 +6781,28 @@
|
|
|
6250
6781
|
"optional": false,
|
|
6251
6782
|
"required": false
|
|
6252
6783
|
},
|
|
6784
|
+
{
|
|
6785
|
+
"name": "formTitle",
|
|
6786
|
+
"type": "string",
|
|
6787
|
+
"complexType": {
|
|
6788
|
+
"original": "string",
|
|
6789
|
+
"resolved": "string",
|
|
6790
|
+
"references": {}
|
|
6791
|
+
},
|
|
6792
|
+
"mutable": false,
|
|
6793
|
+
"attr": "form-title",
|
|
6794
|
+
"reflectToAttr": false,
|
|
6795
|
+
"docs": "",
|
|
6796
|
+
"docsTags": [],
|
|
6797
|
+
"default": "'Business Information'",
|
|
6798
|
+
"values": [
|
|
6799
|
+
{
|
|
6800
|
+
"type": "string"
|
|
6801
|
+
}
|
|
6802
|
+
],
|
|
6803
|
+
"optional": true,
|
|
6804
|
+
"required": false
|
|
6805
|
+
},
|
|
6253
6806
|
{
|
|
6254
6807
|
"name": "hideErrors",
|
|
6255
6808
|
"type": "boolean",
|
|
@@ -6272,6 +6825,28 @@
|
|
|
6272
6825
|
"optional": true,
|
|
6273
6826
|
"required": false
|
|
6274
6827
|
},
|
|
6828
|
+
{
|
|
6829
|
+
"name": "removeTitle",
|
|
6830
|
+
"type": "boolean",
|
|
6831
|
+
"complexType": {
|
|
6832
|
+
"original": "boolean",
|
|
6833
|
+
"resolved": "boolean",
|
|
6834
|
+
"references": {}
|
|
6835
|
+
},
|
|
6836
|
+
"mutable": false,
|
|
6837
|
+
"attr": "remove-title",
|
|
6838
|
+
"reflectToAttr": false,
|
|
6839
|
+
"docs": "",
|
|
6840
|
+
"docsTags": [],
|
|
6841
|
+
"default": "false",
|
|
6842
|
+
"values": [
|
|
6843
|
+
{
|
|
6844
|
+
"type": "boolean"
|
|
6845
|
+
}
|
|
6846
|
+
],
|
|
6847
|
+
"optional": true,
|
|
6848
|
+
"required": false
|
|
6849
|
+
},
|
|
6275
6850
|
{
|
|
6276
6851
|
"name": "testMode",
|
|
6277
6852
|
"type": "boolean",
|
|
@@ -6298,7 +6873,7 @@
|
|
|
6298
6873
|
"methods": [],
|
|
6299
6874
|
"events": [
|
|
6300
6875
|
{
|
|
6301
|
-
"event": "
|
|
6876
|
+
"event": "click-event",
|
|
6302
6877
|
"detail": "BusinessFormClickEvent",
|
|
6303
6878
|
"bubbles": true,
|
|
6304
6879
|
"complexType": {
|
|
@@ -6345,35 +6920,31 @@
|
|
|
6345
6920
|
],
|
|
6346
6921
|
"justifi-legal-address-form-step": [
|
|
6347
6922
|
"form-control-text",
|
|
6348
|
-
"form-control-select"
|
|
6349
|
-
"form-control-number"
|
|
6923
|
+
"form-control-select"
|
|
6350
6924
|
],
|
|
6351
6925
|
"justifi-additional-questions-form-step": [
|
|
6352
6926
|
"form-control-monetary"
|
|
6353
6927
|
],
|
|
6354
6928
|
"justifi-business-representative-form-step": [
|
|
6355
6929
|
"form-control-text",
|
|
6356
|
-
"form-control-select",
|
|
6357
6930
|
"form-control-number-masked",
|
|
6358
|
-
"form-control-
|
|
6931
|
+
"form-control-date",
|
|
6359
6932
|
"form-control-number",
|
|
6360
|
-
"justifi-
|
|
6933
|
+
"justifi-identity-address-form"
|
|
6361
6934
|
],
|
|
6362
|
-
"justifi-
|
|
6935
|
+
"justifi-identity-address-form": [
|
|
6363
6936
|
"form-control-text",
|
|
6364
|
-
"form-control-select"
|
|
6365
|
-
"form-control-number"
|
|
6937
|
+
"form-control-select"
|
|
6366
6938
|
],
|
|
6367
6939
|
"justifi-business-owners-form-step": [
|
|
6368
6940
|
"justifi-owner-form"
|
|
6369
6941
|
],
|
|
6370
6942
|
"justifi-owner-form": [
|
|
6371
6943
|
"form-control-text",
|
|
6372
|
-
"form-control-select",
|
|
6373
6944
|
"form-control-number-masked",
|
|
6374
|
-
"form-control-
|
|
6945
|
+
"form-control-date",
|
|
6375
6946
|
"form-control-number",
|
|
6376
|
-
"justifi-
|
|
6947
|
+
"justifi-identity-address-form"
|
|
6377
6948
|
]
|
|
6378
6949
|
}
|
|
6379
6950
|
},
|
|
@@ -6499,7 +7070,28 @@
|
|
|
6499
7070
|
}
|
|
6500
7071
|
],
|
|
6501
7072
|
"methods": [],
|
|
6502
|
-
"events": [
|
|
7073
|
+
"events": [
|
|
7074
|
+
{
|
|
7075
|
+
"event": "error-event",
|
|
7076
|
+
"detail": "ComponentError",
|
|
7077
|
+
"bubbles": true,
|
|
7078
|
+
"complexType": {
|
|
7079
|
+
"original": "ComponentError",
|
|
7080
|
+
"resolved": "ComponentError",
|
|
7081
|
+
"references": {
|
|
7082
|
+
"ComponentError": {
|
|
7083
|
+
"location": "import",
|
|
7084
|
+
"path": "../../api/ComponentError",
|
|
7085
|
+
"id": "src/api/ComponentError.ts::ComponentError"
|
|
7086
|
+
}
|
|
7087
|
+
}
|
|
7088
|
+
},
|
|
7089
|
+
"cancelable": true,
|
|
7090
|
+
"composed": true,
|
|
7091
|
+
"docs": "",
|
|
7092
|
+
"docsTags": []
|
|
7093
|
+
}
|
|
7094
|
+
],
|
|
6503
7095
|
"listeners": [],
|
|
6504
7096
|
"styles": [],
|
|
6505
7097
|
"slots": [],
|
|
@@ -6573,7 +7165,28 @@
|
|
|
6573
7165
|
}
|
|
6574
7166
|
],
|
|
6575
7167
|
"methods": [],
|
|
6576
|
-
"events": [
|
|
7168
|
+
"events": [
|
|
7169
|
+
{
|
|
7170
|
+
"event": "error-event",
|
|
7171
|
+
"detail": "ComponentError",
|
|
7172
|
+
"bubbles": true,
|
|
7173
|
+
"complexType": {
|
|
7174
|
+
"original": "ComponentError",
|
|
7175
|
+
"resolved": "ComponentError",
|
|
7176
|
+
"references": {
|
|
7177
|
+
"ComponentError": {
|
|
7178
|
+
"location": "import",
|
|
7179
|
+
"path": "../../api/ComponentError",
|
|
7180
|
+
"id": "src/api/ComponentError.ts::ComponentError"
|
|
7181
|
+
}
|
|
7182
|
+
}
|
|
7183
|
+
},
|
|
7184
|
+
"cancelable": true,
|
|
7185
|
+
"composed": true,
|
|
7186
|
+
"docs": "",
|
|
7187
|
+
"docsTags": []
|
|
7188
|
+
}
|
|
7189
|
+
],
|
|
6577
7190
|
"listeners": [],
|
|
6578
7191
|
"styles": [],
|
|
6579
7192
|
"slots": [],
|
|
@@ -6713,17 +7326,38 @@
|
|
|
6713
7326
|
}
|
|
6714
7327
|
],
|
|
6715
7328
|
"methods": [],
|
|
6716
|
-
"events": [
|
|
6717
|
-
|
|
6718
|
-
|
|
6719
|
-
|
|
6720
|
-
|
|
6721
|
-
|
|
6722
|
-
|
|
6723
|
-
|
|
6724
|
-
|
|
6725
|
-
|
|
6726
|
-
|
|
7329
|
+
"events": [
|
|
7330
|
+
{
|
|
7331
|
+
"event": "error-event",
|
|
7332
|
+
"detail": "ComponentError",
|
|
7333
|
+
"bubbles": true,
|
|
7334
|
+
"complexType": {
|
|
7335
|
+
"original": "ComponentError",
|
|
7336
|
+
"resolved": "ComponentError",
|
|
7337
|
+
"references": {
|
|
7338
|
+
"ComponentError": {
|
|
7339
|
+
"location": "import",
|
|
7340
|
+
"path": "../../api/ComponentError",
|
|
7341
|
+
"id": "src/api/ComponentError.ts::ComponentError"
|
|
7342
|
+
}
|
|
7343
|
+
}
|
|
7344
|
+
},
|
|
7345
|
+
"cancelable": true,
|
|
7346
|
+
"composed": true,
|
|
7347
|
+
"docs": "",
|
|
7348
|
+
"docsTags": []
|
|
7349
|
+
}
|
|
7350
|
+
],
|
|
7351
|
+
"listeners": [],
|
|
7352
|
+
"styles": [],
|
|
7353
|
+
"slots": [],
|
|
7354
|
+
"parts": [],
|
|
7355
|
+
"dependents": [],
|
|
7356
|
+
"dependencies": [
|
|
7357
|
+
"payouts-list-core"
|
|
7358
|
+
],
|
|
7359
|
+
"dependencyGraph": {
|
|
7360
|
+
"justifi-payouts-list": [
|
|
6727
7361
|
"payouts-list-core"
|
|
6728
7362
|
],
|
|
6729
7363
|
"payouts-list-core": [
|
|
@@ -6882,52 +7516,345 @@
|
|
|
6882
7516
|
"styles": [],
|
|
6883
7517
|
"slots": [],
|
|
6884
7518
|
"parts": [],
|
|
6885
|
-
"dependents": [],
|
|
6886
|
-
"dependencies": [
|
|
6887
|
-
"justifi-table"
|
|
7519
|
+
"dependents": [],
|
|
7520
|
+
"dependencies": [
|
|
7521
|
+
"justifi-table"
|
|
7522
|
+
],
|
|
7523
|
+
"dependencyGraph": {
|
|
7524
|
+
"justifi-proceeds-list": [
|
|
7525
|
+
"justifi-table"
|
|
7526
|
+
],
|
|
7527
|
+
"justifi-table": [
|
|
7528
|
+
"pagination-menu"
|
|
7529
|
+
]
|
|
7530
|
+
}
|
|
7531
|
+
},
|
|
7532
|
+
{
|
|
7533
|
+
"filePath": "src/components/refund-form/refund-form.tsx",
|
|
7534
|
+
"encapsulation": "shadow",
|
|
7535
|
+
"tag": "justifi-refund-form",
|
|
7536
|
+
"readme": "# justifi-refund-form\n\n\n",
|
|
7537
|
+
"docs": "",
|
|
7538
|
+
"docsTags": [],
|
|
7539
|
+
"usage": {},
|
|
7540
|
+
"props": [
|
|
7541
|
+
{
|
|
7542
|
+
"name": "amount",
|
|
7543
|
+
"type": "number",
|
|
7544
|
+
"complexType": {
|
|
7545
|
+
"original": "number",
|
|
7546
|
+
"resolved": "number",
|
|
7547
|
+
"references": {}
|
|
7548
|
+
},
|
|
7549
|
+
"mutable": false,
|
|
7550
|
+
"attr": "amount",
|
|
7551
|
+
"reflectToAttr": false,
|
|
7552
|
+
"docs": "The amount of the payment to be refunded.",
|
|
7553
|
+
"docsTags": [],
|
|
7554
|
+
"default": "0",
|
|
7555
|
+
"values": [
|
|
7556
|
+
{
|
|
7557
|
+
"type": "number"
|
|
7558
|
+
}
|
|
7559
|
+
],
|
|
7560
|
+
"optional": true,
|
|
7561
|
+
"required": false
|
|
7562
|
+
},
|
|
7563
|
+
{
|
|
7564
|
+
"name": "authToken",
|
|
7565
|
+
"type": "string",
|
|
7566
|
+
"complexType": {
|
|
7567
|
+
"original": "string",
|
|
7568
|
+
"resolved": "string",
|
|
7569
|
+
"references": {}
|
|
7570
|
+
},
|
|
7571
|
+
"mutable": false,
|
|
7572
|
+
"attr": "auth-token",
|
|
7573
|
+
"reflectToAttr": false,
|
|
7574
|
+
"docs": "Authentication token required to authorize the refund transaction.",
|
|
7575
|
+
"docsTags": [],
|
|
7576
|
+
"values": [
|
|
7577
|
+
{
|
|
7578
|
+
"type": "string"
|
|
7579
|
+
}
|
|
7580
|
+
],
|
|
7581
|
+
"optional": false,
|
|
7582
|
+
"required": false
|
|
7583
|
+
},
|
|
7584
|
+
{
|
|
7585
|
+
"name": "paymentId",
|
|
7586
|
+
"type": "string",
|
|
7587
|
+
"complexType": {
|
|
7588
|
+
"original": "string",
|
|
7589
|
+
"resolved": "string",
|
|
7590
|
+
"references": {}
|
|
7591
|
+
},
|
|
7592
|
+
"mutable": false,
|
|
7593
|
+
"attr": "payment-id",
|
|
7594
|
+
"reflectToAttr": false,
|
|
7595
|
+
"docs": "The unique identifier for the payment to be refunded.",
|
|
7596
|
+
"docsTags": [],
|
|
7597
|
+
"values": [
|
|
7598
|
+
{
|
|
7599
|
+
"type": "string"
|
|
7600
|
+
}
|
|
7601
|
+
],
|
|
7602
|
+
"optional": false,
|
|
7603
|
+
"required": false
|
|
7604
|
+
},
|
|
7605
|
+
{
|
|
7606
|
+
"name": "refundInfoText",
|
|
7607
|
+
"type": "string",
|
|
7608
|
+
"complexType": {
|
|
7609
|
+
"original": "string",
|
|
7610
|
+
"resolved": "string",
|
|
7611
|
+
"references": {}
|
|
7612
|
+
},
|
|
7613
|
+
"mutable": false,
|
|
7614
|
+
"attr": "refund-info-text",
|
|
7615
|
+
"reflectToAttr": false,
|
|
7616
|
+
"docs": "Optional information text displayed above the form.",
|
|
7617
|
+
"docsTags": [],
|
|
7618
|
+
"values": [
|
|
7619
|
+
{
|
|
7620
|
+
"type": "string"
|
|
7621
|
+
}
|
|
7622
|
+
],
|
|
7623
|
+
"optional": true,
|
|
7624
|
+
"required": false
|
|
7625
|
+
},
|
|
7626
|
+
{
|
|
7627
|
+
"name": "submitButtonText",
|
|
7628
|
+
"type": "string",
|
|
7629
|
+
"complexType": {
|
|
7630
|
+
"original": "string",
|
|
7631
|
+
"resolved": "string",
|
|
7632
|
+
"references": {}
|
|
7633
|
+
},
|
|
7634
|
+
"mutable": false,
|
|
7635
|
+
"attr": "submit-button-text",
|
|
7636
|
+
"reflectToAttr": false,
|
|
7637
|
+
"docs": "Custom text for the submit button. Defaults to 'Submit'.",
|
|
7638
|
+
"docsTags": [],
|
|
7639
|
+
"default": "'Submit'",
|
|
7640
|
+
"values": [
|
|
7641
|
+
{
|
|
7642
|
+
"type": "string"
|
|
7643
|
+
}
|
|
7644
|
+
],
|
|
7645
|
+
"optional": true,
|
|
7646
|
+
"required": false
|
|
7647
|
+
},
|
|
7648
|
+
{
|
|
7649
|
+
"name": "withButton",
|
|
7650
|
+
"type": "boolean",
|
|
7651
|
+
"complexType": {
|
|
7652
|
+
"original": "boolean",
|
|
7653
|
+
"resolved": "boolean",
|
|
7654
|
+
"references": {}
|
|
7655
|
+
},
|
|
7656
|
+
"mutable": false,
|
|
7657
|
+
"attr": "with-button",
|
|
7658
|
+
"reflectToAttr": false,
|
|
7659
|
+
"docs": "Flag to control the visibility of the submit button.",
|
|
7660
|
+
"docsTags": [],
|
|
7661
|
+
"values": [
|
|
7662
|
+
{
|
|
7663
|
+
"type": "boolean"
|
|
7664
|
+
}
|
|
7665
|
+
],
|
|
7666
|
+
"optional": true,
|
|
7667
|
+
"required": false
|
|
7668
|
+
}
|
|
7669
|
+
],
|
|
7670
|
+
"methods": [],
|
|
7671
|
+
"events": [
|
|
7672
|
+
{
|
|
7673
|
+
"event": "submitted",
|
|
7674
|
+
"detail": "RefundFormFields",
|
|
7675
|
+
"bubbles": true,
|
|
7676
|
+
"complexType": {
|
|
7677
|
+
"original": "RefundFormFields",
|
|
7678
|
+
"resolved": "RefundFormFields",
|
|
7679
|
+
"references": {
|
|
7680
|
+
"RefundFormFields": {
|
|
7681
|
+
"location": "import",
|
|
7682
|
+
"path": "./refund-form-schema",
|
|
7683
|
+
"id": "src/components/refund-form/refund-form-schema.ts::RefundFormFields"
|
|
7684
|
+
}
|
|
7685
|
+
}
|
|
7686
|
+
},
|
|
7687
|
+
"cancelable": true,
|
|
7688
|
+
"composed": true,
|
|
7689
|
+
"docs": "Event emitted when the refund form is successfully submitted.\nThe submitted refund fields are passed as the event detail.",
|
|
7690
|
+
"docsTags": []
|
|
7691
|
+
}
|
|
7692
|
+
],
|
|
7693
|
+
"listeners": [],
|
|
7694
|
+
"styles": [],
|
|
7695
|
+
"slots": [],
|
|
7696
|
+
"parts": [],
|
|
7697
|
+
"dependents": [],
|
|
7698
|
+
"dependencies": [
|
|
7699
|
+
"form-control-monetary",
|
|
7700
|
+
"form-control-text"
|
|
7701
|
+
],
|
|
7702
|
+
"dependencyGraph": {
|
|
7703
|
+
"justifi-refund-form": [
|
|
7704
|
+
"form-control-monetary",
|
|
7705
|
+
"form-control-text"
|
|
7706
|
+
]
|
|
7707
|
+
}
|
|
7708
|
+
},
|
|
7709
|
+
{
|
|
7710
|
+
"filePath": "src/components/checkout/saved-payment-method.tsx",
|
|
7711
|
+
"encapsulation": "none",
|
|
7712
|
+
"tag": "justifi-saved-payment-method",
|
|
7713
|
+
"readme": "<h1>\n <code><justifi-payment-form /></code>\n</h1>\n\n## Examples\n\n```html\n<!DOCTYPE html>\n<html dir=\"ltr\" lang=\"en\">\n <head>\n <meta charset=\"utf-8\" />\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=5.0\" />\n <title>justifi-payment-form: Simple example</title>\n\n <!--\n If you are including the components via CDN the src should be the following:\n https://cdn.jsdelivr.net/npm/@justifi/webcomponents@2.1.0/dist/webcomponents/webcomponents.esm.js\n -->\n <script type=\"module\" src=\"/build/webcomponents.esm.js\"></script>\n <script nomodule src=\"/build/webcomponents.js\"></script>\n </head>\n\n <body>\n <h1>PaymentForm</h1>\n <hr />\n <justifi-payment-form></justifi-payment-form>\n </body>\n\n <script>\n (function () {})();\n </script>\n</html>\n```\n",
|
|
7714
|
+
"docs": "<h1>\n <code><justifi-payment-form /></code>\n</h1>",
|
|
7715
|
+
"docsTags": [],
|
|
7716
|
+
"usage": {},
|
|
7717
|
+
"props": [
|
|
7718
|
+
{
|
|
7719
|
+
"name": "iframeOrigin",
|
|
7720
|
+
"type": "string",
|
|
7721
|
+
"complexType": {
|
|
7722
|
+
"original": "string",
|
|
7723
|
+
"resolved": "string",
|
|
7724
|
+
"references": {}
|
|
7725
|
+
},
|
|
7726
|
+
"mutable": true,
|
|
7727
|
+
"attr": "iframe-origin",
|
|
7728
|
+
"reflectToAttr": false,
|
|
7729
|
+
"docs": "",
|
|
7730
|
+
"docsTags": [],
|
|
7731
|
+
"default": "config.iframeOrigin",
|
|
7732
|
+
"values": [
|
|
7733
|
+
{
|
|
7734
|
+
"type": "string"
|
|
7735
|
+
}
|
|
7736
|
+
],
|
|
7737
|
+
"optional": true,
|
|
7738
|
+
"required": false
|
|
7739
|
+
},
|
|
7740
|
+
{
|
|
7741
|
+
"name": "isSelected",
|
|
7742
|
+
"type": "boolean",
|
|
7743
|
+
"complexType": {
|
|
7744
|
+
"original": "boolean",
|
|
7745
|
+
"resolved": "boolean",
|
|
7746
|
+
"references": {}
|
|
7747
|
+
},
|
|
7748
|
+
"mutable": false,
|
|
7749
|
+
"attr": "is-selected",
|
|
7750
|
+
"reflectToAttr": false,
|
|
7751
|
+
"docs": "",
|
|
7752
|
+
"docsTags": [],
|
|
7753
|
+
"values": [
|
|
7754
|
+
{
|
|
7755
|
+
"type": "boolean"
|
|
7756
|
+
}
|
|
7757
|
+
],
|
|
7758
|
+
"optional": false,
|
|
7759
|
+
"required": false
|
|
7760
|
+
},
|
|
7761
|
+
{
|
|
7762
|
+
"name": "paymentMethodOption",
|
|
7763
|
+
"type": "PaymentMethodOption",
|
|
7764
|
+
"complexType": {
|
|
7765
|
+
"original": "PaymentMethodOption",
|
|
7766
|
+
"resolved": "PaymentMethodOption",
|
|
7767
|
+
"references": {
|
|
7768
|
+
"PaymentMethodOption": {
|
|
7769
|
+
"location": "import",
|
|
7770
|
+
"path": "./payment-method-option-utils",
|
|
7771
|
+
"id": "src/components/checkout/payment-method-option-utils.tsx::PaymentMethodOption"
|
|
7772
|
+
}
|
|
7773
|
+
}
|
|
7774
|
+
},
|
|
7775
|
+
"mutable": false,
|
|
7776
|
+
"reflectToAttr": false,
|
|
7777
|
+
"docs": "",
|
|
7778
|
+
"docsTags": [],
|
|
7779
|
+
"values": [
|
|
7780
|
+
{
|
|
7781
|
+
"type": "PaymentMethodOption"
|
|
7782
|
+
}
|
|
7783
|
+
],
|
|
7784
|
+
"optional": false,
|
|
7785
|
+
"required": false
|
|
7786
|
+
}
|
|
7787
|
+
],
|
|
7788
|
+
"methods": [
|
|
7789
|
+
{
|
|
7790
|
+
"name": "resolvePaymentMethod",
|
|
7791
|
+
"returns": {
|
|
7792
|
+
"type": "Promise<PaymentMethodPayload>",
|
|
7793
|
+
"docs": ""
|
|
7794
|
+
},
|
|
7795
|
+
"complexType": {
|
|
7796
|
+
"signature": "() => Promise<PaymentMethodPayload>",
|
|
7797
|
+
"parameters": [],
|
|
7798
|
+
"references": {
|
|
7799
|
+
"Promise": {
|
|
7800
|
+
"location": "global",
|
|
7801
|
+
"id": "global::Promise"
|
|
7802
|
+
},
|
|
7803
|
+
"PaymentMethodPayload": {
|
|
7804
|
+
"location": "import",
|
|
7805
|
+
"path": "./payment-method-payload",
|
|
7806
|
+
"id": "src/components/checkout/payment-method-payload.ts::PaymentMethodPayload"
|
|
7807
|
+
}
|
|
7808
|
+
},
|
|
7809
|
+
"return": "Promise<PaymentMethodPayload>"
|
|
7810
|
+
},
|
|
7811
|
+
"signature": "resolvePaymentMethod() => Promise<PaymentMethodPayload>",
|
|
7812
|
+
"parameters": [],
|
|
7813
|
+
"docs": "",
|
|
7814
|
+
"docsTags": []
|
|
7815
|
+
}
|
|
7816
|
+
],
|
|
7817
|
+
"events": [
|
|
7818
|
+
{
|
|
7819
|
+
"event": "paymentMethodOptionSelected",
|
|
7820
|
+
"detail": "any",
|
|
7821
|
+
"bubbles": true,
|
|
7822
|
+
"complexType": {
|
|
7823
|
+
"original": "any",
|
|
7824
|
+
"resolved": "any",
|
|
7825
|
+
"references": {}
|
|
7826
|
+
},
|
|
7827
|
+
"cancelable": true,
|
|
7828
|
+
"composed": true,
|
|
7829
|
+
"docs": "",
|
|
7830
|
+
"docsTags": []
|
|
7831
|
+
}
|
|
7832
|
+
],
|
|
7833
|
+
"listeners": [],
|
|
7834
|
+
"styles": [],
|
|
7835
|
+
"slots": [],
|
|
7836
|
+
"parts": [],
|
|
7837
|
+
"dependents": [
|
|
7838
|
+
"justifi-payment-method-options"
|
|
6888
7839
|
],
|
|
7840
|
+
"dependencies": [],
|
|
6889
7841
|
"dependencyGraph": {
|
|
6890
|
-
"justifi-
|
|
6891
|
-
"justifi-
|
|
6892
|
-
],
|
|
6893
|
-
"justifi-table": [
|
|
6894
|
-
"pagination-menu"
|
|
7842
|
+
"justifi-payment-method-options": [
|
|
7843
|
+
"justifi-saved-payment-method"
|
|
6895
7844
|
]
|
|
6896
7845
|
}
|
|
6897
7846
|
},
|
|
6898
7847
|
{
|
|
6899
|
-
"filePath": "src/components/
|
|
6900
|
-
"encapsulation": "
|
|
6901
|
-
"tag": "justifi-
|
|
6902
|
-
"readme": "
|
|
6903
|
-
"docs": "",
|
|
7848
|
+
"filePath": "src/components/checkout/sezzel-payment-method.tsx",
|
|
7849
|
+
"encapsulation": "none",
|
|
7850
|
+
"tag": "justifi-sezzel-payment-method",
|
|
7851
|
+
"readme": "<h1>\n <code><justifi-payment-form /></code>\n</h1>\n\n## Examples\n\n```html\n<!DOCTYPE html>\n<html dir=\"ltr\" lang=\"en\">\n <head>\n <meta charset=\"utf-8\" />\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=5.0\" />\n <title>justifi-payment-form: Simple example</title>\n\n <!--\n If you are including the components via CDN the src should be the following:\n https://cdn.jsdelivr.net/npm/@justifi/webcomponents@2.1.0/dist/webcomponents/webcomponents.esm.js\n -->\n <script type=\"module\" src=\"/build/webcomponents.esm.js\"></script>\n <script nomodule src=\"/build/webcomponents.js\"></script>\n </head>\n\n <body>\n <h1>PaymentForm</h1>\n <hr />\n <justifi-payment-form></justifi-payment-form>\n </body>\n\n <script>\n (function () {})();\n </script>\n</html>\n```\n",
|
|
7852
|
+
"docs": "<h1>\n <code><justifi-payment-form /></code>\n</h1>",
|
|
6904
7853
|
"docsTags": [],
|
|
6905
7854
|
"usage": {},
|
|
6906
7855
|
"props": [
|
|
6907
7856
|
{
|
|
6908
|
-
"name": "
|
|
6909
|
-
"type": "number",
|
|
6910
|
-
"complexType": {
|
|
6911
|
-
"original": "number",
|
|
6912
|
-
"resolved": "number",
|
|
6913
|
-
"references": {}
|
|
6914
|
-
},
|
|
6915
|
-
"mutable": false,
|
|
6916
|
-
"attr": "amount",
|
|
6917
|
-
"reflectToAttr": false,
|
|
6918
|
-
"docs": "The amount of the payment to be refunded.",
|
|
6919
|
-
"docsTags": [],
|
|
6920
|
-
"default": "0",
|
|
6921
|
-
"values": [
|
|
6922
|
-
{
|
|
6923
|
-
"type": "number"
|
|
6924
|
-
}
|
|
6925
|
-
],
|
|
6926
|
-
"optional": true,
|
|
6927
|
-
"required": false
|
|
6928
|
-
},
|
|
6929
|
-
{
|
|
6930
|
-
"name": "authToken",
|
|
7857
|
+
"name": "accountId",
|
|
6931
7858
|
"type": "string",
|
|
6932
7859
|
"complexType": {
|
|
6933
7860
|
"original": "string",
|
|
@@ -6935,9 +7862,9 @@
|
|
|
6935
7862
|
"references": {}
|
|
6936
7863
|
},
|
|
6937
7864
|
"mutable": false,
|
|
6938
|
-
"attr": "
|
|
7865
|
+
"attr": "account-id",
|
|
6939
7866
|
"reflectToAttr": false,
|
|
6940
|
-
"docs": "
|
|
7867
|
+
"docs": "",
|
|
6941
7868
|
"docsTags": [],
|
|
6942
7869
|
"values": [
|
|
6943
7870
|
{
|
|
@@ -6948,28 +7875,28 @@
|
|
|
6948
7875
|
"required": false
|
|
6949
7876
|
},
|
|
6950
7877
|
{
|
|
6951
|
-
"name": "
|
|
6952
|
-
"type": "
|
|
7878
|
+
"name": "bnpl",
|
|
7879
|
+
"type": "any",
|
|
6953
7880
|
"complexType": {
|
|
6954
|
-
"original": "
|
|
6955
|
-
"resolved": "
|
|
7881
|
+
"original": "any",
|
|
7882
|
+
"resolved": "any",
|
|
6956
7883
|
"references": {}
|
|
6957
7884
|
},
|
|
6958
7885
|
"mutable": false,
|
|
6959
|
-
"attr": "
|
|
7886
|
+
"attr": "bnpl",
|
|
6960
7887
|
"reflectToAttr": false,
|
|
6961
|
-
"docs": "
|
|
7888
|
+
"docs": "",
|
|
6962
7889
|
"docsTags": [],
|
|
6963
7890
|
"values": [
|
|
6964
7891
|
{
|
|
6965
|
-
"type": "
|
|
7892
|
+
"type": "any"
|
|
6966
7893
|
}
|
|
6967
7894
|
],
|
|
6968
7895
|
"optional": false,
|
|
6969
7896
|
"required": false
|
|
6970
7897
|
},
|
|
6971
7898
|
{
|
|
6972
|
-
"name": "
|
|
7899
|
+
"name": "clientId",
|
|
6973
7900
|
"type": "string",
|
|
6974
7901
|
"complexType": {
|
|
6975
7902
|
"original": "string",
|
|
@@ -6977,32 +7904,32 @@
|
|
|
6977
7904
|
"references": {}
|
|
6978
7905
|
},
|
|
6979
7906
|
"mutable": false,
|
|
6980
|
-
"attr": "
|
|
7907
|
+
"attr": "client-id",
|
|
6981
7908
|
"reflectToAttr": false,
|
|
6982
|
-
"docs": "
|
|
7909
|
+
"docs": "",
|
|
6983
7910
|
"docsTags": [],
|
|
6984
7911
|
"values": [
|
|
6985
7912
|
{
|
|
6986
7913
|
"type": "string"
|
|
6987
7914
|
}
|
|
6988
7915
|
],
|
|
6989
|
-
"optional":
|
|
7916
|
+
"optional": false,
|
|
6990
7917
|
"required": false
|
|
6991
7918
|
},
|
|
6992
7919
|
{
|
|
6993
|
-
"name": "
|
|
7920
|
+
"name": "iframeOrigin",
|
|
6994
7921
|
"type": "string",
|
|
6995
7922
|
"complexType": {
|
|
6996
7923
|
"original": "string",
|
|
6997
7924
|
"resolved": "string",
|
|
6998
7925
|
"references": {}
|
|
6999
7926
|
},
|
|
7000
|
-
"mutable":
|
|
7001
|
-
"attr": "
|
|
7927
|
+
"mutable": true,
|
|
7928
|
+
"attr": "iframe-origin",
|
|
7002
7929
|
"reflectToAttr": false,
|
|
7003
|
-
"docs": "
|
|
7930
|
+
"docs": "",
|
|
7004
7931
|
"docsTags": [],
|
|
7005
|
-
"default": "
|
|
7932
|
+
"default": "config.iframeOrigin",
|
|
7006
7933
|
"values": [
|
|
7007
7934
|
{
|
|
7008
7935
|
"type": "string"
|
|
@@ -7012,7 +7939,7 @@
|
|
|
7012
7939
|
"required": false
|
|
7013
7940
|
},
|
|
7014
7941
|
{
|
|
7015
|
-
"name": "
|
|
7942
|
+
"name": "isSelected",
|
|
7016
7943
|
"type": "boolean",
|
|
7017
7944
|
"complexType": {
|
|
7018
7945
|
"original": "boolean",
|
|
@@ -7020,105 +7947,34 @@
|
|
|
7020
7947
|
"references": {}
|
|
7021
7948
|
},
|
|
7022
7949
|
"mutable": false,
|
|
7023
|
-
"attr": "
|
|
7950
|
+
"attr": "is-selected",
|
|
7024
7951
|
"reflectToAttr": false,
|
|
7025
|
-
"docs": "
|
|
7952
|
+
"docs": "",
|
|
7026
7953
|
"docsTags": [],
|
|
7027
7954
|
"values": [
|
|
7028
7955
|
{
|
|
7029
7956
|
"type": "boolean"
|
|
7030
7957
|
}
|
|
7031
7958
|
],
|
|
7032
|
-
"optional":
|
|
7959
|
+
"optional": false,
|
|
7033
7960
|
"required": false
|
|
7034
|
-
}
|
|
7035
|
-
],
|
|
7036
|
-
"methods": [],
|
|
7037
|
-
"events": [
|
|
7038
|
-
{
|
|
7039
|
-
"event": "submitted",
|
|
7040
|
-
"detail": "RefundFormFields",
|
|
7041
|
-
"bubbles": true,
|
|
7042
|
-
"complexType": {
|
|
7043
|
-
"original": "RefundFormFields",
|
|
7044
|
-
"resolved": "RefundFormFields",
|
|
7045
|
-
"references": {
|
|
7046
|
-
"RefundFormFields": {
|
|
7047
|
-
"location": "import",
|
|
7048
|
-
"path": "./refund-form-schema",
|
|
7049
|
-
"id": "src/components/refund-form/refund-form-schema.ts::RefundFormFields"
|
|
7050
|
-
}
|
|
7051
|
-
}
|
|
7052
|
-
},
|
|
7053
|
-
"cancelable": true,
|
|
7054
|
-
"composed": true,
|
|
7055
|
-
"docs": "Event emitted when the refund form is successfully submitted.\nThe submitted refund fields are passed as the event detail.",
|
|
7056
|
-
"docsTags": []
|
|
7057
|
-
}
|
|
7058
|
-
],
|
|
7059
|
-
"listeners": [],
|
|
7060
|
-
"styles": [],
|
|
7061
|
-
"slots": [],
|
|
7062
|
-
"parts": [],
|
|
7063
|
-
"dependents": [],
|
|
7064
|
-
"dependencies": [
|
|
7065
|
-
"form-control-monetary",
|
|
7066
|
-
"form-control-text"
|
|
7067
|
-
],
|
|
7068
|
-
"dependencyGraph": {
|
|
7069
|
-
"justifi-refund-form": [
|
|
7070
|
-
"form-control-monetary",
|
|
7071
|
-
"form-control-text"
|
|
7072
|
-
]
|
|
7073
|
-
}
|
|
7074
|
-
},
|
|
7075
|
-
{
|
|
7076
|
-
"filePath": "src/components/checkout/saved-payment-method.tsx",
|
|
7077
|
-
"encapsulation": "none",
|
|
7078
|
-
"tag": "justifi-saved-payment-method",
|
|
7079
|
-
"readme": "<h1>\n <code><justifi-payment-form /></code>\n</h1>\n\n## Examples\n\n```html\n<!DOCTYPE html>\n<html dir=\"ltr\" lang=\"en\">\n <head>\n <meta charset=\"utf-8\" />\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=5.0\" />\n <title>justifi-payment-form: Simple example</title>\n\n <!--\n If you are including the components via CDN the src should be the following:\n https://cdn.jsdelivr.net/npm/@justifi/webcomponents@2.1.0/dist/webcomponents/webcomponents.esm.js\n -->\n <script type=\"module\" src=\"/build/webcomponents.esm.js\"></script>\n <script nomodule src=\"/build/webcomponents.js\"></script>\n </head>\n\n <body>\n <h1>PaymentForm</h1>\n <hr />\n <justifi-payment-form></justifi-payment-form>\n </body>\n\n <script>\n (function () {})();\n </script>\n</html>\n```\n",
|
|
7080
|
-
"docs": "<h1>\n <code><justifi-payment-form /></code>\n</h1>",
|
|
7081
|
-
"docsTags": [],
|
|
7082
|
-
"usage": {},
|
|
7083
|
-
"props": [
|
|
7961
|
+
},
|
|
7084
7962
|
{
|
|
7085
|
-
"name": "
|
|
7963
|
+
"name": "paymentAmount",
|
|
7086
7964
|
"type": "string",
|
|
7087
7965
|
"complexType": {
|
|
7088
7966
|
"original": "string",
|
|
7089
7967
|
"resolved": "string",
|
|
7090
7968
|
"references": {}
|
|
7091
7969
|
},
|
|
7092
|
-
"mutable": true,
|
|
7093
|
-
"attr": "iframe-origin",
|
|
7094
|
-
"reflectToAttr": false,
|
|
7095
|
-
"docs": "",
|
|
7096
|
-
"docsTags": [],
|
|
7097
|
-
"default": "config.iframeOrigin",
|
|
7098
|
-
"values": [
|
|
7099
|
-
{
|
|
7100
|
-
"type": "string"
|
|
7101
|
-
}
|
|
7102
|
-
],
|
|
7103
|
-
"optional": true,
|
|
7104
|
-
"required": false
|
|
7105
|
-
},
|
|
7106
|
-
{
|
|
7107
|
-
"name": "isSelected",
|
|
7108
|
-
"type": "boolean",
|
|
7109
|
-
"complexType": {
|
|
7110
|
-
"original": "boolean",
|
|
7111
|
-
"resolved": "boolean",
|
|
7112
|
-
"references": {}
|
|
7113
|
-
},
|
|
7114
7970
|
"mutable": false,
|
|
7115
|
-
"attr": "
|
|
7971
|
+
"attr": "payment-amount",
|
|
7116
7972
|
"reflectToAttr": false,
|
|
7117
7973
|
"docs": "",
|
|
7118
7974
|
"docsTags": [],
|
|
7119
7975
|
"values": [
|
|
7120
7976
|
{
|
|
7121
|
-
"type": "
|
|
7977
|
+
"type": "string"
|
|
7122
7978
|
}
|
|
7123
7979
|
],
|
|
7124
7980
|
"optional": false,
|
|
@@ -7153,23 +8009,28 @@
|
|
|
7153
8009
|
],
|
|
7154
8010
|
"methods": [
|
|
7155
8011
|
{
|
|
7156
|
-
"name": "
|
|
8012
|
+
"name": "resolvePaymentMethod",
|
|
7157
8013
|
"returns": {
|
|
7158
|
-
"type": "Promise<
|
|
8014
|
+
"type": "Promise<PaymentMethodPayload>",
|
|
7159
8015
|
"docs": ""
|
|
7160
8016
|
},
|
|
7161
8017
|
"complexType": {
|
|
7162
|
-
"signature": "() => Promise<
|
|
8018
|
+
"signature": "() => Promise<PaymentMethodPayload>",
|
|
7163
8019
|
"parameters": [],
|
|
7164
8020
|
"references": {
|
|
7165
8021
|
"Promise": {
|
|
7166
8022
|
"location": "global",
|
|
7167
8023
|
"id": "global::Promise"
|
|
8024
|
+
},
|
|
8025
|
+
"PaymentMethodPayload": {
|
|
8026
|
+
"location": "import",
|
|
8027
|
+
"path": "./payment-method-payload",
|
|
8028
|
+
"id": "src/components/checkout/payment-method-payload.ts::PaymentMethodPayload"
|
|
7168
8029
|
}
|
|
7169
8030
|
},
|
|
7170
|
-
"return": "Promise<
|
|
8031
|
+
"return": "Promise<PaymentMethodPayload>"
|
|
7171
8032
|
},
|
|
7172
|
-
"signature": "
|
|
8033
|
+
"signature": "resolvePaymentMethod() => Promise<PaymentMethodPayload>",
|
|
7173
8034
|
"parameters": [],
|
|
7174
8035
|
"docs": "",
|
|
7175
8036
|
"docsTags": []
|
|
@@ -7201,7 +8062,7 @@
|
|
|
7201
8062
|
"dependencies": [],
|
|
7202
8063
|
"dependencyGraph": {
|
|
7203
8064
|
"justifi-payment-method-options": [
|
|
7204
|
-
"justifi-
|
|
8065
|
+
"justifi-sezzel-payment-method"
|
|
7205
8066
|
]
|
|
7206
8067
|
}
|
|
7207
8068
|
},
|
|
@@ -7906,7 +8767,28 @@
|
|
|
7906
8767
|
}
|
|
7907
8768
|
],
|
|
7908
8769
|
"methods": [],
|
|
7909
|
-
"events": [
|
|
8770
|
+
"events": [
|
|
8771
|
+
{
|
|
8772
|
+
"event": "error-event",
|
|
8773
|
+
"detail": "ComponentError",
|
|
8774
|
+
"bubbles": true,
|
|
8775
|
+
"complexType": {
|
|
8776
|
+
"original": "ComponentError",
|
|
8777
|
+
"resolved": "ComponentError",
|
|
8778
|
+
"references": {
|
|
8779
|
+
"ComponentError": {
|
|
8780
|
+
"location": "import",
|
|
8781
|
+
"path": "../../api/ComponentError",
|
|
8782
|
+
"id": "src/api/ComponentError.ts::ComponentError"
|
|
8783
|
+
}
|
|
8784
|
+
}
|
|
8785
|
+
},
|
|
8786
|
+
"cancelable": true,
|
|
8787
|
+
"composed": true,
|
|
8788
|
+
"docs": "",
|
|
8789
|
+
"docsTags": []
|
|
8790
|
+
}
|
|
8791
|
+
],
|
|
7910
8792
|
"listeners": [],
|
|
7911
8793
|
"styles": [],
|
|
7912
8794
|
"slots": [],
|
|
@@ -7963,6 +8845,26 @@
|
|
|
7963
8845
|
],
|
|
7964
8846
|
"methods": [],
|
|
7965
8847
|
"events": [
|
|
8848
|
+
{
|
|
8849
|
+
"event": "error-event",
|
|
8850
|
+
"detail": "ComponentError",
|
|
8851
|
+
"bubbles": true,
|
|
8852
|
+
"complexType": {
|
|
8853
|
+
"original": "ComponentError",
|
|
8854
|
+
"resolved": "ComponentError",
|
|
8855
|
+
"references": {
|
|
8856
|
+
"ComponentError": {
|
|
8857
|
+
"location": "import",
|
|
8858
|
+
"path": "../../api/ComponentError",
|
|
8859
|
+
"id": "src/api/ComponentError.ts::ComponentError"
|
|
8860
|
+
}
|
|
8861
|
+
}
|
|
8862
|
+
},
|
|
8863
|
+
"cancelable": true,
|
|
8864
|
+
"composed": true,
|
|
8865
|
+
"docs": "",
|
|
8866
|
+
"docsTags": []
|
|
8867
|
+
},
|
|
7966
8868
|
{
|
|
7967
8869
|
"event": "payment-row-clicked",
|
|
7968
8870
|
"detail": "Payment",
|
|
@@ -8042,7 +8944,28 @@
|
|
|
8042
8944
|
}
|
|
8043
8945
|
],
|
|
8044
8946
|
"methods": [],
|
|
8045
|
-
"events": [
|
|
8947
|
+
"events": [
|
|
8948
|
+
{
|
|
8949
|
+
"event": "error-event",
|
|
8950
|
+
"detail": "ComponentError",
|
|
8951
|
+
"bubbles": true,
|
|
8952
|
+
"complexType": {
|
|
8953
|
+
"original": "ComponentError",
|
|
8954
|
+
"resolved": "ComponentError",
|
|
8955
|
+
"references": {
|
|
8956
|
+
"ComponentError": {
|
|
8957
|
+
"location": "import",
|
|
8958
|
+
"path": "../../api/ComponentError",
|
|
8959
|
+
"id": "src/api/ComponentError.ts::ComponentError"
|
|
8960
|
+
}
|
|
8961
|
+
}
|
|
8962
|
+
},
|
|
8963
|
+
"cancelable": true,
|
|
8964
|
+
"composed": true,
|
|
8965
|
+
"docs": "",
|
|
8966
|
+
"docsTags": []
|
|
8967
|
+
}
|
|
8968
|
+
],
|
|
8046
8969
|
"listeners": [],
|
|
8047
8970
|
"styles": [],
|
|
8048
8971
|
"slots": [],
|
|
@@ -8099,6 +9022,26 @@
|
|
|
8099
9022
|
],
|
|
8100
9023
|
"methods": [],
|
|
8101
9024
|
"events": [
|
|
9025
|
+
{
|
|
9026
|
+
"event": "error-event",
|
|
9027
|
+
"detail": "ComponentError",
|
|
9028
|
+
"bubbles": true,
|
|
9029
|
+
"complexType": {
|
|
9030
|
+
"original": "ComponentError",
|
|
9031
|
+
"resolved": "ComponentError",
|
|
9032
|
+
"references": {
|
|
9033
|
+
"ComponentError": {
|
|
9034
|
+
"location": "import",
|
|
9035
|
+
"path": "../../api/ComponentError",
|
|
9036
|
+
"id": "src/api/ComponentError.ts::ComponentError"
|
|
9037
|
+
}
|
|
9038
|
+
}
|
|
9039
|
+
},
|
|
9040
|
+
"cancelable": true,
|
|
9041
|
+
"composed": true,
|
|
9042
|
+
"docs": "",
|
|
9043
|
+
"docsTags": []
|
|
9044
|
+
},
|
|
8102
9045
|
{
|
|
8103
9046
|
"event": "payout-row-clicked",
|
|
8104
9047
|
"detail": "Payout",
|
|
@@ -8351,6 +9294,10 @@
|
|
|
8351
9294
|
"styles": [],
|
|
8352
9295
|
"slots": [],
|
|
8353
9296
|
"parts": [
|
|
9297
|
+
{
|
|
9298
|
+
"name": "invalid-feedback",
|
|
9299
|
+
"docs": ""
|
|
9300
|
+
},
|
|
8354
9301
|
{
|
|
8355
9302
|
"name": "label",
|
|
8356
9303
|
"docs": ""
|
|
@@ -8807,6 +9754,10 @@
|
|
|
8807
9754
|
"styles": [],
|
|
8808
9755
|
"slots": [],
|
|
8809
9756
|
"parts": [
|
|
9757
|
+
{
|
|
9758
|
+
"name": "invalid-feedback",
|
|
9759
|
+
"docs": ""
|
|
9760
|
+
},
|
|
8810
9761
|
{
|
|
8811
9762
|
"name": "label",
|
|
8812
9763
|
"docs": ""
|
|
@@ -8854,13 +9805,18 @@
|
|
|
8854
9805
|
"docstring": "",
|
|
8855
9806
|
"path": "../../node_modules/.pnpm/yup@1.3.3/node_modules/yup/index.d.ts"
|
|
8856
9807
|
},
|
|
9808
|
+
"src/api/ComponentError.ts::ComponentError": {
|
|
9809
|
+
"declaration": "export interface ComponentError {\n errorCode: ComponentErrorCodes; // A unique code identifying the error\n message: string; // A descriptive message about the error\n severity?: ComponentErrorSeverity; // Optional severity level\n data?: any; // Additional data pertinent to the error (optional)\n}",
|
|
9810
|
+
"docstring": "",
|
|
9811
|
+
"path": "src/api/ComponentError.ts"
|
|
9812
|
+
},
|
|
8857
9813
|
"src/api/Business.ts::IAdditionalQuestions": {
|
|
8858
9814
|
"declaration": "export interface IAdditionalQuestions {\n business_revenue?: string;\n business_payment_volume?: string;\n business_dispute_volume?: string;\n business_receivable_volume?: string;\n}",
|
|
8859
9815
|
"docstring": "",
|
|
8860
9816
|
"path": "src/api/Business.ts"
|
|
8861
9817
|
},
|
|
8862
9818
|
"src/api/Business.ts::IBusiness": {
|
|
8863
|
-
"declaration": "export interface IBusiness {\n additional_questions: IAdditionalQuestions | {};\n
|
|
9819
|
+
"declaration": "export interface IBusiness {\n additional_questions: IAdditionalQuestions | {};\n business_type: BusinessType;\n bank_accounts: BankAccount[];\n created_at: string;\n documents: Document[];\n doing_business_as: string;\n email: string;\n id: string;\n industry: string;\n legal_address: IAddress | {};\n legal_name: string;\n metadata: any;\n owners: Identity[];\n phone: string;\n platform_account_id: string;\n product_categories: ProductCategories;\n representative: Identity | {};\n tax_id: string;\n updated_at: string;\n website_url: string;\n}",
|
|
8864
9820
|
"docstring": "",
|
|
8865
9821
|
"path": "src/api/Business.ts"
|
|
8866
9822
|
},
|
|
@@ -8874,13 +9830,13 @@
|
|
|
8874
9830
|
"docstring": "",
|
|
8875
9831
|
"path": "src/api/Identity.ts"
|
|
8876
9832
|
},
|
|
8877
|
-
"src/components/business-forms/utils/business-form-types.ts::
|
|
8878
|
-
"declaration": "export interface
|
|
9833
|
+
"src/components/business-forms/utils/business-form-types.ts::BusinessFormSubmitEvent": {
|
|
9834
|
+
"declaration": "export interface BusinessFormSubmitEvent {\n data: any;\n metadata?: BusinessFormEventMetaData;\n}",
|
|
8879
9835
|
"docstring": "",
|
|
8880
9836
|
"path": "src/components/business-forms/utils/business-form-types.ts"
|
|
8881
9837
|
},
|
|
8882
|
-
"src/components/business-forms/utils/business-form-types.ts::
|
|
8883
|
-
"declaration": "export interface
|
|
9838
|
+
"src/components/business-forms/utils/business-form-types.ts::BusinessFormClickEvent": {
|
|
9839
|
+
"declaration": "export interface BusinessFormClickEvent {\n data?: any;\n name: BusinessFormClickActions;\n}",
|
|
8884
9840
|
"docstring": "",
|
|
8885
9841
|
"path": "src/components/business-forms/utils/business-form-types.ts"
|
|
8886
9842
|
},
|
|
@@ -8894,6 +9850,11 @@
|
|
|
8894
9850
|
"docstring": "",
|
|
8895
9851
|
"path": "src/components/business-forms/utils/business-form-types.ts"
|
|
8896
9852
|
},
|
|
9853
|
+
"src/components/business-forms/utils/business-form-types.ts::OwnerFormClickEvent": {
|
|
9854
|
+
"declaration": "export interface OwnerFormClickEvent {\n data?: any;\n name: OwnerFormClickActions;\n}",
|
|
9855
|
+
"docstring": "",
|
|
9856
|
+
"path": "src/components/business-forms/utils/business-form-types.ts"
|
|
9857
|
+
},
|
|
8897
9858
|
"src/components/business-forms/utils/business-form-types.ts::OwnerFormServerErrorEvent": {
|
|
8898
9859
|
"declaration": "export interface OwnerFormServerErrorEvent {\n data?: any;\n message: OwnerFormServerErrors;\n}",
|
|
8899
9860
|
"docstring": "",
|
|
@@ -8904,11 +9865,26 @@
|
|
|
8904
9865
|
"docstring": "",
|
|
8905
9866
|
"path": "src/components/business-forms/utils/business-form-types.ts"
|
|
8906
9867
|
},
|
|
9868
|
+
"src/api/Checkout.ts::ICheckoutCompleteResponse": {
|
|
9869
|
+
"declaration": "export interface IApiResponse<T> {\n data: T;\n error?: IErrorObject | IServerError;\n page_info?: PagingInfo;\n errors?: string[];\n id: number | string;\n type: string;\n}",
|
|
9870
|
+
"docstring": "",
|
|
9871
|
+
"path": "src/api/Checkout.ts"
|
|
9872
|
+
},
|
|
8907
9873
|
"src/components/checkout/payment-method-option-utils.tsx::PaymentMethodOption": {
|
|
8908
9874
|
"declaration": "any",
|
|
8909
9875
|
"docstring": "",
|
|
8910
9876
|
"path": "src/components/checkout/payment-method-option-utils.tsx"
|
|
8911
9877
|
},
|
|
9878
|
+
"src/components/checkout/payment-method-payload.ts::PaymentMethodPayload": {
|
|
9879
|
+
"declaration": "export interface PaymentMethodPayload {\n token?: string;\n bnpl?: {\n order_uuid: string;\n status: string;\n session_uuid: string;\n }\n}",
|
|
9880
|
+
"docstring": "",
|
|
9881
|
+
"path": "src/components/checkout/payment-method-payload.ts"
|
|
9882
|
+
},
|
|
9883
|
+
"src/api/index.ts::IBnpl": {
|
|
9884
|
+
"declaration": "any",
|
|
9885
|
+
"docstring": "",
|
|
9886
|
+
"path": "src/api/index.ts"
|
|
9887
|
+
},
|
|
8912
9888
|
"src/api/index.ts::Payment": {
|
|
8913
9889
|
"declaration": "any",
|
|
8914
9890
|
"docstring": "",
|