@justifi/webcomponents 4.7.5 → 4.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (298) hide show
  1. package/dist/cjs/Business-540a6feb.js +67 -0
  2. package/dist/cjs/BusinessFormEventTypes-863f48e9.js +42 -0
  3. package/dist/cjs/{Payout-7821eb61.js → Payout-44b49b2d.js} +2 -1
  4. package/dist/cjs/additional-questions-details_5.cjs.entry.js +5 -5
  5. package/dist/cjs/{business-form-schema-a2b87e77.js → business-form-schema-37e5381d.js} +17 -17
  6. package/dist/cjs/{form-control-datepart_2.cjs.entry.js → form-control-datepart_3.cjs.entry.js} +46 -3
  7. package/dist/cjs/form-control-monetary.cjs.entry.js +1 -1
  8. package/dist/cjs/{form-control-number_3.cjs.entry.js → form-control-select_2.cjs.entry.js} +1 -44
  9. package/dist/cjs/form-input-masks-e3bf2614.js +9 -0
  10. package/dist/cjs/{index-4286ac32.js → index-55950669.js} +31 -1
  11. package/dist/cjs/{index.esm-c08c2adc.js → index.esm-d25bd7bf.js} +0 -259
  12. package/dist/cjs/{justifi-additional-questions_6.cjs.entry.js → justifi-additional-questions_5.cjs.entry.js} +10 -280
  13. package/dist/cjs/justifi-bank-account-form.cjs.entry.js +1 -1
  14. package/dist/cjs/justifi-billing-form_2.cjs.entry.js +2 -2
  15. package/dist/cjs/justifi-business-details.cjs.entry.js +6 -6
  16. package/dist/cjs/justifi-business-form-stepped.cjs.entry.js +56 -49
  17. package/dist/cjs/justifi-business-form.cjs.entry.js +43 -36
  18. package/dist/cjs/justifi-business-list.cjs.entry.js +4 -51
  19. package/dist/cjs/justifi-business-owners.cjs.entry.js +78 -0
  20. package/dist/cjs/justifi-card-form.cjs.entry.js +1 -1
  21. package/dist/cjs/justifi-details.cjs.entry.js +2 -2
  22. package/dist/cjs/justifi-gross-payment-chart.cjs.entry.js +3 -3
  23. package/dist/cjs/justifi-payment-balance-transactions.cjs.entry.js +2 -2
  24. package/dist/cjs/justifi-payment-details.cjs.entry.js +44 -43
  25. package/dist/cjs/justifi-payment-form.cjs.entry.js +2 -2
  26. package/dist/cjs/justifi-payment-method-form.cjs.entry.js +7 -5
  27. package/dist/cjs/justifi-payments-list.cjs.entry.js +47 -91
  28. package/dist/cjs/justifi-payout-details.cjs.entry.js +48 -46
  29. package/dist/cjs/justifi-payouts-list.cjs.entry.js +47 -113
  30. package/dist/cjs/justifi-proceeds-list.cjs.entry.js +2 -2
  31. package/dist/cjs/justifi-refund-form.cjs.entry.js +3 -3
  32. package/dist/cjs/justifi-subaccount-details.cjs.entry.js +3 -3
  33. package/dist/cjs/justifi-subaccounts-list.cjs.entry.js +4 -4
  34. package/dist/cjs/justifi-table_2.cjs.entry.js +33 -30
  35. package/dist/cjs/loader.cjs.js +2 -2
  36. package/dist/cjs/payment-details-core.cjs.entry.js +52 -0
  37. package/dist/cjs/payment.service-605896dc.js +20 -0
  38. package/dist/cjs/payments-list-core.cjs.entry.js +98 -0
  39. package/dist/cjs/payout-details-core.cjs.entry.js +52 -0
  40. package/dist/cjs/payout.service-b39f2739.js +21 -0
  41. package/dist/cjs/payouts-list-core.cjs.entry.js +121 -0
  42. package/dist/cjs/select-input_2.cjs.entry.js +1 -1
  43. package/dist/cjs/subaccount-account-details_4.cjs.entry.js +2 -2
  44. package/dist/cjs/subaccount-bank-details.cjs.entry.js +2 -2
  45. package/dist/cjs/subaccount-terms-details.cjs.entry.js +2 -2
  46. package/dist/cjs/{utils-a2ee48ca.js → utils-d126d17c.js} +5 -5
  47. package/dist/cjs/utils-f5d82f21.js +10 -0
  48. package/dist/cjs/webcomponents.cjs.js +2 -2
  49. package/dist/collection/api/Business.js +18 -3
  50. package/dist/collection/api/Payment.js +2 -1
  51. package/dist/collection/api/mockData/MockPayments.js +25 -0
  52. package/dist/collection/api/services/payment.service.js +13 -0
  53. package/dist/collection/api/services/payout.service.js +14 -0
  54. package/dist/collection/api/services/utils.js +6 -0
  55. package/dist/collection/collection-manifest.json +4 -0
  56. package/dist/collection/components/business-details/additional-questions-details/additional-questions-details.js +8 -8
  57. package/dist/collection/components/business-details/business-details.js +3 -3
  58. package/dist/collection/components/business-form/BusinessFormEventTypes.js +6 -0
  59. package/dist/collection/components/business-form/business-address/business-address-form-schema.js +1 -1
  60. package/dist/collection/components/business-form/business-form-schema.js +16 -16
  61. package/dist/collection/components/business-form/business-form-stepped.js +99 -57
  62. package/dist/collection/components/business-form/business-form.css +95 -0
  63. package/dist/collection/components/business-form/business-form.js +92 -32
  64. package/dist/collection/components/business-form/business-generic-info/business-generic-info.js +7 -3
  65. package/dist/collection/components/business-form/business-owners/business-owners.js +6 -21
  66. package/dist/collection/components/business-form/business-representative/business-representative.js +1 -1
  67. package/dist/collection/components/business-form/helpers.js +21 -20
  68. package/dist/collection/components/business-form/legal-address-form/legal-address-form-schema.js +1 -1
  69. package/dist/collection/components/business-form/legal-address-form/legal-address-form.js +1 -2
  70. package/dist/collection/components/business-form/test/business-form.spec.js +5 -14
  71. package/dist/collection/components/details/utils.js +2 -2
  72. package/dist/collection/components/form/utils.js +2 -0
  73. package/dist/collection/components/pagination-menu/test/pagination-menu.spec.js +87 -0
  74. package/dist/collection/components/payment-details/get-payment-details.js +17 -0
  75. package/dist/collection/components/payment-details/payment-details-core.js +86 -0
  76. package/dist/collection/components/payment-details/payment-details.js +27 -52
  77. package/dist/collection/components/payment-details/test/get-payment-details.spec.js +64 -0
  78. package/dist/collection/components/payment-details/test/payment-details-core.spec.js +47 -0
  79. package/dist/collection/components/payment-details/test/payment-details.spec.js +31 -0
  80. package/dist/collection/components/payments-list/get-payments.js +20 -0
  81. package/dist/collection/components/payments-list/payments-list-core.js +158 -0
  82. package/dist/collection/components/payments-list/payments-list.js +27 -127
  83. package/dist/collection/components/payments-list/test/get-payments.spec.js +70 -0
  84. package/dist/collection/components/payments-list/test/payments-list-core.spec.js +100 -0
  85. package/dist/collection/components/payments-list/test/payments-list.spec.js +17 -21
  86. package/dist/collection/components/payout-details/get-payout-details.js +20 -0
  87. package/dist/collection/components/payout-details/payout-details-core.js +86 -0
  88. package/dist/collection/components/payout-details/payout-details.js +27 -78
  89. package/dist/collection/components/payout-details/test/get-payout-details.spec.js +55 -0
  90. package/dist/collection/components/payout-details/test/payout-details-core.spec.js +72 -0
  91. package/dist/collection/components/payout-details/test/payout-details.spec.js +13 -0
  92. package/dist/collection/components/payouts-list/get-payouts.js +20 -0
  93. package/dist/collection/components/payouts-list/payouts-list-core.js +181 -0
  94. package/dist/collection/components/payouts-list/payouts-list.js +26 -148
  95. package/dist/collection/components/payouts-list/test/get-payouts.spec.js +64 -0
  96. package/dist/collection/components/payouts-list/test/payouts-list-core.spec.js +105 -0
  97. package/dist/collection/components/payouts-list/test/payouts-list.spec.js +29 -0
  98. package/dist/collection/components/subaccounts-list/subaccounts-list.js +2 -2
  99. package/dist/collection/components/table/table.js +22 -29
  100. package/dist/collection/components/table/test/table.spec.js +47 -13
  101. package/dist/collection/components/table/utils.js +4 -0
  102. package/dist/collection/utils/{phone-masks.js → form-input-masks.js} +1 -0
  103. package/dist/docs.json +486 -317
  104. package/dist/esm/Business-1f5e9f6b.js +64 -0
  105. package/dist/esm/BusinessFormEventTypes-989960ba.js +39 -0
  106. package/dist/esm/{Payout-c42e3877.js → Payout-dc5f009c.js} +2 -1
  107. package/dist/esm/{SubAccount-b3ce8720.js → SubAccount-bd59f646.js} +1 -1
  108. package/dist/esm/additional-questions-details_5.entry.js +6 -6
  109. package/dist/esm/{business-form-schema-997c585c.js → business-form-schema-f8f554d1.js} +17 -17
  110. package/dist/esm/{form-control-datepart_2.entry.js → form-control-datepart_3.entry.js} +46 -4
  111. package/dist/esm/form-control-monetary.entry.js +1 -1
  112. package/dist/esm/{form-control-number_3.entry.js → form-control-select_2.entry.js} +2 -44
  113. package/dist/esm/form-input-masks-a8187c77.js +6 -0
  114. package/dist/esm/{index-ff8194f9.js → index-62b8aa8a.js} +31 -1
  115. package/dist/esm/{index.esm-8ae36d07.js → index.esm-22b47398.js} +1 -258
  116. package/dist/esm/{justifi-additional-questions_6.entry.js → justifi-additional-questions_5.entry.js} +10 -279
  117. package/dist/esm/justifi-bank-account-form.entry.js +1 -1
  118. package/dist/esm/justifi-billing-form_2.entry.js +2 -2
  119. package/dist/esm/justifi-business-details.entry.js +6 -6
  120. package/dist/esm/justifi-business-form-stepped.entry.js +56 -49
  121. package/dist/esm/justifi-business-form.entry.js +43 -36
  122. package/dist/esm/justifi-business-list.entry.js +4 -51
  123. package/dist/{module/business-owners.js → esm/justifi-business-owners.entry.js} +13 -55
  124. package/dist/esm/justifi-card-form.entry.js +1 -1
  125. package/dist/esm/justifi-details.entry.js +2 -2
  126. package/dist/esm/justifi-gross-payment-chart.entry.js +4 -4
  127. package/dist/esm/justifi-payment-balance-transactions.entry.js +3 -3
  128. package/dist/esm/justifi-payment-details.entry.js +44 -43
  129. package/dist/esm/justifi-payment-form.entry.js +3 -3
  130. package/dist/esm/justifi-payment-method-form.entry.js +7 -5
  131. package/dist/esm/justifi-payments-list.entry.js +47 -91
  132. package/dist/esm/justifi-payout-details.entry.js +48 -46
  133. package/dist/esm/justifi-payouts-list.entry.js +47 -113
  134. package/dist/esm/justifi-proceeds-list.entry.js +3 -3
  135. package/dist/esm/justifi-refund-form.entry.js +3 -3
  136. package/dist/esm/justifi-subaccount-details.entry.js +5 -5
  137. package/dist/esm/justifi-subaccounts-list.entry.js +6 -6
  138. package/dist/esm/justifi-table_2.entry.js +33 -30
  139. package/dist/esm/loader.js +3 -3
  140. package/dist/esm/payment-details-core.entry.js +48 -0
  141. package/dist/esm/payment.service-bea02ccf.js +18 -0
  142. package/dist/esm/payments-list-core.entry.js +94 -0
  143. package/dist/{webcomponents/p-b2dc938f.entry.js → esm/payout-details-core.entry.js} +48 -1
  144. package/dist/esm/payout.service-92e56814.js +19 -0
  145. package/dist/esm/payouts-list-core.entry.js +117 -0
  146. package/dist/esm/select-input_2.entry.js +1 -1
  147. package/dist/esm/subaccount-account-details_4.entry.js +3 -3
  148. package/dist/esm/subaccount-bank-details.entry.js +2 -2
  149. package/dist/esm/subaccount-terms-details.entry.js +2 -2
  150. package/dist/esm/utils-546ca6aa.js +8 -0
  151. package/dist/esm/{utils-7c6bd149.js → utils-576874df.js} +5 -5
  152. package/dist/esm/{utils-26c7dd12.js → utils-dd428dba.js} +1 -1
  153. package/dist/esm/webcomponents.js +3 -3
  154. package/dist/module/Business.js +64 -0
  155. package/dist/module/BusinessFormEventTypes.js +39 -0
  156. package/dist/module/Payout.js +2 -1
  157. package/dist/module/additional-questions-details2.js +4 -4
  158. package/dist/module/business-generic-info.js +25 -27
  159. package/dist/module/business-representative.js +1 -1
  160. package/dist/module/form-input-masks.js +6 -0
  161. package/dist/module/index.esm.js +1 -258
  162. package/dist/module/justifi-business-details.js +3 -3
  163. package/dist/module/justifi-business-form-stepped.js +74 -72
  164. package/dist/module/justifi-business-form.js +62 -58
  165. package/dist/module/justifi-business-list.js +1 -48
  166. package/dist/module/justifi-business-owners.js +115 -1
  167. package/dist/module/justifi-payment-details.js +52 -48
  168. package/dist/module/justifi-payments-list.js +58 -102
  169. package/dist/module/justifi-payout-details.js +57 -52
  170. package/dist/module/justifi-payouts-list.js +59 -125
  171. package/dist/module/justifi-refund-form.js +1 -1
  172. package/dist/module/justifi-subaccounts-list.js +2 -2
  173. package/dist/module/legal-address-form.js +1 -202
  174. package/dist/module/payment-details-core.d.ts +11 -0
  175. package/dist/module/payment-details-core.js +6 -0
  176. package/dist/module/payment-details-core2.js +76 -0
  177. package/dist/module/payment-method-form.js +6 -4
  178. package/dist/module/payment.service.js +18 -0
  179. package/dist/module/payments-list-core.d.ts +11 -0
  180. package/dist/module/payments-list-core.js +6 -0
  181. package/dist/module/payments-list-core2.js +131 -0
  182. package/dist/module/payout-details-core.d.ts +11 -0
  183. package/dist/module/payout-details-core.js +6 -0
  184. package/dist/module/payout-details-core2.js +76 -0
  185. package/dist/module/payout.service.js +19 -0
  186. package/dist/module/payouts-list-core.d.ts +11 -0
  187. package/dist/module/payouts-list-core.js +6 -0
  188. package/dist/module/payouts-list-core2.js +153 -0
  189. package/dist/module/table.js +33 -30
  190. package/dist/module/utils.js +4 -4
  191. package/dist/module/utils3.js +8 -0
  192. package/dist/types/api/Business.d.ts +60 -37
  193. package/dist/types/api/Payment.d.ts +33 -1
  194. package/dist/types/api/services/payment.service.d.ts +9 -0
  195. package/dist/types/api/services/payout.service.d.ts +9 -0
  196. package/dist/types/api/services/utils.d.ts +1 -0
  197. package/dist/types/components/business-details/additional-questions-details/additional-questions-details.d.ts +2 -2
  198. package/dist/types/components/business-details/business-details.d.ts +2 -2
  199. package/dist/types/components/business-form/BusinessFormEventTypes.d.ts +5 -0
  200. package/dist/types/components/business-form/business-form-schema.d.ts +1 -19
  201. package/dist/types/components/business-form/business-form-stepped.d.ts +22 -4
  202. package/dist/types/components/business-form/business-form.d.ts +15 -1
  203. package/dist/types/components/business-form/business-generic-info/business-generic-info.d.ts +2 -0
  204. package/dist/types/components/business-form/business-owners/business-owners.d.ts +1 -1
  205. package/dist/types/components/business-form/helpers.d.ts +1 -1
  206. package/dist/types/components/details/utils.d.ts +4 -3
  207. package/dist/types/components/form/utils.d.ts +1 -0
  208. package/dist/types/components/payment-details/get-payment-details.d.ts +8 -0
  209. package/dist/types/components/payment-details/payment-details-core.d.ts +11 -0
  210. package/dist/types/components/payment-details/payment-details.d.ts +6 -6
  211. package/dist/types/components/payment-method-form/payment-method-responses.d.ts +10 -2
  212. package/dist/types/components/payments-list/get-payments.d.ts +9 -0
  213. package/dist/types/components/payments-list/payments-list-core.d.ts +17 -0
  214. package/dist/types/components/payments-list/payments-list.d.ts +4 -12
  215. package/dist/types/components/payout-details/get-payout-details.d.ts +8 -0
  216. package/dist/types/components/payout-details/payout-details-core.d.ts +11 -0
  217. package/dist/types/components/payout-details/payout-details.d.ts +5 -31
  218. package/dist/types/components/payouts-list/get-payouts.d.ts +9 -0
  219. package/dist/types/components/payouts-list/payouts-list-core.d.ts +18 -0
  220. package/dist/types/components/payouts-list/payouts-list.d.ts +4 -13
  221. package/dist/types/components/table/table.d.ts +3 -4
  222. package/dist/types/components/table/utils.d.ts +3 -0
  223. package/dist/types/components.d.ts +138 -138
  224. package/dist/types/utils/form-input-masks.d.ts +6 -0
  225. package/dist/webcomponents/p-081cf5f6.entry.js +1 -0
  226. package/dist/webcomponents/{p-04817850.entry.js → p-0a0cf2e6.entry.js} +1 -1
  227. package/dist/webcomponents/p-0b9146cd.entry.js +1 -0
  228. package/dist/webcomponents/p-112acd3c.entry.js +1 -0
  229. package/dist/webcomponents/p-1555e6b1.js +1 -0
  230. package/dist/webcomponents/{p-377303af.entry.js → p-16f41fd0.entry.js} +1 -1
  231. package/dist/webcomponents/p-17715325.js +1 -0
  232. package/dist/webcomponents/p-19c5ddf1.entry.js +1 -0
  233. package/dist/webcomponents/p-1b6ff0d3.entry.js +1 -0
  234. package/dist/webcomponents/p-1cb65d15.entry.js +1 -0
  235. package/dist/webcomponents/{p-8302a5e2.entry.js → p-2e318b6a.entry.js} +1 -1
  236. package/dist/webcomponents/p-34de1c5d.entry.js +1 -0
  237. package/dist/webcomponents/p-36618b59.entry.js +1 -0
  238. package/dist/webcomponents/p-3a4d4869.entry.js +1 -0
  239. package/dist/webcomponents/p-3cb0b96d.js +1 -0
  240. package/dist/webcomponents/p-4ba2c711.entry.js +1 -0
  241. package/dist/webcomponents/p-4c01df65.entry.js +1 -0
  242. package/dist/webcomponents/p-4f14df36.js +2 -0
  243. package/dist/webcomponents/p-4fa27a28.entry.js +1 -0
  244. package/dist/webcomponents/{p-3bef762a.js → p-50730e69.js} +1 -1
  245. package/dist/webcomponents/{p-d84cd3a5.entry.js → p-57aab065.entry.js} +1 -1
  246. package/dist/webcomponents/p-57e592ac.entry.js +1 -0
  247. package/dist/webcomponents/p-5e142186.entry.js +1 -0
  248. package/dist/webcomponents/{p-57efe345.entry.js → p-5f8b9f64.entry.js} +1 -1
  249. package/dist/webcomponents/p-663bfe87.js +1 -0
  250. package/dist/webcomponents/p-6ab67031.entry.js +1 -0
  251. package/dist/webcomponents/p-6ed680e9.js +1 -0
  252. package/dist/webcomponents/{p-cf656598.entry.js → p-731cb109.entry.js} +1 -1
  253. package/dist/webcomponents/{p-c8916484.entry.js → p-7c0f91fa.entry.js} +1 -1
  254. package/dist/webcomponents/{p-0f5206f0.entry.js → p-7dd83492.entry.js} +1 -1
  255. package/dist/webcomponents/p-810b72b5.js +1 -0
  256. package/dist/webcomponents/p-876c7257.entry.js +1 -0
  257. package/dist/webcomponents/p-88027949.js +1 -0
  258. package/dist/webcomponents/{p-dd4e8fa1.entry.js → p-896a9ddb.entry.js} +1 -1
  259. package/dist/webcomponents/{p-22c2a11e.entry.js → p-8a90b976.entry.js} +1 -1
  260. package/dist/webcomponents/p-9b99370e.js +1 -0
  261. package/dist/webcomponents/p-9cb3ff78.entry.js +1 -0
  262. package/dist/webcomponents/p-ade12f56.js +1 -0
  263. package/dist/webcomponents/{p-0a351e24.entry.js → p-b5aba473.entry.js} +1 -1
  264. package/dist/webcomponents/p-b8a8b551.js +1 -0
  265. package/dist/webcomponents/{p-439a79c7.entry.js → p-bd099662.entry.js} +1 -1
  266. package/dist/webcomponents/{p-cb5352a3.entry.js → p-c0f882ce.entry.js} +1 -1
  267. package/dist/webcomponents/p-d66a6057.entry.js +1 -0
  268. package/dist/webcomponents/{p-650eb614.entry.js → p-d71ce1cd.entry.js} +1 -1
  269. package/dist/webcomponents/{p-33e74da7.entry.js → p-ec4f27e7.entry.js} +1 -1
  270. package/dist/webcomponents/{p-9a6e4749.js → p-f0c535ed.js} +1 -1
  271. package/dist/webcomponents/{p-0ad353cc.entry.js → p-f7a3fd12.entry.js} +1 -1
  272. package/dist/webcomponents/{p-68427454.entry.js → p-f9183f12.entry.js} +1 -1
  273. package/dist/webcomponents/webcomponents.esm.js +1 -1
  274. package/package.json +6 -4
  275. package/readme.md +1 -1
  276. package/dist/cjs/helpers-b254d050.js +0 -26
  277. package/dist/esm/helpers-d8a6a0f1.js +0 -24
  278. package/dist/module/helpers.js +0 -24
  279. package/dist/module/phone-masks.js +0 -5
  280. package/dist/types/utils/phone-masks.d.ts +0 -3
  281. package/dist/webcomponents/p-173fb8ef.entry.js +0 -1
  282. package/dist/webcomponents/p-1e2a98bf.js +0 -1
  283. package/dist/webcomponents/p-210677e3.js +0 -1
  284. package/dist/webcomponents/p-2cab231e.entry.js +0 -1
  285. package/dist/webcomponents/p-2ea68b03.entry.js +0 -1
  286. package/dist/webcomponents/p-34430db2.entry.js +0 -1
  287. package/dist/webcomponents/p-42bc8e53.entry.js +0 -1
  288. package/dist/webcomponents/p-59ecc2d7.entry.js +0 -1
  289. package/dist/webcomponents/p-71679a41.js +0 -1
  290. package/dist/webcomponents/p-78baff54.js +0 -1
  291. package/dist/webcomponents/p-7d922421.entry.js +0 -1
  292. package/dist/webcomponents/p-862f38cc.entry.js +0 -1
  293. package/dist/webcomponents/p-bedada09.js +0 -1
  294. package/dist/webcomponents/p-c8099443.entry.js +0 -1
  295. package/dist/webcomponents/p-da00d9bf.js +0 -2
  296. package/dist/webcomponents/p-df8f6a0f.entry.js +0 -1
  297. package/dist/webcomponents/p-e8f41c84.entry.js +0 -1
  298. package/dist/webcomponents/p-e9589e45.entry.js +0 -1
package/dist/docs.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "timestamp": "2024-01-26T21:40:50",
2
+ "timestamp": "2024-02-21T21:14:54",
3
3
  "compiler": {
4
4
  "name": "@stencil/core",
5
5
  "version": "4.10.0",
@@ -37,16 +37,16 @@
37
37
  "usage": {},
38
38
  "props": [
39
39
  {
40
- "name": "business",
41
- "type": "IBusiness",
40
+ "name": "additionalQuestions",
41
+ "type": "AdditionalQuestions",
42
42
  "complexType": {
43
- "original": "IBusiness",
44
- "resolved": "IBusiness",
43
+ "original": "AdditionalQuestions",
44
+ "resolved": "AdditionalQuestions",
45
45
  "references": {
46
- "IBusiness": {
46
+ "AdditionalQuestions": {
47
47
  "location": "import",
48
48
  "path": "../../../api/Business",
49
- "id": "src/api/Business.ts::IBusiness"
49
+ "id": "src/api/Business.ts::AdditionalQuestions"
50
50
  }
51
51
  }
52
52
  },
@@ -56,7 +56,7 @@
56
56
  "docsTags": [],
57
57
  "values": [
58
58
  {
59
- "type": "IBusiness"
59
+ "type": "AdditionalQuestions"
60
60
  }
61
61
  ],
62
62
  "optional": false,
@@ -643,7 +643,6 @@
643
643
  ],
644
644
  "dependents": [
645
645
  "justifi-business-address-form",
646
- "justifi-business-generic-info",
647
646
  "justifi-business-owners",
648
647
  "justifi-business-representative",
649
648
  "justifi-legal-address-form"
@@ -653,9 +652,6 @@
653
652
  "justifi-business-address-form": [
654
653
  "form-control-number"
655
654
  ],
656
- "justifi-business-generic-info": [
657
- "form-control-number"
658
- ],
659
655
  "justifi-business-owners": [
660
656
  "form-control-number"
661
657
  ],
@@ -2137,12 +2133,63 @@
2137
2133
  "type": "string"
2138
2134
  }
2139
2135
  ],
2136
+ "optional": false,
2137
+ "required": false
2138
+ },
2139
+ {
2140
+ "name": "hideErrors",
2141
+ "type": "boolean",
2142
+ "complexType": {
2143
+ "original": "boolean",
2144
+ "resolved": "boolean",
2145
+ "references": {}
2146
+ },
2147
+ "mutable": false,
2148
+ "attr": "hide-errors",
2149
+ "reflectToAttr": false,
2150
+ "docs": "",
2151
+ "docsTags": [],
2152
+ "default": "false",
2153
+ "values": [
2154
+ {
2155
+ "type": "boolean"
2156
+ }
2157
+ ],
2140
2158
  "optional": true,
2141
2159
  "required": false
2142
2160
  }
2143
2161
  ],
2144
2162
  "methods": [],
2145
- "events": [],
2163
+ "events": [
2164
+ {
2165
+ "event": "clickEvent",
2166
+ "detail": "{ data?: any; name: string; }",
2167
+ "bubbles": true,
2168
+ "complexType": {
2169
+ "original": "{ data?: any, name: string }",
2170
+ "resolved": "{ data?: any; name: string; }",
2171
+ "references": {}
2172
+ },
2173
+ "cancelable": true,
2174
+ "composed": true,
2175
+ "docs": "",
2176
+ "docsTags": []
2177
+ },
2178
+ {
2179
+ "event": "submitted",
2180
+ "detail": "{ data: any; }",
2181
+ "bubbles": true,
2182
+ "complexType": {
2183
+ "original": "{ data: any }",
2184
+ "resolved": "{ data: any; }",
2185
+ "references": {}
2186
+ },
2187
+ "cancelable": true,
2188
+ "composed": true,
2189
+ "docs": "",
2190
+ "docsTags": []
2191
+ }
2192
+ ],
2146
2193
  "listeners": [],
2147
2194
  "styles": [],
2148
2195
  "slots": [],
@@ -2152,21 +2199,18 @@
2152
2199
  "justifi-business-generic-info",
2153
2200
  "justifi-legal-address-form",
2154
2201
  "justifi-additional-questions",
2155
- "justifi-business-representative",
2156
- "justifi-business-owners"
2202
+ "justifi-business-representative"
2157
2203
  ],
2158
2204
  "dependencyGraph": {
2159
2205
  "justifi-business-form": [
2160
2206
  "justifi-business-generic-info",
2161
2207
  "justifi-legal-address-form",
2162
2208
  "justifi-additional-questions",
2163
- "justifi-business-representative",
2164
- "justifi-business-owners"
2209
+ "justifi-business-representative"
2165
2210
  ],
2166
2211
  "justifi-business-generic-info": [
2167
2212
  "form-control-text",
2168
2213
  "form-control-select",
2169
- "form-control-number",
2170
2214
  "form-control-number-masked"
2171
2215
  ],
2172
2216
  "justifi-legal-address-form": [
@@ -2189,12 +2233,6 @@
2189
2233
  "form-control-text",
2190
2234
  "form-control-select",
2191
2235
  "form-control-number"
2192
- ],
2193
- "justifi-business-owners": [
2194
- "form-control-text",
2195
- "form-control-number-masked",
2196
- "form-control-datepart",
2197
- "form-control-number"
2198
2236
  ]
2199
2237
  }
2200
2238
  },
@@ -2221,7 +2259,7 @@
2221
2259
  "usage": {},
2222
2260
  "props": [
2223
2261
  {
2224
- "name": "accountId",
2262
+ "name": "authToken",
2225
2263
  "type": "string",
2226
2264
  "complexType": {
2227
2265
  "original": "string",
@@ -2229,7 +2267,7 @@
2229
2267
  "references": {}
2230
2268
  },
2231
2269
  "mutable": false,
2232
- "attr": "account-id",
2270
+ "attr": "auth-token",
2233
2271
  "reflectToAttr": false,
2234
2272
  "docs": "",
2235
2273
  "docsTags": [],
@@ -2242,7 +2280,7 @@
2242
2280
  "required": false
2243
2281
  },
2244
2282
  {
2245
- "name": "authToken",
2283
+ "name": "businessId",
2246
2284
  "type": "string",
2247
2285
  "complexType": {
2248
2286
  "original": "string",
@@ -2250,7 +2288,7 @@
2250
2288
  "references": {}
2251
2289
  },
2252
2290
  "mutable": false,
2253
- "attr": "auth-token",
2291
+ "attr": "business-id",
2254
2292
  "reflectToAttr": false,
2255
2293
  "docs": "",
2256
2294
  "docsTags": [],
@@ -2263,21 +2301,22 @@
2263
2301
  "required": false
2264
2302
  },
2265
2303
  {
2266
- "name": "businessId",
2267
- "type": "string",
2304
+ "name": "hideErrors",
2305
+ "type": "boolean",
2268
2306
  "complexType": {
2269
- "original": "string",
2270
- "resolved": "string",
2307
+ "original": "boolean",
2308
+ "resolved": "boolean",
2271
2309
  "references": {}
2272
2310
  },
2273
2311
  "mutable": false,
2274
- "attr": "business-id",
2312
+ "attr": "hide-errors",
2275
2313
  "reflectToAttr": false,
2276
2314
  "docs": "",
2277
2315
  "docsTags": [],
2316
+ "default": "false",
2278
2317
  "values": [
2279
2318
  {
2280
- "type": "string"
2319
+ "type": "boolean"
2281
2320
  }
2282
2321
  ],
2283
2322
  "optional": true,
@@ -2307,7 +2346,36 @@
2307
2346
  }
2308
2347
  ],
2309
2348
  "methods": [],
2310
- "events": [],
2349
+ "events": [
2350
+ {
2351
+ "event": "clickEvent",
2352
+ "detail": "{ data?: any; name: string; }",
2353
+ "bubbles": true,
2354
+ "complexType": {
2355
+ "original": "{ data?: any, name: string }",
2356
+ "resolved": "{ data?: any; name: string; }",
2357
+ "references": {}
2358
+ },
2359
+ "cancelable": true,
2360
+ "composed": true,
2361
+ "docs": "",
2362
+ "docsTags": []
2363
+ },
2364
+ {
2365
+ "event": "submitted",
2366
+ "detail": "{ data: any; }",
2367
+ "bubbles": true,
2368
+ "complexType": {
2369
+ "original": "{ data: any }",
2370
+ "resolved": "{ data: any; }",
2371
+ "references": {}
2372
+ },
2373
+ "cancelable": true,
2374
+ "composed": true,
2375
+ "docs": "",
2376
+ "docsTags": []
2377
+ }
2378
+ ],
2311
2379
  "listeners": [],
2312
2380
  "styles": [],
2313
2381
  "slots": [],
@@ -2317,21 +2385,18 @@
2317
2385
  "justifi-business-generic-info",
2318
2386
  "justifi-legal-address-form",
2319
2387
  "justifi-additional-questions",
2320
- "justifi-business-representative",
2321
- "justifi-business-owners"
2388
+ "justifi-business-representative"
2322
2389
  ],
2323
2390
  "dependencyGraph": {
2324
2391
  "justifi-business-form-stepped": [
2325
2392
  "justifi-business-generic-info",
2326
2393
  "justifi-legal-address-form",
2327
2394
  "justifi-additional-questions",
2328
- "justifi-business-representative",
2329
- "justifi-business-owners"
2395
+ "justifi-business-representative"
2330
2396
  ],
2331
2397
  "justifi-business-generic-info": [
2332
2398
  "form-control-text",
2333
2399
  "form-control-select",
2334
- "form-control-number",
2335
2400
  "form-control-number-masked"
2336
2401
  ],
2337
2402
  "justifi-legal-address-form": [
@@ -2354,12 +2419,6 @@
2354
2419
  "form-control-text",
2355
2420
  "form-control-select",
2356
2421
  "form-control-number"
2357
- ],
2358
- "justifi-business-owners": [
2359
- "form-control-text",
2360
- "form-control-number-masked",
2361
- "form-control-datepart",
2362
- "form-control-number"
2363
2422
  ]
2364
2423
  }
2365
2424
  },
@@ -2425,14 +2484,12 @@
2425
2484
  "dependencies": [
2426
2485
  "form-control-text",
2427
2486
  "form-control-select",
2428
- "form-control-number",
2429
2487
  "form-control-number-masked"
2430
2488
  ],
2431
2489
  "dependencyGraph": {
2432
2490
  "justifi-business-generic-info": [
2433
2491
  "form-control-text",
2434
2492
  "form-control-select",
2435
- "form-control-number",
2436
2493
  "form-control-number-masked"
2437
2494
  ],
2438
2495
  "justifi-business-form": [
@@ -2642,27 +2699,6 @@
2642
2699
  ],
2643
2700
  "optional": false,
2644
2701
  "required": false
2645
- },
2646
- {
2647
- "name": "isEditing",
2648
- "type": "boolean",
2649
- "complexType": {
2650
- "original": "boolean",
2651
- "resolved": "boolean",
2652
- "references": {}
2653
- },
2654
- "mutable": false,
2655
- "attr": "is-editing",
2656
- "reflectToAttr": false,
2657
- "docs": "",
2658
- "docsTags": [],
2659
- "values": [
2660
- {
2661
- "type": "boolean"
2662
- }
2663
- ],
2664
- "optional": false,
2665
- "required": false
2666
2702
  }
2667
2703
  ],
2668
2704
  "methods": [],
@@ -2671,10 +2707,7 @@
2671
2707
  "styles": [],
2672
2708
  "slots": [],
2673
2709
  "parts": [],
2674
- "dependents": [
2675
- "justifi-business-form",
2676
- "justifi-business-form-stepped"
2677
- ],
2710
+ "dependents": [],
2678
2711
  "dependencies": [
2679
2712
  "form-control-text",
2680
2713
  "form-control-number-masked",
@@ -2687,12 +2720,6 @@
2687
2720
  "form-control-number-masked",
2688
2721
  "form-control-datepart",
2689
2722
  "form-control-number"
2690
- ],
2691
- "justifi-business-form": [
2692
- "justifi-business-owners"
2693
- ],
2694
- "justifi-business-form-stepped": [
2695
- "justifi-business-owners"
2696
2723
  ]
2697
2724
  }
2698
2725
  },
@@ -3113,19 +3140,19 @@
3113
3140
  "slots": [],
3114
3141
  "parts": [],
3115
3142
  "dependents": [
3116
- "justifi-payment-details",
3117
- "justifi-payout-details",
3118
- "justifi-subaccount-details"
3143
+ "justifi-subaccount-details",
3144
+ "payment-details-core",
3145
+ "payout-details-core"
3119
3146
  ],
3120
3147
  "dependencies": [],
3121
3148
  "dependencyGraph": {
3122
- "justifi-payment-details": [
3149
+ "justifi-subaccount-details": [
3123
3150
  "justifi-details"
3124
3151
  ],
3125
- "justifi-payout-details": [
3152
+ "payment-details-core": [
3126
3153
  "justifi-details"
3127
3154
  ],
3128
- "justifi-subaccount-details": [
3155
+ "payout-details-core": [
3129
3156
  "justifi-details"
3130
3157
  ]
3131
3158
  }
@@ -3511,10 +3538,13 @@
3511
3538
  "parts": [],
3512
3539
  "dependents": [],
3513
3540
  "dependencies": [
3514
- "justifi-details"
3541
+ "payment-details-core"
3515
3542
  ],
3516
3543
  "dependencyGraph": {
3517
3544
  "justifi-payment-details": [
3545
+ "payment-details-core"
3546
+ ],
3547
+ "payment-details-core": [
3518
3548
  "justifi-details"
3519
3549
  ]
3520
3550
  }
@@ -4318,38 +4348,20 @@
4318
4348
  }
4319
4349
  ],
4320
4350
  "methods": [],
4321
- "events": [
4322
- {
4323
- "event": "payment-row-clicked",
4324
- "detail": "Payment",
4325
- "bubbles": true,
4326
- "complexType": {
4327
- "original": "Payment",
4328
- "resolved": "Payment",
4329
- "references": {
4330
- "Payment": {
4331
- "location": "import",
4332
- "path": "../../api",
4333
- "id": "src/api/index.ts::Payment"
4334
- }
4335
- }
4336
- },
4337
- "cancelable": true,
4338
- "composed": true,
4339
- "docs": "",
4340
- "docsTags": []
4341
- }
4342
- ],
4351
+ "events": [],
4343
4352
  "listeners": [],
4344
4353
  "styles": [],
4345
4354
  "slots": [],
4346
4355
  "parts": [],
4347
4356
  "dependents": [],
4348
4357
  "dependencies": [
4349
- "justifi-table"
4358
+ "payments-list-core"
4350
4359
  ],
4351
4360
  "dependencyGraph": {
4352
4361
  "justifi-payments-list": [
4362
+ "payments-list-core"
4363
+ ],
4364
+ "payments-list-core": [
4353
4365
  "justifi-table"
4354
4366
  ],
4355
4367
  "justifi-table": [
@@ -4363,167 +4375,81 @@
4363
4375
  "tag": "justifi-payout-details",
4364
4376
  "readme": "# justifi-payout-details\n\n\n",
4365
4377
  "docs": "",
4378
+ "docsTags": [],
4379
+ "usage": {},
4380
+ "props": [
4381
+ {
4382
+ "name": "authToken",
4383
+ "type": "string",
4384
+ "complexType": {
4385
+ "original": "string",
4386
+ "resolved": "string",
4387
+ "references": {}
4388
+ },
4389
+ "mutable": false,
4390
+ "attr": "auth-token",
4391
+ "reflectToAttr": false,
4392
+ "docs": "",
4393
+ "docsTags": [],
4394
+ "values": [
4395
+ {
4396
+ "type": "string"
4397
+ }
4398
+ ],
4399
+ "optional": false,
4400
+ "required": false
4401
+ },
4402
+ {
4403
+ "name": "payoutId",
4404
+ "type": "string",
4405
+ "complexType": {
4406
+ "original": "string",
4407
+ "resolved": "string",
4408
+ "references": {}
4409
+ },
4410
+ "mutable": false,
4411
+ "attr": "payout-id",
4412
+ "reflectToAttr": false,
4413
+ "docs": "",
4414
+ "docsTags": [],
4415
+ "values": [
4416
+ {
4417
+ "type": "string"
4418
+ }
4419
+ ],
4420
+ "optional": false,
4421
+ "required": false
4422
+ }
4423
+ ],
4424
+ "methods": [],
4425
+ "events": [],
4426
+ "listeners": [],
4427
+ "styles": [],
4428
+ "slots": [],
4429
+ "parts": [],
4430
+ "dependents": [],
4431
+ "dependencies": [
4432
+ "payout-details-core"
4433
+ ],
4434
+ "dependencyGraph": {
4435
+ "justifi-payout-details": [
4436
+ "payout-details-core"
4437
+ ],
4438
+ "payout-details-core": [
4439
+ "justifi-details"
4440
+ ]
4441
+ }
4442
+ },
4443
+ {
4444
+ "filePath": "src/components/payouts-list/payouts-list.tsx",
4445
+ "encapsulation": "shadow",
4446
+ "tag": "justifi-payouts-list",
4447
+ "readme": "# justifi-payouts-list\n\n\n",
4448
+ "docs": "",
4366
4449
  "docsTags": [
4367
4450
  {
4368
4451
  "name": "exportedPart",
4369
- "text": "detail-loading-spinner"
4370
- },
4371
- {
4372
- "name": "exportedPart",
4373
- "text": "detail-loading-state"
4374
- },
4375
- {
4376
- "name": "exportedPart",
4377
- "text": "detail-empty-state"
4378
- },
4379
- {
4380
- "name": "exportedPart",
4381
- "text": "detail-head"
4382
- },
4383
- {
4384
- "name": "exportedPart",
4385
- "text": "detail-title"
4386
- },
4387
- {
4388
- "name": "exportedPart",
4389
- "text": "detail-method"
4390
- },
4391
- {
4392
- "name": "exportedPart",
4393
- "text": "detail-info"
4394
- },
4395
- {
4396
- "name": "exportedPart",
4397
- "text": "detail-info-item"
4398
- },
4399
- {
4400
- "name": "exportedPart",
4401
- "text": "detail-info-item-title"
4402
- },
4403
- {
4404
- "name": "exportedPart",
4405
- "text": "detail-info-item-data"
4406
- },
4407
- {
4408
- "name": "exportedPart",
4409
- "text": "detail-metadata"
4410
- },
4411
- {
4412
- "name": "exportedPart",
4413
- "text": "detail-metadata-title"
4414
- },
4415
- {
4416
- "name": "exportedPart",
4417
- "text": "detail-method-title"
4418
- },
4419
- {
4420
- "name": "exportedPart",
4421
- "text": "detail-method-data"
4422
- },
4423
- {
4424
- "name": "exportedPart",
4425
- "text": "detail-section"
4426
- },
4427
- {
4428
- "name": "exportedPart",
4429
- "text": "detail-section-title"
4430
- },
4431
- {
4432
- "name": "exportedPart",
4433
- "text": "detail-section-item-title"
4434
- },
4435
- {
4436
- "name": "exportedPart",
4437
- "text": "detail-section-item-data"
4438
- },
4439
- {
4440
- "name": "exportedPart",
4441
- "text": "detail-head-info"
4442
- },
4443
- {
4444
- "name": "exportedPart",
4445
- "text": "detail-head-info-item"
4446
- },
4447
- {
4448
- "name": "exportedPart",
4449
- "text": "detail-head-info-item-title"
4450
- },
4451
- {
4452
- "name": "exportedPart",
4453
- "text": "detail-head-info-item-data"
4454
- }
4455
- ],
4456
- "usage": {},
4457
- "props": [
4458
- {
4459
- "name": "authToken",
4460
- "type": "string",
4461
- "complexType": {
4462
- "original": "string",
4463
- "resolved": "string",
4464
- "references": {}
4465
- },
4466
- "mutable": false,
4467
- "attr": "auth-token",
4468
- "reflectToAttr": false,
4469
- "docs": "",
4470
- "docsTags": [],
4471
- "values": [
4472
- {
4473
- "type": "string"
4474
- }
4475
- ],
4476
- "optional": false,
4477
- "required": false
4478
- },
4479
- {
4480
- "name": "payoutId",
4481
- "type": "string",
4482
- "complexType": {
4483
- "original": "string",
4484
- "resolved": "string",
4485
- "references": {}
4486
- },
4487
- "mutable": false,
4488
- "attr": "payout-id",
4489
- "reflectToAttr": false,
4490
- "docs": "",
4491
- "docsTags": [],
4492
- "values": [
4493
- {
4494
- "type": "string"
4495
- }
4496
- ],
4497
- "optional": false,
4498
- "required": false
4499
- }
4500
- ],
4501
- "methods": [],
4502
- "events": [],
4503
- "listeners": [],
4504
- "styles": [],
4505
- "slots": [],
4506
- "parts": [],
4507
- "dependents": [],
4508
- "dependencies": [
4509
- "justifi-details"
4510
- ],
4511
- "dependencyGraph": {
4512
- "justifi-payout-details": [
4513
- "justifi-details"
4514
- ]
4515
- }
4516
- },
4517
- {
4518
- "filePath": "src/components/payouts-list/payouts-list.tsx",
4519
- "encapsulation": "shadow",
4520
- "tag": "justifi-payouts-list",
4521
- "readme": "# justifi-payouts-list\n\n\n",
4522
- "docs": "",
4523
- "docsTags": [
4524
- {
4525
- "name": "exportedPart",
4526
- "text": "table-head: Table head"
4452
+ "text": "table-head: Table head"
4527
4453
  },
4528
4454
  {
4529
4455
  "name": "exportedPart",
@@ -4636,38 +4562,20 @@
4636
4562
  }
4637
4563
  ],
4638
4564
  "methods": [],
4639
- "events": [
4640
- {
4641
- "event": "payout-row-clicked",
4642
- "detail": "Payout",
4643
- "bubbles": true,
4644
- "complexType": {
4645
- "original": "Payout",
4646
- "resolved": "Payout",
4647
- "references": {
4648
- "Payout": {
4649
- "location": "import",
4650
- "path": "../../api",
4651
- "id": "src/api/index.ts::Payout"
4652
- }
4653
- }
4654
- },
4655
- "cancelable": true,
4656
- "composed": true,
4657
- "docs": "",
4658
- "docsTags": []
4659
- }
4660
- ],
4565
+ "events": [],
4661
4566
  "listeners": [],
4662
4567
  "styles": [],
4663
4568
  "slots": [],
4664
4569
  "parts": [],
4665
4570
  "dependents": [],
4666
4571
  "dependencies": [
4667
- "justifi-table"
4572
+ "payouts-list-core"
4668
4573
  ],
4669
4574
  "dependencyGraph": {
4670
4575
  "justifi-payouts-list": [
4576
+ "payouts-list-core"
4577
+ ],
4578
+ "payouts-list-core": [
4671
4579
  "justifi-table"
4672
4580
  ],
4673
4581
  "justifi-table": [
@@ -5425,22 +5333,6 @@
5425
5333
  "styles": [],
5426
5334
  "slots": [],
5427
5335
  "parts": [
5428
- {
5429
- "name": "empty-state",
5430
- "docs": ""
5431
- },
5432
- {
5433
- "name": "error-state",
5434
- "docs": ""
5435
- },
5436
- {
5437
- "name": "loading-state-cell",
5438
- "docs": ""
5439
- },
5440
- {
5441
- "name": "loading-state-spinner",
5442
- "docs": ""
5443
- },
5444
5336
  {
5445
5337
  "name": "pagination-bar",
5446
5338
  "docs": ""
@@ -5469,10 +5361,10 @@
5469
5361
  "dependents": [
5470
5362
  "justifi-business-list",
5471
5363
  "justifi-payment-balance-transactions",
5472
- "justifi-payments-list",
5473
- "justifi-payouts-list",
5474
5364
  "justifi-proceeds-list",
5475
- "justifi-subaccounts-list"
5365
+ "justifi-subaccounts-list",
5366
+ "payments-list-core",
5367
+ "payouts-list-core"
5476
5368
  ],
5477
5369
  "dependencies": [
5478
5370
  "pagination-menu"
@@ -5487,16 +5379,16 @@
5487
5379
  "justifi-payment-balance-transactions": [
5488
5380
  "justifi-table"
5489
5381
  ],
5490
- "justifi-payments-list": [
5382
+ "justifi-proceeds-list": [
5491
5383
  "justifi-table"
5492
5384
  ],
5493
- "justifi-payouts-list": [
5385
+ "justifi-subaccounts-list": [
5494
5386
  "justifi-table"
5495
5387
  ],
5496
- "justifi-proceeds-list": [
5388
+ "payments-list-core": [
5497
5389
  "justifi-table"
5498
5390
  ],
5499
- "justifi-subaccounts-list": [
5391
+ "payouts-list-core": [
5500
5392
  "justifi-table"
5501
5393
  ]
5502
5394
  }
@@ -5715,6 +5607,278 @@
5715
5607
  ]
5716
5608
  }
5717
5609
  },
5610
+ {
5611
+ "filePath": "src/components/payment-details/payment-details-core.tsx",
5612
+ "encapsulation": "none",
5613
+ "tag": "payment-details-core",
5614
+ "readme": "# justifi-payment-details\n\n\n",
5615
+ "docs": "",
5616
+ "docsTags": [],
5617
+ "usage": {},
5618
+ "props": [
5619
+ {
5620
+ "name": "getPaymentDetails",
5621
+ "type": "Function",
5622
+ "complexType": {
5623
+ "original": "Function",
5624
+ "resolved": "Function",
5625
+ "references": {
5626
+ "Function": {
5627
+ "location": "global",
5628
+ "id": "global::Function"
5629
+ }
5630
+ }
5631
+ },
5632
+ "mutable": false,
5633
+ "reflectToAttr": false,
5634
+ "docs": "",
5635
+ "docsTags": [],
5636
+ "values": [
5637
+ {
5638
+ "type": "Function"
5639
+ }
5640
+ ],
5641
+ "optional": false,
5642
+ "required": false
5643
+ }
5644
+ ],
5645
+ "methods": [],
5646
+ "events": [],
5647
+ "listeners": [],
5648
+ "styles": [],
5649
+ "slots": [],
5650
+ "parts": [],
5651
+ "dependents": [
5652
+ "justifi-payment-details"
5653
+ ],
5654
+ "dependencies": [
5655
+ "justifi-details"
5656
+ ],
5657
+ "dependencyGraph": {
5658
+ "payment-details-core": [
5659
+ "justifi-details"
5660
+ ],
5661
+ "justifi-payment-details": [
5662
+ "payment-details-core"
5663
+ ]
5664
+ }
5665
+ },
5666
+ {
5667
+ "filePath": "src/components/payments-list/payments-list-core.tsx",
5668
+ "encapsulation": "none",
5669
+ "tag": "payments-list-core",
5670
+ "readme": "# justifi-payments-list\n\n\n",
5671
+ "docs": "",
5672
+ "docsTags": [],
5673
+ "usage": {},
5674
+ "props": [
5675
+ {
5676
+ "name": "getPayments",
5677
+ "type": "Function",
5678
+ "complexType": {
5679
+ "original": "Function",
5680
+ "resolved": "Function",
5681
+ "references": {
5682
+ "Function": {
5683
+ "location": "global",
5684
+ "id": "global::Function"
5685
+ }
5686
+ }
5687
+ },
5688
+ "mutable": false,
5689
+ "reflectToAttr": false,
5690
+ "docs": "",
5691
+ "docsTags": [],
5692
+ "values": [
5693
+ {
5694
+ "type": "Function"
5695
+ }
5696
+ ],
5697
+ "optional": false,
5698
+ "required": false
5699
+ }
5700
+ ],
5701
+ "methods": [],
5702
+ "events": [
5703
+ {
5704
+ "event": "payment-row-clicked",
5705
+ "detail": "Payment",
5706
+ "bubbles": true,
5707
+ "complexType": {
5708
+ "original": "Payment",
5709
+ "resolved": "Payment",
5710
+ "references": {
5711
+ "Payment": {
5712
+ "location": "import",
5713
+ "path": "../../api",
5714
+ "id": "src/api/index.ts::Payment"
5715
+ }
5716
+ }
5717
+ },
5718
+ "cancelable": true,
5719
+ "composed": true,
5720
+ "docs": "",
5721
+ "docsTags": []
5722
+ }
5723
+ ],
5724
+ "listeners": [],
5725
+ "styles": [],
5726
+ "slots": [],
5727
+ "parts": [],
5728
+ "dependents": [
5729
+ "justifi-payments-list"
5730
+ ],
5731
+ "dependencies": [
5732
+ "justifi-table"
5733
+ ],
5734
+ "dependencyGraph": {
5735
+ "payments-list-core": [
5736
+ "justifi-table"
5737
+ ],
5738
+ "justifi-table": [
5739
+ "pagination-menu"
5740
+ ],
5741
+ "justifi-payments-list": [
5742
+ "payments-list-core"
5743
+ ]
5744
+ }
5745
+ },
5746
+ {
5747
+ "filePath": "src/components/payout-details/payout-details-core.tsx",
5748
+ "encapsulation": "none",
5749
+ "tag": "payout-details-core",
5750
+ "readme": "# justifi-payout-details\n\n\n",
5751
+ "docs": "",
5752
+ "docsTags": [],
5753
+ "usage": {},
5754
+ "props": [
5755
+ {
5756
+ "name": "getPayout",
5757
+ "type": "Function",
5758
+ "complexType": {
5759
+ "original": "Function",
5760
+ "resolved": "Function",
5761
+ "references": {
5762
+ "Function": {
5763
+ "location": "global",
5764
+ "id": "global::Function"
5765
+ }
5766
+ }
5767
+ },
5768
+ "mutable": false,
5769
+ "reflectToAttr": false,
5770
+ "docs": "",
5771
+ "docsTags": [],
5772
+ "values": [
5773
+ {
5774
+ "type": "Function"
5775
+ }
5776
+ ],
5777
+ "optional": false,
5778
+ "required": false
5779
+ }
5780
+ ],
5781
+ "methods": [],
5782
+ "events": [],
5783
+ "listeners": [],
5784
+ "styles": [],
5785
+ "slots": [],
5786
+ "parts": [],
5787
+ "dependents": [
5788
+ "justifi-payout-details"
5789
+ ],
5790
+ "dependencies": [
5791
+ "justifi-details"
5792
+ ],
5793
+ "dependencyGraph": {
5794
+ "payout-details-core": [
5795
+ "justifi-details"
5796
+ ],
5797
+ "justifi-payout-details": [
5798
+ "payout-details-core"
5799
+ ]
5800
+ }
5801
+ },
5802
+ {
5803
+ "filePath": "src/components/payouts-list/payouts-list-core.tsx",
5804
+ "encapsulation": "none",
5805
+ "tag": "payouts-list-core",
5806
+ "readme": "# justifi-payouts-list\n\n\n",
5807
+ "docs": "",
5808
+ "docsTags": [],
5809
+ "usage": {},
5810
+ "props": [
5811
+ {
5812
+ "name": "getPayouts",
5813
+ "type": "Function",
5814
+ "complexType": {
5815
+ "original": "Function",
5816
+ "resolved": "Function",
5817
+ "references": {
5818
+ "Function": {
5819
+ "location": "global",
5820
+ "id": "global::Function"
5821
+ }
5822
+ }
5823
+ },
5824
+ "mutable": false,
5825
+ "reflectToAttr": false,
5826
+ "docs": "",
5827
+ "docsTags": [],
5828
+ "values": [
5829
+ {
5830
+ "type": "Function"
5831
+ }
5832
+ ],
5833
+ "optional": false,
5834
+ "required": false
5835
+ }
5836
+ ],
5837
+ "methods": [],
5838
+ "events": [
5839
+ {
5840
+ "event": "payout-row-clicked",
5841
+ "detail": "Payout",
5842
+ "bubbles": true,
5843
+ "complexType": {
5844
+ "original": "Payout",
5845
+ "resolved": "Payout",
5846
+ "references": {
5847
+ "Payout": {
5848
+ "location": "import",
5849
+ "path": "../../api",
5850
+ "id": "src/api/index.ts::Payout"
5851
+ }
5852
+ }
5853
+ },
5854
+ "cancelable": true,
5855
+ "composed": true,
5856
+ "docs": "",
5857
+ "docsTags": []
5858
+ }
5859
+ ],
5860
+ "listeners": [],
5861
+ "styles": [],
5862
+ "slots": [],
5863
+ "parts": [],
5864
+ "dependents": [
5865
+ "justifi-payouts-list"
5866
+ ],
5867
+ "dependencies": [
5868
+ "justifi-table"
5869
+ ],
5870
+ "dependencyGraph": {
5871
+ "payouts-list-core": [
5872
+ "justifi-table"
5873
+ ],
5874
+ "justifi-table": [
5875
+ "pagination-menu"
5876
+ ],
5877
+ "justifi-payouts-list": [
5878
+ "payouts-list-core"
5879
+ ]
5880
+ }
5881
+ },
5718
5882
  {
5719
5883
  "filePath": "src/components/business-details/representative-details/representative-details.tsx",
5720
5884
  "encapsulation": "shadow",
@@ -6408,7 +6572,7 @@
6408
6572
  "path": "src/components/pagination-menu/pagination-menu.tsx"
6409
6573
  },
6410
6574
  "src/components/payment-method-form/payment-method-responses.ts::CreatePaymentMethodResponse": {
6411
- "declaration": "export type CreatePaymentMethodResponse = CardCreateResponse | BankAccountCreateResponse | PaymentMethodErrorResponse;",
6575
+ "declaration": "export type CreatePaymentMethodResponse =\n | CardCreateResponse\n | BankAccountCreateResponse\n | PaymentMethodErrorResponse;",
6412
6576
  "docstring": "",
6413
6577
  "path": "src/components/payment-method-form/payment-method-responses.ts"
6414
6578
  },
@@ -6422,18 +6586,23 @@
6422
6586
  "docstring": "",
6423
6587
  "path": "../../node_modules/.pnpm/yup@1.3.3/node_modules/yup/index.d.ts"
6424
6588
  },
6589
+ "src/api/Business.ts::AdditionalQuestions": {
6590
+ "declaration": "export interface AdditionalQuestions {\n business_revenue?: string;\n business_payment_volume?: string;\n business_dispute_volume?: string;\n business_receivable_volume?: string;\n}",
6591
+ "docstring": "",
6592
+ "path": "src/api/Business.ts"
6593
+ },
6425
6594
  "src/api/Business.ts::IBusiness": {
6426
- "declaration": "export interface IBusiness {\n business_structure: BusinessStructure;\n business_type: BusinessType;\n bank_accounts: BankAccount[];\n created_at: string;\n documents: Document[];\n doing_business_as: string;\n email: string;\n id: string;\n industry: string;\n legal_address: Address;\n legal_name: string;\n metadata: any;\n owners: Identity[];\n phone: string;\n platform_account_id: string;\n representative: Identity | null;\n tax_id: string;\n updated_at: string;\n website_url: string;\n product_categories: ProductCategories;\n additional_questions: AdditionalQuestions;\n}",
6595
+ "declaration": "export interface IBusiness {\n additional_questions: AdditionalQuestions | {};\n business_structure: BusinessStructure;\n business_type: BusinessType;\n bank_accounts: BankAccount[];\n created_at: string;\n documents: Document[];\n doing_business_as: string;\n email: string;\n id: string;\n industry: string;\n legal_address: Address | {};\n legal_name: string;\n metadata: any;\n owners: Identity[];\n phone: string;\n platform_account_id: string;\n product_categories: ProductCategories;\n representative: Identity | {};\n tax_id: string;\n updated_at: string;\n website_url: string;\n}",
6427
6596
  "docstring": "",
6428
6597
  "path": "src/api/Business.ts"
6429
6598
  },
6430
6599
  "src/api/Business.ts::Address": {
6431
- "declaration": "export interface Address {\n id: string;\n platform_account_id: string;\n line1: string;\n line2: string;\n postal_code: string;\n city: string;\n state: string;\n country: string;\n created_at: string;\n updated_at: string;\n}",
6600
+ "declaration": "export interface Address {\n id?: string;\n platform_account_id?: string;\n line1?: string;\n line2?: string;\n postal_code?: string;\n city?: string;\n state?: string;\n country?: string;\n created_at?: string;\n updated_at?: string;\n}",
6432
6601
  "docstring": "",
6433
6602
  "path": "src/api/Business.ts"
6434
6603
  },
6435
6604
  "src/api/Business.ts::Identity": {
6436
- "declaration": "export interface Identity {\n address: Address;\n created_at: string;\n dob_day: string;\n dob_month: string;\n dob_year: string;\n documents: Document[];\n email: string;\n id: string;\n is_owner: boolean;\n metadata: any;\n name: string;\n phone: string;\n platform_account_id: string;\n ssn_last4: string;\n title: string;\n updated_at: string;\n}",
6605
+ "declaration": "export interface Identity {\n address?: Address;\n created_at?: string;\n dob_day?: string;\n dob_month?: string;\n dob_year?: string;\n documents?: Document[];\n email?: string;\n id?: string;\n is_owner?: boolean;\n metadata?: any;\n name?: string;\n phone?: string;\n platform_account_id?: string;\n ssn_last4?: string;\n title?: string;\n updated_at?: string;\n}",
6437
6606
  "docstring": "",
6438
6607
  "path": "src/api/Business.ts"
6439
6608
  },