@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.
Files changed (1107) hide show
  1. package/README.md +91 -0
  2. package/dist/maxio-components.cjs.js +2 -0
  3. package/dist/maxio-components.cjs.js.map +1 -0
  4. package/dist/maxio-components.esm.js +1 -0
  5. package/dist/maxio-components.umd.js +16978 -0
  6. package/package.json +186 -0
  7. package/typings/packages/address/index.d.ts +1 -0
  8. package/typings/packages/address/src/components/SelectField/SelectField.d.ts +18 -0
  9. package/typings/packages/address/src/components/SelectField/SelectField.styles.d.ts +5 -0
  10. package/typings/packages/address/src/components/SelectField/index.d.ts +2 -0
  11. package/typings/packages/address/src/components/index.d.ts +2 -0
  12. package/typings/packages/address/src/constants.d.ts +4 -0
  13. package/typings/packages/address/src/containers/Address/Address.d.ts +16 -0
  14. package/typings/packages/address/src/containers/Address/index.d.ts +4 -0
  15. package/typings/packages/address/src/containers/Address/translations.d.ts +2 -0
  16. package/typings/packages/address/src/containers/Address/types.d.ts +43 -0
  17. package/typings/packages/address/src/containers/Address/utils.ts/formatOptions.d.ts +5 -0
  18. package/typings/packages/address/src/containers/Address/utils.ts/index.d.ts +2 -0
  19. package/typings/packages/address/src/containers/index.d.ts +4 -0
  20. package/typings/packages/address/src/hooks/index.d.ts +2 -0
  21. package/typings/packages/address/src/hooks/useFormatAddress.d.ts +2 -0
  22. package/typings/packages/address/src/index.d.ts +9 -0
  23. package/typings/packages/address/src/machines/address/address.d.ts +7 -0
  24. package/typings/packages/address/src/machines/address/index.d.ts +3 -0
  25. package/typings/packages/address/src/machines/address/selectors.d.ts +24 -0
  26. package/typings/packages/address/src/machines/address/types.d.ts +11 -0
  27. package/typings/packages/address/src/machines/index.d.ts +2 -0
  28. package/typings/packages/address/src/types.d.ts +9 -0
  29. package/typings/packages/address/src/utils/createValidationSchema.d.ts +17 -0
  30. package/typings/packages/address/src/utils/index.d.ts +2 -0
  31. package/typings/packages/billing-history/index.d.ts +1 -0
  32. package/typings/packages/billing-history/src/App.d.ts +4 -0
  33. package/typings/packages/billing-history/src/BillingHistory.d.ts +7 -0
  34. package/typings/packages/billing-history/src/components/BillingHistoryLoader/BillingHistoryLoader.d.ts +3 -0
  35. package/typings/packages/billing-history/src/components/BillingHistoryLoader/BillingHistoryLoader.styles.d.ts +2 -0
  36. package/typings/packages/billing-history/src/components/BillingHistoryLoader/index.d.ts +2 -0
  37. package/typings/packages/billing-history/src/components/Filters/Filters.d.ts +18 -0
  38. package/typings/packages/billing-history/src/components/Filters/Filters.styles.d.ts +3 -0
  39. package/typings/packages/billing-history/src/components/Filters/components/DateFilter/DateFilter.d.ts +10 -0
  40. package/typings/packages/billing-history/src/components/Filters/components/DateFilter/DateFilter.styles.d.ts +2 -0
  41. package/typings/packages/billing-history/src/components/Filters/components/DateFilter/index.d.ts +2 -0
  42. package/typings/packages/billing-history/src/components/Filters/components/FilterBox/FilterBox.d.ts +8 -0
  43. package/typings/packages/billing-history/src/components/Filters/components/FilterBox/FilterBox.styles.d.ts +1 -0
  44. package/typings/packages/billing-history/src/components/Filters/components/FilterBox/index.d.ts +4 -0
  45. package/typings/packages/billing-history/src/components/Filters/components/FiltersWrapper/FiltersWrapper.d.ts +1 -0
  46. package/typings/packages/billing-history/src/components/Filters/components/InvoiceNumberFilter/InvoiceNumberFilter.d.ts +8 -0
  47. package/typings/packages/billing-history/src/components/Filters/components/InvoiceNumberFilter/index.d.ts +2 -0
  48. package/typings/packages/billing-history/src/components/Filters/components/ProductNameFilter/ProductNameFilter.d.ts +11 -0
  49. package/typings/packages/billing-history/src/components/Filters/components/ProductNameFilter/index.d.ts +2 -0
  50. package/typings/packages/billing-history/src/components/Filters/components/StatusFilter/StatusFilter.d.ts +8 -0
  51. package/typings/packages/billing-history/src/components/Filters/components/StatusFilter/index.d.ts +2 -0
  52. package/typings/packages/billing-history/src/components/Filters/components/index.d.ts +6 -0
  53. package/typings/packages/billing-history/src/components/Filters/constants.d.ts +3 -0
  54. package/typings/packages/billing-history/src/components/Filters/index.d.ts +2 -0
  55. package/typings/packages/billing-history/src/components/Filters/motion.d.ts +18 -0
  56. package/typings/packages/billing-history/src/components/Filters/types.d.ts +10 -0
  57. package/typings/packages/billing-history/src/components/InvoicesTable/InvoicesTable.d.ts +24 -0
  58. package/typings/packages/billing-history/src/components/InvoicesTable/InvoicesTable.styles.d.ts +1 -0
  59. package/typings/packages/billing-history/src/components/InvoicesTable/components/IconWIthTooltip.d.ts +7 -0
  60. package/typings/packages/billing-history/src/components/InvoicesTable/components/NoInvoicesMsg.d.ts +5 -0
  61. package/typings/packages/billing-history/src/components/InvoicesTable/components/PagesPagination.d.ts +10 -0
  62. package/typings/packages/billing-history/src/components/InvoicesTable/components/PagesPagination.styles.d.ts +3 -0
  63. package/typings/packages/billing-history/src/components/InvoicesTable/components/SkeletonWrapper.d.ts +2 -0
  64. package/typings/packages/billing-history/src/components/InvoicesTable/components/Status.d.ts +7 -0
  65. package/typings/packages/billing-history/src/components/InvoicesTable/components/index.d.ts +5 -0
  66. package/typings/packages/billing-history/src/components/InvoicesTable/index.d.ts +2 -0
  67. package/typings/packages/billing-history/src/components/InvoicesTable/types.d.ts +5 -0
  68. package/typings/packages/billing-history/src/components/InvoicesTable/utils.d.ts +2 -0
  69. package/typings/packages/billing-history/src/constants.d.ts +1 -0
  70. package/typings/packages/billing-history/src/containers/BillingHistoryContainer/BillingHistoryContainer.d.ts +3 -0
  71. package/typings/packages/billing-history/src/containers/BillingHistoryContainer/constants.d.ts +1 -0
  72. package/typings/packages/billing-history/src/containers/BillingHistoryContainer/index.d.ts +2 -0
  73. package/typings/packages/billing-history/src/containers/FiltersContainer/FiltersContainer.d.ts +3 -0
  74. package/typings/packages/billing-history/src/containers/FiltersContainer/index.d.ts +2 -0
  75. package/typings/packages/billing-history/src/containers/ProductsContainer/ProductsContainer.d.ts +10 -0
  76. package/typings/packages/billing-history/src/containers/ProductsContainer/constants.d.ts +1 -0
  77. package/typings/packages/billing-history/src/containers/ProductsContainer/index.d.ts +2 -0
  78. package/typings/packages/billing-history/src/containers/index.d.ts +2 -0
  79. package/typings/packages/billing-history/src/contexts/ConfigContext.d.ts +3 -0
  80. package/typings/packages/billing-history/src/contexts/GlobalStateContext.d.ts +9 -0
  81. package/typings/packages/billing-history/src/contexts/index.d.ts +3 -0
  82. package/typings/packages/billing-history/src/hooks/index.d.ts +2 -0
  83. package/typings/packages/billing-history/src/hooks/useOutsideClick.d.ts +2 -0
  84. package/typings/packages/billing-history/src/hooks/useServices.d.ts +5 -0
  85. package/typings/packages/billing-history/src/index.d.ts +2 -0
  86. package/typings/packages/billing-history/src/machines/billingFilters/actions.d.ts +24 -0
  87. package/typings/packages/billing-history/src/machines/billingFilters/billingFilters.d.ts +7 -0
  88. package/typings/packages/billing-history/src/machines/billingFilters/constants.d.ts +16 -0
  89. package/typings/packages/billing-history/src/machines/billingFilters/index.d.ts +6 -0
  90. package/typings/packages/billing-history/src/machines/billingFilters/selectors.d.ts +13 -0
  91. package/typings/packages/billing-history/src/machines/billingFilters/types.d.ts +51 -0
  92. package/typings/packages/billing-history/src/machines/billingFilters/utils.d.ts +4 -0
  93. package/typings/packages/billing-history/src/machines/billingHistoryData/actions.d.ts +2 -0
  94. package/typings/packages/billing-history/src/machines/billingHistoryData/billingHistoryData.d.ts +8 -0
  95. package/typings/packages/billing-history/src/machines/billingHistoryData/constants.d.ts +5 -0
  96. package/typings/packages/billing-history/src/machines/billingHistoryData/index.d.ts +4 -0
  97. package/typings/packages/billing-history/src/machines/billingHistoryData/selectors.d.ts +52 -0
  98. package/typings/packages/billing-history/src/machines/billingHistoryData/types.d.ts +48 -0
  99. package/typings/packages/billing-history/src/machines/filtersOptions/filtersOptions.d.ts +6 -0
  100. package/typings/packages/billing-history/src/machines/filtersOptions/index.d.ts +5 -0
  101. package/typings/packages/billing-history/src/machines/filtersOptions/selectors.d.ts +12 -0
  102. package/typings/packages/billing-history/src/machines/filtersOptions/types.d.ts +9 -0
  103. package/typings/packages/billing-history/src/mocks/server.d.ts +1 -0
  104. package/typings/packages/billing-history/src/models/billingHistory/billingHistory.d.ts +28 -0
  105. package/typings/packages/billing-history/src/pages/InvoiceDetails/InvoiceDetails.d.ts +3 -0
  106. package/typings/packages/billing-history/src/pages/InvoiceDetails/InvoiceDetails.styles.d.ts +5 -0
  107. package/typings/packages/billing-history/src/pages/InvoiceDetails/index.d.ts +2 -0
  108. package/typings/packages/billing-history/src/pages/index.d.ts +2 -0
  109. package/typings/packages/billing-history/src/providers/GlobalStateProvider.d.ts +6 -0
  110. package/typings/packages/billing-history/src/settings.d.ts +2 -0
  111. package/typings/packages/billing-history/src/types.d.ts +8 -0
  112. package/typings/packages/billing-history/src/utils/getDatesFilters.d.ts +10 -0
  113. package/typings/packages/billing-history/src/utils/getItemsPerPageOptions.d.ts +5 -0
  114. package/typings/packages/billing-history/src/utils/index.d.ts +2 -0
  115. package/typings/packages/custom-fields/index.d.ts +1 -0
  116. package/typings/packages/custom-fields/src/index.d.ts +5 -0
  117. package/typings/packages/custom-fields/src/types.d.ts +9 -0
  118. package/typings/packages/custom-fields/src/utils/renderField.d.ts +9 -0
  119. package/typings/packages/custom-fields/src/utils/updateCustomFields.d.ts +9 -0
  120. package/typings/packages/custom-ui-components/index.d.ts +1 -0
  121. package/typings/packages/custom-ui-components/src/components/atoms/Anchor/Anchor.d.ts +13 -0
  122. package/typings/packages/custom-ui-components/src/components/atoms/Anchor/Anchor.styles.d.ts +8 -0
  123. package/typings/packages/custom-ui-components/src/components/atoms/Anchor/index.d.ts +2 -0
  124. package/typings/packages/custom-ui-components/src/components/atoms/Anchor/settings.d.ts +2 -0
  125. package/typings/packages/custom-ui-components/src/components/atoms/Anchor/types.d.ts +6 -0
  126. package/typings/packages/custom-ui-components/src/components/atoms/BodyText/BodyText.d.ts +17 -0
  127. package/typings/packages/custom-ui-components/src/components/atoms/BodyText/BodyText.styles.d.ts +6 -0
  128. package/typings/packages/custom-ui-components/src/components/atoms/BodyText/index.d.ts +2 -0
  129. package/typings/packages/custom-ui-components/src/components/atoms/BodyText/settings.d.ts +2 -0
  130. package/typings/packages/custom-ui-components/src/components/atoms/BodyText/types.d.ts +7 -0
  131. package/typings/packages/custom-ui-components/src/components/atoms/Box/Box.styles.d.ts +2 -0
  132. package/typings/packages/custom-ui-components/src/components/atoms/Box/index.d.ts +2 -0
  133. package/typings/packages/custom-ui-components/src/components/atoms/Button/Button.d.ts +23 -0
  134. package/typings/packages/custom-ui-components/src/components/atoms/Button/Button.styles.d.ts +15 -0
  135. package/typings/packages/custom-ui-components/src/components/atoms/Button/components/Group/Group.d.ts +7 -0
  136. package/typings/packages/custom-ui-components/src/components/atoms/Button/components/Group/Group.styles.d.ts +2 -0
  137. package/typings/packages/custom-ui-components/src/components/atoms/Button/components/Group/index.d.ts +2 -0
  138. package/typings/packages/custom-ui-components/src/components/atoms/Button/components/index.d.ts +2 -0
  139. package/typings/packages/custom-ui-components/src/components/atoms/Button/index.d.ts +2 -0
  140. package/typings/packages/custom-ui-components/src/components/atoms/Button/settings.d.ts +2 -0
  141. package/typings/packages/custom-ui-components/src/components/atoms/Button/types.d.ts +10 -0
  142. package/typings/packages/custom-ui-components/src/components/atoms/Checkbox/Checkbox.d.ts +9 -0
  143. package/typings/packages/custom-ui-components/src/components/atoms/Checkbox/Checkbox.styles.d.ts +10 -0
  144. package/typings/packages/custom-ui-components/src/components/atoms/Checkbox/index.d.ts +2 -0
  145. package/typings/packages/custom-ui-components/src/components/atoms/Checkbox/settings.d.ts +2 -0
  146. package/typings/packages/custom-ui-components/src/components/atoms/Checkbox/types.d.ts +10 -0
  147. package/typings/packages/custom-ui-components/src/components/atoms/Column/Column.d.ts +11 -0
  148. package/typings/packages/custom-ui-components/src/components/atoms/Column/Column.styles.d.ts +7 -0
  149. package/typings/packages/custom-ui-components/src/components/atoms/Column/index.d.ts +2 -0
  150. package/typings/packages/custom-ui-components/src/components/atoms/Column/system/flexBasis.d.ts +1 -0
  151. package/typings/packages/custom-ui-components/src/components/atoms/Column/system/gutter.d.ts +1 -0
  152. package/typings/packages/custom-ui-components/src/components/atoms/Column/system/index.d.ts +5 -0
  153. package/typings/packages/custom-ui-components/src/components/atoms/Column/system/maxWidth.d.ts +1 -0
  154. package/typings/packages/custom-ui-components/src/components/atoms/Column/system/offset.d.ts +1 -0
  155. package/typings/packages/custom-ui-components/src/components/atoms/Dropdown/Dropdown.d.ts +4 -0
  156. package/typings/packages/custom-ui-components/src/components/atoms/Dropdown/Dropdown.styles.d.ts +1 -0
  157. package/typings/packages/custom-ui-components/src/components/atoms/Dropdown/index.d.ts +2 -0
  158. package/typings/packages/custom-ui-components/src/components/atoms/Dropdown/types.d.ts +14 -0
  159. package/typings/packages/custom-ui-components/src/components/atoms/FontWeight/FontWeight.d.ts +3 -0
  160. package/typings/packages/custom-ui-components/src/components/atoms/FontWeight/index.d.ts +2 -0
  161. package/typings/packages/custom-ui-components/src/components/atoms/Heading/Heading.d.ts +9 -0
  162. package/typings/packages/custom-ui-components/src/components/atoms/Heading/Heading.styles.d.ts +5 -0
  163. package/typings/packages/custom-ui-components/src/components/atoms/Heading/index.d.ts +2 -0
  164. package/typings/packages/custom-ui-components/src/components/atoms/Heading/settings.d.ts +2 -0
  165. package/typings/packages/custom-ui-components/src/components/atoms/Heading/types.d.ts +6 -0
  166. package/typings/packages/custom-ui-components/src/components/atoms/Input/Input.d.ts +17 -0
  167. package/typings/packages/custom-ui-components/src/components/atoms/Input/Input.styles.d.ts +16 -0
  168. package/typings/packages/custom-ui-components/src/components/atoms/Input/index.d.ts +2 -0
  169. package/typings/packages/custom-ui-components/src/components/atoms/Input/settings.d.ts +2 -0
  170. package/typings/packages/custom-ui-components/src/components/atoms/Input/types.d.ts +10 -0
  171. package/typings/packages/custom-ui-components/src/components/atoms/Input/utils/getInputStatus.d.ts +2 -0
  172. package/typings/packages/custom-ui-components/src/components/atoms/Input/utils/index.d.ts +2 -0
  173. package/typings/packages/custom-ui-components/src/components/atoms/InputMessage/InputMessage.d.ts +9 -0
  174. package/typings/packages/custom-ui-components/src/components/atoms/InputMessage/InputMessage.styles.d.ts +5 -0
  175. package/typings/packages/custom-ui-components/src/components/atoms/InputMessage/index.d.ts +4 -0
  176. package/typings/packages/custom-ui-components/src/components/atoms/InputMessage/settings.d.ts +2 -0
  177. package/typings/packages/custom-ui-components/src/components/atoms/InputMessage/types.d.ts +5 -0
  178. package/typings/packages/custom-ui-components/src/components/atoms/Loader/Loader.d.ts +7 -0
  179. package/typings/packages/custom-ui-components/src/components/atoms/Loader/index.d.ts +2 -0
  180. package/typings/packages/custom-ui-components/src/components/atoms/Logo/Logo.d.ts +9 -0
  181. package/typings/packages/custom-ui-components/src/components/atoms/Logo/components/AmericanExpress/AmericanExpress.d.ts +7 -0
  182. package/typings/packages/custom-ui-components/src/components/atoms/Logo/components/AmericanExpress/index.d.ts +2 -0
  183. package/typings/packages/custom-ui-components/src/components/atoms/Logo/components/Bogus/Bogus.d.ts +7 -0
  184. package/typings/packages/custom-ui-components/src/components/atoms/Logo/components/Bogus/index.d.ts +2 -0
  185. package/typings/packages/custom-ui-components/src/components/atoms/Logo/components/Discover/Discover.d.ts +7 -0
  186. package/typings/packages/custom-ui-components/src/components/atoms/Logo/components/Discover/index.d.ts +2 -0
  187. package/typings/packages/custom-ui-components/src/components/atoms/Logo/components/Master/Master.d.ts +7 -0
  188. package/typings/packages/custom-ui-components/src/components/atoms/Logo/components/Master/index.d.ts +2 -0
  189. package/typings/packages/custom-ui-components/src/components/atoms/Logo/components/Visa/Visa.d.ts +7 -0
  190. package/typings/packages/custom-ui-components/src/components/atoms/Logo/components/Visa/index.d.ts +2 -0
  191. package/typings/packages/custom-ui-components/src/components/atoms/Logo/components/index.d.ts +6 -0
  192. package/typings/packages/custom-ui-components/src/components/atoms/Logo/constants.d.ts +3 -0
  193. package/typings/packages/custom-ui-components/src/components/atoms/Logo/index.d.ts +2 -0
  194. package/typings/packages/custom-ui-components/src/components/atoms/Modal/Modal.d.ts +17 -0
  195. package/typings/packages/custom-ui-components/src/components/atoms/Modal/Modal.styles.d.ts +5 -0
  196. package/typings/packages/custom-ui-components/src/components/atoms/Modal/components/Backdrop/Backdrop.d.ts +7 -0
  197. package/typings/packages/custom-ui-components/src/components/atoms/Modal/components/Backdrop/Backdrop.styles.d.ts +1 -0
  198. package/typings/packages/custom-ui-components/src/components/atoms/Modal/components/Backdrop/index.d.ts +2 -0
  199. package/typings/packages/custom-ui-components/src/components/atoms/Modal/components/Title/Title.d.ts +7 -0
  200. package/typings/packages/custom-ui-components/src/components/atoms/Modal/components/Title/Title.styles.d.ts +2 -0
  201. package/typings/packages/custom-ui-components/src/components/atoms/Modal/components/Title/index.d.ts +2 -0
  202. package/typings/packages/custom-ui-components/src/components/atoms/Modal/components/index.d.ts +3 -0
  203. package/typings/packages/custom-ui-components/src/components/atoms/Modal/index.d.ts +2 -0
  204. package/typings/packages/custom-ui-components/src/components/atoms/Modal/motion.d.ts +17 -0
  205. package/typings/packages/custom-ui-components/src/components/atoms/Modal/types.d.ts +1 -0
  206. package/typings/packages/custom-ui-components/src/components/atoms/Options/Options.d.ts +4 -0
  207. package/typings/packages/custom-ui-components/src/components/atoms/Options/Options.styles.d.ts +11 -0
  208. package/typings/packages/custom-ui-components/src/components/atoms/Options/components/Option/Option.d.ts +9 -0
  209. package/typings/packages/custom-ui-components/src/components/atoms/Options/components/Option/Option.styles.d.ts +8 -0
  210. package/typings/packages/custom-ui-components/src/components/atoms/Options/components/Option/index.d.ts +2 -0
  211. package/typings/packages/custom-ui-components/src/components/atoms/Options/index.d.ts +7 -0
  212. package/typings/packages/custom-ui-components/src/components/atoms/Options/settings.d.ts +2 -0
  213. package/typings/packages/custom-ui-components/src/components/atoms/Options/system/boxShadow.d.ts +1 -0
  214. package/typings/packages/custom-ui-components/src/components/atoms/Options/system/index.d.ts +2 -0
  215. package/typings/packages/custom-ui-components/src/components/atoms/Options/types.d.ts +29 -0
  216. package/typings/packages/custom-ui-components/src/components/atoms/Options/utils/getBoxShadow.d.ts +1 -0
  217. package/typings/packages/custom-ui-components/src/components/atoms/Options/utils/isEllipsisActive.d.ts +2 -0
  218. package/typings/packages/custom-ui-components/src/components/atoms/Portal/Portal.d.ts +6 -0
  219. package/typings/packages/custom-ui-components/src/components/atoms/Portal/index.d.ts +2 -0
  220. package/typings/packages/custom-ui-components/src/components/atoms/ProgressBar/ProgressBar.d.ts +10 -0
  221. package/typings/packages/custom-ui-components/src/components/atoms/ProgressBar/ProgressBar.styles.d.ts +9 -0
  222. package/typings/packages/custom-ui-components/src/components/atoms/ProgressBar/index.d.ts +2 -0
  223. package/typings/packages/custom-ui-components/src/components/atoms/ProgressBar/settings.d.ts +2 -0
  224. package/typings/packages/custom-ui-components/src/components/atoms/ProgressBar/types.d.ts +9 -0
  225. package/typings/packages/custom-ui-components/src/components/atoms/RadioButton/RadioButton.d.ts +4 -0
  226. package/typings/packages/custom-ui-components/src/components/atoms/RadioButton/RadioButton.styles.d.ts +7 -0
  227. package/typings/packages/custom-ui-components/src/components/atoms/RadioButton/index.d.ts +4 -0
  228. package/typings/packages/custom-ui-components/src/components/atoms/RadioButton/settings.d.ts +2 -0
  229. package/typings/packages/custom-ui-components/src/components/atoms/RadioButton/types.d.ts +16 -0
  230. package/typings/packages/custom-ui-components/src/components/atoms/Row/Row.d.ts +9 -0
  231. package/typings/packages/custom-ui-components/src/components/atoms/Row/Row.styles.d.ts +5 -0
  232. package/typings/packages/custom-ui-components/src/components/atoms/Row/index.d.ts +2 -0
  233. package/typings/packages/custom-ui-components/src/components/atoms/Row/system/gap.d.ts +1 -0
  234. package/typings/packages/custom-ui-components/src/components/atoms/Row/system/gutter.d.ts +1 -0
  235. package/typings/packages/custom-ui-components/src/components/atoms/Row/system/index.d.ts +3 -0
  236. package/typings/packages/custom-ui-components/src/components/atoms/Select/Select.d.ts +4 -0
  237. package/typings/packages/custom-ui-components/src/components/atoms/Select/Select.styles.d.ts +10 -0
  238. package/typings/packages/custom-ui-components/src/components/atoms/Select/components/DropdownIcon/DropdownIcon.d.ts +9 -0
  239. package/typings/packages/custom-ui-components/src/components/atoms/Select/components/DropdownIcon/DropdownIcon.styles.d.ts +1 -0
  240. package/typings/packages/custom-ui-components/src/components/atoms/Select/components/DropdownIcon/index.d.ts +2 -0
  241. package/typings/packages/custom-ui-components/src/components/atoms/Select/components/index.d.ts +2 -0
  242. package/typings/packages/custom-ui-components/src/components/atoms/Select/constants.d.ts +9 -0
  243. package/typings/packages/custom-ui-components/src/components/atoms/Select/index.d.ts +4 -0
  244. package/typings/packages/custom-ui-components/src/components/atoms/Select/reducer/actions.d.ts +11 -0
  245. package/typings/packages/custom-ui-components/src/components/atoms/Select/reducer/index.d.ts +3 -0
  246. package/typings/packages/custom-ui-components/src/components/atoms/Select/reducer/reducer.d.ts +3 -0
  247. package/typings/packages/custom-ui-components/src/components/atoms/Select/reducer/types.d.ts +39 -0
  248. package/typings/packages/custom-ui-components/src/components/atoms/Select/settings.d.ts +2 -0
  249. package/typings/packages/custom-ui-components/src/components/atoms/Select/types.d.ts +39 -0
  250. package/typings/packages/custom-ui-components/src/components/atoms/Select/utils/getStatus.d.ts +2 -0
  251. package/typings/packages/custom-ui-components/src/components/atoms/Select/utils/index.d.ts +2 -0
  252. package/typings/packages/custom-ui-components/src/components/atoms/SkeletonLoader/SkeletonLoader.d.ts +9 -0
  253. package/typings/packages/custom-ui-components/src/components/atoms/SkeletonLoader/SkeletonLoader.styles.d.ts +6 -0
  254. package/typings/packages/custom-ui-components/src/components/atoms/SkeletonLoader/index.d.ts +4 -0
  255. package/typings/packages/custom-ui-components/src/components/atoms/SkeletonLoader/system/backgroundColor.d.ts +1 -0
  256. package/typings/packages/custom-ui-components/src/components/atoms/SkeletonLoader/system/index.d.ts +2 -0
  257. package/typings/packages/custom-ui-components/src/components/atoms/SkeletonLoader/types.d.ts +1 -0
  258. package/typings/packages/custom-ui-components/src/components/atoms/SubscriptionComponentCard/SubscriptionComponentCard.d.ts +9 -0
  259. package/typings/packages/custom-ui-components/src/components/atoms/SubscriptionComponentCard/SubscriptionComponentCard.styles.d.ts +5 -0
  260. package/typings/packages/custom-ui-components/src/components/atoms/SubscriptionComponentCard/index.d.ts +4 -0
  261. package/typings/packages/custom-ui-components/src/components/atoms/SubscriptionComponentCard/settings.d.ts +2 -0
  262. package/typings/packages/custom-ui-components/src/components/atoms/SubscriptionComponentCard/types.d.ts +5 -0
  263. package/typings/packages/custom-ui-components/src/components/atoms/TextArea/TextArea.d.ts +11 -0
  264. package/typings/packages/custom-ui-components/src/components/atoms/TextArea/TextArea.styles.d.ts +8 -0
  265. package/typings/packages/custom-ui-components/src/components/atoms/TextArea/index.d.ts +2 -0
  266. package/typings/packages/custom-ui-components/src/components/atoms/TextArea/settings.d.ts +2 -0
  267. package/typings/packages/custom-ui-components/src/components/atoms/TextArea/types.d.ts +9 -0
  268. package/typings/packages/custom-ui-components/src/components/atoms/Toggle/Toggle.d.ts +15 -0
  269. package/typings/packages/custom-ui-components/src/components/atoms/Toggle/Toggle.styles.d.ts +21 -0
  270. package/typings/packages/custom-ui-components/src/components/atoms/Toggle/index.d.ts +2 -0
  271. package/typings/packages/custom-ui-components/src/components/atoms/Toggle/settings.d.ts +2 -0
  272. package/typings/packages/custom-ui-components/src/components/atoms/Toggle/types.d.ts +14 -0
  273. package/typings/packages/custom-ui-components/src/components/atoms/Tooltip/Tooltip.d.ts +15 -0
  274. package/typings/packages/custom-ui-components/src/components/atoms/Tooltip/Tooltip.styles.d.ts +5 -0
  275. package/typings/packages/custom-ui-components/src/components/atoms/Tooltip/components/Text/Text.d.ts +7 -0
  276. package/typings/packages/custom-ui-components/src/components/atoms/Tooltip/components/Text/index.d.ts +2 -0
  277. package/typings/packages/custom-ui-components/src/components/atoms/Tooltip/components/index.d.ts +2 -0
  278. package/typings/packages/custom-ui-components/src/components/atoms/Tooltip/index.d.ts +3 -0
  279. package/typings/packages/custom-ui-components/src/components/atoms/Tooltip/settings.d.ts +2 -0
  280. package/typings/packages/custom-ui-components/src/components/atoms/Tooltip/types.d.ts +7 -0
  281. package/typings/packages/custom-ui-components/src/components/atoms/index.d.ts +30 -0
  282. package/typings/packages/custom-ui-components/src/components/atoms/settings.d.ts +18 -0
  283. package/typings/packages/custom-ui-components/src/components/atoms/types.d.ts +2 -0
  284. package/typings/packages/custom-ui-components/src/components/index.d.ts +3 -0
  285. package/typings/packages/custom-ui-components/src/components/molecules/Accordion/Accordion.d.ts +10 -0
  286. package/typings/packages/custom-ui-components/src/components/molecules/Accordion/Accordion.styles.d.ts +8 -0
  287. package/typings/packages/custom-ui-components/src/components/molecules/Accordion/constants.d.ts +11 -0
  288. package/typings/packages/custom-ui-components/src/components/molecules/Accordion/index.d.ts +2 -0
  289. package/typings/packages/custom-ui-components/src/components/molecules/Accordion/motion.d.ts +14 -0
  290. package/typings/packages/custom-ui-components/src/components/molecules/Accordion/settings.d.ts +2 -0
  291. package/typings/packages/custom-ui-components/src/components/molecules/Accordion/type.d.ts +5 -0
  292. package/typings/packages/custom-ui-components/src/components/molecules/Alert/Alert.d.ts +19 -0
  293. package/typings/packages/custom-ui-components/src/components/molecules/Alert/Alert.styles.d.ts +7 -0
  294. package/typings/packages/custom-ui-components/src/components/molecules/Alert/components/TextMessage.d.ts +7 -0
  295. package/typings/packages/custom-ui-components/src/components/molecules/Alert/components/index.d.ts +2 -0
  296. package/typings/packages/custom-ui-components/src/components/molecules/Alert/index.d.ts +2 -0
  297. package/typings/packages/custom-ui-components/src/components/molecules/Alert/settings.d.ts +2 -0
  298. package/typings/packages/custom-ui-components/src/components/molecules/Alert/types.d.ts +7 -0
  299. package/typings/packages/custom-ui-components/src/components/molecules/Card/Card.d.ts +20 -0
  300. package/typings/packages/custom-ui-components/src/components/molecules/Card/Card.styles.d.ts +13 -0
  301. package/typings/packages/custom-ui-components/src/components/molecules/Card/components/Body/Body.d.ts +8 -0
  302. package/typings/packages/custom-ui-components/src/components/molecules/Card/components/Body/Body.styles.d.ts +9 -0
  303. package/typings/packages/custom-ui-components/src/components/molecules/Card/components/Body/index.d.ts +2 -0
  304. package/typings/packages/custom-ui-components/src/components/molecules/Card/components/index.d.ts +2 -0
  305. package/typings/packages/custom-ui-components/src/components/molecules/Card/index.d.ts +2 -0
  306. package/typings/packages/custom-ui-components/src/components/molecules/Card/settings.d.ts +2 -0
  307. package/typings/packages/custom-ui-components/src/components/molecules/Card/types.d.ts +12 -0
  308. package/typings/packages/custom-ui-components/src/components/molecules/CreditCardAddress/CreditCardAddress.d.ts +7 -0
  309. package/typings/packages/custom-ui-components/src/components/molecules/CreditCardAddress/CreditCardAddress.styles.d.ts +4 -0
  310. package/typings/packages/custom-ui-components/src/components/molecules/CreditCardAddress/index.d.ts +2 -0
  311. package/typings/packages/custom-ui-components/src/components/molecules/CreditCardAddress/settings.d.ts +2 -0
  312. package/typings/packages/custom-ui-components/src/components/molecules/CreditCardAddress/type.d.ts +5 -0
  313. package/typings/packages/custom-ui-components/src/components/molecules/CreditCardHolderDetails/CreditCardHolderDetails.d.ts +9 -0
  314. package/typings/packages/custom-ui-components/src/components/molecules/CreditCardHolderDetails/CreditCardHolderDetails.styles.d.ts +4 -0
  315. package/typings/packages/custom-ui-components/src/components/molecules/CreditCardHolderDetails/index.d.ts +2 -0
  316. package/typings/packages/custom-ui-components/src/components/molecules/CreditCardHolderDetails/settings.d.ts +2 -0
  317. package/typings/packages/custom-ui-components/src/components/molecules/CreditCardHolderDetails/type.d.ts +5 -0
  318. package/typings/packages/custom-ui-components/src/components/molecules/CreditCardHolderDetails/utils/formatExpirationYear.d.ts +1 -0
  319. package/typings/packages/custom-ui-components/src/components/molecules/CreditCardHolderDetails/utils/index.d.ts +2 -0
  320. package/typings/packages/custom-ui-components/src/components/molecules/CreditCardNumber/CreditCardNumber.d.ts +6 -0
  321. package/typings/packages/custom-ui-components/src/components/molecules/CreditCardNumber/CreditCardNumber.styles.d.ts +4 -0
  322. package/typings/packages/custom-ui-components/src/components/molecules/CreditCardNumber/index.d.ts +2 -0
  323. package/typings/packages/custom-ui-components/src/components/molecules/CreditCardNumber/settings.d.ts +2 -0
  324. package/typings/packages/custom-ui-components/src/components/molecules/CreditCardNumber/type.d.ts +5 -0
  325. package/typings/packages/custom-ui-components/src/components/molecules/CreditCardNumber/utils/formatCardNumber.d.ts +1 -0
  326. package/typings/packages/custom-ui-components/src/components/molecules/CreditCardNumber/utils/index.d.ts +2 -0
  327. package/typings/packages/custom-ui-components/src/components/molecules/DatePicker/DatePicker.d.ts +16 -0
  328. package/typings/packages/custom-ui-components/src/components/molecules/DatePicker/DatePicker.styles.d.ts +6 -0
  329. package/typings/packages/custom-ui-components/src/components/molecules/DatePicker/constants.d.ts +1 -0
  330. package/typings/packages/custom-ui-components/src/components/molecules/DatePicker/index.d.ts +2 -0
  331. package/typings/packages/custom-ui-components/src/components/molecules/DatePicker/translations.d.ts +2 -0
  332. package/typings/packages/custom-ui-components/src/components/molecules/DatePicker/types.d.ts +3 -0
  333. package/typings/packages/custom-ui-components/src/components/molecules/FormField/FormField.d.ts +20 -0
  334. package/typings/packages/custom-ui-components/src/components/molecules/FormField/FormField.styles.d.ts +13 -0
  335. package/typings/packages/custom-ui-components/src/components/molecules/FormField/index.d.ts +2 -0
  336. package/typings/packages/custom-ui-components/src/components/molecules/FormField/settings.d.ts +2 -0
  337. package/typings/packages/custom-ui-components/src/components/molecules/FormField/types.d.ts +5 -0
  338. package/typings/packages/custom-ui-components/src/components/molecules/FormField/utils/getMessage.d.ts +9 -0
  339. package/typings/packages/custom-ui-components/src/components/molecules/FormField/utils/index.d.ts +2 -0
  340. package/typings/packages/custom-ui-components/src/components/molecules/InputLabel/InputLabel.d.ts +15 -0
  341. package/typings/packages/custom-ui-components/src/components/molecules/InputLabel/InputLabel.styles.d.ts +12 -0
  342. package/typings/packages/custom-ui-components/src/components/molecules/InputLabel/index.d.ts +2 -0
  343. package/typings/packages/custom-ui-components/src/components/molecules/InputLabel/settings.d.ts +2 -0
  344. package/typings/packages/custom-ui-components/src/components/molecules/InputLabel/types.d.ts +7 -0
  345. package/typings/packages/custom-ui-components/src/components/molecules/PageHeader/PageHeader.d.ts +11 -0
  346. package/typings/packages/custom-ui-components/src/components/molecules/PageHeader/PageHeader.styles.d.ts +2 -0
  347. package/typings/packages/custom-ui-components/src/components/molecules/PageHeader/index.d.ts +2 -0
  348. package/typings/packages/custom-ui-components/src/components/molecules/PageHeader/type.d.ts +1 -0
  349. package/typings/packages/custom-ui-components/src/components/molecules/PageHeaderSubtitle/PageHeaderSubtitle.d.ts +8 -0
  350. package/typings/packages/custom-ui-components/src/components/molecules/PageHeaderSubtitle/PageHeaderSubtitle.styles.d.ts +4 -0
  351. package/typings/packages/custom-ui-components/src/components/molecules/PageHeaderSubtitle/index.d.ts +2 -0
  352. package/typings/packages/custom-ui-components/src/components/molecules/PageHeaderSubtitle/settings.d.ts +2 -0
  353. package/typings/packages/custom-ui-components/src/components/molecules/PageHeaderSubtitle/type.d.ts +5 -0
  354. package/typings/packages/custom-ui-components/src/components/molecules/PageHeaderTitle/PageHeaderTitle.d.ts +8 -0
  355. package/typings/packages/custom-ui-components/src/components/molecules/PageHeaderTitle/PageHeaderTitle.styles.d.ts +4 -0
  356. package/typings/packages/custom-ui-components/src/components/molecules/PageHeaderTitle/index.d.ts +2 -0
  357. package/typings/packages/custom-ui-components/src/components/molecules/PageHeaderTitle/settings.d.ts +2 -0
  358. package/typings/packages/custom-ui-components/src/components/molecules/PageHeaderTitle/type.d.ts +5 -0
  359. package/typings/packages/custom-ui-components/src/components/molecules/Pagination/Pagination.d.ts +8 -0
  360. package/typings/packages/custom-ui-components/src/components/molecules/Pagination/Pagination.styles.d.ts +8 -0
  361. package/typings/packages/custom-ui-components/src/components/molecules/Pagination/index.d.ts +2 -0
  362. package/typings/packages/custom-ui-components/src/components/molecules/Pagination/types.d.ts +6 -0
  363. package/typings/packages/custom-ui-components/src/components/molecules/Pagination/utils/createPagination.d.ts +7 -0
  364. package/typings/packages/custom-ui-components/src/components/molecules/Pagination/utils/index.d.ts +2 -0
  365. package/typings/packages/custom-ui-components/src/components/molecules/RadioGroup/RadioGroup.d.ts +4 -0
  366. package/typings/packages/custom-ui-components/src/components/molecules/RadioGroup/RadioGroup.styles.d.ts +2 -0
  367. package/typings/packages/custom-ui-components/src/components/molecules/RadioGroup/index.d.ts +2 -0
  368. package/typings/packages/custom-ui-components/src/components/molecules/RadioGroup/types.d.ts +11 -0
  369. package/typings/packages/custom-ui-components/src/components/molecules/RadioSelect/RadioSelect.d.ts +11 -0
  370. package/typings/packages/custom-ui-components/src/components/molecules/RadioSelect/RadioSelect.styles.d.ts +9 -0
  371. package/typings/packages/custom-ui-components/src/components/molecules/RadioSelect/index.d.ts +2 -0
  372. package/typings/packages/custom-ui-components/src/components/molecules/RadioSelect/settings.d.ts +2 -0
  373. package/typings/packages/custom-ui-components/src/components/molecules/RadioSelect/types.d.ts +15 -0
  374. package/typings/packages/custom-ui-components/src/components/molecules/RelativeTime/RelativeTime.d.ts +11 -0
  375. package/typings/packages/custom-ui-components/src/components/molecules/RelativeTime/RelativeTime.styles.d.ts +2 -0
  376. package/typings/packages/custom-ui-components/src/components/molecules/RelativeTime/index.d.ts +4 -0
  377. package/typings/packages/custom-ui-components/src/components/molecules/RelativeTime/translations.d.ts +2 -0
  378. package/typings/packages/custom-ui-components/src/components/molecules/RelativeTime/types.d.ts +11 -0
  379. package/typings/packages/custom-ui-components/src/components/molecules/RelativeTime/utils/getOptions.d.ts +5 -0
  380. package/typings/packages/custom-ui-components/src/components/molecules/RelativeTime/utils/index.d.ts +2 -0
  381. package/typings/packages/custom-ui-components/src/components/molecules/Stepper/Stepper.d.ts +10 -0
  382. package/typings/packages/custom-ui-components/src/components/molecules/Stepper/Stepper.styles.d.ts +3 -0
  383. package/typings/packages/custom-ui-components/src/components/molecules/Stepper/components/StepHortizontal/StepHorizontal.d.ts +9 -0
  384. package/typings/packages/custom-ui-components/src/components/molecules/Stepper/components/StepHortizontal/StepHorizontal.styles.d.ts +18 -0
  385. package/typings/packages/custom-ui-components/src/components/molecules/Stepper/components/StepHortizontal/index.d.ts +2 -0
  386. package/typings/packages/custom-ui-components/src/components/molecules/Stepper/components/StepHortizontal/settings.d.ts +2 -0
  387. package/typings/packages/custom-ui-components/src/components/molecules/Stepper/components/StepHortizontal/types.d.ts +10 -0
  388. package/typings/packages/custom-ui-components/src/components/molecules/Stepper/components/StepVertical/StepVertical.d.ts +11 -0
  389. package/typings/packages/custom-ui-components/src/components/molecules/Stepper/components/StepVertical/StepVertical.styles.d.ts +9 -0
  390. package/typings/packages/custom-ui-components/src/components/molecules/Stepper/components/StepVertical/index.d.ts +2 -0
  391. package/typings/packages/custom-ui-components/src/components/molecules/Stepper/components/StepVertical/settings.d.ts +2 -0
  392. package/typings/packages/custom-ui-components/src/components/molecules/Stepper/components/StepVertical/types.d.ts +9 -0
  393. package/typings/packages/custom-ui-components/src/components/molecules/Stepper/components/index.d.ts +3 -0
  394. package/typings/packages/custom-ui-components/src/components/molecules/Stepper/index.d.ts +2 -0
  395. package/typings/packages/custom-ui-components/src/components/molecules/SubscriptionHeader/SubscriptionHeader.d.ts +17 -0
  396. package/typings/packages/custom-ui-components/src/components/molecules/SubscriptionHeader/SubscriptionHeader.styles.d.ts +4 -0
  397. package/typings/packages/custom-ui-components/src/components/molecules/SubscriptionHeader/index.d.ts +2 -0
  398. package/typings/packages/custom-ui-components/src/components/molecules/SummaryTable/SummaryTable.d.ts +8 -0
  399. package/typings/packages/custom-ui-components/src/components/molecules/SummaryTable/SummaryTable.styles.d.ts +5 -0
  400. package/typings/packages/custom-ui-components/src/components/molecules/SummaryTable/fixtures.d.ts +3 -0
  401. package/typings/packages/custom-ui-components/src/components/molecules/SummaryTable/index.d.ts +4 -0
  402. package/typings/packages/custom-ui-components/src/components/molecules/SummaryTable/types.d.ts +10 -0
  403. package/typings/packages/custom-ui-components/src/components/molecules/Tabs/Tabs.d.ts +11 -0
  404. package/typings/packages/custom-ui-components/src/components/molecules/Tabs/Tabs.styles.d.ts +11 -0
  405. package/typings/packages/custom-ui-components/src/components/molecules/Tabs/fixtures.d.ts +4 -0
  406. package/typings/packages/custom-ui-components/src/components/molecules/Tabs/index.d.ts +2 -0
  407. package/typings/packages/custom-ui-components/src/components/molecules/Tabs/settings.d.ts +2 -0
  408. package/typings/packages/custom-ui-components/src/components/molecules/Tabs/types.d.ts +8 -0
  409. package/typings/packages/custom-ui-components/src/components/molecules/Tag/Tag.d.ts +12 -0
  410. package/typings/packages/custom-ui-components/src/components/molecules/Tag/Tag.styles.d.ts +8 -0
  411. package/typings/packages/custom-ui-components/src/components/molecules/Tag/index.d.ts +4 -0
  412. package/typings/packages/custom-ui-components/src/components/molecules/Tag/settings.d.ts +2 -0
  413. package/typings/packages/custom-ui-components/src/components/molecules/Tag/types.d.ts +7 -0
  414. package/typings/packages/custom-ui-components/src/components/molecules/TagInput/TagInput.d.ts +19 -0
  415. package/typings/packages/custom-ui-components/src/components/molecules/TagInput/TagInput.styles.d.ts +9 -0
  416. package/typings/packages/custom-ui-components/src/components/molecules/TagInput/index.d.ts +2 -0
  417. package/typings/packages/custom-ui-components/src/components/molecules/TagInput/settings.d.ts +2 -0
  418. package/typings/packages/custom-ui-components/src/components/molecules/TagInput/types.d.ts +8 -0
  419. package/typings/packages/custom-ui-components/src/components/molecules/TagInput/utils.d.ts +1 -0
  420. package/typings/packages/custom-ui-components/src/components/molecules/TimePicker/TimePicker.d.ts +14 -0
  421. package/typings/packages/custom-ui-components/src/components/molecules/TimePicker/TimePicker.styles.d.ts +4 -0
  422. package/typings/packages/custom-ui-components/src/components/molecules/TimePicker/index.d.ts +2 -0
  423. package/typings/packages/custom-ui-components/src/components/molecules/TimePicker/translations.d.ts +2 -0
  424. package/typings/packages/custom-ui-components/src/components/molecules/TimePicker/types.d.ts +7 -0
  425. package/typings/packages/custom-ui-components/src/components/molecules/TimePicker/utils/getInputValue.d.ts +2 -0
  426. package/typings/packages/custom-ui-components/src/components/molecules/TimePicker/utils/getTimeOptions.d.ts +4 -0
  427. package/typings/packages/custom-ui-components/src/components/molecules/TimePicker/utils/index.d.ts +3 -0
  428. package/typings/packages/custom-ui-components/src/components/molecules/ToastMessage/ToastMessage.d.ts +10 -0
  429. package/typings/packages/custom-ui-components/src/components/molecules/ToastMessage/ToastMessage.styles.d.ts +9 -0
  430. package/typings/packages/custom-ui-components/src/components/molecules/ToastMessage/constants.d.ts +3 -0
  431. package/typings/packages/custom-ui-components/src/components/molecules/ToastMessage/index.d.ts +2 -0
  432. package/typings/packages/custom-ui-components/src/components/molecules/ToastMessage/settings.d.ts +2 -0
  433. package/typings/packages/custom-ui-components/src/components/molecules/ToastMessage/types.d.ts +10 -0
  434. package/typings/packages/custom-ui-components/src/components/molecules/index.d.ts +25 -0
  435. package/typings/packages/custom-ui-components/src/components/molecules/settings.d.ts +20 -0
  436. package/typings/packages/custom-ui-components/src/components/organisms/BankAccount/BankAccount.d.ts +14 -0
  437. package/typings/packages/custom-ui-components/src/components/organisms/BankAccount/BankAccount.styles.d.ts +19 -0
  438. package/typings/packages/custom-ui-components/src/components/organisms/BankAccount/components/Watermark/Watermark.d.ts +3 -0
  439. package/typings/packages/custom-ui-components/src/components/organisms/BankAccount/components/Watermark/index.d.ts +2 -0
  440. package/typings/packages/custom-ui-components/src/components/organisms/BankAccount/components/index.d.ts +2 -0
  441. package/typings/packages/custom-ui-components/src/components/organisms/BankAccount/constants.d.ts +4 -0
  442. package/typings/packages/custom-ui-components/src/components/organisms/BankAccount/index.d.ts +2 -0
  443. package/typings/packages/custom-ui-components/src/components/organisms/BankAccount/settings.d.ts +2 -0
  444. package/typings/packages/custom-ui-components/src/components/organisms/BankAccount/types.d.ts +27 -0
  445. package/typings/packages/custom-ui-components/src/components/organisms/BankAccount/utils/formatAddressDetails.d.ts +2 -0
  446. package/typings/packages/custom-ui-components/src/components/organisms/BankAccount/utils/index.d.ts +2 -0
  447. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/CreditCard.d.ts +17 -0
  448. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/CreditCard.styles.d.ts +10 -0
  449. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/Chip/Chip.d.ts +3 -0
  450. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/Chip/index.d.ts +2 -0
  451. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/StatusMsg/StatusMsg.d.ts +10 -0
  452. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/StatusMsg/StatusMsg.styles.d.ts +1 -0
  453. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/StatusMsg/index.d.ts +2 -0
  454. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/Watermark/Watermark.d.ts +8 -0
  455. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/Watermark/Watermark.styles.d.ts +4 -0
  456. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/Watermark/components/Master/Master.d.ts +3 -0
  457. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/Watermark/components/Master/index.d.ts +2 -0
  458. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/Watermark/components/Visa/Visa.d.ts +3 -0
  459. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/Watermark/components/Visa/index.d.ts +2 -0
  460. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/Watermark/components/index.d.ts +3 -0
  461. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/Watermark/index.d.ts +2 -0
  462. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/Watermark/settings.d.ts +2 -0
  463. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/Watermark/types.d.ts +7 -0
  464. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/components/index.d.ts +4 -0
  465. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/constants.d.ts +1 -0
  466. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/index.d.ts +6 -0
  467. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/settings.d.ts +2 -0
  468. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/types.d.ts +27 -0
  469. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/utils/formatAddressDetails.d.ts +5 -0
  470. package/typings/packages/custom-ui-components/src/components/organisms/CreditCard/utils/index.d.ts +2 -0
  471. package/typings/packages/custom-ui-components/src/components/organisms/DateTimePicker/DatePicker.styles.d.ts +3 -0
  472. package/typings/packages/custom-ui-components/src/components/organisms/DateTimePicker/DateTimePicker.d.ts +12 -0
  473. package/typings/packages/custom-ui-components/src/components/organisms/DateTimePicker/index.d.ts +2 -0
  474. package/typings/packages/custom-ui-components/src/components/organisms/Subscription/MeteredComponent/MeteredComponent.d.ts +4 -0
  475. package/typings/packages/custom-ui-components/src/components/organisms/Subscription/MeteredComponent/MeteredComponent.styles.d.ts +2 -0
  476. package/typings/packages/custom-ui-components/src/components/organisms/Subscription/MeteredComponent/index.d.ts +2 -0
  477. package/typings/packages/custom-ui-components/src/components/organisms/Subscription/MeteredComponent/types.d.ts +5 -0
  478. package/typings/packages/custom-ui-components/src/components/organisms/Subscription/OnOffComponent/OnOffComponent.d.ts +11 -0
  479. package/typings/packages/custom-ui-components/src/components/organisms/Subscription/OnOffComponent/OnOffComponent.styles.d.ts +3 -0
  480. package/typings/packages/custom-ui-components/src/components/organisms/Subscription/OnOffComponent/index.d.ts +2 -0
  481. package/typings/packages/custom-ui-components/src/components/organisms/Subscription/PrepaidComponent/PrepaidComponent.d.ts +4 -0
  482. package/typings/packages/custom-ui-components/src/components/organisms/Subscription/PrepaidComponent/PrepaidComponent.styles.d.ts +8 -0
  483. package/typings/packages/custom-ui-components/src/components/organisms/Subscription/PrepaidComponent/constants.d.ts +8 -0
  484. package/typings/packages/custom-ui-components/src/components/organisms/Subscription/PrepaidComponent/index.d.ts +4 -0
  485. package/typings/packages/custom-ui-components/src/components/organisms/Subscription/PrepaidComponent/types.d.ts +21 -0
  486. package/typings/packages/custom-ui-components/src/components/organisms/Subscription/QuantityComponent/QuantityComponent.d.ts +4 -0
  487. package/typings/packages/custom-ui-components/src/components/organisms/Subscription/QuantityComponent/QuantityComponent.styles.d.ts +2 -0
  488. package/typings/packages/custom-ui-components/src/components/organisms/Subscription/QuantityComponent/index.d.ts +2 -0
  489. package/typings/packages/custom-ui-components/src/components/organisms/Subscription/QuantityComponent/types.d.ts +5 -0
  490. package/typings/packages/custom-ui-components/src/components/organisms/Table/Table.d.ts +22 -0
  491. package/typings/packages/custom-ui-components/src/components/organisms/Table/Table.styles.d.ts +8 -0
  492. package/typings/packages/custom-ui-components/src/components/organisms/Table/components/SortIndicator.d.ts +7 -0
  493. package/typings/packages/custom-ui-components/src/components/organisms/Table/components/TableBody.d.ts +1 -0
  494. package/typings/packages/custom-ui-components/src/components/organisms/Table/components/TableCell/TableCell.d.ts +8 -0
  495. package/typings/packages/custom-ui-components/src/components/organisms/Table/components/TableCell/TableCell.styles.d.ts +5 -0
  496. package/typings/packages/custom-ui-components/src/components/organisms/Table/components/TableCell/index.d.ts +2 -0
  497. package/typings/packages/custom-ui-components/src/components/organisms/Table/components/TableCellContainer.d.ts +1 -0
  498. package/typings/packages/custom-ui-components/src/components/organisms/Table/components/TableFooter/TableFooter.d.ts +3 -0
  499. package/typings/packages/custom-ui-components/src/components/organisms/Table/components/TableFooter/types.d.ts +5 -0
  500. package/typings/packages/custom-ui-components/src/components/organisms/Table/components/TableHead.d.ts +4 -0
  501. package/typings/packages/custom-ui-components/src/components/organisms/Table/components/TableHeader/TableHeader.d.ts +4 -0
  502. package/typings/packages/custom-ui-components/src/components/organisms/Table/components/TableHeader/TableHeader.styles.d.ts +3 -0
  503. package/typings/packages/custom-ui-components/src/components/organisms/Table/components/TableHeader/index.d.ts +2 -0
  504. package/typings/packages/custom-ui-components/src/components/organisms/Table/components/TableHeader/types.d.ts +11 -0
  505. package/typings/packages/custom-ui-components/src/components/organisms/Table/components/TableRow.d.ts +5 -0
  506. package/typings/packages/custom-ui-components/src/components/organisms/Table/index.d.ts +2 -0
  507. package/typings/packages/custom-ui-components/src/components/organisms/Table/settings.d.ts +2 -0
  508. package/typings/packages/custom-ui-components/src/components/organisms/Table/types.d.ts +14 -0
  509. package/typings/packages/custom-ui-components/src/components/organisms/index.d.ts +12 -0
  510. package/typings/packages/custom-ui-components/src/components/organisms/settings.d.ts +7 -0
  511. package/typings/packages/custom-ui-components/src/components/settings.d.ts +39 -0
  512. package/typings/packages/custom-ui-components/src/components/types.d.ts +2 -0
  513. package/typings/packages/custom-ui-components/src/constants.d.ts +9 -0
  514. package/typings/packages/custom-ui-components/src/contexts/PortalContext.d.ts +4 -0
  515. package/typings/packages/custom-ui-components/src/contexts/index.d.ts +2 -0
  516. package/typings/packages/custom-ui-components/src/docs/Grid.styles.d.ts +2 -0
  517. package/typings/packages/custom-ui-components/src/docs/Spaces.d.ts +3 -0
  518. package/typings/packages/custom-ui-components/src/docs/Spaces.styles.d.ts +8 -0
  519. package/typings/packages/custom-ui-components/src/hooks/index.d.ts +4 -0
  520. package/typings/packages/custom-ui-components/src/hooks/useKeypress/index.d.ts +2 -0
  521. package/typings/packages/custom-ui-components/src/hooks/useKeypress/useKeypress.d.ts +9 -0
  522. package/typings/packages/custom-ui-components/src/hooks/useModalVariant/index.d.ts +2 -0
  523. package/typings/packages/custom-ui-components/src/hooks/useModalVariant/useModalVariant.d.ts +1 -0
  524. package/typings/packages/custom-ui-components/src/hooks/useOnClickOutside/index.d.ts +2 -0
  525. package/typings/packages/custom-ui-components/src/hooks/useOnClickOutside/useOnClickOutside.d.ts +2 -0
  526. package/typings/packages/custom-ui-components/src/index.d.ts +11 -0
  527. package/typings/packages/custom-ui-components/src/mixins/fontSmoothing.d.ts +1 -0
  528. package/typings/packages/custom-ui-components/src/mixins/index.d.ts +2 -0
  529. package/typings/packages/custom-ui-components/src/palette.d.ts +41 -0
  530. package/typings/packages/custom-ui-components/src/theme/ThemeProvider.d.ts +8 -0
  531. package/typings/packages/custom-ui-components/src/theme/ThemeUtilities.d.ts +13 -0
  532. package/typings/packages/custom-ui-components/src/theme/index.d.ts +4 -0
  533. package/typings/packages/custom-ui-components/src/theme/system/backgroundColor.d.ts +1 -0
  534. package/typings/packages/custom-ui-components/src/theme/system/index.d.ts +3 -0
  535. package/typings/packages/custom-ui-components/src/theme/types.d.ts +20 -0
  536. package/typings/packages/custom-ui-components/src/themeBase.d.ts +107 -0
  537. package/typings/packages/custom-ui-components/src/types.d.ts +16 -0
  538. package/typings/packages/customer-details/index.d.ts +1 -0
  539. package/typings/packages/customer-details/src/App.d.ts +4 -0
  540. package/typings/packages/customer-details/src/CustomerDetails.d.ts +7 -0
  541. package/typings/packages/customer-details/src/components/ContactDetails/ContactDetails.d.ts +8 -0
  542. package/typings/packages/customer-details/src/components/ContactDetails/index.d.ts +2 -0
  543. package/typings/packages/customer-details/src/components/ContactDetails/utils.d.ts +6 -0
  544. package/typings/packages/customer-details/src/components/ContactDetailsForm/ContactDetailsForm.d.ts +10 -0
  545. package/typings/packages/customer-details/src/components/ContactDetailsForm/ContactDetailsForm.styles.d.ts +4 -0
  546. package/typings/packages/customer-details/src/components/ContactDetailsForm/index.d.ts +2 -0
  547. package/typings/packages/customer-details/src/components/CustomFields/CustomFields.d.ts +8 -0
  548. package/typings/packages/customer-details/src/components/CustomFields/index.d.ts +2 -0
  549. package/typings/packages/customer-details/src/components/CustomFieldsForm/CustomFieldsForm.d.ts +12 -0
  550. package/typings/packages/customer-details/src/components/CustomFieldsForm/index.d.ts +2 -0
  551. package/typings/packages/customer-details/src/components/CustomerDetailsLoader/CustomerDetailsLoader.d.ts +3 -0
  552. package/typings/packages/customer-details/src/components/CustomerDetailsLoader/CustomerDetailsLoader.styles.d.ts +2 -0
  553. package/typings/packages/customer-details/src/components/CustomerDetailsLoader/index.d.ts +2 -0
  554. package/typings/packages/customer-details/src/components/DetailsRow/DetailsRow.d.ts +8 -0
  555. package/typings/packages/customer-details/src/components/DetailsRow/index.d.ts +2 -0
  556. package/typings/packages/customer-details/src/components/DetailsSectionLoadingSkeleton/DetailsSectionLoadingSkeleton.d.ts +3 -0
  557. package/typings/packages/customer-details/src/components/DetailsSectionLoadingSkeleton/index.d.ts +2 -0
  558. package/typings/packages/customer-details/src/components/ShippingAddress/ShippingAddress.d.ts +8 -0
  559. package/typings/packages/customer-details/src/components/ShippingAddress/index.d.ts +2 -0
  560. package/typings/packages/customer-details/src/components/ShippingAddressForm/ShippingAddressForm.d.ts +11 -0
  561. package/typings/packages/customer-details/src/components/ShippingAddressForm/index.d.ts +2 -0
  562. package/typings/packages/customer-details/src/components/index.d.ts +8 -0
  563. package/typings/packages/customer-details/src/constants.d.ts +1 -0
  564. package/typings/packages/customer-details/src/containers/CustomFieldsContainer/CustomFieldsContainer.d.ts +3 -0
  565. package/typings/packages/customer-details/src/containers/CustomFieldsContainer/index.d.ts +2 -0
  566. package/typings/packages/customer-details/src/containers/CustomerDetailsContainer/CustomerDetailsContainer.d.ts +3 -0
  567. package/typings/packages/customer-details/src/containers/CustomerDetailsContainer/CustomerDetailsContainer.styles.d.ts +2 -0
  568. package/typings/packages/customer-details/src/containers/CustomerDetailsContainer/index.d.ts +2 -0
  569. package/typings/packages/customer-details/src/contexts/ConfigContext.d.ts +3 -0
  570. package/typings/packages/customer-details/src/contexts/GlobalStateContext.d.ts +7 -0
  571. package/typings/packages/customer-details/src/contexts/index.d.ts +3 -0
  572. package/typings/packages/customer-details/src/hooks/index.d.ts +2 -0
  573. package/typings/packages/customer-details/src/hooks/useDataWithNames.d.ts +26 -0
  574. package/typings/packages/customer-details/src/index.d.ts +2 -0
  575. package/typings/packages/customer-details/src/machines/customFields/customFields.d.ts +6 -0
  576. package/typings/packages/customer-details/src/machines/customFields/selectors.d.ts +24 -0
  577. package/typings/packages/customer-details/src/machines/customFields/types.d.ts +6 -0
  578. package/typings/packages/customer-details/src/machines/customerData/customerData.d.ts +6 -0
  579. package/typings/packages/customer-details/src/machines/customerData/selectors.d.ts +38 -0
  580. package/typings/packages/customer-details/src/machines/customerData/types.d.ts +6 -0
  581. package/typings/packages/customer-details/src/models/customerDetails/index.d.ts +2 -0
  582. package/typings/packages/customer-details/src/models/customerDetails/types.d.ts +17 -0
  583. package/typings/packages/customer-details/src/models/index.d.ts +2 -0
  584. package/typings/packages/customer-details/src/providers/GlobalStateProvider.d.ts +6 -0
  585. package/typings/packages/customer-details/src/settings.d.ts +2 -0
  586. package/typings/packages/customer-details/src/types.d.ts +5 -0
  587. package/typings/packages/data-access/index.d.ts +1 -0
  588. package/typings/packages/data-access/src/DataAccess.d.ts +399 -0
  589. package/typings/packages/data-access/src/DataAccessContext.d.ts +5 -0
  590. package/typings/packages/data-access/src/constants.d.ts +1 -0
  591. package/typings/packages/data-access/src/index.d.ts +5 -0
  592. package/typings/packages/data-access/src/types/address.d.ts +8 -0
  593. package/typings/packages/data-access/src/types/addressDetails.d.ts +4 -0
  594. package/typings/packages/data-access/src/types/componentAllocation.d.ts +37 -0
  595. package/typings/packages/data-access/src/types/customField.d.ts +9 -0
  596. package/typings/packages/data-access/src/types/customerDetails.d.ts +15 -0
  597. package/typings/packages/data-access/src/types/gatewayConfig.d.ts +13 -0
  598. package/typings/packages/data-access/src/types/index.d.ts +20 -0
  599. package/typings/packages/data-access/src/types/invoicesList.d.ts +39 -0
  600. package/typings/packages/data-access/src/types/paymentProfiles.d.ts +35 -0
  601. package/typings/packages/data-access/src/types/productFamily.d.ts +4 -0
  602. package/typings/packages/data-access/src/types/subscription.d.ts +43 -0
  603. package/typings/packages/data-access/src/types/subscriptionComponent.d.ts +32 -0
  604. package/typings/packages/data-access/src/types/subscriptionPaymentProfile.d.ts +7 -0
  605. package/typings/packages/data-access/src/utils/index.d.ts +3 -0
  606. package/typings/packages/data-access/src/utils/prepareQueryParams.d.ts +1 -0
  607. package/typings/packages/data-access/src/utils/requestHandler.d.ts +2 -0
  608. package/typings/packages/device-provider/index.d.ts +1 -0
  609. package/typings/packages/device-provider/src/components/DeviceProvider/DeviceProvider.d.ts +8 -0
  610. package/typings/packages/device-provider/src/components/DeviceProvider/index.d.ts +2 -0
  611. package/typings/packages/device-provider/src/components/index.d.ts +2 -0
  612. package/typings/packages/device-provider/src/contexts/DeviceContext.d.ts +5 -0
  613. package/typings/packages/device-provider/src/contexts/index.d.ts +2 -0
  614. package/typings/packages/device-provider/src/hooks/index.d.ts +2 -0
  615. package/typings/packages/device-provider/src/hooks/useDeviceInfo.d.ts +3 -0
  616. package/typings/packages/device-provider/src/index.d.ts +6 -0
  617. package/typings/packages/device-provider/src/types.d.ts +1 -0
  618. package/typings/packages/embeddable-component/index.d.ts +1 -0
  619. package/typings/packages/embeddable-component/src/ComponentLoader/ComponentLoader.d.ts +8 -0
  620. package/typings/packages/embeddable-component/src/ComponentLoader/index.d.ts +2 -0
  621. package/typings/packages/embeddable-component/src/EmbeddableComponent/EmbeddableComponent.d.ts +24 -0
  622. package/typings/packages/embeddable-component/src/EmbeddableComponent/index.d.ts +3 -0
  623. package/typings/packages/embeddable-component/src/SessionGuard/SessionGuard.d.ts +11 -0
  624. package/typings/packages/embeddable-component/src/SessionGuard/index.d.ts +4 -0
  625. package/typings/packages/embeddable-component/src/index.d.ts +3 -0
  626. package/typings/packages/embeddable-component/src/types.d.ts +3 -0
  627. package/typings/packages/formatters/index.d.ts +1 -0
  628. package/typings/packages/formatters/src/constants.d.ts +1 -0
  629. package/typings/packages/formatters/src/formatBillingInterval.d.ts +3 -0
  630. package/typings/packages/formatters/src/formatCurrency.d.ts +31 -0
  631. package/typings/packages/formatters/src/formatDate.d.ts +2 -0
  632. package/typings/packages/formatters/src/index.d.ts +8 -0
  633. package/typings/packages/formatters/src/keysToSnakeCase.d.ts +2 -0
  634. package/typings/packages/formatters/src/manipulateDate.d.ts +6 -0
  635. package/typings/packages/icons/index.d.ts +1 -0
  636. package/typings/packages/icons/src/Icon.d.ts +4 -0
  637. package/typings/packages/icons/src/Icon.styles.d.ts +4 -0
  638. package/typings/packages/icons/src/constants.d.ts +1 -0
  639. package/typings/packages/icons/src/index.d.ts +4 -0
  640. package/typings/packages/icons/src/types.d.ts +8 -0
  641. package/typings/packages/icons/src/utils.d.ts +2 -0
  642. package/typings/packages/logger/index.d.ts +1 -0
  643. package/typings/packages/logger/src/index.d.ts +4 -0
  644. package/typings/packages/logger/src/logger.d.ts +3 -0
  645. package/typings/packages/payments-sdk/index.d.ts +1 -0
  646. package/typings/packages/payments-sdk/src/components/CardExpiration/CardExpiration.d.ts +8 -0
  647. package/typings/packages/payments-sdk/src/components/CardExpiration/CardExpiration.styles.d.ts +3 -0
  648. package/typings/packages/payments-sdk/src/components/CardExpiration/constants.d.ts +2 -0
  649. package/typings/packages/payments-sdk/src/components/CardExpiration/index.d.ts +2 -0
  650. package/typings/packages/payments-sdk/src/components/CardNumber/CardNumber.d.ts +7 -0
  651. package/typings/packages/payments-sdk/src/components/CardNumber/index.d.ts +2 -0
  652. package/typings/packages/payments-sdk/src/components/CreditCard/CreditCard.d.ts +12 -0
  653. package/typings/packages/payments-sdk/src/components/CreditCard/CreditCard.styles.d.ts +8 -0
  654. package/typings/packages/payments-sdk/src/components/CreditCard/components/FourDigit/FourDigit.d.ts +3 -0
  655. package/typings/packages/payments-sdk/src/components/CreditCard/components/FourDigit/index.d.ts +2 -0
  656. package/typings/packages/payments-sdk/src/components/CreditCard/components/ThreeDigit/ThreeDigit.d.ts +3 -0
  657. package/typings/packages/payments-sdk/src/components/CreditCard/components/ThreeDigit/index.d.ts +2 -0
  658. package/typings/packages/payments-sdk/src/components/CreditCard/components/TooltipContent/TooltipContent.d.ts +7 -0
  659. package/typings/packages/payments-sdk/src/components/CreditCard/components/TooltipContent/TooltipContent.styles.d.ts +3 -0
  660. package/typings/packages/payments-sdk/src/components/CreditCard/components/TooltipContent/index.d.ts +2 -0
  661. package/typings/packages/payments-sdk/src/components/CreditCard/components/TooltipContent/types.d.ts +4 -0
  662. package/typings/packages/payments-sdk/src/components/CreditCard/components/index.d.ts +2 -0
  663. package/typings/packages/payments-sdk/src/components/CreditCard/index.d.ts +4 -0
  664. package/typings/packages/payments-sdk/src/components/CreditCard/types.d.ts +8 -0
  665. package/typings/packages/payments-sdk/src/components/HostedField/HostedField.d.ts +11 -0
  666. package/typings/packages/payments-sdk/src/components/HostedField/HostedField.styles.d.ts +2 -0
  667. package/typings/packages/payments-sdk/src/components/HostedField/index.d.ts +4 -0
  668. package/typings/packages/payments-sdk/src/components/InputSocket/InputSocket.d.ts +8 -0
  669. package/typings/packages/payments-sdk/src/components/InputSocket/InputSocket.styles.d.ts +2 -0
  670. package/typings/packages/payments-sdk/src/components/InputSocket/index.d.ts +2 -0
  671. package/typings/packages/payments-sdk/src/components/PaymentProfileSkeleton/PaymentProfileSkeleton.d.ts +3 -0
  672. package/typings/packages/payments-sdk/src/components/PaymentProfileSkeleton/index.d.ts +2 -0
  673. package/typings/packages/payments-sdk/src/components/SecurityCode/SecurityCode.d.ts +7 -0
  674. package/typings/packages/payments-sdk/src/components/SecurityCode/index.d.ts +2 -0
  675. package/typings/packages/payments-sdk/src/components/index.d.ts +8 -0
  676. package/typings/packages/payments-sdk/src/constants.d.ts +2 -0
  677. package/typings/packages/payments-sdk/src/containers/PaymentsContainer/PaymentsContainer.d.ts +7 -0
  678. package/typings/packages/payments-sdk/src/containers/PaymentsContainer/index.d.ts +2 -0
  679. package/typings/packages/payments-sdk/src/containers/PaymentsContainer/utils/index.d.ts +2 -0
  680. package/typings/packages/payments-sdk/src/containers/PaymentsContainer/utils/waitForGlobalVariable.d.ts +1 -0
  681. package/typings/packages/payments-sdk/src/containers/index.d.ts +2 -0
  682. package/typings/packages/payments-sdk/src/contexts/PaymentsContext.d.ts +6 -0
  683. package/typings/packages/payments-sdk/src/contexts/index.d.ts +2 -0
  684. package/typings/packages/payments-sdk/src/forms/CreditCard/CreditCard.d.ts +21 -0
  685. package/typings/packages/payments-sdk/src/forms/CreditCard/index.d.ts +6 -0
  686. package/typings/packages/payments-sdk/src/forms/CreditCard/translations.d.ts +2 -0
  687. package/typings/packages/payments-sdk/src/forms/CreditCard/types.d.ts +29 -0
  688. package/typings/packages/payments-sdk/src/forms/CreditCard/utils/createFieldsConfig.d.ts +10 -0
  689. package/typings/packages/payments-sdk/src/forms/CreditCard/utils/createFieldsStyles.d.ts +75 -0
  690. package/typings/packages/payments-sdk/src/forms/CreditCard/utils/createValidationSchema.d.ts +9 -0
  691. package/typings/packages/payments-sdk/src/forms/CreditCard/utils/index.d.ts +5 -0
  692. package/typings/packages/payments-sdk/src/forms/CreditCard/utils/mapDetectedCreditCardType.d.ts +3 -0
  693. package/typings/packages/payments-sdk/src/forms/PaymentProfile/PaymentProfile.d.ts +30 -0
  694. package/typings/packages/payments-sdk/src/forms/PaymentProfile/constants.d.ts +2 -0
  695. package/typings/packages/payments-sdk/src/forms/PaymentProfile/index.d.ts +2 -0
  696. package/typings/packages/payments-sdk/src/forms/index.d.ts +5 -0
  697. package/typings/packages/payments-sdk/src/hooks/index.d.ts +3 -0
  698. package/typings/packages/payments-sdk/src/hooks/usePaymentProfileTranslations.d.ts +6 -0
  699. package/typings/packages/payments-sdk/src/hooks/usePaymentsForm.d.ts +1 -0
  700. package/typings/packages/payments-sdk/src/index.d.ts +6 -0
  701. package/typings/packages/payments-sdk/src/types.d.ts +29 -0
  702. package/typings/packages/session-manager/index.d.ts +1 -0
  703. package/typings/packages/session-manager/src/SessionManager/SessionManager.d.ts +31 -0
  704. package/typings/packages/session-manager/src/SessionManager/index.d.ts +4 -0
  705. package/typings/packages/session-manager/src/SessionManager/types.d.ts +14 -0
  706. package/typings/packages/session-manager/src/index.d.ts +4 -0
  707. package/typings/packages/subscriptions-manager/index.d.ts +1 -0
  708. package/typings/packages/subscriptions-manager/src/App.d.ts +4 -0
  709. package/typings/packages/subscriptions-manager/src/SubscriptionsManager.d.ts +7 -0
  710. package/typings/packages/subscriptions-manager/src/components/ComponentGroup/ComponentGroup.d.ts +9 -0
  711. package/typings/packages/subscriptions-manager/src/components/ComponentGroup/index.d.ts +2 -0
  712. package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationEdit/ComponentsAllocationEdit.d.ts +12 -0
  713. package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationEdit/ComponentsAllocationEdit.styles.d.ts +3 -0
  714. package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationEdit/components/ComponentsAllocationEditSkeleton/ComponentsAllocationEditSkeleton.d.ts +3 -0
  715. package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationEdit/components/ComponentsAllocationEditSkeleton/index.d.ts +2 -0
  716. package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationEdit/components/index.d.ts +2 -0
  717. package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationEdit/index.d.ts +2 -0
  718. package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationPreview/ComponentsAllocationPreview.d.ts +8 -0
  719. package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationPreview/ComponentsAllocationPreview.styles.d.ts +3 -0
  720. package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationPreview/components/AllocationsTable/AllocationsTable.d.ts +10 -0
  721. package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationPreview/components/AllocationsTable/index.d.ts +2 -0
  722. package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationPreview/index.d.ts +2 -0
  723. package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationPreview/utils/getAllocationSummaryPaymentMessage.d.ts +17 -0
  724. package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationPreview/utils/index.d.ts +5 -0
  725. package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationPreview/utils/mapAllocationsToTable.d.ts +12 -0
  726. package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationPreview/utils/mapChargeSummaryToTable.d.ts +10 -0
  727. package/typings/packages/subscriptions-manager/src/components/ComponentsAllocationPreview/utils/sortComponentAllocations.d.ts +6 -0
  728. package/typings/packages/subscriptions-manager/src/components/ComponentsPreview/ComponentsPreview.d.ts +7 -0
  729. package/typings/packages/subscriptions-manager/src/components/ComponentsPreview/ComponentsPreview.styles.d.ts +3 -0
  730. package/typings/packages/subscriptions-manager/src/components/ComponentsPreview/components/ComponentsPreviewRow/ComponentsPreviewRow.d.ts +7 -0
  731. package/typings/packages/subscriptions-manager/src/components/ComponentsPreview/components/ComponentsPreviewRow/ComponentsPreviewRow.styles.d.ts +3 -0
  732. package/typings/packages/subscriptions-manager/src/components/ComponentsPreview/components/ComponentsPreviewRow/index.d.ts +2 -0
  733. package/typings/packages/subscriptions-manager/src/components/ComponentsPreview/index.d.ts +4 -0
  734. package/typings/packages/subscriptions-manager/src/components/ComponentsPreview/types.d.ts +10 -0
  735. package/typings/packages/subscriptions-manager/src/components/ComponentsPreview/utils/createComponentsPreviewRow.d.ts +12 -0
  736. package/typings/packages/subscriptions-manager/src/components/ComponentsPreview/utils/createOnOffRow.d.ts +3 -0
  737. package/typings/packages/subscriptions-manager/src/components/ComponentsPreview/utils/createQuantityRow.d.ts +3 -0
  738. package/typings/packages/subscriptions-manager/src/components/ComponentsPreview/utils/index.d.ts +2 -0
  739. package/typings/packages/subscriptions-manager/src/components/ComponentsPreview/utils/renderPrice.d.ts +3 -0
  740. package/typings/packages/subscriptions-manager/src/components/ContentLoader/ContentLoader.d.ts +11 -0
  741. package/typings/packages/subscriptions-manager/src/components/ContentLoader/ContentLoader.styles.d.ts +3 -0
  742. package/typings/packages/subscriptions-manager/src/components/ContentLoader/index.d.ts +2 -0
  743. package/typings/packages/subscriptions-manager/src/components/CustomFieldsForm/CustomFieldsForm.d.ts +9 -0
  744. package/typings/packages/subscriptions-manager/src/components/CustomFieldsForm/index.d.ts +2 -0
  745. package/typings/packages/subscriptions-manager/src/components/CustomFieldsPreview/CustomFieldsPreview.d.ts +11 -0
  746. package/typings/packages/subscriptions-manager/src/components/CustomFieldsPreview/components/CustomFieldsLoadingSkeleton/CustomFieldsLoadingSkeleton.d.ts +3 -0
  747. package/typings/packages/subscriptions-manager/src/components/CustomFieldsPreview/components/CustomFieldsLoadingSkeleton/index.d.ts +2 -0
  748. package/typings/packages/subscriptions-manager/src/components/CustomFieldsPreview/components/index.d.ts +2 -0
  749. package/typings/packages/subscriptions-manager/src/components/CustomFieldsPreview/index.d.ts +2 -0
  750. package/typings/packages/subscriptions-manager/src/components/DetailsRow/DetailsRow.d.ts +7 -0
  751. package/typings/packages/subscriptions-manager/src/components/DetailsRow/index.d.ts +2 -0
  752. package/typings/packages/subscriptions-manager/src/components/PaymentProfiles/PaymentProfiles.d.ts +16 -0
  753. package/typings/packages/subscriptions-manager/src/components/PaymentProfiles/PaymentProfiles.styles.d.ts +3 -0
  754. package/typings/packages/subscriptions-manager/src/components/PaymentProfiles/components/PaymentProfilesHeader/PaymentsProfilesHeader.d.ts +8 -0
  755. package/typings/packages/subscriptions-manager/src/components/PaymentProfiles/components/PaymentProfilesHeader/PaymentsProfilesHeader.styles.d.ts +1 -0
  756. package/typings/packages/subscriptions-manager/src/components/PaymentProfiles/components/PaymentProfilesHeader/index.d.ts +2 -0
  757. package/typings/packages/subscriptions-manager/src/components/PaymentProfiles/components/PaymentProfilesSkeletonLoader/PaymentProfilesSkeletonLoader.d.ts +2 -0
  758. package/typings/packages/subscriptions-manager/src/components/PaymentProfiles/components/PaymentProfilesSkeletonLoader/index.d.ts +2 -0
  759. package/typings/packages/subscriptions-manager/src/components/PaymentProfiles/index.d.ts +2 -0
  760. package/typings/packages/subscriptions-manager/src/components/PaymentProfiles/utils.d.ts +4 -0
  761. package/typings/packages/subscriptions-manager/src/components/RadioOptions/RadioOptions.styles.d.ts +2 -0
  762. package/typings/packages/subscriptions-manager/src/components/RadioOptions/index.d.ts +2 -0
  763. package/typings/packages/subscriptions-manager/src/components/ShowMore/ShowMore.d.ts +8 -0
  764. package/typings/packages/subscriptions-manager/src/components/ShowMore/ShowMore.styles.d.ts +2 -0
  765. package/typings/packages/subscriptions-manager/src/components/ShowMore/index.d.ts +2 -0
  766. package/typings/packages/subscriptions-manager/src/components/Subscription/Subscription.d.ts +32 -0
  767. package/typings/packages/subscriptions-manager/src/components/Subscription/Subscription.styles.d.ts +5 -0
  768. package/typings/packages/subscriptions-manager/src/components/Subscription/index.d.ts +4 -0
  769. package/typings/packages/subscriptions-manager/src/components/Subscription/motion.d.ts +14 -0
  770. package/typings/packages/subscriptions-manager/src/components/Subscription/types.d.ts +1 -0
  771. package/typings/packages/subscriptions-manager/src/components/SubscriptionComponents/SubscriptionComponents.d.ts +17 -0
  772. package/typings/packages/subscriptions-manager/src/components/SubscriptionComponents/components/ComponentLoadingSkeleton/ComponentLoadingSkeleton.d.ts +7 -0
  773. package/typings/packages/subscriptions-manager/src/components/SubscriptionComponents/components/ComponentLoadingSkeleton/index.d.ts +2 -0
  774. package/typings/packages/subscriptions-manager/src/components/SubscriptionComponents/components/index.d.ts +2 -0
  775. package/typings/packages/subscriptions-manager/src/components/SubscriptionComponents/index.d.ts +2 -0
  776. package/typings/packages/subscriptions-manager/src/components/SubscriptionComponents/types.d.ts +6 -0
  777. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/SubscriptionDetails.d.ts +8 -0
  778. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/Active/Active.d.ts +8 -0
  779. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/Active/index.d.ts +2 -0
  780. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/Canceled/Canceled.d.ts +7 -0
  781. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/Canceled/index.d.ts +2 -0
  782. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/CancellationScheduled/CancellationScheduled.d.ts +9 -0
  783. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/CancellationScheduled/index.d.ts +2 -0
  784. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/DetailRow/DetailRow.d.ts +15 -0
  785. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/DetailRow/DetailRow.styles.d.ts +3 -0
  786. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/DetailRow/index.d.ts +2 -0
  787. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/Expired/Expired.d.ts +7 -0
  788. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/Expired/index.d.ts +2 -0
  789. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/Notification/Notification.d.ts +8 -0
  790. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/Notification/index.d.ts +2 -0
  791. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/OnHold/OnHold.d.ts +7 -0
  792. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/OnHold/index.d.ts +2 -0
  793. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/PastDue/PastDue.d.ts +8 -0
  794. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/PastDue/index.d.ts +2 -0
  795. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/Trial/Trial.d.ts +9 -0
  796. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/Trial/index.d.ts +2 -0
  797. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/TrialExpired/TrialExpired.d.ts +6 -0
  798. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/TrialExpired/index.d.ts +2 -0
  799. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/Unpaid/Unpaid.d.ts +7 -0
  800. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/Unpaid/index.d.ts +2 -0
  801. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/components/index.d.ts +11 -0
  802. package/typings/packages/subscriptions-manager/src/components/SubscriptionDetails/index.d.ts +2 -0
  803. package/typings/packages/subscriptions-manager/src/components/SubscriptionManagerLoader/SubscriptionManagerLoader.d.ts +3 -0
  804. package/typings/packages/subscriptions-manager/src/components/SubscriptionManagerLoader/index.d.ts +2 -0
  805. package/typings/packages/subscriptions-manager/src/components/index.d.ts +11 -0
  806. package/typings/packages/subscriptions-manager/src/containers/BilingDetailsContainer/BilingDetailsContainer.d.ts +9 -0
  807. package/typings/packages/subscriptions-manager/src/containers/BilingDetailsContainer/BilingDetailsContainer.styles.d.ts +1 -0
  808. package/typings/packages/subscriptions-manager/src/containers/BilingDetailsContainer/index.d.ts +2 -0
  809. package/typings/packages/subscriptions-manager/src/containers/ComponentContainer/ComponentContainer.d.ts +8 -0
  810. package/typings/packages/subscriptions-manager/src/containers/ComponentContainer/index.d.ts +2 -0
  811. package/typings/packages/subscriptions-manager/src/containers/ComponentsAllocationContainer/ComponentsAllocationContainer.d.ts +9 -0
  812. package/typings/packages/subscriptions-manager/src/containers/ComponentsAllocationContainer/index.d.ts +2 -0
  813. package/typings/packages/subscriptions-manager/src/containers/ComponentsContainer/ComponentsContainer.d.ts +7 -0
  814. package/typings/packages/subscriptions-manager/src/containers/ComponentsContainer/ComponentsContainer.styles.d.ts +2 -0
  815. package/typings/packages/subscriptions-manager/src/containers/ComponentsContainer/index.d.ts +2 -0
  816. package/typings/packages/subscriptions-manager/src/containers/CreatePaymentProfileContainer/CreatePaymentProfileContainer.d.ts +9 -0
  817. package/typings/packages/subscriptions-manager/src/containers/CreatePaymentProfileContainer/index.d.ts +2 -0
  818. package/typings/packages/subscriptions-manager/src/containers/CreatePaymentProfileErrorContainer/CreatePaymentProfileErrorContainer.d.ts +7 -0
  819. package/typings/packages/subscriptions-manager/src/containers/CreatePaymentProfileErrorContainer/index.d.ts +2 -0
  820. package/typings/packages/subscriptions-manager/src/containers/CreatePaymentProfileErrorContainer/types.d.ts +5 -0
  821. package/typings/packages/subscriptions-manager/src/containers/CustomFieldsContainer/CustomFieldsContainer.d.ts +7 -0
  822. package/typings/packages/subscriptions-manager/src/containers/CustomFieldsContainer/index.d.ts +2 -0
  823. package/typings/packages/subscriptions-manager/src/containers/ModalsContainer/ModalsContainer.d.ts +2 -0
  824. package/typings/packages/subscriptions-manager/src/containers/ModalsContainer/index.d.ts +2 -0
  825. package/typings/packages/subscriptions-manager/src/containers/PaymentProfileContainer/PaymentProfileContainer.d.ts +13 -0
  826. package/typings/packages/subscriptions-manager/src/containers/PaymentProfileContainer/constants.d.ts +3 -0
  827. package/typings/packages/subscriptions-manager/src/containers/PaymentProfileContainer/index.d.ts +2 -0
  828. package/typings/packages/subscriptions-manager/src/containers/PaymentProfileContainer/utils.d.ts +5 -0
  829. package/typings/packages/subscriptions-manager/src/containers/PaymentProfilesContainer/PaymentProfilesContainer.d.ts +7 -0
  830. package/typings/packages/subscriptions-manager/src/containers/PaymentProfilesContainer/fixture.d.ts +2 -0
  831. package/typings/packages/subscriptions-manager/src/containers/PaymentProfilesContainer/index.d.ts +2 -0
  832. package/typings/packages/subscriptions-manager/src/containers/SubscriptionContainer/SubscriptionContainer.d.ts +13 -0
  833. package/typings/packages/subscriptions-manager/src/containers/SubscriptionContainer/constants.d.ts +3 -0
  834. package/typings/packages/subscriptions-manager/src/containers/SubscriptionContainer/hooks/index.d.ts +3 -0
  835. package/typings/packages/subscriptions-manager/src/containers/SubscriptionContainer/hooks/useSubscriptionAvailableActions.d.ts +10 -0
  836. package/typings/packages/subscriptions-manager/src/containers/SubscriptionContainer/hooks/useSubscriptionIsActive.d.ts +2 -0
  837. package/typings/packages/subscriptions-manager/src/containers/SubscriptionContainer/index.d.ts +2 -0
  838. package/typings/packages/subscriptions-manager/src/containers/SubscriptionsContainer/SubscriptionsContainer.d.ts +8 -0
  839. package/typings/packages/subscriptions-manager/src/containers/SubscriptionsContainer/SubscriptionsContainer.styles.d.ts +2 -0
  840. package/typings/packages/subscriptions-manager/src/containers/SubscriptionsContainer/index.d.ts +2 -0
  841. package/typings/packages/subscriptions-manager/src/containers/index.d.ts +11 -0
  842. package/typings/packages/subscriptions-manager/src/contexts/ComponentsContext.d.ts +4 -0
  843. package/typings/packages/subscriptions-manager/src/contexts/ConfigContext.d.ts +3 -0
  844. package/typings/packages/subscriptions-manager/src/contexts/GlobalStateContext.d.ts +8 -0
  845. package/typings/packages/subscriptions-manager/src/contexts/PaymentProfilesContext.d.ts +8 -0
  846. package/typings/packages/subscriptions-manager/src/contexts/index.d.ts +5 -0
  847. package/typings/packages/subscriptions-manager/src/handlers/constants.d.ts +1 -0
  848. package/typings/packages/subscriptions-manager/src/handlers/gatewayConfig.d.ts +1 -0
  849. package/typings/packages/subscriptions-manager/src/handlers/index.d.ts +6 -0
  850. package/typings/packages/subscriptions-manager/src/handlers/paymentProfiles.d.ts +1 -0
  851. package/typings/packages/subscriptions-manager/src/handlers/product.d.ts +1 -0
  852. package/typings/packages/subscriptions-manager/src/handlers/subscription.d.ts +1 -0
  853. package/typings/packages/subscriptions-manager/src/hooks/index.d.ts +18 -0
  854. package/typings/packages/subscriptions-manager/src/hooks/useAddonsConfigurationService.d.ts +5 -0
  855. package/typings/packages/subscriptions-manager/src/hooks/useAvailablePaymentMethods.d.ts +2 -0
  856. package/typings/packages/subscriptions-manager/src/hooks/useCancelSubscriptionService.d.ts +4 -0
  857. package/typings/packages/subscriptions-manager/src/hooks/useChangePaymentProfile.d.ts +11 -0
  858. package/typings/packages/subscriptions-manager/src/hooks/useComponentSettings.d.ts +1 -0
  859. package/typings/packages/subscriptions-manager/src/hooks/useCreatePaymentProfile/index.d.ts +2 -0
  860. package/typings/packages/subscriptions-manager/src/hooks/useCreatePaymentProfile/serializeErrors.d.ts +11 -0
  861. package/typings/packages/subscriptions-manager/src/hooks/useCreatePaymentProfile/useCreatePaymentProfile.d.ts +21 -0
  862. package/typings/packages/subscriptions-manager/src/hooks/useDataAccess.d.ts +3 -0
  863. package/typings/packages/subscriptions-manager/src/hooks/useDeletePaymentProfile.d.ts +9 -0
  864. package/typings/packages/subscriptions-manager/src/hooks/useFormatSubscriptionDetails.d.ts +24 -0
  865. package/typings/packages/subscriptions-manager/src/hooks/usePauseSubscriptionService.d.ts +5 -0
  866. package/typings/packages/subscriptions-manager/src/hooks/usePaymentProfileAvailableActions/index.d.ts +2 -0
  867. package/typings/packages/subscriptions-manager/src/hooks/usePaymentProfileAvailableActions/usePaymentProfileAvailableActions.d.ts +7 -0
  868. package/typings/packages/subscriptions-manager/src/hooks/useReactivateSubscription.d.ts +4 -0
  869. package/typings/packages/subscriptions-manager/src/hooks/useResumeSubscriptionService.d.ts +5 -0
  870. package/typings/packages/subscriptions-manager/src/hooks/useServices.d.ts +6 -0
  871. package/typings/packages/subscriptions-manager/src/hooks/useSortPaymentProfiles/constants.d.ts +4 -0
  872. package/typings/packages/subscriptions-manager/src/hooks/useSortPaymentProfiles/index.d.ts +2 -0
  873. package/typings/packages/subscriptions-manager/src/hooks/useSortPaymentProfiles/useSortPaymentProfiles.d.ts +5 -0
  874. package/typings/packages/subscriptions-manager/src/hooks/useSubscriptionStatus.d.ts +8 -0
  875. package/typings/packages/subscriptions-manager/src/hooks/useUndoCancelationService.d.ts +4 -0
  876. package/typings/packages/subscriptions-manager/src/index.d.ts +4 -0
  877. package/typings/packages/subscriptions-manager/src/machines/addOnsConfiguration/actions.d.ts +5 -0
  878. package/typings/packages/subscriptions-manager/src/machines/addOnsConfiguration/index.d.ts +5 -0
  879. package/typings/packages/subscriptions-manager/src/machines/addOnsConfiguration/machine.d.ts +6 -0
  880. package/typings/packages/subscriptions-manager/src/machines/addOnsConfiguration/selectors.d.ts +42 -0
  881. package/typings/packages/subscriptions-manager/src/machines/addOnsConfiguration/serialize.d.ts +3 -0
  882. package/typings/packages/subscriptions-manager/src/machines/addOnsConfiguration/types.d.ts +97 -0
  883. package/typings/packages/subscriptions-manager/src/machines/addOnsConfiguration/utils/getPriceRange.d.ts +8 -0
  884. package/typings/packages/subscriptions-manager/src/machines/cancelSubscription/cancelSubscription.d.ts +5 -0
  885. package/typings/packages/subscriptions-manager/src/machines/cancelSubscription/index.d.ts +4 -0
  886. package/typings/packages/subscriptions-manager/src/machines/cancelSubscription/selectors.d.ts +25 -0
  887. package/typings/packages/subscriptions-manager/src/machines/cancelSubscription/types.d.ts +31 -0
  888. package/typings/packages/subscriptions-manager/src/machines/changePaymentProfile/changePaymentProfile.d.ts +5 -0
  889. package/typings/packages/subscriptions-manager/src/machines/changePaymentProfile/index.d.ts +4 -0
  890. package/typings/packages/subscriptions-manager/src/machines/changePaymentProfile/selectors.d.ts +21 -0
  891. package/typings/packages/subscriptions-manager/src/machines/changePaymentProfile/types.d.ts +16 -0
  892. package/typings/packages/subscriptions-manager/src/machines/component/component.d.ts +4 -0
  893. package/typings/packages/subscriptions-manager/src/machines/component/index.d.ts +3 -0
  894. package/typings/packages/subscriptions-manager/src/machines/component/selectors.d.ts +10 -0
  895. package/typings/packages/subscriptions-manager/src/machines/component/types.d.ts +4 -0
  896. package/typings/packages/subscriptions-manager/src/machines/components/components.d.ts +5 -0
  897. package/typings/packages/subscriptions-manager/src/machines/components/index.d.ts +5 -0
  898. package/typings/packages/subscriptions-manager/src/machines/components/selectors/getComponentsUpdatesAllowed.d.ts +4 -0
  899. package/typings/packages/subscriptions-manager/src/machines/components/selectors/getComponentsUsedInBilling.d.ts +12 -0
  900. package/typings/packages/subscriptions-manager/src/machines/components/selectors.d.ts +33 -0
  901. package/typings/packages/subscriptions-manager/src/machines/components/types.d.ts +16 -0
  902. package/typings/packages/subscriptions-manager/src/machines/components/utils/checkIfComponentIsUsedForBilling.d.ts +2 -0
  903. package/typings/packages/subscriptions-manager/src/machines/components/utils/index.d.ts +2 -0
  904. package/typings/packages/subscriptions-manager/src/machines/createPaymentProfile/actions.d.ts +12 -0
  905. package/typings/packages/subscriptions-manager/src/machines/createPaymentProfile/createPaymentProfile.d.ts +7 -0
  906. package/typings/packages/subscriptions-manager/src/machines/createPaymentProfile/index.d.ts +6 -0
  907. package/typings/packages/subscriptions-manager/src/machines/createPaymentProfile/selectors.d.ts +201 -0
  908. package/typings/packages/subscriptions-manager/src/machines/createPaymentProfile/serializers.d.ts +48 -0
  909. package/typings/packages/subscriptions-manager/src/machines/createPaymentProfile/types.d.ts +58 -0
  910. package/typings/packages/subscriptions-manager/src/machines/customFields/customFields.d.ts +5 -0
  911. package/typings/packages/subscriptions-manager/src/machines/customFields/selectors.d.ts +27 -0
  912. package/typings/packages/subscriptions-manager/src/machines/customFields/types.d.ts +5 -0
  913. package/typings/packages/subscriptions-manager/src/machines/deletePaymentProfile/deletePaymentProfile.d.ts +5 -0
  914. package/typings/packages/subscriptions-manager/src/machines/deletePaymentProfile/index.d.ts +5 -0
  915. package/typings/packages/subscriptions-manager/src/machines/deletePaymentProfile/selectors.d.ts +23 -0
  916. package/typings/packages/subscriptions-manager/src/machines/deletePaymentProfile/types.d.ts +15 -0
  917. package/typings/packages/subscriptions-manager/src/machines/index.d.ts +13 -0
  918. package/typings/packages/subscriptions-manager/src/machines/modals/index.d.ts +5 -0
  919. package/typings/packages/subscriptions-manager/src/machines/modals/modals.d.ts +5 -0
  920. package/typings/packages/subscriptions-manager/src/machines/modals/selectors.d.ts +155 -0
  921. package/typings/packages/subscriptions-manager/src/machines/modals/types.d.ts +96 -0
  922. package/typings/packages/subscriptions-manager/src/machines/pauseSubscription/index.d.ts +4 -0
  923. package/typings/packages/subscriptions-manager/src/machines/pauseSubscription/pauseSubscription.d.ts +5 -0
  924. package/typings/packages/subscriptions-manager/src/machines/pauseSubscription/selectors.d.ts +25 -0
  925. package/typings/packages/subscriptions-manager/src/machines/pauseSubscription/types.d.ts +29 -0
  926. package/typings/packages/subscriptions-manager/src/machines/paymentGateway/index.d.ts +5 -0
  927. package/typings/packages/subscriptions-manager/src/machines/paymentGateway/paymentGateway.d.ts +7 -0
  928. package/typings/packages/subscriptions-manager/src/machines/paymentGateway/selectors.d.ts +39 -0
  929. package/typings/packages/subscriptions-manager/src/machines/paymentGateway/types.d.ts +22 -0
  930. package/typings/packages/subscriptions-manager/src/machines/paymentProfiles/actions.d.ts +4 -0
  931. package/typings/packages/subscriptions-manager/src/machines/paymentProfiles/index.d.ts +4 -0
  932. package/typings/packages/subscriptions-manager/src/machines/paymentProfiles/paymentProfiles.d.ts +7 -0
  933. package/typings/packages/subscriptions-manager/src/machines/paymentProfiles/selectors.d.ts +19 -0
  934. package/typings/packages/subscriptions-manager/src/machines/paymentProfiles/serializers.d.ts +12 -0
  935. package/typings/packages/subscriptions-manager/src/machines/paymentProfiles/types.d.ts +30 -0
  936. package/typings/packages/subscriptions-manager/src/machines/productCatalog/actions.d.ts +3 -0
  937. package/typings/packages/subscriptions-manager/src/machines/productCatalog/index.d.ts +5 -0
  938. package/typings/packages/subscriptions-manager/src/machines/productCatalog/productCatalog.d.ts +6 -0
  939. package/typings/packages/subscriptions-manager/src/machines/productCatalog/selectors.d.ts +23 -0
  940. package/typings/packages/subscriptions-manager/src/machines/productCatalog/types.d.ts +20 -0
  941. package/typings/packages/subscriptions-manager/src/machines/reactivateSubscription/index.d.ts +4 -0
  942. package/typings/packages/subscriptions-manager/src/machines/reactivateSubscription/reactivateSubscription.d.ts +5 -0
  943. package/typings/packages/subscriptions-manager/src/machines/reactivateSubscription/selectors.d.ts +31 -0
  944. package/typings/packages/subscriptions-manager/src/machines/reactivateSubscription/types.d.ts +23 -0
  945. package/typings/packages/subscriptions-manager/src/machines/resumeSubscription/index.d.ts +4 -0
  946. package/typings/packages/subscriptions-manager/src/machines/resumeSubscription/resumeSubscription.d.ts +5 -0
  947. package/typings/packages/subscriptions-manager/src/machines/resumeSubscription/selectors.d.ts +25 -0
  948. package/typings/packages/subscriptions-manager/src/machines/resumeSubscription/types.d.ts +33 -0
  949. package/typings/packages/subscriptions-manager/src/machines/subscription/index.d.ts +3 -0
  950. package/typings/packages/subscriptions-manager/src/machines/subscription/selectors.d.ts +59 -0
  951. package/typings/packages/subscriptions-manager/src/machines/subscription/subscription.d.ts +12 -0
  952. package/typings/packages/subscriptions-manager/src/machines/subscription/types.d.ts +6 -0
  953. package/typings/packages/subscriptions-manager/src/machines/subscriptions/actions.d.ts +81 -0
  954. package/typings/packages/subscriptions-manager/src/machines/subscriptions/constants.d.ts +1 -0
  955. package/typings/packages/subscriptions-manager/src/machines/subscriptions/index.d.ts +7 -0
  956. package/typings/packages/subscriptions-manager/src/machines/subscriptions/selectors.d.ts +107 -0
  957. package/typings/packages/subscriptions-manager/src/machines/subscriptions/serializers.d.ts +16 -0
  958. package/typings/packages/subscriptions-manager/src/machines/subscriptions/subscriptions.d.ts +7 -0
  959. package/typings/packages/subscriptions-manager/src/machines/subscriptions/types.d.ts +48 -0
  960. package/typings/packages/subscriptions-manager/src/machines/undoCancelation/index.d.ts +4 -0
  961. package/typings/packages/subscriptions-manager/src/machines/undoCancelation/selectors.d.ts +25 -0
  962. package/typings/packages/subscriptions-manager/src/machines/undoCancelation/types.d.ts +15 -0
  963. package/typings/packages/subscriptions-manager/src/machines/undoCancelation/undoCancelation.d.ts +5 -0
  964. package/typings/packages/subscriptions-manager/src/mocks/allocation.d.ts +36 -0
  965. package/typings/packages/subscriptions-manager/src/mocks/components.d.ts +2 -0
  966. package/typings/packages/subscriptions-manager/src/mocks/customFields.d.ts +2 -0
  967. package/typings/packages/subscriptions-manager/src/mocks/gatewayConfig.d.ts +2 -0
  968. package/typings/packages/subscriptions-manager/src/mocks/index.d.ts +7 -0
  969. package/typings/packages/subscriptions-manager/src/mocks/paymentProfiles.d.ts +3 -0
  970. package/typings/packages/subscriptions-manager/src/mocks/products.d.ts +6 -0
  971. package/typings/packages/subscriptions-manager/src/mocks/subscriptions.d.ts +3 -0
  972. package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/CancelSubscription.d.ts +3 -0
  973. package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/components/ChurnResonCodes/ChurnReasonCodes.d.ts +8 -0
  974. package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/components/ChurnResonCodes/ChurnReasonCodes.styles.d.ts +1 -0
  975. package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/components/ChurnResonCodes/index.d.ts +2 -0
  976. package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/components/Content/Content.d.ts +12 -0
  977. package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/components/Content/Content.styles.d.ts +2 -0
  978. package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/components/Content/index.d.ts +2 -0
  979. package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/components/Form/Form.d.ts +14 -0
  980. package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/components/Form/index.d.ts +2 -0
  981. package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/components/index.d.ts +3 -0
  982. package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/constants.d.ts +5 -0
  983. package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/hooks/index.d.ts +2 -0
  984. package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/hooks/useCancelAvailableOptions.d.ts +3 -0
  985. package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/hooks/useCancelForm.d.ts +11 -0
  986. package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/index.d.ts +2 -0
  987. package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/machines/cancelForm.d.ts +5 -0
  988. package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/machines/index.d.ts +2 -0
  989. package/typings/packages/subscriptions-manager/src/modals/CancelSubscription/machines/types.d.ts +20 -0
  990. package/typings/packages/subscriptions-manager/src/modals/ChangePaymentMethod/ChangePaymentMethod.d.ts +3 -0
  991. package/typings/packages/subscriptions-manager/src/modals/ChangePaymentMethod/Content/Content.d.ts +10 -0
  992. package/typings/packages/subscriptions-manager/src/modals/ChangePaymentMethod/Content/index.d.ts +2 -0
  993. package/typings/packages/subscriptions-manager/src/modals/ChangePaymentMethod/index.d.ts +2 -0
  994. package/typings/packages/subscriptions-manager/src/modals/ComponentsAllocation/ComponentsAllocation.d.ts +3 -0
  995. package/typings/packages/subscriptions-manager/src/modals/ComponentsAllocation/components/Content/Content.d.ts +9 -0
  996. package/typings/packages/subscriptions-manager/src/modals/ComponentsAllocation/components/Content/index.d.ts +2 -0
  997. package/typings/packages/subscriptions-manager/src/modals/ComponentsAllocation/components/index.d.ts +2 -0
  998. package/typings/packages/subscriptions-manager/src/modals/ComponentsAllocation/index.d.ts +2 -0
  999. package/typings/packages/subscriptions-manager/src/modals/CreatePaymentProfile/CreatePaymentProfile.d.ts +3 -0
  1000. package/typings/packages/subscriptions-manager/src/modals/CreatePaymentProfile/components/Content/Content.d.ts +12 -0
  1001. package/typings/packages/subscriptions-manager/src/modals/CreatePaymentProfile/components/Content/constants.d.ts +1 -0
  1002. package/typings/packages/subscriptions-manager/src/modals/CreatePaymentProfile/components/Content/index.d.ts +2 -0
  1003. package/typings/packages/subscriptions-manager/src/modals/CreatePaymentProfile/components/index.d.ts +2 -0
  1004. package/typings/packages/subscriptions-manager/src/modals/CreatePaymentProfile/index.d.ts +2 -0
  1005. package/typings/packages/subscriptions-manager/src/modals/DeletePaymentMethod/Content/Content.d.ts +8 -0
  1006. package/typings/packages/subscriptions-manager/src/modals/DeletePaymentMethod/Content/constants.d.ts +1 -0
  1007. package/typings/packages/subscriptions-manager/src/modals/DeletePaymentMethod/Content/index.d.ts +2 -0
  1008. package/typings/packages/subscriptions-manager/src/modals/DeletePaymentMethod/DeletePaymentMethod.d.ts +3 -0
  1009. package/typings/packages/subscriptions-manager/src/modals/DeletePaymentMethod/ErrorList/ErrorList.d.ts +10 -0
  1010. package/typings/packages/subscriptions-manager/src/modals/DeletePaymentMethod/ErrorList/ErrorList.styles.d.ts +1 -0
  1011. package/typings/packages/subscriptions-manager/src/modals/DeletePaymentMethod/ErrorList/index.d.ts +2 -0
  1012. package/typings/packages/subscriptions-manager/src/modals/DeletePaymentMethod/index.d.ts +2 -0
  1013. package/typings/packages/subscriptions-manager/src/modals/PauseSubscription/PauseSubscription.d.ts +3 -0
  1014. package/typings/packages/subscriptions-manager/src/modals/PauseSubscription/components/Content/Content.d.ts +9 -0
  1015. package/typings/packages/subscriptions-manager/src/modals/PauseSubscription/components/Content/index.d.ts +2 -0
  1016. package/typings/packages/subscriptions-manager/src/modals/PauseSubscription/components/index.d.ts +2 -0
  1017. package/typings/packages/subscriptions-manager/src/modals/PauseSubscription/index.d.ts +2 -0
  1018. package/typings/packages/subscriptions-manager/src/modals/PreviewPaymentMethod/BillingAddress/BillingAddress.d.ts +7 -0
  1019. package/typings/packages/subscriptions-manager/src/modals/PreviewPaymentMethod/BillingAddress/index.d.ts +2 -0
  1020. package/typings/packages/subscriptions-manager/src/modals/PreviewPaymentMethod/Content/Content.d.ts +10 -0
  1021. package/typings/packages/subscriptions-manager/src/modals/PreviewPaymentMethod/Content/index.d.ts +2 -0
  1022. package/typings/packages/subscriptions-manager/src/modals/PreviewPaymentMethod/DetailsRow/DetailsRow.d.ts +7 -0
  1023. package/typings/packages/subscriptions-manager/src/modals/PreviewPaymentMethod/DetailsRow/index.d.ts +2 -0
  1024. package/typings/packages/subscriptions-manager/src/modals/PreviewPaymentMethod/PreviewPaymentMethod.d.ts +3 -0
  1025. package/typings/packages/subscriptions-manager/src/modals/PreviewPaymentMethod/index.d.ts +2 -0
  1026. package/typings/packages/subscriptions-manager/src/modals/ReactivateSubscription/ReactivateSubscription.d.ts +3 -0
  1027. package/typings/packages/subscriptions-manager/src/modals/ReactivateSubscription/components/Content/Content.d.ts +9 -0
  1028. package/typings/packages/subscriptions-manager/src/modals/ReactivateSubscription/components/Content/index.d.ts +2 -0
  1029. package/typings/packages/subscriptions-manager/src/modals/ReactivateSubscription/components/index.d.ts +2 -0
  1030. package/typings/packages/subscriptions-manager/src/modals/ReactivateSubscription/index.d.ts +2 -0
  1031. package/typings/packages/subscriptions-manager/src/modals/ResumeSubscription/ResumeSubscription.d.ts +3 -0
  1032. package/typings/packages/subscriptions-manager/src/modals/ResumeSubscription/components/Content/Content.d.ts +10 -0
  1033. package/typings/packages/subscriptions-manager/src/modals/ResumeSubscription/components/Content/index.d.ts +2 -0
  1034. package/typings/packages/subscriptions-manager/src/modals/ResumeSubscription/components/Content/utils.d.ts +10 -0
  1035. package/typings/packages/subscriptions-manager/src/modals/ResumeSubscription/components/index.d.ts +2 -0
  1036. package/typings/packages/subscriptions-manager/src/modals/ResumeSubscription/index.d.ts +2 -0
  1037. package/typings/packages/subscriptions-manager/src/modals/UndoCancelation/UndoCancelation.d.ts +3 -0
  1038. package/typings/packages/subscriptions-manager/src/modals/UndoCancelation/components/Content/Content.d.ts +9 -0
  1039. package/typings/packages/subscriptions-manager/src/modals/UndoCancelation/components/Content/index.d.ts +2 -0
  1040. package/typings/packages/subscriptions-manager/src/modals/UndoCancelation/components/index.d.ts +2 -0
  1041. package/typings/packages/subscriptions-manager/src/modals/UndoCancelation/index.d.ts +2 -0
  1042. package/typings/packages/subscriptions-manager/src/modals/index.d.ts +11 -0
  1043. package/typings/packages/subscriptions-manager/src/modals/setupTest/index.d.ts +2 -0
  1044. package/typings/packages/subscriptions-manager/src/modals/setupTest/modalTestRenderer.d.ts +7 -0
  1045. package/typings/packages/subscriptions-manager/src/models/component/component.d.ts +3 -0
  1046. package/typings/packages/subscriptions-manager/src/models/component/index.d.ts +4 -0
  1047. package/typings/packages/subscriptions-manager/src/models/component/types.d.ts +66 -0
  1048. package/typings/packages/subscriptions-manager/src/models/index.d.ts +7 -0
  1049. package/typings/packages/subscriptions-manager/src/models/paymentProfile/index.d.ts +3 -0
  1050. package/typings/packages/subscriptions-manager/src/models/paymentProfile/types.d.ts +43 -0
  1051. package/typings/packages/subscriptions-manager/src/models/subscription/constants.d.ts +2 -0
  1052. package/typings/packages/subscriptions-manager/src/models/subscription/index.d.ts +8 -0
  1053. package/typings/packages/subscriptions-manager/src/models/subscription/serialize.d.ts +2 -0
  1054. package/typings/packages/subscriptions-manager/src/models/subscription/subscription.d.ts +10 -0
  1055. package/typings/packages/subscriptions-manager/src/models/subscription/types.d.ts +72 -0
  1056. package/typings/packages/subscriptions-manager/src/pages/ComponentsAllocation/ComponentsAllocation.d.ts +3 -0
  1057. package/typings/packages/subscriptions-manager/src/pages/ComponentsAllocation/index.d.ts +2 -0
  1058. package/typings/packages/subscriptions-manager/src/pages/CustomFields/CustomFields.d.ts +3 -0
  1059. package/typings/packages/subscriptions-manager/src/pages/CustomFields/index.d.ts +2 -0
  1060. package/typings/packages/subscriptions-manager/src/pages/PaymentProfiles/PaymentProfiles.d.ts +3 -0
  1061. package/typings/packages/subscriptions-manager/src/pages/PaymentProfiles/index.d.ts +2 -0
  1062. package/typings/packages/subscriptions-manager/src/pages/Subscription/Subscription.d.ts +3 -0
  1063. package/typings/packages/subscriptions-manager/src/pages/Subscription/index.d.ts +2 -0
  1064. package/typings/packages/subscriptions-manager/src/pages/SubscriptionsList/SubscriptionsList.d.ts +3 -0
  1065. package/typings/packages/subscriptions-manager/src/pages/SubscriptionsList/hooks/index.d.ts +3 -0
  1066. package/typings/packages/subscriptions-manager/src/pages/SubscriptionsList/hooks/useProductCatalog.d.ts +7 -0
  1067. package/typings/packages/subscriptions-manager/src/pages/SubscriptionsList/hooks/useSubscriptions.d.ts +6 -0
  1068. package/typings/packages/subscriptions-manager/src/pages/SubscriptionsList/index.d.ts +2 -0
  1069. package/typings/packages/subscriptions-manager/src/pages/index.d.ts +6 -0
  1070. package/typings/packages/subscriptions-manager/src/providers/PaymentProfilesProvider.d.ts +6 -0
  1071. package/typings/packages/subscriptions-manager/src/providers/StateProvider.d.ts +6 -0
  1072. package/typings/packages/subscriptions-manager/src/providers/index.d.ts +3 -0
  1073. package/typings/packages/subscriptions-manager/src/settings.d.ts +2 -0
  1074. package/typings/packages/subscriptions-manager/src/types.d.ts +23 -0
  1075. package/typings/packages/subscriptions-manager/src/utils/getComponentsAllocationErrorDescription.d.ts +3 -0
  1076. package/typings/packages/subscriptions-manager/src/utils/index.d.ts +4 -0
  1077. package/typings/packages/subscriptions-manager/src/utils/mergeComponentsWithAllocations.d.ts +2 -0
  1078. package/typings/packages/subscriptions-manager/src/utils/sortSubscriptions.d.ts +2 -0
  1079. package/typings/packages/toasts/index.d.ts +1 -0
  1080. package/typings/packages/toasts/src/ToastsPlayground.d.ts +3 -0
  1081. package/typings/packages/toasts/src/containers/ToastsContainer/ToastsContainer.d.ts +6 -0
  1082. package/typings/packages/toasts/src/containers/ToastsContainer/ToastsContainer.styles.d.ts +3 -0
  1083. package/typings/packages/toasts/src/containers/ToastsContainer/index.d.ts +2 -0
  1084. package/typings/packages/toasts/src/containers/ToastsContainer/motion.d.ts +16 -0
  1085. package/typings/packages/toasts/src/containers/index.d.ts +2 -0
  1086. package/typings/packages/toasts/src/contexts/ToastMessagesContext.d.ts +5 -0
  1087. package/typings/packages/toasts/src/contexts/index.d.ts +2 -0
  1088. package/typings/packages/toasts/src/hooks/index.d.ts +2 -0
  1089. package/typings/packages/toasts/src/hooks/useToastMessages.d.ts +1 -0
  1090. package/typings/packages/toasts/src/index.d.ts +3 -0
  1091. package/typings/packages/toasts/src/machines/index.d.ts +2 -0
  1092. package/typings/packages/toasts/src/machines/toast/index.d.ts +2 -0
  1093. package/typings/packages/toasts/src/machines/toast/toast.d.ts +8 -0
  1094. package/typings/packages/toasts/src/machines/toast/types.d.ts +6 -0
  1095. package/typings/packages/toasts/src/machines/toasts/constants.d.ts +1 -0
  1096. package/typings/packages/toasts/src/machines/toasts/index.d.ts +2 -0
  1097. package/typings/packages/toasts/src/machines/toasts/toasts.d.ts +5 -0
  1098. package/typings/packages/toasts/src/machines/toasts/types.d.ts +23 -0
  1099. package/typings/packages/toasts/src/types.d.ts +8 -0
  1100. package/typings/packages/toasts/src/utils/index.d.ts +2 -0
  1101. package/typings/packages/toasts/src/utils/setNotificationsPosition.d.ts +2 -0
  1102. package/typings/sdk/components-sdk/src/SDK.d.ts +30 -0
  1103. package/typings/sdk/components-sdk/src/constants.d.ts +2 -0
  1104. package/typings/sdk/components-sdk/src/index.d.ts +2 -0
  1105. package/typings/sdk/components-sdk/src/settings.d.ts +2 -0
  1106. package/typings/sdk/components-sdk/src/types.d.ts +5 -0
  1107. package/typings/sdk/components-sdk/src/utils/createComponentFactory.d.ts +9 -0
@@ -0,0 +1,21 @@
1
+ import { State } from 'xstate';
2
+ import { changePaymentProfile } from './changePaymentProfile';
3
+ declare type ChangePaymentProfileMachine = typeof changePaymentProfile;
4
+ declare type ChangePaymentProfileState = State<ChangePaymentProfileMachine['context']>;
5
+ export declare const getChangePaymentProfileStatus: (machineState: ChangePaymentProfileState) => {
6
+ isLoading: boolean;
7
+ isError: boolean;
8
+ };
9
+ export declare const getErrorCode: (machineState: ChangePaymentProfileState) => {
10
+ errorCode: string;
11
+ };
12
+ export declare const changePaymentProfileSelectors: {
13
+ getChangePaymentProfileStatus: (machineState: ChangePaymentProfileState) => {
14
+ isLoading: boolean;
15
+ isError: boolean;
16
+ };
17
+ getErrorCode: (machineState: ChangePaymentProfileState) => {
18
+ errorCode: string;
19
+ };
20
+ };
21
+ export {};
@@ -0,0 +1,16 @@
1
+ export declare type Context = {
2
+ error?: {
3
+ errorCode: string;
4
+ };
5
+ };
6
+ export declare type Events = ChangePaymentProfileEvent | SetErrorEvent;
7
+ export declare type ChangePaymentProfileEvent = {
8
+ type: 'CHANGE_PAYMENT_PROFILE';
9
+ paymentProfileId: number;
10
+ };
11
+ export declare type SetErrorEvent = {
12
+ type: string;
13
+ data: {
14
+ errorCode: string;
15
+ };
16
+ };
@@ -0,0 +1,4 @@
1
+ export declare const createComponentMachine: (defaultContext?: {}) => import("xstate").StateMachine<import("../../models").ComponentModel, any, import("../../models/component/types").ComponentEvents, {
2
+ value: any;
3
+ context: import("../../models").ComponentModel;
4
+ }, import("xstate").BaseActionObject, import("xstate").ServiceMap, import("xstate").ResolveTypegenMeta<import("xstate").TypegenDisabled, import("../../models/component/types").ComponentEvents, import("xstate").BaseActionObject, import("xstate").ServiceMap>>;
@@ -0,0 +1,3 @@
1
+ import { createComponentMachine } from './component';
2
+ import { componentSelectors } from './selectors';
3
+ export { createComponentMachine, componentSelectors };
@@ -0,0 +1,10 @@
1
+ export declare const getComponent: (machineState: import("xstate").StateMachine<import("../../models").ComponentModel, any, import("../../models/component/types").ComponentEvents, {
2
+ value: any;
3
+ context: import("../../models").ComponentModel;
4
+ }, import("xstate").BaseActionObject, import("xstate").ServiceMap, import("xstate").ResolveTypegenMeta<import("xstate").TypegenDisabled, import("../../models/component/types").ComponentEvents, import("xstate").BaseActionObject, import("xstate").ServiceMap>>) => import("../../models").ComponentModel;
5
+ export declare const componentSelectors: {
6
+ getComponent: (machineState: import("xstate").StateMachine<import("../../models").ComponentModel, any, import("../../models/component/types").ComponentEvents, {
7
+ value: any;
8
+ context: import("../../models").ComponentModel;
9
+ }, import("xstate").BaseActionObject, import("xstate").ServiceMap, import("xstate").ResolveTypegenMeta<import("xstate").TypegenDisabled, import("../../models/component/types").ComponentEvents, import("xstate").BaseActionObject, import("xstate").ServiceMap>>) => import("../../models").ComponentModel;
10
+ };
@@ -0,0 +1,4 @@
1
+ import { createComponentMachine } from './component';
2
+ import { State } from 'xstate';
3
+ export declare type ComponentMachine = ReturnType<typeof createComponentMachine>;
4
+ export declare type ComponentsState = State<ComponentMachine>;
@@ -0,0 +1,5 @@
1
+ import { ComponentsContext, ComponentsEvents } from './types';
2
+ export declare const createComponentsMachine: (subscriptionId: number) => import("xstate").StateMachine<ComponentsContext, any, ComponentsEvents, {
3
+ value: any;
4
+ context: ComponentsContext;
5
+ }, import("xstate").BaseActionObject, import("xstate").ServiceMap, import("xstate").ResolveTypegenMeta<import("xstate").TypegenDisabled, ComponentsEvents, import("xstate").BaseActionObject, import("xstate").ServiceMap>>;
@@ -0,0 +1,5 @@
1
+ import { createComponentsMachine } from './components';
2
+ import { componentsSelectors } from './selectors';
3
+ import type { ComponentsContext, ComponentsEvents, ComponentTypes } from './types';
4
+ export { createComponentsMachine, componentsSelectors };
5
+ export type { ComponentsContext, ComponentsEvents, ComponentTypes };
@@ -0,0 +1,4 @@
1
+ import { State } from 'xstate';
2
+ import { ComponentsMachine } from './getComponentsUsedInBilling';
3
+ export declare type ComponentsState = State<ComponentsMachine['context']>;
4
+ export declare const getComponentsUpdatesAllowed: (machineState: ComponentsState) => boolean;
@@ -0,0 +1,12 @@
1
+ import { State, ActorRefFrom } from 'xstate';
2
+ import { ComponentMachine } from '../../component/types';
3
+ import { createComponentsMachine } from '../components';
4
+ import { ComponentTypes } from '../types';
5
+ export declare type ComponentsMachine = ReturnType<typeof createComponentsMachine>;
6
+ export declare type ComponentsState = State<ComponentsMachine['context']>;
7
+ declare type CategorizedComponents = Record<ComponentTypes, {
8
+ id: number;
9
+ componentMachineRef: ActorRefFrom<ComponentMachine>;
10
+ }[]>;
11
+ export declare const getComponentsUsedInBilling: (machineState: ComponentsState) => CategorizedComponents;
12
+ export {};
@@ -0,0 +1,33 @@
1
+ export declare const componentsSelectors: {
2
+ getComponentsUsedInBilling: (machineState: import("./selectors/getComponentsUsedInBilling").ComponentsState) => {
3
+ metered: {
4
+ id: number;
5
+ componentMachineRef: import("xstate").ActorRefWithDeprecatedState<import("../../models").ComponentModel, import("../../models/component/types").ComponentEvents, {
6
+ value: any;
7
+ context: import("../../models").ComponentModel;
8
+ }, import("xstate").ResolveTypegenMeta<import("xstate").TypegenDisabled, import("../../models/component/types").ComponentEvents, import("xstate").BaseActionObject, import("xstate").ServiceMap>>;
9
+ }[];
10
+ quantity: {
11
+ id: number;
12
+ componentMachineRef: import("xstate").ActorRefWithDeprecatedState<import("../../models").ComponentModel, import("../../models/component/types").ComponentEvents, {
13
+ value: any;
14
+ context: import("../../models").ComponentModel;
15
+ }, import("xstate").ResolveTypegenMeta<import("xstate").TypegenDisabled, import("../../models/component/types").ComponentEvents, import("xstate").BaseActionObject, import("xstate").ServiceMap>>;
16
+ }[];
17
+ on_off: {
18
+ id: number;
19
+ componentMachineRef: import("xstate").ActorRefWithDeprecatedState<import("../../models").ComponentModel, import("../../models/component/types").ComponentEvents, {
20
+ value: any;
21
+ context: import("../../models").ComponentModel;
22
+ }, import("xstate").ResolveTypegenMeta<import("xstate").TypegenDisabled, import("../../models/component/types").ComponentEvents, import("xstate").BaseActionObject, import("xstate").ServiceMap>>;
23
+ }[];
24
+ prepaid: {
25
+ id: number;
26
+ componentMachineRef: import("xstate").ActorRefWithDeprecatedState<import("../../models").ComponentModel, import("../../models/component/types").ComponentEvents, {
27
+ value: any;
28
+ context: import("../../models").ComponentModel;
29
+ }, import("xstate").ResolveTypegenMeta<import("xstate").TypegenDisabled, import("../../models/component/types").ComponentEvents, import("xstate").BaseActionObject, import("xstate").ServiceMap>>;
30
+ }[];
31
+ };
32
+ getComponentsUpdatesAllowed: (machineState: import("./selectors/getComponentsUpdatesAllowed").ComponentsState) => boolean;
33
+ };
@@ -0,0 +1,16 @@
1
+ import { ActorRefFrom } from 'xstate';
2
+ import { ComponentModel } from '../../models';
3
+ import { ComponentMachine } from '../component/types';
4
+ export declare type ComponentsContext = {
5
+ subscriptionId: number;
6
+ items: {
7
+ component: ComponentModel;
8
+ ref: ActorRefFrom<ComponentMachine>;
9
+ }[];
10
+ };
11
+ export declare type ComponentsEvents = {
12
+ type: 'FETCH_COMPONENTS';
13
+ } | {
14
+ type: 'UPDATE_COMPONENTS';
15
+ };
16
+ export declare type ComponentTypes = 'metered' | 'quantity' | 'on_off' | 'prepaid';
@@ -0,0 +1,2 @@
1
+ import { ComponentModel } from '../../../models';
2
+ export declare const checkIfComponentIsUsedForBilling: (component: ComponentModel) => boolean;
@@ -0,0 +1,2 @@
1
+ import { checkIfComponentIsUsedForBilling } from './checkIfComponentIsUsedForBilling';
2
+ export { checkIfComponentIsUsedForBilling };
@@ -0,0 +1,12 @@
1
+ import { CreditCardFields } from "../../../../payments-sdk/src";
2
+ import { AddressFields } from "../../../../address/src";
3
+ export declare const resetFieldError: import("xstate").AssignAction<{
4
+ billingAddress: {
5
+ errors: {};
6
+ values: AddressFields;
7
+ };
8
+ paymentMethod: {
9
+ errors: {};
10
+ values: CreditCardFields;
11
+ };
12
+ }, import("xstate").EventObject>;
@@ -0,0 +1,7 @@
1
+ import { Context, Events } from './types';
2
+ export declare const initialContext: Context;
3
+ declare const createPaymentProfile: import("xstate").StateMachine<Context, any, Events, {
4
+ value: any;
5
+ context: Context;
6
+ }, import("xstate").BaseActionObject, import("xstate").ServiceMap, import("xstate").ResolveTypegenMeta<import("xstate").TypegenDisabled, Events, import("xstate").BaseActionObject, import("xstate").ServiceMap>>;
7
+ export { createPaymentProfile };
@@ -0,0 +1,6 @@
1
+ import { createPaymentProfile, initialContext } from './createPaymentProfile';
2
+ import { paymentProfileSelectors } from './selectors';
3
+ import { serializeValidationSchema } from './serializers';
4
+ import type { PaymentProfileInterpreter, PaymentProfileFromType, PaymentProfileFields, FieldError as PaymentProfileFieldError, PaymentMethod } from './types';
5
+ export { createPaymentProfile, paymentProfileSelectors, initialContext, serializeValidationSchema, };
6
+ export type { PaymentProfileInterpreter, PaymentProfileFromType, PaymentProfileFields, PaymentProfileFieldError, PaymentMethod, };
@@ -0,0 +1,201 @@
1
+ import { State } from 'xstate';
2
+ import { createPaymentProfile } from './createPaymentProfile';
3
+ declare type PaymentProfileMachine = typeof createPaymentProfile;
4
+ declare type PaymentProfileState = State<PaymentProfileMachine['context']>;
5
+ export declare const getPaymentProfile: (machineState: PaymentProfileState) => {
6
+ paymentMethod: {
7
+ hostedFieldsErrors: string[];
8
+ values: import("../../../../payments-sdk").CreditCardFields;
9
+ errors: {
10
+ firstName?: import("./types").FieldError;
11
+ lastName?: import("./types").FieldError;
12
+ };
13
+ };
14
+ billingAddress: {
15
+ values: import("../../../../address").AddressFields;
16
+ errors: {
17
+ address?: import("./types").FieldError;
18
+ address2?: import("./types").FieldError;
19
+ city?: import("./types").FieldError;
20
+ state?: import("./types").FieldError;
21
+ country?: import("./types").FieldError;
22
+ zip?: import("./types").FieldError;
23
+ };
24
+ };
25
+ validationSchema: import("yup").ObjectSchema<{
26
+ paymentMethod: import("yup/lib/object").OptionalObjectSchema<{
27
+ firstName: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
28
+ lastName: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
29
+ }, import("yup/lib/object").AnyObject, import("yup/lib/object").TypeOfShape<{
30
+ firstName: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
31
+ lastName: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
32
+ }>>;
33
+ billingAddress: import("yup/lib/object").OptionalObjectSchema<{
34
+ address: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
35
+ address2: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
36
+ city: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
37
+ state: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
38
+ country: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
39
+ zip: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
40
+ }, import("yup/lib/object").AnyObject, import("yup/lib/object").TypeOfShape<{
41
+ address: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
42
+ address2: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
43
+ city: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
44
+ state: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
45
+ country: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
46
+ zip: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
47
+ }>>;
48
+ }, import("yup/lib/object").AnyObject, import("yup/lib/object").TypeOfShape<{
49
+ paymentMethod: import("yup/lib/object").OptionalObjectSchema<{
50
+ firstName: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
51
+ lastName: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
52
+ }, import("yup/lib/object").AnyObject, import("yup/lib/object").TypeOfShape<{
53
+ firstName: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
54
+ lastName: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
55
+ }>>;
56
+ billingAddress: import("yup/lib/object").OptionalObjectSchema<{
57
+ address: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
58
+ address2: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
59
+ city: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
60
+ state: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
61
+ country: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
62
+ zip: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
63
+ }, import("yup/lib/object").AnyObject, import("yup/lib/object").TypeOfShape<{
64
+ address: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
65
+ address2: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
66
+ city: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
67
+ state: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
68
+ country: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
69
+ zip: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
70
+ }>>;
71
+ }>, import("yup/lib/object").AssertsShape<{
72
+ paymentMethod: import("yup/lib/object").OptionalObjectSchema<{
73
+ firstName: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
74
+ lastName: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
75
+ }, import("yup/lib/object").AnyObject, import("yup/lib/object").TypeOfShape<{
76
+ firstName: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
77
+ lastName: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
78
+ }>>;
79
+ billingAddress: import("yup/lib/object").OptionalObjectSchema<{
80
+ address: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
81
+ address2: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
82
+ city: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
83
+ state: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
84
+ country: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
85
+ zip: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
86
+ }, import("yup/lib/object").AnyObject, import("yup/lib/object").TypeOfShape<{
87
+ address: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
88
+ address2: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
89
+ city: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
90
+ state: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
91
+ country: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
92
+ zip: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
93
+ }>>;
94
+ }>>;
95
+ };
96
+ export declare const getPaymentProfileProcessing: (machineState: PaymentProfileState) => boolean;
97
+ export declare const getProfileConnectionError: (machineState: PaymentProfileState) => boolean;
98
+ export declare const getRequiredFields: (machineState: PaymentProfileState) => string[];
99
+ export declare const getPaymentProfileErrors: (machineState: PaymentProfileState) => {
100
+ tokenization: import("../../../../payments-sdk").TokenizationError;
101
+ };
102
+ export declare const paymentProfileSelectors: {
103
+ getProfileConnectionError: (machineState: PaymentProfileState) => boolean;
104
+ getRequiredFields: (machineState: PaymentProfileState) => string[];
105
+ getPaymentProfileErrors: (machineState: PaymentProfileState) => {
106
+ tokenization: import("../../../../payments-sdk").TokenizationError;
107
+ };
108
+ getPaymentProfileProcessing: (machineState: PaymentProfileState) => boolean;
109
+ getPaymentProfile: (machineState: PaymentProfileState) => {
110
+ paymentMethod: {
111
+ hostedFieldsErrors: string[];
112
+ values: import("../../../../payments-sdk").CreditCardFields;
113
+ errors: {
114
+ firstName?: import("./types").FieldError;
115
+ lastName?: import("./types").FieldError;
116
+ };
117
+ };
118
+ billingAddress: {
119
+ values: import("../../../../address").AddressFields;
120
+ errors: {
121
+ address?: import("./types").FieldError;
122
+ address2?: import("./types").FieldError;
123
+ city?: import("./types").FieldError;
124
+ state?: import("./types").FieldError;
125
+ country?: import("./types").FieldError;
126
+ zip?: import("./types").FieldError;
127
+ };
128
+ };
129
+ validationSchema: import("yup").ObjectSchema<{
130
+ paymentMethod: import("yup/lib/object").OptionalObjectSchema<{
131
+ firstName: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
132
+ lastName: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
133
+ }, import("yup/lib/object").AnyObject, import("yup/lib/object").TypeOfShape<{
134
+ firstName: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
135
+ lastName: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
136
+ }>>;
137
+ billingAddress: import("yup/lib/object").OptionalObjectSchema<{
138
+ address: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
139
+ address2: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
140
+ city: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
141
+ state: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
142
+ country: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
143
+ zip: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
144
+ }, import("yup/lib/object").AnyObject, import("yup/lib/object").TypeOfShape<{
145
+ address: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
146
+ address2: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
147
+ city: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
148
+ state: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
149
+ country: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
150
+ zip: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
151
+ }>>;
152
+ }, import("yup/lib/object").AnyObject, import("yup/lib/object").TypeOfShape<{
153
+ paymentMethod: import("yup/lib/object").OptionalObjectSchema<{
154
+ firstName: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
155
+ lastName: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
156
+ }, import("yup/lib/object").AnyObject, import("yup/lib/object").TypeOfShape<{
157
+ firstName: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
158
+ lastName: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
159
+ }>>;
160
+ billingAddress: import("yup/lib/object").OptionalObjectSchema<{
161
+ address: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
162
+ address2: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
163
+ city: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
164
+ state: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
165
+ country: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
166
+ zip: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
167
+ }, import("yup/lib/object").AnyObject, import("yup/lib/object").TypeOfShape<{
168
+ address: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
169
+ address2: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
170
+ city: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
171
+ state: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
172
+ country: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
173
+ zip: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
174
+ }>>;
175
+ }>, import("yup/lib/object").AssertsShape<{
176
+ paymentMethod: import("yup/lib/object").OptionalObjectSchema<{
177
+ firstName: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
178
+ lastName: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
179
+ }, import("yup/lib/object").AnyObject, import("yup/lib/object").TypeOfShape<{
180
+ firstName: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
181
+ lastName: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
182
+ }>>;
183
+ billingAddress: import("yup/lib/object").OptionalObjectSchema<{
184
+ address: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
185
+ address2: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
186
+ city: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
187
+ state: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
188
+ country: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
189
+ zip: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
190
+ }, import("yup/lib/object").AnyObject, import("yup/lib/object").TypeOfShape<{
191
+ address: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
192
+ address2: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
193
+ city: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
194
+ state: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
195
+ country: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
196
+ zip: import("yup").StringSchema<string, import("yup/lib/types").AnyObject, string>;
197
+ }>>;
198
+ }>>;
199
+ };
200
+ };
201
+ export {};
@@ -0,0 +1,48 @@
1
+ import * as yup from 'yup';
2
+ export declare const serializeValidationSchema: (requiredFields: string[]) => import("yup/lib/object").OptionalObjectSchema<{
3
+ paymentMethod: import("yup/lib/object").OptionalObjectSchema<{
4
+ firstName: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
5
+ lastName: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
6
+ }, import("yup/lib/object").AnyObject, import("yup/lib/object").TypeOfShape<{
7
+ firstName: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
8
+ lastName: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
9
+ }>>;
10
+ billingAddress: import("yup/lib/object").OptionalObjectSchema<{
11
+ address: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
12
+ address2: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
13
+ city: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
14
+ state: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
15
+ country: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
16
+ zip: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
17
+ }, import("yup/lib/object").AnyObject, import("yup/lib/object").TypeOfShape<{
18
+ address: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
19
+ address2: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
20
+ city: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
21
+ state: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
22
+ country: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
23
+ zip: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
24
+ }>>;
25
+ }, import("yup/lib/object").AnyObject, import("yup/lib/object").TypeOfShape<{
26
+ paymentMethod: import("yup/lib/object").OptionalObjectSchema<{
27
+ firstName: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
28
+ lastName: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
29
+ }, import("yup/lib/object").AnyObject, import("yup/lib/object").TypeOfShape<{
30
+ firstName: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
31
+ lastName: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
32
+ }>>;
33
+ billingAddress: import("yup/lib/object").OptionalObjectSchema<{
34
+ address: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
35
+ address2: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
36
+ city: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
37
+ state: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
38
+ country: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
39
+ zip: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
40
+ }, import("yup/lib/object").AnyObject, import("yup/lib/object").TypeOfShape<{
41
+ address: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
42
+ address2: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
43
+ city: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
44
+ state: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
45
+ country: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
46
+ zip: yup.StringSchema<string, import("yup/lib/types").AnyObject, string>;
47
+ }>>;
48
+ }>>;
@@ -0,0 +1,58 @@
1
+ import { Interpreter } from 'xstate';
2
+ import { ObjectSchema } from 'yup';
3
+ import { TokenizationError, CreditCardFields, createCreditCardValidationSchema } from "../../../../payments-sdk/src";
4
+ import { AddressFields, createAddressValidationSchema } from "../../../../address/src";
5
+ import { PaymentProfile } from '../../models/paymentProfile';
6
+ export declare type FieldError = 'required' | 'invalid';
7
+ export declare type PaymentProfileFromType = 'billingAddress' | 'paymentMethod';
8
+ export declare type PaymentProfileFields = keyof AddressFields | keyof CreditCardFields;
9
+ export declare type PaymentMethod = 'creditCard' | 'bankAccount';
10
+ export declare type Context = {
11
+ token: string | null;
12
+ tokenizationError: TokenizationError;
13
+ createdProfile: PaymentProfile | null;
14
+ validationSchema: null | ObjectSchema<{
15
+ paymentMethod: ReturnType<typeof createCreditCardValidationSchema>;
16
+ billingAddress: ReturnType<typeof createAddressValidationSchema>;
17
+ }>;
18
+ requiredFields: null | string[];
19
+ paymentMethod: {
20
+ values: CreditCardFields;
21
+ errors: {
22
+ [key in keyof CreditCardFields]?: FieldError;
23
+ };
24
+ };
25
+ billingAddress: {
26
+ values: AddressFields;
27
+ errors: {
28
+ [key in keyof AddressFields]?: FieldError;
29
+ };
30
+ };
31
+ };
32
+ export declare type ResetFieldErrorEvent = {
33
+ type: 'RESET_FIELD_ERROR';
34
+ form: PaymentProfileFromType;
35
+ field: keyof AddressFields | keyof CreditCardFields;
36
+ };
37
+ export declare type Events = {
38
+ type: 'SAVE_PAYMENT_METHOD';
39
+ } | ResetFieldErrorEvent | {
40
+ type: 'SET_VALIDATION_ERRORS';
41
+ paymentMethod: {
42
+ [key in keyof CreditCardFields]: FieldError;
43
+ };
44
+ billingAddress: {
45
+ [key in keyof AddressFields]: FieldError;
46
+ };
47
+ } | {
48
+ type: 'SET_FIELD_ERROR';
49
+ form: PaymentProfileFromType;
50
+ field: keyof AddressFields | keyof CreditCardFields;
51
+ error: FieldError;
52
+ } | {
53
+ type: 'UPDATE_FIELD';
54
+ field: keyof AddressFields | keyof CreditCardFields;
55
+ form: PaymentProfileFromType;
56
+ value: string | number;
57
+ };
58
+ export declare type PaymentProfileInterpreter = Interpreter<Context, Record<string, any>, Events>;
@@ -0,0 +1,5 @@
1
+ import { Context } from './types';
2
+ export declare const createCustomFieldsMachine: (subscriptionId: number) => import("xstate").StateMachine<Context, any, import("xstate").AnyEventObject, {
3
+ value: any;
4
+ context: Context;
5
+ }, import("xstate").BaseActionObject, import("xstate").ServiceMap, import("xstate").ResolveTypegenMeta<import("xstate").TypegenDisabled, import("xstate").AnyEventObject, import("xstate").BaseActionObject, import("xstate").ServiceMap>>;
@@ -0,0 +1,27 @@
1
+ import { State } from 'xstate';
2
+ import { createCustomFieldsMachine } from './customFields';
3
+ declare type CustomFieldsMachine = ReturnType<typeof createCustomFieldsMachine>;
4
+ declare type CustomFieldsState = State<CustomFieldsMachine['context']>;
5
+ export declare const getSubscriptionCustomFields: (machineState: CustomFieldsState) => import("../../../../custom-fields").CustomField[];
6
+ export declare const getSubscriptionCustomFieldsState: (machineState: CustomFieldsState) => {
7
+ isIdle: boolean;
8
+ isFetchLoading: boolean;
9
+ isFetchError: boolean;
10
+ isReady: boolean;
11
+ isEdit: boolean;
12
+ isSaving: boolean;
13
+ isSaveError: boolean;
14
+ };
15
+ export declare const customFieldsSelectors: {
16
+ getSubscriptionCustomFields: (machineState: CustomFieldsState) => import("../../../../custom-fields").CustomField[];
17
+ getSubscriptionCustomFieldsState: (machineState: CustomFieldsState) => {
18
+ isIdle: boolean;
19
+ isFetchLoading: boolean;
20
+ isFetchError: boolean;
21
+ isReady: boolean;
22
+ isEdit: boolean;
23
+ isSaving: boolean;
24
+ isSaveError: boolean;
25
+ };
26
+ };
27
+ export {};
@@ -0,0 +1,5 @@
1
+ import { CustomField } from "../../../../custom-fields/src";
2
+ export declare type Context = {
3
+ subscriptionId: number;
4
+ customFields: CustomField[];
5
+ };
@@ -0,0 +1,5 @@
1
+ import { Context, Events } from './types';
2
+ export declare const deletePaymentProfile: import("xstate").StateMachine<Context, any, Events, {
3
+ value: any;
4
+ context: Context;
5
+ }, import("xstate").BaseActionObject, import("xstate").ServiceMap, import("xstate").ResolveTypegenMeta<import("xstate").TypegenDisabled, Events, import("xstate").BaseActionObject, import("xstate").ServiceMap>>;
@@ -0,0 +1,5 @@
1
+ import { deletePaymentProfile } from './deletePaymentProfile';
2
+ import { deletePaymentProfileSelectors } from './selectors';
3
+ import { AffectedSubscription } from './types';
4
+ export type { AffectedSubscription };
5
+ export { deletePaymentProfile, deletePaymentProfileSelectors };
@@ -0,0 +1,23 @@
1
+ import { State } from 'xstate';
2
+ import { deletePaymentProfile } from './deletePaymentProfile';
3
+ declare type DeletePaymentProfileMachine = typeof deletePaymentProfile;
4
+ declare type DeletePaymentProfile = State<DeletePaymentProfileMachine['context']>;
5
+ export declare const getDeletePaymentProfileStatus: (machineState: DeletePaymentProfile) => {
6
+ isLoading: boolean;
7
+ hasError: boolean;
8
+ };
9
+ export declare const getError: (machineState: DeletePaymentProfile) => {
10
+ errorCode: string;
11
+ subscriptions: import("./types").AffectedSubscription[];
12
+ };
13
+ export declare const deletePaymentProfileSelectors: {
14
+ getDeletePaymentProfileStatus: (machineState: DeletePaymentProfile) => {
15
+ isLoading: boolean;
16
+ hasError: boolean;
17
+ };
18
+ getError: (machineState: DeletePaymentProfile) => {
19
+ errorCode: string;
20
+ subscriptions: import("./types").AffectedSubscription[];
21
+ };
22
+ };
23
+ export {};
@@ -0,0 +1,15 @@
1
+ export declare type Context = {
2
+ error: null | {
3
+ errorCode: string;
4
+ subscriptions: AffectedSubscription[];
5
+ };
6
+ };
7
+ export declare type AffectedSubscription = {
8
+ id: number;
9
+ product: {
10
+ name: string;
11
+ };
12
+ };
13
+ export declare type Events = {
14
+ type: 'DELETE_PAYMENT_PROFILE';
15
+ };