@maxio-com/self-service 1.0.2
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/README.md +91 -0
- package/dist/maxio-components.cjs.js +2 -0
- package/dist/maxio-components.cjs.js.map +1 -0
- package/dist/maxio-components.esm.js +1 -0
- package/dist/maxio-components.umd.js +16978 -0
- package/package.json +186 -0
- package/typings/packages/address/index.d.ts +1 -0
- package/typings/packages/address/src/components/SelectField/SelectField.d.ts +18 -0
- package/typings/packages/address/src/components/SelectField/SelectField.styles.d.ts +5 -0
- package/typings/packages/address/src/components/SelectField/index.d.ts +2 -0
- package/typings/packages/address/src/components/index.d.ts +2 -0
- package/typings/packages/address/src/constants.d.ts +4 -0
- package/typings/packages/address/src/containers/Address/Address.d.ts +16 -0
- package/typings/packages/address/src/containers/Address/index.d.ts +4 -0
- package/typings/packages/address/src/containers/Address/translations.d.ts +2 -0
- package/typings/packages/address/src/containers/Address/types.d.ts +43 -0
- package/typings/packages/address/src/containers/Address/utils.ts/formatOptions.d.ts +5 -0
- package/typings/packages/address/src/containers/Address/utils.ts/index.d.ts +2 -0
- package/typings/packages/address/src/containers/index.d.ts +4 -0
- package/typings/packages/address/src/hooks/index.d.ts +2 -0
- package/typings/packages/address/src/hooks/useFormatAddress.d.ts +2 -0
- package/typings/packages/address/src/index.d.ts +9 -0
- package/typings/packages/address/src/machines/address/address.d.ts +7 -0
- package/typings/packages/address/src/machines/address/index.d.ts +3 -0
- package/typings/packages/address/src/machines/address/selectors.d.ts +24 -0
- package/typings/packages/address/src/machines/address/types.d.ts +11 -0
- package/typings/packages/address/src/machines/index.d.ts +2 -0
- package/typings/packages/address/src/types.d.ts +9 -0
- package/typings/packages/address/src/utils/createValidationSchema.d.ts +17 -0
- package/typings/packages/address/src/utils/index.d.ts +2 -0
- package/typings/packages/billing-history/index.d.ts +1 -0
- package/typings/packages/billing-history/src/App.d.ts +4 -0
- package/typings/packages/billing-history/src/BillingHistory.d.ts +7 -0
- package/typings/packages/billing-history/src/components/BillingHistoryLoader/BillingHistoryLoader.d.ts +3 -0
- package/typings/packages/billing-history/src/components/BillingHistoryLoader/BillingHistoryLoader.styles.d.ts +2 -0
- package/typings/packages/billing-history/src/components/BillingHistoryLoader/index.d.ts +2 -0
- package/typings/packages/billing-history/src/components/Filters/Filters.d.ts +18 -0
- package/typings/packages/billing-history/src/components/Filters/Filters.styles.d.ts +3 -0
- package/typings/packages/billing-history/src/components/Filters/components/DateFilter/DateFilter.d.ts +10 -0
- package/typings/packages/billing-history/src/components/Filters/components/DateFilter/DateFilter.styles.d.ts +2 -0
- package/typings/packages/billing-history/src/components/Filters/components/DateFilter/index.d.ts +2 -0
- package/typings/packages/billing-history/src/components/Filters/components/FilterBox/FilterBox.d.ts +8 -0
- package/typings/packages/billing-history/src/components/Filters/components/FilterBox/FilterBox.styles.d.ts +1 -0
- package/typings/packages/billing-history/src/components/Filters/components/FilterBox/index.d.ts +4 -0
- package/typings/packages/billing-history/src/components/Filters/components/FiltersWrapper/FiltersWrapper.d.ts +1 -0
- package/typings/packages/billing-history/src/components/Filters/components/InvoiceNumberFilter/InvoiceNumberFilter.d.ts +8 -0
- package/typings/packages/billing-history/src/components/Filters/components/InvoiceNumberFilter/index.d.ts +2 -0
- package/typings/packages/billing-history/src/components/Filters/components/ProductNameFilter/ProductNameFilter.d.ts +11 -0
- package/typings/packages/billing-history/src/components/Filters/components/ProductNameFilter/index.d.ts +2 -0
- package/typings/packages/billing-history/src/components/Filters/components/StatusFilter/StatusFilter.d.ts +8 -0
- package/typings/packages/billing-history/src/components/Filters/components/StatusFilter/index.d.ts +2 -0
- package/typings/packages/billing-history/src/components/Filters/components/index.d.ts +6 -0
- package/typings/packages/billing-history/src/components/Filters/constants.d.ts +3 -0
- package/typings/packages/billing-history/src/components/Filters/index.d.ts +2 -0
- package/typings/packages/billing-history/src/components/Filters/motion.d.ts +18 -0
- package/typings/packages/billing-history/src/components/Filters/types.d.ts +10 -0
- package/typings/packages/billing-history/src/components/InvoicesTable/InvoicesTable.d.ts +24 -0
- package/typings/packages/billing-history/src/components/InvoicesTable/InvoicesTable.styles.d.ts +1 -0
- package/typings/packages/billing-history/src/components/InvoicesTable/components/IconWIthTooltip.d.ts +7 -0
- package/typings/packages/billing-history/src/components/InvoicesTable/components/NoInvoicesMsg.d.ts +5 -0
- package/typings/packages/billing-history/src/components/InvoicesTable/components/PagesPagination.d.ts +10 -0
- package/typings/packages/billing-history/src/components/InvoicesTable/components/PagesPagination.styles.d.ts +3 -0
- package/typings/packages/billing-history/src/components/InvoicesTable/components/SkeletonWrapper.d.ts +2 -0
- package/typings/packages/billing-history/src/components/InvoicesTable/components/Status.d.ts +7 -0
- package/typings/packages/billing-history/src/components/InvoicesTable/components/index.d.ts +5 -0
- package/typings/packages/billing-history/src/components/InvoicesTable/index.d.ts +2 -0
- package/typings/packages/billing-history/src/components/InvoicesTable/types.d.ts +5 -0
- package/typings/packages/billing-history/src/components/InvoicesTable/utils.d.ts +2 -0
- package/typings/packages/billing-history/src/constants.d.ts +1 -0
- package/typings/packages/billing-history/src/containers/BillingHistoryContainer/BillingHistoryContainer.d.ts +3 -0
- package/typings/packages/billing-history/src/containers/BillingHistoryContainer/constants.d.ts +1 -0
- package/typings/packages/billing-history/src/containers/BillingHistoryContainer/index.d.ts +2 -0
- package/typings/packages/billing-history/src/containers/FiltersContainer/FiltersContainer.d.ts +3 -0
- package/typings/packages/billing-history/src/containers/FiltersContainer/index.d.ts +2 -0
- package/typings/packages/billing-history/src/containers/ProductsContainer/ProductsContainer.d.ts +10 -0
- package/typings/packages/billing-history/src/containers/ProductsContainer/constants.d.ts +1 -0
- package/typings/packages/billing-history/src/containers/ProductsContainer/index.d.ts +2 -0
- package/typings/packages/billing-history/src/containers/index.d.ts +2 -0
- package/typings/packages/billing-history/src/contexts/ConfigContext.d.ts +3 -0
- package/typings/packages/billing-history/src/contexts/GlobalStateContext.d.ts +9 -0
- package/typings/packages/billing-history/src/contexts/index.d.ts +3 -0
- package/typings/packages/billing-history/src/hooks/index.d.ts +2 -0
- package/typings/packages/billing-history/src/hooks/useOutsideClick.d.ts +2 -0
- package/typings/packages/billing-history/src/hooks/useServices.d.ts +5 -0
- package/typings/packages/billing-history/src/index.d.ts +2 -0
- package/typings/packages/billing-history/src/machines/billingFilters/actions.d.ts +24 -0
- package/typings/packages/billing-history/src/machines/billingFilters/billingFilters.d.ts +7 -0
- package/typings/packages/billing-history/src/machines/billingFilters/constants.d.ts +16 -0
- package/typings/packages/billing-history/src/machines/billingFilters/index.d.ts +6 -0
- package/typings/packages/billing-history/src/machines/billingFilters/selectors.d.ts +13 -0
- package/typings/packages/billing-history/src/machines/billingFilters/types.d.ts +51 -0
- package/typings/packages/billing-history/src/machines/billingFilters/utils.d.ts +4 -0
- package/typings/packages/billing-history/src/machines/billingHistoryData/actions.d.ts +2 -0
- package/typings/packages/billing-history/src/machines/billingHistoryData/billingHistoryData.d.ts +8 -0
- package/typings/packages/billing-history/src/machines/billingHistoryData/constants.d.ts +5 -0
- package/typings/packages/billing-history/src/machines/billingHistoryData/index.d.ts +4 -0
- package/typings/packages/billing-history/src/machines/billingHistoryData/selectors.d.ts +52 -0
- package/typings/packages/billing-history/src/machines/billingHistoryData/types.d.ts +48 -0
- package/typings/packages/billing-history/src/machines/filtersOptions/filtersOptions.d.ts +6 -0
- package/typings/packages/billing-history/src/machines/filtersOptions/index.d.ts +5 -0
- package/typings/packages/billing-history/src/machines/filtersOptions/selectors.d.ts +12 -0
- package/typings/packages/billing-history/src/machines/filtersOptions/types.d.ts +9 -0
- package/typings/packages/billing-history/src/mocks/server.d.ts +1 -0
- package/typings/packages/billing-history/src/models/billingHistory/billingHistory.d.ts +28 -0
- package/typings/packages/billing-history/src/pages/InvoiceDetails/InvoiceDetails.d.ts +3 -0
- package/typings/packages/billing-history/src/pages/InvoiceDetails/InvoiceDetails.styles.d.ts +5 -0
- package/typings/packages/billing-history/src/pages/InvoiceDetails/index.d.ts +2 -0
- package/typings/packages/billing-history/src/pages/index.d.ts +2 -0
- package/typings/packages/billing-history/src/providers/GlobalStateProvider.d.ts +6 -0
- package/typings/packages/billing-history/src/settings.d.ts +2 -0
- package/typings/packages/billing-history/src/types.d.ts +8 -0
- package/typings/packages/billing-history/src/utils/getDatesFilters.d.ts +10 -0
- package/typings/packages/billing-history/src/utils/getItemsPerPageOptions.d.ts +5 -0
- package/typings/packages/billing-history/src/utils/index.d.ts +2 -0
- package/typings/packages/custom-fields/index.d.ts +1 -0
- package/typings/packages/custom-fields/src/index.d.ts +5 -0
- package/typings/packages/custom-fields/src/types.d.ts +9 -0
- package/typings/packages/custom-fields/src/utils/renderField.d.ts +9 -0
- package/typings/packages/custom-fields/src/utils/updateCustomFields.d.ts +9 -0
- package/typings/packages/custom-ui-components/index.d.ts +1 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Anchor/Anchor.d.ts +13 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Anchor/Anchor.styles.d.ts +8 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Anchor/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Anchor/settings.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Anchor/types.d.ts +6 -0
- package/typings/packages/custom-ui-components/src/components/atoms/BodyText/BodyText.d.ts +17 -0
- package/typings/packages/custom-ui-components/src/components/atoms/BodyText/BodyText.styles.d.ts +6 -0
- package/typings/packages/custom-ui-components/src/components/atoms/BodyText/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/BodyText/settings.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/BodyText/types.d.ts +7 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Box/Box.styles.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Box/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Button/Button.d.ts +23 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Button/Button.styles.d.ts +15 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Button/components/Group/Group.d.ts +7 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Button/components/Group/Group.styles.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Button/components/Group/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Button/components/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Button/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Button/settings.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Button/types.d.ts +10 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Checkbox/Checkbox.d.ts +9 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Checkbox/Checkbox.styles.d.ts +10 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Checkbox/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Checkbox/settings.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Checkbox/types.d.ts +10 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Column/Column.d.ts +11 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Column/Column.styles.d.ts +7 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Column/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Column/system/flexBasis.d.ts +1 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Column/system/gutter.d.ts +1 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Column/system/index.d.ts +5 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Column/system/maxWidth.d.ts +1 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Column/system/offset.d.ts +1 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Dropdown/Dropdown.d.ts +4 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Dropdown/Dropdown.styles.d.ts +1 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Dropdown/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Dropdown/types.d.ts +14 -0
- package/typings/packages/custom-ui-components/src/components/atoms/FontWeight/FontWeight.d.ts +3 -0
- package/typings/packages/custom-ui-components/src/components/atoms/FontWeight/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Heading/Heading.d.ts +9 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Heading/Heading.styles.d.ts +5 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Heading/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Heading/settings.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Heading/types.d.ts +6 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Input/Input.d.ts +17 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Input/Input.styles.d.ts +16 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Input/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Input/settings.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Input/types.d.ts +10 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Input/utils/getInputStatus.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Input/utils/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/InputMessage/InputMessage.d.ts +9 -0
- package/typings/packages/custom-ui-components/src/components/atoms/InputMessage/InputMessage.styles.d.ts +5 -0
- package/typings/packages/custom-ui-components/src/components/atoms/InputMessage/index.d.ts +4 -0
- package/typings/packages/custom-ui-components/src/components/atoms/InputMessage/settings.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/InputMessage/types.d.ts +5 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Loader/Loader.d.ts +7 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Loader/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Logo/Logo.d.ts +9 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Logo/components/AmericanExpress/AmericanExpress.d.ts +7 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Logo/components/AmericanExpress/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Logo/components/Bogus/Bogus.d.ts +7 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Logo/components/Bogus/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Logo/components/Discover/Discover.d.ts +7 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Logo/components/Discover/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Logo/components/Master/Master.d.ts +7 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Logo/components/Master/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Logo/components/Visa/Visa.d.ts +7 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Logo/components/Visa/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Logo/components/index.d.ts +6 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Logo/constants.d.ts +3 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Logo/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Modal/Modal.d.ts +17 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Modal/Modal.styles.d.ts +5 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Modal/components/Backdrop/Backdrop.d.ts +7 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Modal/components/Backdrop/Backdrop.styles.d.ts +1 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Modal/components/Backdrop/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Modal/components/Title/Title.d.ts +7 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Modal/components/Title/Title.styles.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Modal/components/Title/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Modal/components/index.d.ts +3 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Modal/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Modal/motion.d.ts +17 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Modal/types.d.ts +1 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Options/Options.d.ts +4 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Options/Options.styles.d.ts +11 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Options/components/Option/Option.d.ts +9 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Options/components/Option/Option.styles.d.ts +8 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Options/components/Option/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Options/index.d.ts +7 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Options/settings.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Options/system/boxShadow.d.ts +1 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Options/system/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Options/types.d.ts +29 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Options/utils/getBoxShadow.d.ts +1 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Options/utils/isEllipsisActive.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Portal/Portal.d.ts +6 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Portal/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/ProgressBar/ProgressBar.d.ts +10 -0
- package/typings/packages/custom-ui-components/src/components/atoms/ProgressBar/ProgressBar.styles.d.ts +9 -0
- package/typings/packages/custom-ui-components/src/components/atoms/ProgressBar/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/ProgressBar/settings.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/ProgressBar/types.d.ts +9 -0
- package/typings/packages/custom-ui-components/src/components/atoms/RadioButton/RadioButton.d.ts +4 -0
- package/typings/packages/custom-ui-components/src/components/atoms/RadioButton/RadioButton.styles.d.ts +7 -0
- package/typings/packages/custom-ui-components/src/components/atoms/RadioButton/index.d.ts +4 -0
- package/typings/packages/custom-ui-components/src/components/atoms/RadioButton/settings.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/RadioButton/types.d.ts +16 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Row/Row.d.ts +9 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Row/Row.styles.d.ts +5 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Row/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Row/system/gap.d.ts +1 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Row/system/gutter.d.ts +1 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Row/system/index.d.ts +3 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Select/Select.d.ts +4 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Select/Select.styles.d.ts +10 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Select/components/DropdownIcon/DropdownIcon.d.ts +9 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Select/components/DropdownIcon/DropdownIcon.styles.d.ts +1 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Select/components/DropdownIcon/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Select/components/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Select/constants.d.ts +9 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Select/index.d.ts +4 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Select/reducer/actions.d.ts +11 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Select/reducer/index.d.ts +3 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Select/reducer/reducer.d.ts +3 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Select/reducer/types.d.ts +39 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Select/settings.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Select/types.d.ts +39 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Select/utils/getStatus.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Select/utils/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/SkeletonLoader/SkeletonLoader.d.ts +9 -0
- package/typings/packages/custom-ui-components/src/components/atoms/SkeletonLoader/SkeletonLoader.styles.d.ts +6 -0
- package/typings/packages/custom-ui-components/src/components/atoms/SkeletonLoader/index.d.ts +4 -0
- package/typings/packages/custom-ui-components/src/components/atoms/SkeletonLoader/system/backgroundColor.d.ts +1 -0
- package/typings/packages/custom-ui-components/src/components/atoms/SkeletonLoader/system/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/SkeletonLoader/types.d.ts +1 -0
- package/typings/packages/custom-ui-components/src/components/atoms/SubscriptionComponentCard/SubscriptionComponentCard.d.ts +9 -0
- package/typings/packages/custom-ui-components/src/components/atoms/SubscriptionComponentCard/SubscriptionComponentCard.styles.d.ts +5 -0
- package/typings/packages/custom-ui-components/src/components/atoms/SubscriptionComponentCard/index.d.ts +4 -0
- package/typings/packages/custom-ui-components/src/components/atoms/SubscriptionComponentCard/settings.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/SubscriptionComponentCard/types.d.ts +5 -0
- package/typings/packages/custom-ui-components/src/components/atoms/TextArea/TextArea.d.ts +11 -0
- package/typings/packages/custom-ui-components/src/components/atoms/TextArea/TextArea.styles.d.ts +8 -0
- package/typings/packages/custom-ui-components/src/components/atoms/TextArea/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/TextArea/settings.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/TextArea/types.d.ts +9 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Toggle/Toggle.d.ts +15 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Toggle/Toggle.styles.d.ts +21 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Toggle/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Toggle/settings.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Toggle/types.d.ts +14 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Tooltip/Tooltip.d.ts +15 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Tooltip/Tooltip.styles.d.ts +5 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Tooltip/components/Text/Text.d.ts +7 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Tooltip/components/Text/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Tooltip/components/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Tooltip/index.d.ts +3 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Tooltip/settings.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/atoms/Tooltip/types.d.ts +7 -0
- package/typings/packages/custom-ui-components/src/components/atoms/index.d.ts +30 -0
- package/typings/packages/custom-ui-components/src/components/atoms/settings.d.ts +18 -0
- package/typings/packages/custom-ui-components/src/components/atoms/types.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/index.d.ts +3 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Accordion/Accordion.d.ts +10 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Accordion/Accordion.styles.d.ts +8 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Accordion/constants.d.ts +11 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Accordion/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Accordion/motion.d.ts +14 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Accordion/settings.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Accordion/type.d.ts +5 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Alert/Alert.d.ts +19 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Alert/Alert.styles.d.ts +7 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Alert/components/TextMessage.d.ts +7 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Alert/components/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Alert/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Alert/settings.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Alert/types.d.ts +7 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Card/Card.d.ts +20 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Card/Card.styles.d.ts +13 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Card/components/Body/Body.d.ts +8 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Card/components/Body/Body.styles.d.ts +9 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Card/components/Body/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Card/components/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Card/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Card/settings.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Card/types.d.ts +12 -0
- package/typings/packages/custom-ui-components/src/components/molecules/CreditCardAddress/CreditCardAddress.d.ts +7 -0
- package/typings/packages/custom-ui-components/src/components/molecules/CreditCardAddress/CreditCardAddress.styles.d.ts +4 -0
- package/typings/packages/custom-ui-components/src/components/molecules/CreditCardAddress/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/CreditCardAddress/settings.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/CreditCardAddress/type.d.ts +5 -0
- package/typings/packages/custom-ui-components/src/components/molecules/CreditCardHolderDetails/CreditCardHolderDetails.d.ts +9 -0
- package/typings/packages/custom-ui-components/src/components/molecules/CreditCardHolderDetails/CreditCardHolderDetails.styles.d.ts +4 -0
- package/typings/packages/custom-ui-components/src/components/molecules/CreditCardHolderDetails/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/CreditCardHolderDetails/settings.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/CreditCardHolderDetails/type.d.ts +5 -0
- package/typings/packages/custom-ui-components/src/components/molecules/CreditCardHolderDetails/utils/formatExpirationYear.d.ts +1 -0
- package/typings/packages/custom-ui-components/src/components/molecules/CreditCardHolderDetails/utils/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/CreditCardNumber/CreditCardNumber.d.ts +6 -0
- package/typings/packages/custom-ui-components/src/components/molecules/CreditCardNumber/CreditCardNumber.styles.d.ts +4 -0
- package/typings/packages/custom-ui-components/src/components/molecules/CreditCardNumber/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/CreditCardNumber/settings.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/CreditCardNumber/type.d.ts +5 -0
- package/typings/packages/custom-ui-components/src/components/molecules/CreditCardNumber/utils/formatCardNumber.d.ts +1 -0
- package/typings/packages/custom-ui-components/src/components/molecules/CreditCardNumber/utils/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/DatePicker/DatePicker.d.ts +16 -0
- package/typings/packages/custom-ui-components/src/components/molecules/DatePicker/DatePicker.styles.d.ts +6 -0
- package/typings/packages/custom-ui-components/src/components/molecules/DatePicker/constants.d.ts +1 -0
- package/typings/packages/custom-ui-components/src/components/molecules/DatePicker/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/DatePicker/translations.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/DatePicker/types.d.ts +3 -0
- package/typings/packages/custom-ui-components/src/components/molecules/FormField/FormField.d.ts +20 -0
- package/typings/packages/custom-ui-components/src/components/molecules/FormField/FormField.styles.d.ts +13 -0
- package/typings/packages/custom-ui-components/src/components/molecules/FormField/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/FormField/settings.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/FormField/types.d.ts +5 -0
- package/typings/packages/custom-ui-components/src/components/molecules/FormField/utils/getMessage.d.ts +9 -0
- package/typings/packages/custom-ui-components/src/components/molecules/FormField/utils/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/InputLabel/InputLabel.d.ts +15 -0
- package/typings/packages/custom-ui-components/src/components/molecules/InputLabel/InputLabel.styles.d.ts +12 -0
- package/typings/packages/custom-ui-components/src/components/molecules/InputLabel/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/InputLabel/settings.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/InputLabel/types.d.ts +7 -0
- package/typings/packages/custom-ui-components/src/components/molecules/PageHeader/PageHeader.d.ts +11 -0
- package/typings/packages/custom-ui-components/src/components/molecules/PageHeader/PageHeader.styles.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/PageHeader/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/PageHeader/type.d.ts +1 -0
- package/typings/packages/custom-ui-components/src/components/molecules/PageHeaderSubtitle/PageHeaderSubtitle.d.ts +8 -0
- package/typings/packages/custom-ui-components/src/components/molecules/PageHeaderSubtitle/PageHeaderSubtitle.styles.d.ts +4 -0
- package/typings/packages/custom-ui-components/src/components/molecules/PageHeaderSubtitle/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/PageHeaderSubtitle/settings.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/PageHeaderSubtitle/type.d.ts +5 -0
- package/typings/packages/custom-ui-components/src/components/molecules/PageHeaderTitle/PageHeaderTitle.d.ts +8 -0
- package/typings/packages/custom-ui-components/src/components/molecules/PageHeaderTitle/PageHeaderTitle.styles.d.ts +4 -0
- package/typings/packages/custom-ui-components/src/components/molecules/PageHeaderTitle/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/PageHeaderTitle/settings.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/PageHeaderTitle/type.d.ts +5 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Pagination/Pagination.d.ts +8 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Pagination/Pagination.styles.d.ts +8 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Pagination/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Pagination/types.d.ts +6 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Pagination/utils/createPagination.d.ts +7 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Pagination/utils/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/RadioGroup/RadioGroup.d.ts +4 -0
- package/typings/packages/custom-ui-components/src/components/molecules/RadioGroup/RadioGroup.styles.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/RadioGroup/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/RadioGroup/types.d.ts +11 -0
- package/typings/packages/custom-ui-components/src/components/molecules/RadioSelect/RadioSelect.d.ts +11 -0
- package/typings/packages/custom-ui-components/src/components/molecules/RadioSelect/RadioSelect.styles.d.ts +9 -0
- package/typings/packages/custom-ui-components/src/components/molecules/RadioSelect/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/RadioSelect/settings.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/RadioSelect/types.d.ts +15 -0
- package/typings/packages/custom-ui-components/src/components/molecules/RelativeTime/RelativeTime.d.ts +11 -0
- package/typings/packages/custom-ui-components/src/components/molecules/RelativeTime/RelativeTime.styles.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/RelativeTime/index.d.ts +4 -0
- package/typings/packages/custom-ui-components/src/components/molecules/RelativeTime/translations.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/RelativeTime/types.d.ts +11 -0
- package/typings/packages/custom-ui-components/src/components/molecules/RelativeTime/utils/getOptions.d.ts +5 -0
- package/typings/packages/custom-ui-components/src/components/molecules/RelativeTime/utils/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Stepper/Stepper.d.ts +10 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Stepper/Stepper.styles.d.ts +3 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Stepper/components/StepHortizontal/StepHorizontal.d.ts +9 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Stepper/components/StepHortizontal/StepHorizontal.styles.d.ts +18 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Stepper/components/StepHortizontal/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Stepper/components/StepHortizontal/settings.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Stepper/components/StepHortizontal/types.d.ts +10 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Stepper/components/StepVertical/StepVertical.d.ts +11 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Stepper/components/StepVertical/StepVertical.styles.d.ts +9 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Stepper/components/StepVertical/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Stepper/components/StepVertical/settings.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Stepper/components/StepVertical/types.d.ts +9 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Stepper/components/index.d.ts +3 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Stepper/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/SubscriptionHeader/SubscriptionHeader.d.ts +17 -0
- package/typings/packages/custom-ui-components/src/components/molecules/SubscriptionHeader/SubscriptionHeader.styles.d.ts +4 -0
- package/typings/packages/custom-ui-components/src/components/molecules/SubscriptionHeader/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/SummaryTable/SummaryTable.d.ts +8 -0
- package/typings/packages/custom-ui-components/src/components/molecules/SummaryTable/SummaryTable.styles.d.ts +5 -0
- package/typings/packages/custom-ui-components/src/components/molecules/SummaryTable/fixtures.d.ts +3 -0
- package/typings/packages/custom-ui-components/src/components/molecules/SummaryTable/index.d.ts +4 -0
- package/typings/packages/custom-ui-components/src/components/molecules/SummaryTable/types.d.ts +10 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Tabs/Tabs.d.ts +11 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Tabs/Tabs.styles.d.ts +11 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Tabs/fixtures.d.ts +4 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Tabs/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Tabs/settings.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Tabs/types.d.ts +8 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Tag/Tag.d.ts +12 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Tag/Tag.styles.d.ts +8 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Tag/index.d.ts +4 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Tag/settings.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/Tag/types.d.ts +7 -0
- package/typings/packages/custom-ui-components/src/components/molecules/TagInput/TagInput.d.ts +19 -0
- package/typings/packages/custom-ui-components/src/components/molecules/TagInput/TagInput.styles.d.ts +9 -0
- package/typings/packages/custom-ui-components/src/components/molecules/TagInput/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/TagInput/settings.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/TagInput/types.d.ts +8 -0
- package/typings/packages/custom-ui-components/src/components/molecules/TagInput/utils.d.ts +1 -0
- package/typings/packages/custom-ui-components/src/components/molecules/TimePicker/TimePicker.d.ts +14 -0
- package/typings/packages/custom-ui-components/src/components/molecules/TimePicker/TimePicker.styles.d.ts +4 -0
- package/typings/packages/custom-ui-components/src/components/molecules/TimePicker/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/TimePicker/translations.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/TimePicker/types.d.ts +7 -0
- package/typings/packages/custom-ui-components/src/components/molecules/TimePicker/utils/getInputValue.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/TimePicker/utils/getTimeOptions.d.ts +4 -0
- package/typings/packages/custom-ui-components/src/components/molecules/TimePicker/utils/index.d.ts +3 -0
- package/typings/packages/custom-ui-components/src/components/molecules/ToastMessage/ToastMessage.d.ts +10 -0
- package/typings/packages/custom-ui-components/src/components/molecules/ToastMessage/ToastMessage.styles.d.ts +9 -0
- package/typings/packages/custom-ui-components/src/components/molecules/ToastMessage/constants.d.ts +3 -0
- package/typings/packages/custom-ui-components/src/components/molecules/ToastMessage/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/ToastMessage/settings.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/molecules/ToastMessage/types.d.ts +10 -0
- package/typings/packages/custom-ui-components/src/components/molecules/index.d.ts +25 -0
- package/typings/packages/custom-ui-components/src/components/molecules/settings.d.ts +20 -0
- package/typings/packages/custom-ui-components/src/components/organisms/BankAccount/BankAccount.d.ts +14 -0
- package/typings/packages/custom-ui-components/src/components/organisms/BankAccount/BankAccount.styles.d.ts +19 -0
- package/typings/packages/custom-ui-components/src/components/organisms/BankAccount/components/Watermark/Watermark.d.ts +3 -0
- package/typings/packages/custom-ui-components/src/components/organisms/BankAccount/components/Watermark/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/organisms/BankAccount/components/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/organisms/BankAccount/constants.d.ts +4 -0
- package/typings/packages/custom-ui-components/src/components/organisms/BankAccount/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/organisms/BankAccount/settings.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/organisms/BankAccount/types.d.ts +27 -0
- package/typings/packages/custom-ui-components/src/components/organisms/BankAccount/utils/formatAddressDetails.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/organisms/BankAccount/utils/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/CreditCard.d.ts +17 -0
- package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/CreditCard.styles.d.ts +10 -0
- package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/Chip/Chip.d.ts +3 -0
- package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/Chip/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/StatusMsg/StatusMsg.d.ts +10 -0
- package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/StatusMsg/StatusMsg.styles.d.ts +1 -0
- package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/StatusMsg/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/Watermark/Watermark.d.ts +8 -0
- package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/Watermark/Watermark.styles.d.ts +4 -0
- package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/Watermark/components/Master/Master.d.ts +3 -0
- package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/Watermark/components/Master/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/Watermark/components/Visa/Visa.d.ts +3 -0
- package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/Watermark/components/Visa/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/Watermark/components/index.d.ts +3 -0
- package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/Watermark/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/Watermark/settings.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/Watermark/types.d.ts +7 -0
- package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/index.d.ts +4 -0
- package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/constants.d.ts +1 -0
- package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/index.d.ts +6 -0
- package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/settings.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/types.d.ts +27 -0
- package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/utils/formatAddressDetails.d.ts +5 -0
- package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/utils/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/organisms/DateTimePicker/DatePicker.styles.d.ts +3 -0
- package/typings/packages/custom-ui-components/src/components/organisms/DateTimePicker/DateTimePicker.d.ts +12 -0
- package/typings/packages/custom-ui-components/src/components/organisms/DateTimePicker/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/organisms/Subscription/MeteredComponent/MeteredComponent.d.ts +4 -0
- package/typings/packages/custom-ui-components/src/components/organisms/Subscription/MeteredComponent/MeteredComponent.styles.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/organisms/Subscription/MeteredComponent/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/organisms/Subscription/MeteredComponent/types.d.ts +5 -0
- package/typings/packages/custom-ui-components/src/components/organisms/Subscription/OnOffComponent/OnOffComponent.d.ts +11 -0
- package/typings/packages/custom-ui-components/src/components/organisms/Subscription/OnOffComponent/OnOffComponent.styles.d.ts +3 -0
- package/typings/packages/custom-ui-components/src/components/organisms/Subscription/OnOffComponent/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/organisms/Subscription/PrepaidComponent/PrepaidComponent.d.ts +4 -0
- package/typings/packages/custom-ui-components/src/components/organisms/Subscription/PrepaidComponent/PrepaidComponent.styles.d.ts +8 -0
- package/typings/packages/custom-ui-components/src/components/organisms/Subscription/PrepaidComponent/constants.d.ts +8 -0
- package/typings/packages/custom-ui-components/src/components/organisms/Subscription/PrepaidComponent/index.d.ts +4 -0
- package/typings/packages/custom-ui-components/src/components/organisms/Subscription/PrepaidComponent/types.d.ts +21 -0
- package/typings/packages/custom-ui-components/src/components/organisms/Subscription/QuantityComponent/QuantityComponent.d.ts +4 -0
- package/typings/packages/custom-ui-components/src/components/organisms/Subscription/QuantityComponent/QuantityComponent.styles.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/organisms/Subscription/QuantityComponent/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/organisms/Subscription/QuantityComponent/types.d.ts +5 -0
- package/typings/packages/custom-ui-components/src/components/organisms/Table/Table.d.ts +22 -0
- package/typings/packages/custom-ui-components/src/components/organisms/Table/Table.styles.d.ts +8 -0
- package/typings/packages/custom-ui-components/src/components/organisms/Table/components/SortIndicator.d.ts +7 -0
- package/typings/packages/custom-ui-components/src/components/organisms/Table/components/TableBody.d.ts +1 -0
- package/typings/packages/custom-ui-components/src/components/organisms/Table/components/TableCell/TableCell.d.ts +8 -0
- package/typings/packages/custom-ui-components/src/components/organisms/Table/components/TableCell/TableCell.styles.d.ts +5 -0
- package/typings/packages/custom-ui-components/src/components/organisms/Table/components/TableCell/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/organisms/Table/components/TableCellContainer.d.ts +1 -0
- package/typings/packages/custom-ui-components/src/components/organisms/Table/components/TableFooter/TableFooter.d.ts +3 -0
- package/typings/packages/custom-ui-components/src/components/organisms/Table/components/TableFooter/types.d.ts +5 -0
- package/typings/packages/custom-ui-components/src/components/organisms/Table/components/TableHead.d.ts +4 -0
- package/typings/packages/custom-ui-components/src/components/organisms/Table/components/TableHeader/TableHeader.d.ts +4 -0
- package/typings/packages/custom-ui-components/src/components/organisms/Table/components/TableHeader/TableHeader.styles.d.ts +3 -0
- package/typings/packages/custom-ui-components/src/components/organisms/Table/components/TableHeader/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/organisms/Table/components/TableHeader/types.d.ts +11 -0
- package/typings/packages/custom-ui-components/src/components/organisms/Table/components/TableRow.d.ts +5 -0
- package/typings/packages/custom-ui-components/src/components/organisms/Table/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/organisms/Table/settings.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/components/organisms/Table/types.d.ts +14 -0
- package/typings/packages/custom-ui-components/src/components/organisms/index.d.ts +12 -0
- package/typings/packages/custom-ui-components/src/components/organisms/settings.d.ts +7 -0
- package/typings/packages/custom-ui-components/src/components/settings.d.ts +39 -0
- package/typings/packages/custom-ui-components/src/components/types.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/constants.d.ts +9 -0
- package/typings/packages/custom-ui-components/src/contexts/PortalContext.d.ts +4 -0
- package/typings/packages/custom-ui-components/src/contexts/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/docs/Grid.styles.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/docs/Spaces.d.ts +3 -0
- package/typings/packages/custom-ui-components/src/docs/Spaces.styles.d.ts +8 -0
- package/typings/packages/custom-ui-components/src/hooks/index.d.ts +4 -0
- package/typings/packages/custom-ui-components/src/hooks/useKeypress/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/hooks/useKeypress/useKeypress.d.ts +9 -0
- package/typings/packages/custom-ui-components/src/hooks/useModalVariant/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/hooks/useModalVariant/useModalVariant.d.ts +1 -0
- package/typings/packages/custom-ui-components/src/hooks/useOnClickOutside/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/hooks/useOnClickOutside/useOnClickOutside.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/index.d.ts +11 -0
- package/typings/packages/custom-ui-components/src/mixins/fontSmoothing.d.ts +1 -0
- package/typings/packages/custom-ui-components/src/mixins/index.d.ts +2 -0
- package/typings/packages/custom-ui-components/src/palette.d.ts +41 -0
- package/typings/packages/custom-ui-components/src/theme/ThemeProvider.d.ts +8 -0
- package/typings/packages/custom-ui-components/src/theme/ThemeUtilities.d.ts +13 -0
- package/typings/packages/custom-ui-components/src/theme/index.d.ts +4 -0
- package/typings/packages/custom-ui-components/src/theme/system/backgroundColor.d.ts +1 -0
- package/typings/packages/custom-ui-components/src/theme/system/index.d.ts +3 -0
- package/typings/packages/custom-ui-components/src/theme/types.d.ts +20 -0
- package/typings/packages/custom-ui-components/src/themeBase.d.ts +107 -0
- package/typings/packages/custom-ui-components/src/types.d.ts +16 -0
- package/typings/packages/customer-details/index.d.ts +1 -0
- package/typings/packages/customer-details/src/App.d.ts +4 -0
- package/typings/packages/customer-details/src/CustomerDetails.d.ts +7 -0
- package/typings/packages/customer-details/src/components/ContactDetails/ContactDetails.d.ts +8 -0
- package/typings/packages/customer-details/src/components/ContactDetails/index.d.ts +2 -0
- package/typings/packages/customer-details/src/components/ContactDetails/utils.d.ts +6 -0
- package/typings/packages/customer-details/src/components/ContactDetailsForm/ContactDetailsForm.d.ts +10 -0
- package/typings/packages/customer-details/src/components/ContactDetailsForm/ContactDetailsForm.styles.d.ts +4 -0
- package/typings/packages/customer-details/src/components/ContactDetailsForm/index.d.ts +2 -0
- package/typings/packages/customer-details/src/components/CustomFields/CustomFields.d.ts +8 -0
- package/typings/packages/customer-details/src/components/CustomFields/index.d.ts +2 -0
- package/typings/packages/customer-details/src/components/CustomFieldsForm/CustomFieldsForm.d.ts +12 -0
- package/typings/packages/customer-details/src/components/CustomFieldsForm/index.d.ts +2 -0
- package/typings/packages/customer-details/src/components/CustomerDetailsLoader/CustomerDetailsLoader.d.ts +3 -0
- package/typings/packages/customer-details/src/components/CustomerDetailsLoader/CustomerDetailsLoader.styles.d.ts +2 -0
- package/typings/packages/customer-details/src/components/CustomerDetailsLoader/index.d.ts +2 -0
- package/typings/packages/customer-details/src/components/DetailsRow/DetailsRow.d.ts +8 -0
- package/typings/packages/customer-details/src/components/DetailsRow/index.d.ts +2 -0
- package/typings/packages/customer-details/src/components/DetailsSectionLoadingSkeleton/DetailsSectionLoadingSkeleton.d.ts +3 -0
- package/typings/packages/customer-details/src/components/DetailsSectionLoadingSkeleton/index.d.ts +2 -0
- package/typings/packages/customer-details/src/components/ShippingAddress/ShippingAddress.d.ts +8 -0
- package/typings/packages/customer-details/src/components/ShippingAddress/index.d.ts +2 -0
- package/typings/packages/customer-details/src/components/ShippingAddressForm/ShippingAddressForm.d.ts +11 -0
- package/typings/packages/customer-details/src/components/ShippingAddressForm/index.d.ts +2 -0
- package/typings/packages/customer-details/src/components/index.d.ts +8 -0
- package/typings/packages/customer-details/src/constants.d.ts +1 -0
- package/typings/packages/customer-details/src/containers/CustomFieldsContainer/CustomFieldsContainer.d.ts +3 -0
- package/typings/packages/customer-details/src/containers/CustomFieldsContainer/index.d.ts +2 -0
- package/typings/packages/customer-details/src/containers/CustomerDetailsContainer/CustomerDetailsContainer.d.ts +3 -0
- package/typings/packages/customer-details/src/containers/CustomerDetailsContainer/CustomerDetailsContainer.styles.d.ts +2 -0
- package/typings/packages/customer-details/src/containers/CustomerDetailsContainer/index.d.ts +2 -0
- package/typings/packages/customer-details/src/contexts/ConfigContext.d.ts +3 -0
- package/typings/packages/customer-details/src/contexts/GlobalStateContext.d.ts +7 -0
- package/typings/packages/customer-details/src/contexts/index.d.ts +3 -0
- package/typings/packages/customer-details/src/hooks/index.d.ts +2 -0
- package/typings/packages/customer-details/src/hooks/useDataWithNames.d.ts +26 -0
- package/typings/packages/customer-details/src/index.d.ts +2 -0
- package/typings/packages/customer-details/src/machines/customFields/customFields.d.ts +6 -0
- package/typings/packages/customer-details/src/machines/customFields/selectors.d.ts +24 -0
- package/typings/packages/customer-details/src/machines/customFields/types.d.ts +6 -0
- package/typings/packages/customer-details/src/machines/customerData/customerData.d.ts +6 -0
- package/typings/packages/customer-details/src/machines/customerData/selectors.d.ts +38 -0
- package/typings/packages/customer-details/src/machines/customerData/types.d.ts +6 -0
- package/typings/packages/customer-details/src/models/customerDetails/index.d.ts +2 -0
- package/typings/packages/customer-details/src/models/customerDetails/types.d.ts +17 -0
- package/typings/packages/customer-details/src/models/index.d.ts +2 -0
- package/typings/packages/customer-details/src/providers/GlobalStateProvider.d.ts +6 -0
- package/typings/packages/customer-details/src/settings.d.ts +2 -0
- package/typings/packages/customer-details/src/types.d.ts +5 -0
- package/typings/packages/data-access/index.d.ts +1 -0
- package/typings/packages/data-access/src/DataAccess.d.ts +399 -0
- package/typings/packages/data-access/src/DataAccessContext.d.ts +5 -0
- package/typings/packages/data-access/src/constants.d.ts +1 -0
- package/typings/packages/data-access/src/index.d.ts +5 -0
- package/typings/packages/data-access/src/types/address.d.ts +8 -0
- package/typings/packages/data-access/src/types/addressDetails.d.ts +4 -0
- package/typings/packages/data-access/src/types/componentAllocation.d.ts +37 -0
- package/typings/packages/data-access/src/types/customField.d.ts +9 -0
- package/typings/packages/data-access/src/types/customerDetails.d.ts +15 -0
- package/typings/packages/data-access/src/types/gatewayConfig.d.ts +13 -0
- package/typings/packages/data-access/src/types/index.d.ts +20 -0
- package/typings/packages/data-access/src/types/invoicesList.d.ts +39 -0
- package/typings/packages/data-access/src/types/paymentProfiles.d.ts +35 -0
- package/typings/packages/data-access/src/types/productFamily.d.ts +4 -0
- package/typings/packages/data-access/src/types/subscription.d.ts +43 -0
- package/typings/packages/data-access/src/types/subscriptionComponent.d.ts +32 -0
- package/typings/packages/data-access/src/types/subscriptionPaymentProfile.d.ts +7 -0
- package/typings/packages/data-access/src/utils/index.d.ts +3 -0
- package/typings/packages/data-access/src/utils/prepareQueryParams.d.ts +1 -0
- package/typings/packages/data-access/src/utils/requestHandler.d.ts +2 -0
- package/typings/packages/device-provider/index.d.ts +1 -0
- package/typings/packages/device-provider/src/components/DeviceProvider/DeviceProvider.d.ts +8 -0
- package/typings/packages/device-provider/src/components/DeviceProvider/index.d.ts +2 -0
- package/typings/packages/device-provider/src/components/index.d.ts +2 -0
- package/typings/packages/device-provider/src/contexts/DeviceContext.d.ts +5 -0
- package/typings/packages/device-provider/src/contexts/index.d.ts +2 -0
- package/typings/packages/device-provider/src/hooks/index.d.ts +2 -0
- package/typings/packages/device-provider/src/hooks/useDeviceInfo.d.ts +3 -0
- package/typings/packages/device-provider/src/index.d.ts +6 -0
- package/typings/packages/device-provider/src/types.d.ts +1 -0
- package/typings/packages/embeddable-component/index.d.ts +1 -0
- package/typings/packages/embeddable-component/src/ComponentLoader/ComponentLoader.d.ts +8 -0
- package/typings/packages/embeddable-component/src/ComponentLoader/index.d.ts +2 -0
- package/typings/packages/embeddable-component/src/EmbeddableComponent/EmbeddableComponent.d.ts +24 -0
- package/typings/packages/embeddable-component/src/EmbeddableComponent/index.d.ts +3 -0
- package/typings/packages/embeddable-component/src/SessionGuard/SessionGuard.d.ts +11 -0
- package/typings/packages/embeddable-component/src/SessionGuard/index.d.ts +4 -0
- package/typings/packages/embeddable-component/src/index.d.ts +3 -0
- package/typings/packages/embeddable-component/src/types.d.ts +3 -0
- package/typings/packages/formatters/index.d.ts +1 -0
- package/typings/packages/formatters/src/constants.d.ts +1 -0
- package/typings/packages/formatters/src/formatBillingInterval.d.ts +3 -0
- package/typings/packages/formatters/src/formatCurrency.d.ts +31 -0
- package/typings/packages/formatters/src/formatDate.d.ts +2 -0
- package/typings/packages/formatters/src/index.d.ts +8 -0
- package/typings/packages/formatters/src/keysToSnakeCase.d.ts +2 -0
- package/typings/packages/formatters/src/manipulateDate.d.ts +6 -0
- package/typings/packages/icons/index.d.ts +1 -0
- package/typings/packages/icons/src/Icon.d.ts +4 -0
- package/typings/packages/icons/src/Icon.styles.d.ts +4 -0
- package/typings/packages/icons/src/constants.d.ts +1 -0
- package/typings/packages/icons/src/index.d.ts +4 -0
- package/typings/packages/icons/src/types.d.ts +8 -0
- package/typings/packages/icons/src/utils.d.ts +2 -0
- package/typings/packages/logger/index.d.ts +1 -0
- package/typings/packages/logger/src/index.d.ts +4 -0
- package/typings/packages/logger/src/logger.d.ts +3 -0
- package/typings/packages/payments-sdk/index.d.ts +1 -0
- package/typings/packages/payments-sdk/src/components/CardExpiration/CardExpiration.d.ts +8 -0
- package/typings/packages/payments-sdk/src/components/CardExpiration/CardExpiration.styles.d.ts +3 -0
- package/typings/packages/payments-sdk/src/components/CardExpiration/constants.d.ts +2 -0
- package/typings/packages/payments-sdk/src/components/CardExpiration/index.d.ts +2 -0
- package/typings/packages/payments-sdk/src/components/CardNumber/CardNumber.d.ts +7 -0
- package/typings/packages/payments-sdk/src/components/CardNumber/index.d.ts +2 -0
- package/typings/packages/payments-sdk/src/components/CreditCard/CreditCard.d.ts +12 -0
- package/typings/packages/payments-sdk/src/components/CreditCard/CreditCard.styles.d.ts +8 -0
- package/typings/packages/payments-sdk/src/components/CreditCard/components/FourDigit/FourDigit.d.ts +3 -0
- package/typings/packages/payments-sdk/src/components/CreditCard/components/FourDigit/index.d.ts +2 -0
- package/typings/packages/payments-sdk/src/components/CreditCard/components/ThreeDigit/ThreeDigit.d.ts +3 -0
- package/typings/packages/payments-sdk/src/components/CreditCard/components/ThreeDigit/index.d.ts +2 -0
- package/typings/packages/payments-sdk/src/components/CreditCard/components/TooltipContent/TooltipContent.d.ts +7 -0
- package/typings/packages/payments-sdk/src/components/CreditCard/components/TooltipContent/TooltipContent.styles.d.ts +3 -0
- package/typings/packages/payments-sdk/src/components/CreditCard/components/TooltipContent/index.d.ts +2 -0
- package/typings/packages/payments-sdk/src/components/CreditCard/components/TooltipContent/types.d.ts +4 -0
- package/typings/packages/payments-sdk/src/components/CreditCard/components/index.d.ts +2 -0
- package/typings/packages/payments-sdk/src/components/CreditCard/index.d.ts +4 -0
- package/typings/packages/payments-sdk/src/components/CreditCard/types.d.ts +8 -0
- package/typings/packages/payments-sdk/src/components/HostedField/HostedField.d.ts +11 -0
- package/typings/packages/payments-sdk/src/components/HostedField/HostedField.styles.d.ts +2 -0
- package/typings/packages/payments-sdk/src/components/HostedField/index.d.ts +4 -0
- package/typings/packages/payments-sdk/src/components/InputSocket/InputSocket.d.ts +8 -0
- package/typings/packages/payments-sdk/src/components/InputSocket/InputSocket.styles.d.ts +2 -0
- package/typings/packages/payments-sdk/src/components/InputSocket/index.d.ts +2 -0
- package/typings/packages/payments-sdk/src/components/PaymentProfileSkeleton/PaymentProfileSkeleton.d.ts +3 -0
- package/typings/packages/payments-sdk/src/components/PaymentProfileSkeleton/index.d.ts +2 -0
- package/typings/packages/payments-sdk/src/components/SecurityCode/SecurityCode.d.ts +7 -0
- package/typings/packages/payments-sdk/src/components/SecurityCode/index.d.ts +2 -0
- package/typings/packages/payments-sdk/src/components/index.d.ts +8 -0
- package/typings/packages/payments-sdk/src/constants.d.ts +2 -0
- package/typings/packages/payments-sdk/src/containers/PaymentsContainer/PaymentsContainer.d.ts +7 -0
- package/typings/packages/payments-sdk/src/containers/PaymentsContainer/index.d.ts +2 -0
- package/typings/packages/payments-sdk/src/containers/PaymentsContainer/utils/index.d.ts +2 -0
- package/typings/packages/payments-sdk/src/containers/PaymentsContainer/utils/waitForGlobalVariable.d.ts +1 -0
- package/typings/packages/payments-sdk/src/containers/index.d.ts +2 -0
- package/typings/packages/payments-sdk/src/contexts/PaymentsContext.d.ts +6 -0
- package/typings/packages/payments-sdk/src/contexts/index.d.ts +2 -0
- package/typings/packages/payments-sdk/src/forms/CreditCard/CreditCard.d.ts +21 -0
- package/typings/packages/payments-sdk/src/forms/CreditCard/index.d.ts +6 -0
- package/typings/packages/payments-sdk/src/forms/CreditCard/translations.d.ts +2 -0
- package/typings/packages/payments-sdk/src/forms/CreditCard/types.d.ts +29 -0
- package/typings/packages/payments-sdk/src/forms/CreditCard/utils/createFieldsConfig.d.ts +10 -0
- package/typings/packages/payments-sdk/src/forms/CreditCard/utils/createFieldsStyles.d.ts +75 -0
- package/typings/packages/payments-sdk/src/forms/CreditCard/utils/createValidationSchema.d.ts +9 -0
- package/typings/packages/payments-sdk/src/forms/CreditCard/utils/index.d.ts +5 -0
- package/typings/packages/payments-sdk/src/forms/CreditCard/utils/mapDetectedCreditCardType.d.ts +3 -0
- package/typings/packages/payments-sdk/src/forms/PaymentProfile/PaymentProfile.d.ts +30 -0
- package/typings/packages/payments-sdk/src/forms/PaymentProfile/constants.d.ts +2 -0
- package/typings/packages/payments-sdk/src/forms/PaymentProfile/index.d.ts +2 -0
- package/typings/packages/payments-sdk/src/forms/index.d.ts +5 -0
- package/typings/packages/payments-sdk/src/hooks/index.d.ts +3 -0
- package/typings/packages/payments-sdk/src/hooks/usePaymentProfileTranslations.d.ts +6 -0
- package/typings/packages/payments-sdk/src/hooks/usePaymentsForm.d.ts +1 -0
- package/typings/packages/payments-sdk/src/index.d.ts +6 -0
- package/typings/packages/payments-sdk/src/types.d.ts +29 -0
- package/typings/packages/session-manager/index.d.ts +1 -0
- package/typings/packages/session-manager/src/SessionManager/SessionManager.d.ts +31 -0
- package/typings/packages/session-manager/src/SessionManager/index.d.ts +4 -0
- package/typings/packages/session-manager/src/SessionManager/types.d.ts +14 -0
- package/typings/packages/session-manager/src/index.d.ts +4 -0
- package/typings/packages/subscriptions-manager/index.d.ts +1 -0
- package/typings/packages/subscriptions-manager/src/App.d.ts +4 -0
- package/typings/packages/subscriptions-manager/src/SubscriptionsManager.d.ts +7 -0
- package/typings/packages/subscriptions-manager/src/components/ComponentGroup/ComponentGroup.d.ts +9 -0
- package/typings/packages/subscriptions-manager/src/components/ComponentGroup/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationEdit/ComponentsAllocationEdit.d.ts +12 -0
- package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationEdit/ComponentsAllocationEdit.styles.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationEdit/components/ComponentsAllocationEditSkeleton/ComponentsAllocationEditSkeleton.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationEdit/components/ComponentsAllocationEditSkeleton/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationEdit/components/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationEdit/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationPreview/ComponentsAllocationPreview.d.ts +8 -0
- package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationPreview/ComponentsAllocationPreview.styles.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationPreview/components/AllocationsTable/AllocationsTable.d.ts +10 -0
- package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationPreview/components/AllocationsTable/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationPreview/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationPreview/utils/getAllocationSummaryPaymentMessage.d.ts +17 -0
- package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationPreview/utils/index.d.ts +5 -0
- package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationPreview/utils/mapAllocationsToTable.d.ts +12 -0
- package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationPreview/utils/mapChargeSummaryToTable.d.ts +10 -0
- package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationPreview/utils/sortComponentAllocations.d.ts +6 -0
- package/typings/packages/subscriptions-manager/src/components/ComponentsPreview/ComponentsPreview.d.ts +7 -0
- package/typings/packages/subscriptions-manager/src/components/ComponentsPreview/ComponentsPreview.styles.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/components/ComponentsPreview/components/ComponentsPreviewRow/ComponentsPreviewRow.d.ts +7 -0
- package/typings/packages/subscriptions-manager/src/components/ComponentsPreview/components/ComponentsPreviewRow/ComponentsPreviewRow.styles.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/components/ComponentsPreview/components/ComponentsPreviewRow/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/components/ComponentsPreview/index.d.ts +4 -0
- package/typings/packages/subscriptions-manager/src/components/ComponentsPreview/types.d.ts +10 -0
- package/typings/packages/subscriptions-manager/src/components/ComponentsPreview/utils/createComponentsPreviewRow.d.ts +12 -0
- package/typings/packages/subscriptions-manager/src/components/ComponentsPreview/utils/createOnOffRow.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/components/ComponentsPreview/utils/createQuantityRow.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/components/ComponentsPreview/utils/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/components/ComponentsPreview/utils/renderPrice.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/components/ContentLoader/ContentLoader.d.ts +11 -0
- package/typings/packages/subscriptions-manager/src/components/ContentLoader/ContentLoader.styles.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/components/ContentLoader/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/components/CustomFieldsForm/CustomFieldsForm.d.ts +9 -0
- package/typings/packages/subscriptions-manager/src/components/CustomFieldsForm/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/components/CustomFieldsPreview/CustomFieldsPreview.d.ts +11 -0
- package/typings/packages/subscriptions-manager/src/components/CustomFieldsPreview/components/CustomFieldsLoadingSkeleton/CustomFieldsLoadingSkeleton.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/components/CustomFieldsPreview/components/CustomFieldsLoadingSkeleton/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/components/CustomFieldsPreview/components/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/components/CustomFieldsPreview/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/components/DetailsRow/DetailsRow.d.ts +7 -0
- package/typings/packages/subscriptions-manager/src/components/DetailsRow/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/components/PaymentProfiles/PaymentProfiles.d.ts +16 -0
- package/typings/packages/subscriptions-manager/src/components/PaymentProfiles/PaymentProfiles.styles.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/components/PaymentProfiles/components/PaymentProfilesHeader/PaymentsProfilesHeader.d.ts +8 -0
- package/typings/packages/subscriptions-manager/src/components/PaymentProfiles/components/PaymentProfilesHeader/PaymentsProfilesHeader.styles.d.ts +1 -0
- package/typings/packages/subscriptions-manager/src/components/PaymentProfiles/components/PaymentProfilesHeader/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/components/PaymentProfiles/components/PaymentProfilesSkeletonLoader/PaymentProfilesSkeletonLoader.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/components/PaymentProfiles/components/PaymentProfilesSkeletonLoader/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/components/PaymentProfiles/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/components/PaymentProfiles/utils.d.ts +4 -0
- package/typings/packages/subscriptions-manager/src/components/RadioOptions/RadioOptions.styles.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/components/RadioOptions/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/components/ShowMore/ShowMore.d.ts +8 -0
- package/typings/packages/subscriptions-manager/src/components/ShowMore/ShowMore.styles.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/components/ShowMore/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/components/Subscription/Subscription.d.ts +32 -0
- package/typings/packages/subscriptions-manager/src/components/Subscription/Subscription.styles.d.ts +5 -0
- package/typings/packages/subscriptions-manager/src/components/Subscription/index.d.ts +4 -0
- package/typings/packages/subscriptions-manager/src/components/Subscription/motion.d.ts +14 -0
- package/typings/packages/subscriptions-manager/src/components/Subscription/types.d.ts +1 -0
- package/typings/packages/subscriptions-manager/src/components/SubscriptionComponents/SubscriptionComponents.d.ts +17 -0
- package/typings/packages/subscriptions-manager/src/components/SubscriptionComponents/components/ComponentLoadingSkeleton/ComponentLoadingSkeleton.d.ts +7 -0
- package/typings/packages/subscriptions-manager/src/components/SubscriptionComponents/components/ComponentLoadingSkeleton/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/components/SubscriptionComponents/components/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/components/SubscriptionComponents/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/components/SubscriptionComponents/types.d.ts +6 -0
- package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/SubscriptionDetails.d.ts +8 -0
- package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/Active/Active.d.ts +8 -0
- package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/Active/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/Canceled/Canceled.d.ts +7 -0
- package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/Canceled/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/CancellationScheduled/CancellationScheduled.d.ts +9 -0
- package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/CancellationScheduled/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/DetailRow/DetailRow.d.ts +15 -0
- package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/DetailRow/DetailRow.styles.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/DetailRow/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/Expired/Expired.d.ts +7 -0
- package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/Expired/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/Notification/Notification.d.ts +8 -0
- package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/Notification/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/OnHold/OnHold.d.ts +7 -0
- package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/OnHold/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/PastDue/PastDue.d.ts +8 -0
- package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/PastDue/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/Trial/Trial.d.ts +9 -0
- package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/Trial/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/TrialExpired/TrialExpired.d.ts +6 -0
- package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/TrialExpired/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/Unpaid/Unpaid.d.ts +7 -0
- package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/Unpaid/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/index.d.ts +11 -0
- package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/components/SubscriptionManagerLoader/SubscriptionManagerLoader.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/components/SubscriptionManagerLoader/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/components/index.d.ts +11 -0
- package/typings/packages/subscriptions-manager/src/containers/BilingDetailsContainer/BilingDetailsContainer.d.ts +9 -0
- package/typings/packages/subscriptions-manager/src/containers/BilingDetailsContainer/BilingDetailsContainer.styles.d.ts +1 -0
- package/typings/packages/subscriptions-manager/src/containers/BilingDetailsContainer/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/containers/ComponentContainer/ComponentContainer.d.ts +8 -0
- package/typings/packages/subscriptions-manager/src/containers/ComponentContainer/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/containers/ComponentsAllocationContainer/ComponentsAllocationContainer.d.ts +9 -0
- package/typings/packages/subscriptions-manager/src/containers/ComponentsAllocationContainer/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/containers/ComponentsContainer/ComponentsContainer.d.ts +7 -0
- package/typings/packages/subscriptions-manager/src/containers/ComponentsContainer/ComponentsContainer.styles.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/containers/ComponentsContainer/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/containers/CreatePaymentProfileContainer/CreatePaymentProfileContainer.d.ts +9 -0
- package/typings/packages/subscriptions-manager/src/containers/CreatePaymentProfileContainer/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/containers/CreatePaymentProfileErrorContainer/CreatePaymentProfileErrorContainer.d.ts +7 -0
- package/typings/packages/subscriptions-manager/src/containers/CreatePaymentProfileErrorContainer/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/containers/CreatePaymentProfileErrorContainer/types.d.ts +5 -0
- package/typings/packages/subscriptions-manager/src/containers/CustomFieldsContainer/CustomFieldsContainer.d.ts +7 -0
- package/typings/packages/subscriptions-manager/src/containers/CustomFieldsContainer/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/containers/ModalsContainer/ModalsContainer.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/containers/ModalsContainer/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/containers/PaymentProfileContainer/PaymentProfileContainer.d.ts +13 -0
- package/typings/packages/subscriptions-manager/src/containers/PaymentProfileContainer/constants.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/containers/PaymentProfileContainer/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/containers/PaymentProfileContainer/utils.d.ts +5 -0
- package/typings/packages/subscriptions-manager/src/containers/PaymentProfilesContainer/PaymentProfilesContainer.d.ts +7 -0
- package/typings/packages/subscriptions-manager/src/containers/PaymentProfilesContainer/fixture.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/containers/PaymentProfilesContainer/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/containers/SubscriptionContainer/SubscriptionContainer.d.ts +13 -0
- package/typings/packages/subscriptions-manager/src/containers/SubscriptionContainer/constants.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/containers/SubscriptionContainer/hooks/index.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/containers/SubscriptionContainer/hooks/useSubscriptionAvailableActions.d.ts +10 -0
- package/typings/packages/subscriptions-manager/src/containers/SubscriptionContainer/hooks/useSubscriptionIsActive.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/containers/SubscriptionContainer/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/containers/SubscriptionsContainer/SubscriptionsContainer.d.ts +8 -0
- package/typings/packages/subscriptions-manager/src/containers/SubscriptionsContainer/SubscriptionsContainer.styles.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/containers/SubscriptionsContainer/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/containers/index.d.ts +11 -0
- package/typings/packages/subscriptions-manager/src/contexts/ComponentsContext.d.ts +4 -0
- package/typings/packages/subscriptions-manager/src/contexts/ConfigContext.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/contexts/GlobalStateContext.d.ts +8 -0
- package/typings/packages/subscriptions-manager/src/contexts/PaymentProfilesContext.d.ts +8 -0
- package/typings/packages/subscriptions-manager/src/contexts/index.d.ts +5 -0
- package/typings/packages/subscriptions-manager/src/handlers/constants.d.ts +1 -0
- package/typings/packages/subscriptions-manager/src/handlers/gatewayConfig.d.ts +1 -0
- package/typings/packages/subscriptions-manager/src/handlers/index.d.ts +6 -0
- package/typings/packages/subscriptions-manager/src/handlers/paymentProfiles.d.ts +1 -0
- package/typings/packages/subscriptions-manager/src/handlers/product.d.ts +1 -0
- package/typings/packages/subscriptions-manager/src/handlers/subscription.d.ts +1 -0
- package/typings/packages/subscriptions-manager/src/hooks/index.d.ts +18 -0
- package/typings/packages/subscriptions-manager/src/hooks/useAddonsConfigurationService.d.ts +5 -0
- package/typings/packages/subscriptions-manager/src/hooks/useAvailablePaymentMethods.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/hooks/useCancelSubscriptionService.d.ts +4 -0
- package/typings/packages/subscriptions-manager/src/hooks/useChangePaymentProfile.d.ts +11 -0
- package/typings/packages/subscriptions-manager/src/hooks/useComponentSettings.d.ts +1 -0
- package/typings/packages/subscriptions-manager/src/hooks/useCreatePaymentProfile/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/hooks/useCreatePaymentProfile/serializeErrors.d.ts +11 -0
- package/typings/packages/subscriptions-manager/src/hooks/useCreatePaymentProfile/useCreatePaymentProfile.d.ts +21 -0
- package/typings/packages/subscriptions-manager/src/hooks/useDataAccess.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/hooks/useDeletePaymentProfile.d.ts +9 -0
- package/typings/packages/subscriptions-manager/src/hooks/useFormatSubscriptionDetails.d.ts +24 -0
- package/typings/packages/subscriptions-manager/src/hooks/usePauseSubscriptionService.d.ts +5 -0
- package/typings/packages/subscriptions-manager/src/hooks/usePaymentProfileAvailableActions/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/hooks/usePaymentProfileAvailableActions/usePaymentProfileAvailableActions.d.ts +7 -0
- package/typings/packages/subscriptions-manager/src/hooks/useReactivateSubscription.d.ts +4 -0
- package/typings/packages/subscriptions-manager/src/hooks/useResumeSubscriptionService.d.ts +5 -0
- package/typings/packages/subscriptions-manager/src/hooks/useServices.d.ts +6 -0
- package/typings/packages/subscriptions-manager/src/hooks/useSortPaymentProfiles/constants.d.ts +4 -0
- package/typings/packages/subscriptions-manager/src/hooks/useSortPaymentProfiles/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/hooks/useSortPaymentProfiles/useSortPaymentProfiles.d.ts +5 -0
- package/typings/packages/subscriptions-manager/src/hooks/useSubscriptionStatus.d.ts +8 -0
- package/typings/packages/subscriptions-manager/src/hooks/useUndoCancelationService.d.ts +4 -0
- package/typings/packages/subscriptions-manager/src/index.d.ts +4 -0
- package/typings/packages/subscriptions-manager/src/machines/addOnsConfiguration/actions.d.ts +5 -0
- package/typings/packages/subscriptions-manager/src/machines/addOnsConfiguration/index.d.ts +5 -0
- package/typings/packages/subscriptions-manager/src/machines/addOnsConfiguration/machine.d.ts +6 -0
- package/typings/packages/subscriptions-manager/src/machines/addOnsConfiguration/selectors.d.ts +42 -0
- package/typings/packages/subscriptions-manager/src/machines/addOnsConfiguration/serialize.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/machines/addOnsConfiguration/types.d.ts +97 -0
- package/typings/packages/subscriptions-manager/src/machines/addOnsConfiguration/utils/getPriceRange.d.ts +8 -0
- package/typings/packages/subscriptions-manager/src/machines/cancelSubscription/cancelSubscription.d.ts +5 -0
- package/typings/packages/subscriptions-manager/src/machines/cancelSubscription/index.d.ts +4 -0
- package/typings/packages/subscriptions-manager/src/machines/cancelSubscription/selectors.d.ts +25 -0
- package/typings/packages/subscriptions-manager/src/machines/cancelSubscription/types.d.ts +31 -0
- package/typings/packages/subscriptions-manager/src/machines/changePaymentProfile/changePaymentProfile.d.ts +5 -0
- package/typings/packages/subscriptions-manager/src/machines/changePaymentProfile/index.d.ts +4 -0
- package/typings/packages/subscriptions-manager/src/machines/changePaymentProfile/selectors.d.ts +21 -0
- package/typings/packages/subscriptions-manager/src/machines/changePaymentProfile/types.d.ts +16 -0
- package/typings/packages/subscriptions-manager/src/machines/component/component.d.ts +4 -0
- package/typings/packages/subscriptions-manager/src/machines/component/index.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/machines/component/selectors.d.ts +10 -0
- package/typings/packages/subscriptions-manager/src/machines/component/types.d.ts +4 -0
- package/typings/packages/subscriptions-manager/src/machines/components/components.d.ts +5 -0
- package/typings/packages/subscriptions-manager/src/machines/components/index.d.ts +5 -0
- package/typings/packages/subscriptions-manager/src/machines/components/selectors/getComponentsUpdatesAllowed.d.ts +4 -0
- package/typings/packages/subscriptions-manager/src/machines/components/selectors/getComponentsUsedInBilling.d.ts +12 -0
- package/typings/packages/subscriptions-manager/src/machines/components/selectors.d.ts +33 -0
- package/typings/packages/subscriptions-manager/src/machines/components/types.d.ts +16 -0
- package/typings/packages/subscriptions-manager/src/machines/components/utils/checkIfComponentIsUsedForBilling.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/machines/components/utils/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/machines/createPaymentProfile/actions.d.ts +12 -0
- package/typings/packages/subscriptions-manager/src/machines/createPaymentProfile/createPaymentProfile.d.ts +7 -0
- package/typings/packages/subscriptions-manager/src/machines/createPaymentProfile/index.d.ts +6 -0
- package/typings/packages/subscriptions-manager/src/machines/createPaymentProfile/selectors.d.ts +201 -0
- package/typings/packages/subscriptions-manager/src/machines/createPaymentProfile/serializers.d.ts +48 -0
- package/typings/packages/subscriptions-manager/src/machines/createPaymentProfile/types.d.ts +58 -0
- package/typings/packages/subscriptions-manager/src/machines/customFields/customFields.d.ts +5 -0
- package/typings/packages/subscriptions-manager/src/machines/customFields/selectors.d.ts +27 -0
- package/typings/packages/subscriptions-manager/src/machines/customFields/types.d.ts +5 -0
- package/typings/packages/subscriptions-manager/src/machines/deletePaymentProfile/deletePaymentProfile.d.ts +5 -0
- package/typings/packages/subscriptions-manager/src/machines/deletePaymentProfile/index.d.ts +5 -0
- package/typings/packages/subscriptions-manager/src/machines/deletePaymentProfile/selectors.d.ts +23 -0
- package/typings/packages/subscriptions-manager/src/machines/deletePaymentProfile/types.d.ts +15 -0
- package/typings/packages/subscriptions-manager/src/machines/index.d.ts +13 -0
- package/typings/packages/subscriptions-manager/src/machines/modals/index.d.ts +5 -0
- package/typings/packages/subscriptions-manager/src/machines/modals/modals.d.ts +5 -0
- package/typings/packages/subscriptions-manager/src/machines/modals/selectors.d.ts +155 -0
- package/typings/packages/subscriptions-manager/src/machines/modals/types.d.ts +96 -0
- package/typings/packages/subscriptions-manager/src/machines/pauseSubscription/index.d.ts +4 -0
- package/typings/packages/subscriptions-manager/src/machines/pauseSubscription/pauseSubscription.d.ts +5 -0
- package/typings/packages/subscriptions-manager/src/machines/pauseSubscription/selectors.d.ts +25 -0
- package/typings/packages/subscriptions-manager/src/machines/pauseSubscription/types.d.ts +29 -0
- package/typings/packages/subscriptions-manager/src/machines/paymentGateway/index.d.ts +5 -0
- package/typings/packages/subscriptions-manager/src/machines/paymentGateway/paymentGateway.d.ts +7 -0
- package/typings/packages/subscriptions-manager/src/machines/paymentGateway/selectors.d.ts +39 -0
- package/typings/packages/subscriptions-manager/src/machines/paymentGateway/types.d.ts +22 -0
- package/typings/packages/subscriptions-manager/src/machines/paymentProfiles/actions.d.ts +4 -0
- package/typings/packages/subscriptions-manager/src/machines/paymentProfiles/index.d.ts +4 -0
- package/typings/packages/subscriptions-manager/src/machines/paymentProfiles/paymentProfiles.d.ts +7 -0
- package/typings/packages/subscriptions-manager/src/machines/paymentProfiles/selectors.d.ts +19 -0
- package/typings/packages/subscriptions-manager/src/machines/paymentProfiles/serializers.d.ts +12 -0
- package/typings/packages/subscriptions-manager/src/machines/paymentProfiles/types.d.ts +30 -0
- package/typings/packages/subscriptions-manager/src/machines/productCatalog/actions.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/machines/productCatalog/index.d.ts +5 -0
- package/typings/packages/subscriptions-manager/src/machines/productCatalog/productCatalog.d.ts +6 -0
- package/typings/packages/subscriptions-manager/src/machines/productCatalog/selectors.d.ts +23 -0
- package/typings/packages/subscriptions-manager/src/machines/productCatalog/types.d.ts +20 -0
- package/typings/packages/subscriptions-manager/src/machines/reactivateSubscription/index.d.ts +4 -0
- package/typings/packages/subscriptions-manager/src/machines/reactivateSubscription/reactivateSubscription.d.ts +5 -0
- package/typings/packages/subscriptions-manager/src/machines/reactivateSubscription/selectors.d.ts +31 -0
- package/typings/packages/subscriptions-manager/src/machines/reactivateSubscription/types.d.ts +23 -0
- package/typings/packages/subscriptions-manager/src/machines/resumeSubscription/index.d.ts +4 -0
- package/typings/packages/subscriptions-manager/src/machines/resumeSubscription/resumeSubscription.d.ts +5 -0
- package/typings/packages/subscriptions-manager/src/machines/resumeSubscription/selectors.d.ts +25 -0
- package/typings/packages/subscriptions-manager/src/machines/resumeSubscription/types.d.ts +33 -0
- package/typings/packages/subscriptions-manager/src/machines/subscription/index.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/machines/subscription/selectors.d.ts +59 -0
- package/typings/packages/subscriptions-manager/src/machines/subscription/subscription.d.ts +12 -0
- package/typings/packages/subscriptions-manager/src/machines/subscription/types.d.ts +6 -0
- package/typings/packages/subscriptions-manager/src/machines/subscriptions/actions.d.ts +81 -0
- package/typings/packages/subscriptions-manager/src/machines/subscriptions/constants.d.ts +1 -0
- package/typings/packages/subscriptions-manager/src/machines/subscriptions/index.d.ts +7 -0
- package/typings/packages/subscriptions-manager/src/machines/subscriptions/selectors.d.ts +107 -0
- package/typings/packages/subscriptions-manager/src/machines/subscriptions/serializers.d.ts +16 -0
- package/typings/packages/subscriptions-manager/src/machines/subscriptions/subscriptions.d.ts +7 -0
- package/typings/packages/subscriptions-manager/src/machines/subscriptions/types.d.ts +48 -0
- package/typings/packages/subscriptions-manager/src/machines/undoCancelation/index.d.ts +4 -0
- package/typings/packages/subscriptions-manager/src/machines/undoCancelation/selectors.d.ts +25 -0
- package/typings/packages/subscriptions-manager/src/machines/undoCancelation/types.d.ts +15 -0
- package/typings/packages/subscriptions-manager/src/machines/undoCancelation/undoCancelation.d.ts +5 -0
- package/typings/packages/subscriptions-manager/src/mocks/allocation.d.ts +36 -0
- package/typings/packages/subscriptions-manager/src/mocks/components.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/mocks/customFields.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/mocks/gatewayConfig.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/mocks/index.d.ts +7 -0
- package/typings/packages/subscriptions-manager/src/mocks/paymentProfiles.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/mocks/products.d.ts +6 -0
- package/typings/packages/subscriptions-manager/src/mocks/subscriptions.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/CancelSubscription.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/components/ChurnResonCodes/ChurnReasonCodes.d.ts +8 -0
- package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/components/ChurnResonCodes/ChurnReasonCodes.styles.d.ts +1 -0
- package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/components/ChurnResonCodes/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/components/Content/Content.d.ts +12 -0
- package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/components/Content/Content.styles.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/components/Content/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/components/Form/Form.d.ts +14 -0
- package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/components/Form/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/components/index.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/constants.d.ts +5 -0
- package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/hooks/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/hooks/useCancelAvailableOptions.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/hooks/useCancelForm.d.ts +11 -0
- package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/machines/cancelForm.d.ts +5 -0
- package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/machines/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/machines/types.d.ts +20 -0
- package/typings/packages/subscriptions-manager/src/modals/ChangePaymentMethod/ChangePaymentMethod.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/modals/ChangePaymentMethod/Content/Content.d.ts +10 -0
- package/typings/packages/subscriptions-manager/src/modals/ChangePaymentMethod/Content/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/modals/ChangePaymentMethod/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/modals/ComponentsAllocation/ComponentsAllocation.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/modals/ComponentsAllocation/components/Content/Content.d.ts +9 -0
- package/typings/packages/subscriptions-manager/src/modals/ComponentsAllocation/components/Content/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/modals/ComponentsAllocation/components/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/modals/ComponentsAllocation/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/modals/CreatePaymentProfile/CreatePaymentProfile.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/modals/CreatePaymentProfile/components/Content/Content.d.ts +12 -0
- package/typings/packages/subscriptions-manager/src/modals/CreatePaymentProfile/components/Content/constants.d.ts +1 -0
- package/typings/packages/subscriptions-manager/src/modals/CreatePaymentProfile/components/Content/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/modals/CreatePaymentProfile/components/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/modals/CreatePaymentProfile/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/modals/DeletePaymentMethod/Content/Content.d.ts +8 -0
- package/typings/packages/subscriptions-manager/src/modals/DeletePaymentMethod/Content/constants.d.ts +1 -0
- package/typings/packages/subscriptions-manager/src/modals/DeletePaymentMethod/Content/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/modals/DeletePaymentMethod/DeletePaymentMethod.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/modals/DeletePaymentMethod/ErrorList/ErrorList.d.ts +10 -0
- package/typings/packages/subscriptions-manager/src/modals/DeletePaymentMethod/ErrorList/ErrorList.styles.d.ts +1 -0
- package/typings/packages/subscriptions-manager/src/modals/DeletePaymentMethod/ErrorList/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/modals/DeletePaymentMethod/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/modals/PauseSubscription/PauseSubscription.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/modals/PauseSubscription/components/Content/Content.d.ts +9 -0
- package/typings/packages/subscriptions-manager/src/modals/PauseSubscription/components/Content/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/modals/PauseSubscription/components/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/modals/PauseSubscription/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/modals/PreviewPaymentMethod/BillingAddress/BillingAddress.d.ts +7 -0
- package/typings/packages/subscriptions-manager/src/modals/PreviewPaymentMethod/BillingAddress/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/modals/PreviewPaymentMethod/Content/Content.d.ts +10 -0
- package/typings/packages/subscriptions-manager/src/modals/PreviewPaymentMethod/Content/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/modals/PreviewPaymentMethod/DetailsRow/DetailsRow.d.ts +7 -0
- package/typings/packages/subscriptions-manager/src/modals/PreviewPaymentMethod/DetailsRow/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/modals/PreviewPaymentMethod/PreviewPaymentMethod.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/modals/PreviewPaymentMethod/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/modals/ReactivateSubscription/ReactivateSubscription.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/modals/ReactivateSubscription/components/Content/Content.d.ts +9 -0
- package/typings/packages/subscriptions-manager/src/modals/ReactivateSubscription/components/Content/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/modals/ReactivateSubscription/components/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/modals/ReactivateSubscription/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/modals/ResumeSubscription/ResumeSubscription.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/modals/ResumeSubscription/components/Content/Content.d.ts +10 -0
- package/typings/packages/subscriptions-manager/src/modals/ResumeSubscription/components/Content/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/modals/ResumeSubscription/components/Content/utils.d.ts +10 -0
- package/typings/packages/subscriptions-manager/src/modals/ResumeSubscription/components/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/modals/ResumeSubscription/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/modals/UndoCancelation/UndoCancelation.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/modals/UndoCancelation/components/Content/Content.d.ts +9 -0
- package/typings/packages/subscriptions-manager/src/modals/UndoCancelation/components/Content/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/modals/UndoCancelation/components/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/modals/UndoCancelation/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/modals/index.d.ts +11 -0
- package/typings/packages/subscriptions-manager/src/modals/setupTest/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/modals/setupTest/modalTestRenderer.d.ts +7 -0
- package/typings/packages/subscriptions-manager/src/models/component/component.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/models/component/index.d.ts +4 -0
- package/typings/packages/subscriptions-manager/src/models/component/types.d.ts +66 -0
- package/typings/packages/subscriptions-manager/src/models/index.d.ts +7 -0
- package/typings/packages/subscriptions-manager/src/models/paymentProfile/index.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/models/paymentProfile/types.d.ts +43 -0
- package/typings/packages/subscriptions-manager/src/models/subscription/constants.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/models/subscription/index.d.ts +8 -0
- package/typings/packages/subscriptions-manager/src/models/subscription/serialize.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/models/subscription/subscription.d.ts +10 -0
- package/typings/packages/subscriptions-manager/src/models/subscription/types.d.ts +72 -0
- package/typings/packages/subscriptions-manager/src/pages/ComponentsAllocation/ComponentsAllocation.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/pages/ComponentsAllocation/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/pages/CustomFields/CustomFields.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/pages/CustomFields/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/pages/PaymentProfiles/PaymentProfiles.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/pages/PaymentProfiles/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/pages/Subscription/Subscription.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/pages/Subscription/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/pages/SubscriptionsList/SubscriptionsList.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/pages/SubscriptionsList/hooks/index.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/pages/SubscriptionsList/hooks/useProductCatalog.d.ts +7 -0
- package/typings/packages/subscriptions-manager/src/pages/SubscriptionsList/hooks/useSubscriptions.d.ts +6 -0
- package/typings/packages/subscriptions-manager/src/pages/SubscriptionsList/index.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/pages/index.d.ts +6 -0
- package/typings/packages/subscriptions-manager/src/providers/PaymentProfilesProvider.d.ts +6 -0
- package/typings/packages/subscriptions-manager/src/providers/StateProvider.d.ts +6 -0
- package/typings/packages/subscriptions-manager/src/providers/index.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/settings.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/types.d.ts +23 -0
- package/typings/packages/subscriptions-manager/src/utils/getComponentsAllocationErrorDescription.d.ts +3 -0
- package/typings/packages/subscriptions-manager/src/utils/index.d.ts +4 -0
- package/typings/packages/subscriptions-manager/src/utils/mergeComponentsWithAllocations.d.ts +2 -0
- package/typings/packages/subscriptions-manager/src/utils/sortSubscriptions.d.ts +2 -0
- package/typings/packages/toasts/index.d.ts +1 -0
- package/typings/packages/toasts/src/ToastsPlayground.d.ts +3 -0
- package/typings/packages/toasts/src/containers/ToastsContainer/ToastsContainer.d.ts +6 -0
- package/typings/packages/toasts/src/containers/ToastsContainer/ToastsContainer.styles.d.ts +3 -0
- package/typings/packages/toasts/src/containers/ToastsContainer/index.d.ts +2 -0
- package/typings/packages/toasts/src/containers/ToastsContainer/motion.d.ts +16 -0
- package/typings/packages/toasts/src/containers/index.d.ts +2 -0
- package/typings/packages/toasts/src/contexts/ToastMessagesContext.d.ts +5 -0
- package/typings/packages/toasts/src/contexts/index.d.ts +2 -0
- package/typings/packages/toasts/src/hooks/index.d.ts +2 -0
- package/typings/packages/toasts/src/hooks/useToastMessages.d.ts +1 -0
- package/typings/packages/toasts/src/index.d.ts +3 -0
- package/typings/packages/toasts/src/machines/index.d.ts +2 -0
- package/typings/packages/toasts/src/machines/toast/index.d.ts +2 -0
- package/typings/packages/toasts/src/machines/toast/toast.d.ts +8 -0
- package/typings/packages/toasts/src/machines/toast/types.d.ts +6 -0
- package/typings/packages/toasts/src/machines/toasts/constants.d.ts +1 -0
- package/typings/packages/toasts/src/machines/toasts/index.d.ts +2 -0
- package/typings/packages/toasts/src/machines/toasts/toasts.d.ts +5 -0
- package/typings/packages/toasts/src/machines/toasts/types.d.ts +23 -0
- package/typings/packages/toasts/src/types.d.ts +8 -0
- package/typings/packages/toasts/src/utils/index.d.ts +2 -0
- package/typings/packages/toasts/src/utils/setNotificationsPosition.d.ts +2 -0
- package/typings/sdk/components-sdk/src/SDK.d.ts +30 -0
- package/typings/sdk/components-sdk/src/constants.d.ts +2 -0
- package/typings/sdk/components-sdk/src/index.d.ts +2 -0
- package/typings/sdk/components-sdk/src/settings.d.ts +2 -0
- package/typings/sdk/components-sdk/src/types.d.ts +5 -0
- package/typings/sdk/components-sdk/src/utils/createComponentFactory.d.ts +9 -0
|
@@ -0,0 +1,399 @@
|
|
|
1
|
+
import { SessionManager } from "../../session-manager/src";
|
|
2
|
+
import { HttpMethod, CustomerDetails, Allocation, InvoicesParams } from './types';
|
|
3
|
+
import { CustomFieldUpdate } from './types/customField';
|
|
4
|
+
import { SubscriptionResumptionCharge } from './types/subscription';
|
|
5
|
+
export interface DataAccessOptions {
|
|
6
|
+
baseUrl?: string;
|
|
7
|
+
sessionManager: SessionManager;
|
|
8
|
+
}
|
|
9
|
+
declare class DataAccess {
|
|
10
|
+
baseUrl: string;
|
|
11
|
+
sessionManager: SessionManager;
|
|
12
|
+
constructor({ baseUrl, sessionManager }: DataAccessOptions);
|
|
13
|
+
performRequest<R>(url: string, body?: Record<string, any>, method?: HttpMethod): Promise<R>;
|
|
14
|
+
getProductsCatalog(): Promise<{
|
|
15
|
+
items: {
|
|
16
|
+
id: number;
|
|
17
|
+
name: string;
|
|
18
|
+
}[];
|
|
19
|
+
}>;
|
|
20
|
+
getComponents(subscriptionId: number): Promise<{
|
|
21
|
+
items: {
|
|
22
|
+
id: number;
|
|
23
|
+
name: string;
|
|
24
|
+
type: "quantity" | "metered" | "on_off" | "prepaid";
|
|
25
|
+
allocatedQuantity?: number;
|
|
26
|
+
enabled?: boolean;
|
|
27
|
+
recurring?: boolean;
|
|
28
|
+
description: string;
|
|
29
|
+
updatesAllowed: boolean;
|
|
30
|
+
allowFractionalQuantities: boolean;
|
|
31
|
+
pricePoint: {
|
|
32
|
+
id: number;
|
|
33
|
+
type: "per_unit" | "stairstep" | "volume" | "tiered";
|
|
34
|
+
prices: {
|
|
35
|
+
id: number;
|
|
36
|
+
startingQuantity: number;
|
|
37
|
+
endingQuantity: number;
|
|
38
|
+
priceInCents: number;
|
|
39
|
+
currency: string;
|
|
40
|
+
}[];
|
|
41
|
+
renewPrepaidAllocation?: boolean;
|
|
42
|
+
rolloverPrepaidRemainder?: boolean;
|
|
43
|
+
expirationInterval?: number;
|
|
44
|
+
expirationIntervalUnit?: "day" | "month";
|
|
45
|
+
};
|
|
46
|
+
unit: {
|
|
47
|
+
name: string;
|
|
48
|
+
balance?: number;
|
|
49
|
+
overageBalance?: number;
|
|
50
|
+
};
|
|
51
|
+
}[];
|
|
52
|
+
}>;
|
|
53
|
+
getGatewayConfig(): Promise<{
|
|
54
|
+
vaultCurrencies: {} extends infer T ? { [P in keyof T as import("type-fest").DelimiterCase<P, "_">]: {}[P]; } : never;
|
|
55
|
+
requiredFields: {
|
|
56
|
+
creditCard: string[];
|
|
57
|
+
};
|
|
58
|
+
serverHost: string;
|
|
59
|
+
publicKey: string;
|
|
60
|
+
secureToken: string;
|
|
61
|
+
defaultVaults: {};
|
|
62
|
+
threeDSecure: {
|
|
63
|
+
enabled: boolean;
|
|
64
|
+
};
|
|
65
|
+
}>;
|
|
66
|
+
createPaymentProfile(token: string): Promise<{
|
|
67
|
+
bankAccount: {
|
|
68
|
+
bankName: string;
|
|
69
|
+
maskedAccountNumber: string;
|
|
70
|
+
maskedRoutingNumber: string;
|
|
71
|
+
firstName: string;
|
|
72
|
+
lastName: string;
|
|
73
|
+
};
|
|
74
|
+
creditCard: {
|
|
75
|
+
firstName: string;
|
|
76
|
+
lastName: string;
|
|
77
|
+
cardType: string;
|
|
78
|
+
maskedNumber: string;
|
|
79
|
+
expirationMonth: number;
|
|
80
|
+
expirationYear: number;
|
|
81
|
+
expired: boolean;
|
|
82
|
+
};
|
|
83
|
+
address: {
|
|
84
|
+
address: string;
|
|
85
|
+
address2: string;
|
|
86
|
+
city: string;
|
|
87
|
+
country: string;
|
|
88
|
+
state: string;
|
|
89
|
+
zip: string;
|
|
90
|
+
};
|
|
91
|
+
}>;
|
|
92
|
+
updateSubscriptionPaymentProfile(paymentProfileId: number, subscriptionId: number): Promise<{}>;
|
|
93
|
+
resumeSubscription(subscriptionId: number): Promise<{}>;
|
|
94
|
+
getSubscriptionResumptionConfig(): Promise<{
|
|
95
|
+
resumptionCharge: SubscriptionResumptionCharge;
|
|
96
|
+
}>;
|
|
97
|
+
updateSubscriptionResumptionDate(subscriptionId: number, autoResumeDate: string): Promise<{
|
|
98
|
+
resumptionCharge: SubscriptionResumptionCharge;
|
|
99
|
+
}>;
|
|
100
|
+
getSubscriptions(): Promise<{
|
|
101
|
+
items: {
|
|
102
|
+
id: number;
|
|
103
|
+
productFamilyId: number;
|
|
104
|
+
state: string;
|
|
105
|
+
balanceInCents: number;
|
|
106
|
+
currentPeriodEndsAt: string;
|
|
107
|
+
nextAssessmentAt: string;
|
|
108
|
+
currentBillingAmountInCents: number;
|
|
109
|
+
automaticallyResumeAt: string;
|
|
110
|
+
expiresAt: string;
|
|
111
|
+
canceledAt: string;
|
|
112
|
+
scheduledCancellationAt: string;
|
|
113
|
+
currency: string;
|
|
114
|
+
billing: {
|
|
115
|
+
paymentProfileConnected: boolean;
|
|
116
|
+
bankAccount: {
|
|
117
|
+
bankName: string;
|
|
118
|
+
maskedAccountNumber: string;
|
|
119
|
+
maskedRoutingNumber: string;
|
|
120
|
+
firstName: string;
|
|
121
|
+
lastName: string;
|
|
122
|
+
};
|
|
123
|
+
creditCard: {
|
|
124
|
+
firstName: string;
|
|
125
|
+
lastName: string;
|
|
126
|
+
cardType: string;
|
|
127
|
+
maskedNumber: string;
|
|
128
|
+
expirationMonth: number;
|
|
129
|
+
expirationYear: number;
|
|
130
|
+
expired: boolean;
|
|
131
|
+
};
|
|
132
|
+
address: {
|
|
133
|
+
address: string;
|
|
134
|
+
address2: string;
|
|
135
|
+
city: string;
|
|
136
|
+
country: string;
|
|
137
|
+
state: string;
|
|
138
|
+
zip: string;
|
|
139
|
+
};
|
|
140
|
+
};
|
|
141
|
+
product: {
|
|
142
|
+
id: number;
|
|
143
|
+
name: string;
|
|
144
|
+
priceInCents: number;
|
|
145
|
+
interval: number;
|
|
146
|
+
intervalUnit: "day" | "month";
|
|
147
|
+
trialPriceInCents: number;
|
|
148
|
+
trialInterval: string;
|
|
149
|
+
trialIntervalUnit: string;
|
|
150
|
+
};
|
|
151
|
+
components: {
|
|
152
|
+
updatesAllowed: boolean;
|
|
153
|
+
usedInBilling: boolean;
|
|
154
|
+
};
|
|
155
|
+
customFields: {
|
|
156
|
+
updatesAllowed: boolean;
|
|
157
|
+
visible: boolean;
|
|
158
|
+
};
|
|
159
|
+
}[];
|
|
160
|
+
}>;
|
|
161
|
+
getCustomerDetails(): Promise<{
|
|
162
|
+
address: string;
|
|
163
|
+
address2: string;
|
|
164
|
+
ccEmails: string[];
|
|
165
|
+
city: string;
|
|
166
|
+
country: string;
|
|
167
|
+
email: string;
|
|
168
|
+
firstName: string;
|
|
169
|
+
lastName: string;
|
|
170
|
+
organization: string;
|
|
171
|
+
state: string;
|
|
172
|
+
vatNumber: string;
|
|
173
|
+
zip: string;
|
|
174
|
+
phoneNumber: string;
|
|
175
|
+
}>;
|
|
176
|
+
updateCustomerDetails(customerDetails: CustomerDetails): Promise<{
|
|
177
|
+
address: string;
|
|
178
|
+
address2: string;
|
|
179
|
+
ccEmails: string[];
|
|
180
|
+
city: string;
|
|
181
|
+
country: string;
|
|
182
|
+
email: string;
|
|
183
|
+
firstName: string;
|
|
184
|
+
lastName: string;
|
|
185
|
+
organization: string;
|
|
186
|
+
state: string;
|
|
187
|
+
vatNumber: string;
|
|
188
|
+
zip: string;
|
|
189
|
+
phoneNumber: string;
|
|
190
|
+
}>;
|
|
191
|
+
getCountrySubdivisions(countryCode: string): Promise<{
|
|
192
|
+
items: {
|
|
193
|
+
name: string;
|
|
194
|
+
code: string;
|
|
195
|
+
}[];
|
|
196
|
+
}>;
|
|
197
|
+
getCountries(): Promise<{
|
|
198
|
+
items: {
|
|
199
|
+
name: string;
|
|
200
|
+
code: string;
|
|
201
|
+
}[];
|
|
202
|
+
}>;
|
|
203
|
+
getInvoices(requestParams: InvoicesParams): Promise<{
|
|
204
|
+
pagination: {
|
|
205
|
+
totalItems: number;
|
|
206
|
+
totalPages: number;
|
|
207
|
+
itemsPerPage: number;
|
|
208
|
+
};
|
|
209
|
+
items: {
|
|
210
|
+
id: number;
|
|
211
|
+
number: string;
|
|
212
|
+
issueDate: string;
|
|
213
|
+
dueDate: string;
|
|
214
|
+
status: import("./types/invoicesList").InvoiceStatus;
|
|
215
|
+
totalAmountInCents: number;
|
|
216
|
+
amountDueInCents: number;
|
|
217
|
+
currency: string;
|
|
218
|
+
invoiceUrl: string;
|
|
219
|
+
consolidationLevel: import("./types/invoicesList").InvoiceConsolidationLevel;
|
|
220
|
+
}[];
|
|
221
|
+
}>;
|
|
222
|
+
getInvoiceFilters(): Promise<{
|
|
223
|
+
productNames: {
|
|
224
|
+
id: number;
|
|
225
|
+
name: string;
|
|
226
|
+
}[];
|
|
227
|
+
}>;
|
|
228
|
+
previewComponentAllocations(subscriptionId: number, body: {
|
|
229
|
+
allocations: Allocation[];
|
|
230
|
+
}): Promise<{
|
|
231
|
+
allocationsPreview: {
|
|
232
|
+
startDate: string;
|
|
233
|
+
endDate: string;
|
|
234
|
+
periodType: string;
|
|
235
|
+
totalInCents: number;
|
|
236
|
+
totalDiscountInCents: number;
|
|
237
|
+
totalTaxInCents: number;
|
|
238
|
+
subtotalInCents: number;
|
|
239
|
+
existingBalanceInCents: number;
|
|
240
|
+
accrueCharge: boolean;
|
|
241
|
+
currency: string;
|
|
242
|
+
componentsAllocations: {
|
|
243
|
+
id: number;
|
|
244
|
+
direction: "upgrade" | "downgrade";
|
|
245
|
+
transactionType: "credit" | "charge";
|
|
246
|
+
type: "quantity" | "metered" | "on_off" | "prepaid" | "event";
|
|
247
|
+
amountInCents: number;
|
|
248
|
+
taxableAmountInCents: number;
|
|
249
|
+
discountAmountInCents: number;
|
|
250
|
+
previousQuantity: number;
|
|
251
|
+
quantity: number;
|
|
252
|
+
memo: string;
|
|
253
|
+
componentHandle: string;
|
|
254
|
+
}[];
|
|
255
|
+
};
|
|
256
|
+
}>;
|
|
257
|
+
updateComponentAllocations(subscriptionId: number, body: {
|
|
258
|
+
allocations: Allocation[];
|
|
259
|
+
}): Promise<{
|
|
260
|
+
allocations: {
|
|
261
|
+
memo: string;
|
|
262
|
+
quantity: number;
|
|
263
|
+
id: number;
|
|
264
|
+
}[];
|
|
265
|
+
subscription: {
|
|
266
|
+
id: number;
|
|
267
|
+
balanceInCents: number;
|
|
268
|
+
currentBillingAmountInCents: number;
|
|
269
|
+
};
|
|
270
|
+
}>;
|
|
271
|
+
getSubscriptionCustomFields(subscriptionId: number): Promise<{
|
|
272
|
+
items: {
|
|
273
|
+
id: number;
|
|
274
|
+
name: string;
|
|
275
|
+
value: string;
|
|
276
|
+
visible: boolean;
|
|
277
|
+
fieldType: "radio" | "text" | "dropdown";
|
|
278
|
+
enum: string[];
|
|
279
|
+
}[];
|
|
280
|
+
}>;
|
|
281
|
+
getCustomerCustomFields(): Promise<{
|
|
282
|
+
items: {
|
|
283
|
+
id: number;
|
|
284
|
+
name: string;
|
|
285
|
+
value: string;
|
|
286
|
+
visible: boolean;
|
|
287
|
+
fieldType: "radio" | "text" | "dropdown";
|
|
288
|
+
enum: string[];
|
|
289
|
+
}[];
|
|
290
|
+
}>;
|
|
291
|
+
updateCustomerCustomFields(customFields: CustomFieldUpdate[]): Promise<{
|
|
292
|
+
fields: {
|
|
293
|
+
id: number;
|
|
294
|
+
value: string;
|
|
295
|
+
}[];
|
|
296
|
+
}>;
|
|
297
|
+
updateSubscriptionCustomFields(subscriptionId: number, customFields: CustomFieldUpdate[]): Promise<{
|
|
298
|
+
fields: {
|
|
299
|
+
id: number;
|
|
300
|
+
value: string;
|
|
301
|
+
}[];
|
|
302
|
+
}>;
|
|
303
|
+
pauseSubscription(subscriptionId: number, automaticallyResumeAt: Date | null): Promise<{
|
|
304
|
+
subscriptionId: number;
|
|
305
|
+
automaticallyResumeAt: string;
|
|
306
|
+
state: string;
|
|
307
|
+
}>;
|
|
308
|
+
cancelSubscription({ subscriptionId, ...rest }: {
|
|
309
|
+
subscriptionId: number;
|
|
310
|
+
cancellationMessage?: string;
|
|
311
|
+
scheduledCancellationAt?: string | null;
|
|
312
|
+
cancelAtEndOfPeriod?: boolean;
|
|
313
|
+
churnReasonCode?: string;
|
|
314
|
+
}): Promise<{
|
|
315
|
+
canceledAt?: string;
|
|
316
|
+
subscriptionId: number;
|
|
317
|
+
scheduledCancellationAt: string;
|
|
318
|
+
state: string;
|
|
319
|
+
}>;
|
|
320
|
+
getPaymentProfiles(): Promise<{
|
|
321
|
+
id: number;
|
|
322
|
+
expired?: boolean;
|
|
323
|
+
type: import("./types/paymentProfiles").PaymentProfileType;
|
|
324
|
+
requiredFields: string[];
|
|
325
|
+
vault: string;
|
|
326
|
+
bankAccount?: {
|
|
327
|
+
bankName: string;
|
|
328
|
+
maskedAccountNumber: string;
|
|
329
|
+
maskedRoutingNumber: string;
|
|
330
|
+
firstName: string;
|
|
331
|
+
lastName: string;
|
|
332
|
+
};
|
|
333
|
+
creditCard?: {
|
|
334
|
+
firstName: string;
|
|
335
|
+
lastName: string;
|
|
336
|
+
cardType: string;
|
|
337
|
+
maskedNumber: string;
|
|
338
|
+
expirationMonth: number;
|
|
339
|
+
expirationYear: number;
|
|
340
|
+
expired: boolean;
|
|
341
|
+
};
|
|
342
|
+
address?: {
|
|
343
|
+
address: string;
|
|
344
|
+
address2: string;
|
|
345
|
+
city: string;
|
|
346
|
+
country: string;
|
|
347
|
+
state: string;
|
|
348
|
+
zip: string;
|
|
349
|
+
};
|
|
350
|
+
}[]>;
|
|
351
|
+
deletePaymentProfile(paymentProfileId: number): Promise<{
|
|
352
|
+
id: number;
|
|
353
|
+
expired?: boolean;
|
|
354
|
+
type: import("./types/paymentProfiles").PaymentProfileType;
|
|
355
|
+
requiredFields: string[];
|
|
356
|
+
vault: string;
|
|
357
|
+
bankAccount?: {
|
|
358
|
+
bankName: string;
|
|
359
|
+
maskedAccountNumber: string;
|
|
360
|
+
maskedRoutingNumber: string;
|
|
361
|
+
firstName: string;
|
|
362
|
+
lastName: string;
|
|
363
|
+
};
|
|
364
|
+
creditCard?: {
|
|
365
|
+
firstName: string;
|
|
366
|
+
lastName: string;
|
|
367
|
+
cardType: string;
|
|
368
|
+
maskedNumber: string;
|
|
369
|
+
expirationMonth: number;
|
|
370
|
+
expirationYear: number;
|
|
371
|
+
expired: boolean;
|
|
372
|
+
};
|
|
373
|
+
address?: {
|
|
374
|
+
address: string;
|
|
375
|
+
address2: string;
|
|
376
|
+
city: string;
|
|
377
|
+
country: string;
|
|
378
|
+
state: string;
|
|
379
|
+
zip: string;
|
|
380
|
+
};
|
|
381
|
+
}[]>;
|
|
382
|
+
undoCancelation(subscriptionId: number): Promise<{}>;
|
|
383
|
+
getChurnReasonCodes(): Promise<{
|
|
384
|
+
items: {
|
|
385
|
+
id: number;
|
|
386
|
+
code: string;
|
|
387
|
+
description: string;
|
|
388
|
+
position: number;
|
|
389
|
+
}[];
|
|
390
|
+
}>;
|
|
391
|
+
getInvoicePDF(invoiceId: string): Promise<ArrayBuffer>;
|
|
392
|
+
reactivateSubscription(subscriptionId: number, couponCode?: string): Promise<{
|
|
393
|
+
id: number;
|
|
394
|
+
currentBillingAmountInCents: number;
|
|
395
|
+
nextAssessmentAt: string;
|
|
396
|
+
currentPeriodEndsAt: string;
|
|
397
|
+
}>;
|
|
398
|
+
}
|
|
399
|
+
export default DataAccess;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const DEFAULT_API_URL = "http://localhost:3000/api";
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import DataAccess from './DataAccess';
|
|
2
|
+
import { DataAccessContext } from './DataAccessContext';
|
|
3
|
+
import type { ProductFamily, Subscription, Division, Allocation, AllocationDetails, AllocationsPreview, AllocationsError, SubscriptionComponent, SubscriptionResumptionCharge } from './types';
|
|
4
|
+
export { DataAccess, DataAccessContext };
|
|
5
|
+
export type { ProductFamily, Subscription, Division, Allocation, AllocationDetails, AllocationsPreview, AllocationsError, SubscriptionResumptionCharge, SubscriptionComponent, };
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { Subscription } from './subscription';
|
|
2
|
+
export declare type AllocationDetails = {
|
|
3
|
+
id: number;
|
|
4
|
+
direction: 'upgrade' | 'downgrade';
|
|
5
|
+
transaction_type: 'charge' | 'credit';
|
|
6
|
+
type: 'metered' | 'quantity' | 'on_off' | 'prepaid' | 'event';
|
|
7
|
+
amount_in_cents: number;
|
|
8
|
+
taxable_amount_in_cents: number;
|
|
9
|
+
discount_amount_in_cents: number;
|
|
10
|
+
previous_quantity: number;
|
|
11
|
+
quantity: number;
|
|
12
|
+
memo: string;
|
|
13
|
+
component_handle: string;
|
|
14
|
+
};
|
|
15
|
+
export declare type Allocation = Pick<AllocationDetails, 'memo' | 'quantity' | 'id'>;
|
|
16
|
+
export declare type AllocationResponse = {
|
|
17
|
+
allocations: Allocation[];
|
|
18
|
+
subscription: Pick<Subscription, 'id' | 'current_billing_amount_in_cents' | 'balance_in_cents'>;
|
|
19
|
+
};
|
|
20
|
+
export declare type AllocationsPreview = {
|
|
21
|
+
start_date: string;
|
|
22
|
+
end_date: string;
|
|
23
|
+
period_type: string;
|
|
24
|
+
total_in_cents: number;
|
|
25
|
+
total_discount_in_cents: number;
|
|
26
|
+
total_tax_in_cents: number;
|
|
27
|
+
subtotal_in_cents: number;
|
|
28
|
+
existing_balance_in_cents: number;
|
|
29
|
+
accrue_charge: boolean;
|
|
30
|
+
currency: string;
|
|
31
|
+
components_allocations: AllocationDetails[];
|
|
32
|
+
};
|
|
33
|
+
export declare type AllocationsError = {
|
|
34
|
+
id: number;
|
|
35
|
+
quantity: number;
|
|
36
|
+
kind: 'allocation';
|
|
37
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export declare type CustomerDetails = {
|
|
2
|
+
address: string;
|
|
3
|
+
address2: string;
|
|
4
|
+
ccEmails: string[];
|
|
5
|
+
city: string;
|
|
6
|
+
country: string;
|
|
7
|
+
email: string;
|
|
8
|
+
firstName: string;
|
|
9
|
+
lastName: string;
|
|
10
|
+
organization: string;
|
|
11
|
+
state: string;
|
|
12
|
+
vatNumber: string;
|
|
13
|
+
zip: string;
|
|
14
|
+
phoneNumber: string;
|
|
15
|
+
};
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export declare type GatewayConfig = {
|
|
2
|
+
required_fields: {
|
|
3
|
+
credit_card: string[];
|
|
4
|
+
};
|
|
5
|
+
server_host: string;
|
|
6
|
+
public_key: string | null;
|
|
7
|
+
secure_token: string | null;
|
|
8
|
+
vaultCurrencies: Record<string, string[]>;
|
|
9
|
+
defaultVaults: Record<string, string>;
|
|
10
|
+
three_d_secure: {
|
|
11
|
+
enabled: boolean;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { CamelCasedPropertiesDeep } from 'type-fest';
|
|
2
|
+
import type { Subscription, SubscriptionResumptionCharge } from './subscription';
|
|
3
|
+
import { SubscriptionPaymentProfile } from './subscriptionPaymentProfile';
|
|
4
|
+
import { SubscriptionComponent, SubscriptionComponentPriceStep } from './subscriptionComponent';
|
|
5
|
+
import type { ProductFamily } from './productFamily';
|
|
6
|
+
import type { CustomerDetails } from './customerDetails';
|
|
7
|
+
import { GatewayConfig } from './gatewayConfig';
|
|
8
|
+
import { Division } from './addressDetails';
|
|
9
|
+
import { CustomField } from './customField';
|
|
10
|
+
import { Allocation, AllocationsError, AllocationsPreview, AllocationDetails } from './componentAllocation';
|
|
11
|
+
import { InvoicesList, InvoicesParams } from './invoicesList';
|
|
12
|
+
import { BankAccount, CreditCard } from './paymentProfiles';
|
|
13
|
+
export declare type APIResponse<R> = CamelCasedPropertiesDeep<R>;
|
|
14
|
+
export declare enum HttpMethod {
|
|
15
|
+
GET = "get",
|
|
16
|
+
POST = "post",
|
|
17
|
+
PUT = "put",
|
|
18
|
+
DELETE = "delete"
|
|
19
|
+
}
|
|
20
|
+
export type { CreditCard, BankAccount, ProductFamily, SubscriptionComponent, SubscriptionComponentPriceStep, SubscriptionResumptionCharge, Subscription, SubscriptionPaymentProfile, CustomerDetails, GatewayConfig, Division, Allocation, AllocationsError, AllocationsPreview, AllocationDetails, CustomField, InvoicesList, InvoicesParams, };
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
export declare type InvoicesList = {
|
|
2
|
+
pagination: {
|
|
3
|
+
totalItems: number;
|
|
4
|
+
totalPages: number;
|
|
5
|
+
itemsPerPage: number;
|
|
6
|
+
};
|
|
7
|
+
items: Invoice[];
|
|
8
|
+
};
|
|
9
|
+
export declare type InvoicesParams = {
|
|
10
|
+
limit: number;
|
|
11
|
+
page: number;
|
|
12
|
+
sortBy?: string;
|
|
13
|
+
sortDirection?: SortDir;
|
|
14
|
+
status?: InvoiceStatus[];
|
|
15
|
+
invoiceNumber?: string;
|
|
16
|
+
productIds?: number[];
|
|
17
|
+
};
|
|
18
|
+
export declare type Invoice = {
|
|
19
|
+
id: number;
|
|
20
|
+
number: string;
|
|
21
|
+
issueDate: string;
|
|
22
|
+
dueDate: string;
|
|
23
|
+
status: InvoiceStatus;
|
|
24
|
+
totalAmountInCents: number;
|
|
25
|
+
amountDueInCents: number;
|
|
26
|
+
currency: string;
|
|
27
|
+
invoiceUrl: string;
|
|
28
|
+
consolidationLevel: InvoiceConsolidationLevel;
|
|
29
|
+
};
|
|
30
|
+
export declare type ProductNames = {
|
|
31
|
+
product_names: ProductName[];
|
|
32
|
+
};
|
|
33
|
+
export declare type InvoiceStatus = 'draft' | 'open' | 'paid' | 'pending' | 'voided' | 'canceled';
|
|
34
|
+
export declare type InvoiceConsolidationLevel = 'none' | 'parent' | 'child';
|
|
35
|
+
export declare type SortDir = 'asc' | 'desc';
|
|
36
|
+
export declare type ProductName = {
|
|
37
|
+
id: number;
|
|
38
|
+
name: string;
|
|
39
|
+
};
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
export declare type PaymentProfileType = 'bank_account' | 'credit_card';
|
|
2
|
+
export declare type BankAccount = {
|
|
3
|
+
bank_name: string;
|
|
4
|
+
masked_account_number: string;
|
|
5
|
+
masked_routing_number: string;
|
|
6
|
+
first_name: string;
|
|
7
|
+
last_name: string;
|
|
8
|
+
};
|
|
9
|
+
export declare type CreditCard = {
|
|
10
|
+
first_name: string | null;
|
|
11
|
+
last_name: string | null;
|
|
12
|
+
card_type: string;
|
|
13
|
+
masked_number: string;
|
|
14
|
+
expiration_month: number;
|
|
15
|
+
expiration_year: number;
|
|
16
|
+
expired: boolean;
|
|
17
|
+
};
|
|
18
|
+
export declare type PaymentProfile = {
|
|
19
|
+
id: number;
|
|
20
|
+
expired?: boolean;
|
|
21
|
+
type: PaymentProfileType;
|
|
22
|
+
requiredFields: string[];
|
|
23
|
+
vault: string;
|
|
24
|
+
bankAccount?: BankAccount;
|
|
25
|
+
creditCard?: CreditCard;
|
|
26
|
+
address?: Address;
|
|
27
|
+
};
|
|
28
|
+
export declare type Address = {
|
|
29
|
+
address: string | null;
|
|
30
|
+
address2: string | null;
|
|
31
|
+
city: string | null;
|
|
32
|
+
country: string | null;
|
|
33
|
+
state: string | null;
|
|
34
|
+
zip: string | null;
|
|
35
|
+
};
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { SubscriptionPaymentProfile } from './subscriptionPaymentProfile';
|
|
2
|
+
export declare type Subscription = {
|
|
3
|
+
id: number;
|
|
4
|
+
product_family_id: number;
|
|
5
|
+
state: string;
|
|
6
|
+
balance_in_cents: number;
|
|
7
|
+
current_period_ends_at: string | null;
|
|
8
|
+
next_assessment_at: string | null;
|
|
9
|
+
current_billing_amount_in_cents: number;
|
|
10
|
+
automatically_resume_at: string | null;
|
|
11
|
+
expires_at: string | null;
|
|
12
|
+
canceled_at: string | null;
|
|
13
|
+
scheduled_cancellation_at: string | null;
|
|
14
|
+
currency: string;
|
|
15
|
+
billing: {
|
|
16
|
+
payment_profile_connected: boolean;
|
|
17
|
+
} & SubscriptionPaymentProfile;
|
|
18
|
+
product: {
|
|
19
|
+
id: number;
|
|
20
|
+
name: string;
|
|
21
|
+
price_in_cents: number;
|
|
22
|
+
interval: number;
|
|
23
|
+
interval_unit: 'day' | 'month';
|
|
24
|
+
trial_price_in_cents: number | null;
|
|
25
|
+
trial_interval: string | null;
|
|
26
|
+
trial_interval_unit: string | null;
|
|
27
|
+
};
|
|
28
|
+
components: {
|
|
29
|
+
updates_allowed: boolean;
|
|
30
|
+
used_in_billing: boolean;
|
|
31
|
+
};
|
|
32
|
+
custom_fields: {
|
|
33
|
+
updates_allowed: boolean;
|
|
34
|
+
visible: boolean;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
export declare type SubscriptionResumptionCharge = 'prorated' | 'immediate' | 'delayed';
|
|
38
|
+
export declare type ChurnReason = {
|
|
39
|
+
id: number;
|
|
40
|
+
code: string;
|
|
41
|
+
description: string;
|
|
42
|
+
position: number;
|
|
43
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
export declare type SubscriptionComponentPriceStep = {
|
|
2
|
+
id: number;
|
|
3
|
+
starting_quantity: number;
|
|
4
|
+
ending_quantity: number;
|
|
5
|
+
price_in_cents: number;
|
|
6
|
+
currency: string;
|
|
7
|
+
};
|
|
8
|
+
export declare type SubscriptionComponent = {
|
|
9
|
+
id: number;
|
|
10
|
+
name: string;
|
|
11
|
+
type: 'metered' | 'quantity' | 'on_off' | 'prepaid';
|
|
12
|
+
allocated_quantity?: number;
|
|
13
|
+
enabled?: boolean;
|
|
14
|
+
recurring?: boolean;
|
|
15
|
+
description: string;
|
|
16
|
+
updates_allowed: boolean;
|
|
17
|
+
allow_fractional_quantities: boolean;
|
|
18
|
+
price_point: {
|
|
19
|
+
id: null | number;
|
|
20
|
+
type: 'per_unit' | 'stairstep' | 'volume' | 'tiered' | null;
|
|
21
|
+
prices: SubscriptionComponentPriceStep[];
|
|
22
|
+
renew_prepaid_allocation?: boolean;
|
|
23
|
+
rollover_prepaid_remainder?: boolean;
|
|
24
|
+
expiration_interval?: number;
|
|
25
|
+
expiration_interval_unit?: 'day' | 'month';
|
|
26
|
+
};
|
|
27
|
+
unit: {
|
|
28
|
+
name: string;
|
|
29
|
+
balance?: number;
|
|
30
|
+
overage_balance?: number;
|
|
31
|
+
};
|
|
32
|
+
};
|