@temboplus/afloat 0.1.53 → 0.1.55

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 (453) hide show
  1. package/README.md +246 -42
  2. package/{esm/src/features/admin/contract.d.ts → dist/features/admin/admin.contract.d.ts} +41 -77
  3. package/{script/src/features/admin/schemas.d.ts → dist/features/admin/admin.dtos.d.ts} +8 -9
  4. package/dist/features/admin/admin.repository.d.ts +179 -0
  5. package/dist/features/admin/index.d.ts +2 -0
  6. package/{esm/src/features/auth/access/contract.d.ts → dist/features/auth/access/access.api-contract.d.ts} +0 -1
  7. package/dist/features/auth/access/access.repository.d.ts +55 -0
  8. package/{esm/src/features/auth/contract.d.ts → dist/features/auth/auth.contract.d.ts} +12 -8
  9. package/dist/features/auth/auth.manager.d.ts +249 -0
  10. package/dist/features/auth/auth.repository.d.ts +66 -0
  11. package/dist/features/auth/auth.store.d.ts +139 -0
  12. package/{script/src/features/auth/identity/contract.d.ts → dist/features/auth/identity/identity.api-contract.d.ts} +0 -1
  13. package/dist/features/auth/identity/identity.repository.d.ts +58 -0
  14. package/dist/features/auth/index.d.ts +5 -0
  15. package/{script/src/features/auth/profile/contract.d.ts → dist/features/auth/profile/profile.api-contract.d.ts} +8 -6
  16. package/dist/features/auth/profile/profile.dtos.d.ts +80 -0
  17. package/dist/features/auth/profile/profile.repository.d.ts +56 -0
  18. package/{esm/src/features/auth/storage/client_store.d.ts → dist/features/auth/storage/client-store.d.ts} +2 -3
  19. package/{esm/src/features/auth/storage/client_token_handler.d.ts → dist/features/auth/storage/client-token-handler.d.ts} +1 -2
  20. package/{script/src → dist}/features/auth/storage/types.d.ts +1 -2
  21. package/dist/features/contact/contact-input-handler.d.ts +16 -0
  22. package/{esm/src/features/contact/contract.d.ts → dist/features/contact/contact.api-contract.d.ts} +101 -45
  23. package/dist/features/contact/contact.dtos.d.ts +90 -0
  24. package/dist/features/contact/contact.repository.d.ts +116 -0
  25. package/dist/features/contact/index.d.ts +2 -0
  26. package/dist/features/payout/index.d.ts +3 -0
  27. package/dist/features/payout/payout-channel-handler.d.ts +108 -0
  28. package/{esm/src/features/payout/contract.d.ts → dist/features/payout/payout.api-contract.d.ts} +351 -187
  29. package/dist/features/payout/payout.dtos.d.ts +365 -0
  30. package/dist/features/payout/payout.repository.d.ts +193 -0
  31. package/dist/features/wallet/index.d.ts +4 -0
  32. package/dist/features/wallet/wallet-manager.session.d.ts +143 -0
  33. package/{script/src/features/wallet/contract.d.ts → dist/features/wallet/wallet.contract.d.ts} +9 -7
  34. package/dist/features/wallet/wallet.dtos.d.ts +204 -0
  35. package/dist/features/wallet/wallet.repository.d.ts +120 -0
  36. package/dist/features/wallet/wallet.utils.d.ts +17 -0
  37. package/dist/index.cjs.js +2 -0
  38. package/dist/index.cjs.js.map +1 -0
  39. package/dist/index.d.ts +7 -0
  40. package/dist/index.esm.js +2 -0
  41. package/dist/index.esm.js.map +1 -0
  42. package/{esm/src/shared/base_repository.d.ts → dist/lib/api/base-repository.d.ts} +137 -42
  43. package/{script/src/shared/common_responses.d.ts → dist/lib/api/common-responses.d.ts} +0 -1
  44. package/dist/lib/api/index.d.ts +2 -0
  45. package/{esm/src/errors/api_error.d.ts → dist/lib/error/error.api.d.ts} +0 -1
  46. package/{script/src/errors/permission_error.d.ts → dist/lib/error/error.permission.d.ts} +1 -2
  47. package/dist/lib/error/error.utils.d.ts +22 -0
  48. package/dist/lib/error/index.d.ts +3 -0
  49. package/dist/models/contact-info.model.d.ts +817 -0
  50. package/{script/src/models/contact/derivatives/contact.d.ts → dist/models/contact.model.d.ts} +23 -16
  51. package/dist/models/index.d.ts +10 -0
  52. package/{esm/src/models/user/managed-user.d.ts → dist/models/managed-user.model.d.ts} +3 -3
  53. package/{script/src/models/payout/derivatives/payout.d.ts → dist/models/payout.model.d.ts} +13 -15
  54. package/{esm/src → dist}/models/permission.d.ts +1 -2
  55. package/{script/src/models/user/profile.d.ts → dist/models/profile.model.d.ts} +37 -43
  56. package/{script/src/models/role.d.ts → dist/models/role.model.d.ts} +2 -10
  57. package/dist/models/statement-entry.model.d.ts +195 -0
  58. package/{esm/src/models/user/authenticated-user.d.ts → dist/models/user.model.d.ts} +1 -2
  59. package/{script/src/models/wallet/wallet.d.ts → dist/models/wallet.model.d.ts} +3 -46
  60. package/package.json +47 -26
  61. package/LICENSE +0 -7
  62. package/esm/_dnt.test_shims.d.ts.map +0 -1
  63. package/esm/deps/jsr.io/@std/assert/1.0.10/almost_equals.d.ts.map +0 -1
  64. package/esm/deps/jsr.io/@std/assert/1.0.10/array_includes.d.ts.map +0 -1
  65. package/esm/deps/jsr.io/@std/assert/1.0.10/assert.d.ts.map +0 -1
  66. package/esm/deps/jsr.io/@std/assert/1.0.10/assertion_error.d.ts.map +0 -1
  67. package/esm/deps/jsr.io/@std/assert/1.0.10/equal.d.ts.map +0 -1
  68. package/esm/deps/jsr.io/@std/assert/1.0.10/equals.d.ts.map +0 -1
  69. package/esm/deps/jsr.io/@std/assert/1.0.10/exists.d.ts.map +0 -1
  70. package/esm/deps/jsr.io/@std/assert/1.0.10/fail.d.ts.map +0 -1
  71. package/esm/deps/jsr.io/@std/assert/1.0.10/false.d.ts.map +0 -1
  72. package/esm/deps/jsr.io/@std/assert/1.0.10/greater.d.ts.map +0 -1
  73. package/esm/deps/jsr.io/@std/assert/1.0.10/greater_or_equal.d.ts.map +0 -1
  74. package/esm/deps/jsr.io/@std/assert/1.0.10/instance_of.d.ts.map +0 -1
  75. package/esm/deps/jsr.io/@std/assert/1.0.10/is_error.d.ts.map +0 -1
  76. package/esm/deps/jsr.io/@std/assert/1.0.10/less.d.ts.map +0 -1
  77. package/esm/deps/jsr.io/@std/assert/1.0.10/less_or_equal.d.ts.map +0 -1
  78. package/esm/deps/jsr.io/@std/assert/1.0.10/match.d.ts.map +0 -1
  79. package/esm/deps/jsr.io/@std/assert/1.0.10/mod.d.ts.map +0 -1
  80. package/esm/deps/jsr.io/@std/assert/1.0.10/not_equals.d.ts.map +0 -1
  81. package/esm/deps/jsr.io/@std/assert/1.0.10/not_instance_of.d.ts.map +0 -1
  82. package/esm/deps/jsr.io/@std/assert/1.0.10/not_match.d.ts.map +0 -1
  83. package/esm/deps/jsr.io/@std/assert/1.0.10/not_strict_equals.d.ts.map +0 -1
  84. package/esm/deps/jsr.io/@std/assert/1.0.10/object_match.d.ts.map +0 -1
  85. package/esm/deps/jsr.io/@std/assert/1.0.10/rejects.d.ts.map +0 -1
  86. package/esm/deps/jsr.io/@std/assert/1.0.10/strict_equals.d.ts.map +0 -1
  87. package/esm/deps/jsr.io/@std/assert/1.0.10/string_includes.d.ts.map +0 -1
  88. package/esm/deps/jsr.io/@std/assert/1.0.10/throws.d.ts.map +0 -1
  89. package/esm/deps/jsr.io/@std/assert/1.0.10/unimplemented.d.ts.map +0 -1
  90. package/esm/deps/jsr.io/@std/assert/1.0.10/unreachable.d.ts.map +0 -1
  91. package/esm/deps/jsr.io/@std/internal/1.0.5/build_message.d.ts.map +0 -1
  92. package/esm/deps/jsr.io/@std/internal/1.0.5/diff.d.ts.map +0 -1
  93. package/esm/deps/jsr.io/@std/internal/1.0.5/diff_str.d.ts.map +0 -1
  94. package/esm/deps/jsr.io/@std/internal/1.0.5/format.d.ts.map +0 -1
  95. package/esm/deps/jsr.io/@std/internal/1.0.5/styles.d.ts.map +0 -1
  96. package/esm/deps/jsr.io/@std/internal/1.0.5/types.d.ts.map +0 -1
  97. package/esm/mod.d.ts +0 -8
  98. package/esm/mod.d.ts.map +0 -1
  99. package/esm/mod.js +0 -7
  100. package/esm/package.json +0 -3
  101. package/esm/src/errors/api_error.d.ts.map +0 -1
  102. package/esm/src/errors/api_error.js +0 -90
  103. package/esm/src/errors/index.d.ts +0 -3
  104. package/esm/src/errors/index.d.ts.map +0 -1
  105. package/esm/src/errors/index.js +0 -2
  106. package/esm/src/errors/permission_error.d.ts +0 -48
  107. package/esm/src/errors/permission_error.d.ts.map +0 -1
  108. package/esm/src/errors/permission_error.js +0 -70
  109. package/esm/src/features/admin/contract.d.ts.map +0 -1
  110. package/esm/src/features/admin/contract.js +0 -210
  111. package/esm/src/features/admin/index.d.ts +0 -4
  112. package/esm/src/features/admin/index.d.ts.map +0 -1
  113. package/esm/src/features/admin/index.js +0 -3
  114. package/esm/src/features/admin/repository.d.ts +0 -114
  115. package/esm/src/features/admin/repository.d.ts.map +0 -1
  116. package/esm/src/features/admin/repository.js +0 -248
  117. package/esm/src/features/admin/schemas.d.ts +0 -146
  118. package/esm/src/features/admin/schemas.d.ts.map +0 -1
  119. package/esm/src/features/admin/schemas.js +0 -206
  120. package/esm/src/features/auth/access/contract.d.ts.map +0 -1
  121. package/esm/src/features/auth/access/contract.js +0 -14
  122. package/esm/src/features/auth/contract.d.ts.map +0 -1
  123. package/esm/src/features/auth/contract.js +0 -43
  124. package/esm/src/features/auth/identity/contract.d.ts +0 -23
  125. package/esm/src/features/auth/identity/contract.d.ts.map +0 -1
  126. package/esm/src/features/auth/identity/contract.js +0 -17
  127. package/esm/src/features/auth/identity/repository.d.ts +0 -22
  128. package/esm/src/features/auth/identity/repository.d.ts.map +0 -1
  129. package/esm/src/features/auth/identity/repository.js +0 -30
  130. package/esm/src/features/auth/index.d.ts +0 -2
  131. package/esm/src/features/auth/index.d.ts.map +0 -1
  132. package/esm/src/features/auth/index.js +0 -1
  133. package/esm/src/features/auth/manager.d.ts +0 -105
  134. package/esm/src/features/auth/manager.d.ts.map +0 -1
  135. package/esm/src/features/auth/manager.js +0 -181
  136. package/esm/src/features/auth/profile/contract.d.ts +0 -37
  137. package/esm/src/features/auth/profile/contract.d.ts.map +0 -1
  138. package/esm/src/features/auth/profile/contract.js +0 -14
  139. package/esm/src/features/auth/repository.d.ts +0 -30
  140. package/esm/src/features/auth/repository.d.ts.map +0 -1
  141. package/esm/src/features/auth/repository.js +0 -69
  142. package/esm/src/features/auth/storage/client_store.d.ts.map +0 -1
  143. package/esm/src/features/auth/storage/client_store.js +0 -46
  144. package/esm/src/features/auth/storage/client_token_handler.d.ts.map +0 -1
  145. package/esm/src/features/auth/storage/client_token_handler.js +0 -36
  146. package/esm/src/features/auth/storage/server_store.d.ts +0 -24
  147. package/esm/src/features/auth/storage/server_store.d.ts.map +0 -1
  148. package/esm/src/features/auth/storage/server_store.js +0 -34
  149. package/esm/src/features/auth/storage/server_token_handler.d.ts +0 -36
  150. package/esm/src/features/auth/storage/server_token_handler.d.ts.map +0 -1
  151. package/esm/src/features/auth/storage/server_token_handler.js +0 -115
  152. package/esm/src/features/auth/storage/types.d.ts +0 -42
  153. package/esm/src/features/auth/storage/types.d.ts.map +0 -1
  154. package/esm/src/features/auth/storage/types.js +0 -1
  155. package/esm/src/features/contact/contract.d.ts.map +0 -1
  156. package/esm/src/features/contact/contract.js +0 -49
  157. package/esm/src/features/contact/index.d.ts +0 -2
  158. package/esm/src/features/contact/index.d.ts.map +0 -1
  159. package/esm/src/features/contact/index.js +0 -1
  160. package/esm/src/features/contact/repository.d.ts +0 -58
  161. package/esm/src/features/contact/repository.d.ts.map +0 -1
  162. package/esm/src/features/contact/repository.js +0 -108
  163. package/esm/src/features/payout/contract.d.ts.map +0 -1
  164. package/esm/src/features/payout/contract.js +0 -75
  165. package/esm/src/features/payout/index.d.ts +0 -2
  166. package/esm/src/features/payout/index.d.ts.map +0 -1
  167. package/esm/src/features/payout/index.js +0 -1
  168. package/esm/src/features/payout/repository.d.ts +0 -67
  169. package/esm/src/features/payout/repository.d.ts.map +0 -1
  170. package/esm/src/features/payout/repository.js +0 -163
  171. package/esm/src/features/wallet/contract.d.ts +0 -137
  172. package/esm/src/features/wallet/contract.d.ts.map +0 -1
  173. package/esm/src/features/wallet/contract.js +0 -38
  174. package/esm/src/features/wallet/index.d.ts +0 -2
  175. package/esm/src/features/wallet/index.d.ts.map +0 -1
  176. package/esm/src/features/wallet/index.js +0 -1
  177. package/esm/src/features/wallet/repository.d.ts +0 -57
  178. package/esm/src/features/wallet/repository.d.ts.map +0 -1
  179. package/esm/src/features/wallet/repository.js +0 -93
  180. package/esm/src/models/contact/derivatives/contact.d.ts +0 -172
  181. package/esm/src/models/contact/derivatives/contact.d.ts.map +0 -1
  182. package/esm/src/models/contact/derivatives/contact.js +0 -266
  183. package/esm/src/models/contact/derivatives/contact.test.d.ts.map +0 -1
  184. package/esm/src/models/contact/derivatives/contact_info.d.ts +0 -188
  185. package/esm/src/models/contact/derivatives/contact_info.d.ts.map +0 -1
  186. package/esm/src/models/contact/derivatives/contact_info.js +0 -255
  187. package/esm/src/models/contact/derivatives/contact_info.test.d.ts.map +0 -1
  188. package/esm/src/models/contact/index.d.ts +0 -5
  189. package/esm/src/models/contact/index.d.ts.map +0 -1
  190. package/esm/src/models/contact/index.js +0 -4
  191. package/esm/src/models/contact/schemas.d.ts +0 -66
  192. package/esm/src/models/contact/schemas.d.ts.map +0 -1
  193. package/esm/src/models/contact/schemas.js +0 -64
  194. package/esm/src/models/contact/validation.d.ts +0 -37
  195. package/esm/src/models/contact/validation.d.ts.map +0 -1
  196. package/esm/src/models/contact/validation.js +0 -139
  197. package/esm/src/models/contact/validation.test.d.ts.map +0 -1
  198. package/esm/src/models/index.d.ts +0 -7
  199. package/esm/src/models/index.d.ts.map +0 -1
  200. package/esm/src/models/index.js +0 -6
  201. package/esm/src/models/payout/api.d.ts +0 -29
  202. package/esm/src/models/payout/api.d.ts.map +0 -1
  203. package/esm/src/models/payout/api.js +0 -1
  204. package/esm/src/models/payout/channel.d.ts +0 -58
  205. package/esm/src/models/payout/channel.d.ts.map +0 -1
  206. package/esm/src/models/payout/channel.js +0 -53
  207. package/esm/src/models/payout/derivatives/payout.d.ts +0 -156
  208. package/esm/src/models/payout/derivatives/payout.d.ts.map +0 -1
  209. package/esm/src/models/payout/derivatives/payout.js +0 -261
  210. package/esm/src/models/payout/derivatives/payout.test.d.ts.map +0 -1
  211. package/esm/src/models/payout/index.d.ts +0 -6
  212. package/esm/src/models/payout/index.d.ts.map +0 -1
  213. package/esm/src/models/payout/index.js +0 -5
  214. package/esm/src/models/payout/schemas.d.ts +0 -156
  215. package/esm/src/models/payout/schemas.d.ts.map +0 -1
  216. package/esm/src/models/payout/schemas.js +0 -105
  217. package/esm/src/models/payout/status.d.ts +0 -33
  218. package/esm/src/models/payout/status.d.ts.map +0 -1
  219. package/esm/src/models/payout/status.js +0 -34
  220. package/esm/src/models/permission.d.ts.map +0 -1
  221. package/esm/src/models/permission.js +0 -50
  222. package/esm/src/models/role.d.ts +0 -21
  223. package/esm/src/models/role.d.ts.map +0 -1
  224. package/esm/src/models/role.js +0 -73
  225. package/esm/src/models/user/authenticated-user.d.ts.map +0 -1
  226. package/esm/src/models/user/authenticated-user.js +0 -226
  227. package/esm/src/models/user/index.d.ts +0 -4
  228. package/esm/src/models/user/index.d.ts.map +0 -1
  229. package/esm/src/models/user/index.js +0 -3
  230. package/esm/src/models/user/managed-user.d.ts.map +0 -1
  231. package/esm/src/models/user/managed-user.js +0 -255
  232. package/esm/src/models/user/profile.d.ts +0 -161
  233. package/esm/src/models/user/profile.d.ts.map +0 -1
  234. package/esm/src/models/user/profile.js +0 -334
  235. package/esm/src/models/wallet/index.d.ts +0 -4
  236. package/esm/src/models/wallet/index.d.ts.map +0 -1
  237. package/esm/src/models/wallet/index.js +0 -3
  238. package/esm/src/models/wallet/schemas.d.ts +0 -95
  239. package/esm/src/models/wallet/schemas.d.ts.map +0 -1
  240. package/esm/src/models/wallet/schemas.js +0 -35
  241. package/esm/src/models/wallet/statement_entry.d.ts +0 -160
  242. package/esm/src/models/wallet/statement_entry.d.ts.map +0 -1
  243. package/esm/src/models/wallet/statement_entry.js +0 -255
  244. package/esm/src/models/wallet/wallet.d.ts +0 -147
  245. package/esm/src/models/wallet/wallet.d.ts.map +0 -1
  246. package/esm/src/models/wallet/wallet.js +0 -279
  247. package/esm/src/shared/base_repository.d.ts.map +0 -1
  248. package/esm/src/shared/base_repository.js +0 -153
  249. package/esm/src/shared/common_responses.d.ts +0 -13
  250. package/esm/src/shared/common_responses.d.ts.map +0 -1
  251. package/esm/src/shared/common_responses.js +0 -10
  252. package/esm/src/shared/index.d.ts +0 -3
  253. package/esm/src/shared/index.d.ts.map +0 -1
  254. package/esm/src/shared/index.js +0 -2
  255. package/esm/src/shared/token_required_repository.d.ts +0 -78
  256. package/esm/src/shared/token_required_repository.d.ts.map +0 -1
  257. package/esm/src/shared/token_required_repository.js +0 -128
  258. package/script/_dnt.test_shims.d.ts.map +0 -1
  259. package/script/deps/jsr.io/@std/assert/1.0.10/almost_equals.d.ts.map +0 -1
  260. package/script/deps/jsr.io/@std/assert/1.0.10/array_includes.d.ts.map +0 -1
  261. package/script/deps/jsr.io/@std/assert/1.0.10/assert.d.ts.map +0 -1
  262. package/script/deps/jsr.io/@std/assert/1.0.10/assertion_error.d.ts.map +0 -1
  263. package/script/deps/jsr.io/@std/assert/1.0.10/equal.d.ts.map +0 -1
  264. package/script/deps/jsr.io/@std/assert/1.0.10/equals.d.ts.map +0 -1
  265. package/script/deps/jsr.io/@std/assert/1.0.10/exists.d.ts.map +0 -1
  266. package/script/deps/jsr.io/@std/assert/1.0.10/fail.d.ts.map +0 -1
  267. package/script/deps/jsr.io/@std/assert/1.0.10/false.d.ts.map +0 -1
  268. package/script/deps/jsr.io/@std/assert/1.0.10/greater.d.ts.map +0 -1
  269. package/script/deps/jsr.io/@std/assert/1.0.10/greater_or_equal.d.ts.map +0 -1
  270. package/script/deps/jsr.io/@std/assert/1.0.10/instance_of.d.ts.map +0 -1
  271. package/script/deps/jsr.io/@std/assert/1.0.10/is_error.d.ts.map +0 -1
  272. package/script/deps/jsr.io/@std/assert/1.0.10/less.d.ts.map +0 -1
  273. package/script/deps/jsr.io/@std/assert/1.0.10/less_or_equal.d.ts.map +0 -1
  274. package/script/deps/jsr.io/@std/assert/1.0.10/match.d.ts.map +0 -1
  275. package/script/deps/jsr.io/@std/assert/1.0.10/mod.d.ts.map +0 -1
  276. package/script/deps/jsr.io/@std/assert/1.0.10/not_equals.d.ts.map +0 -1
  277. package/script/deps/jsr.io/@std/assert/1.0.10/not_instance_of.d.ts.map +0 -1
  278. package/script/deps/jsr.io/@std/assert/1.0.10/not_match.d.ts.map +0 -1
  279. package/script/deps/jsr.io/@std/assert/1.0.10/not_strict_equals.d.ts.map +0 -1
  280. package/script/deps/jsr.io/@std/assert/1.0.10/object_match.d.ts.map +0 -1
  281. package/script/deps/jsr.io/@std/assert/1.0.10/rejects.d.ts.map +0 -1
  282. package/script/deps/jsr.io/@std/assert/1.0.10/strict_equals.d.ts.map +0 -1
  283. package/script/deps/jsr.io/@std/assert/1.0.10/string_includes.d.ts.map +0 -1
  284. package/script/deps/jsr.io/@std/assert/1.0.10/throws.d.ts.map +0 -1
  285. package/script/deps/jsr.io/@std/assert/1.0.10/unimplemented.d.ts.map +0 -1
  286. package/script/deps/jsr.io/@std/assert/1.0.10/unreachable.d.ts.map +0 -1
  287. package/script/deps/jsr.io/@std/internal/1.0.5/build_message.d.ts.map +0 -1
  288. package/script/deps/jsr.io/@std/internal/1.0.5/diff.d.ts.map +0 -1
  289. package/script/deps/jsr.io/@std/internal/1.0.5/diff_str.d.ts.map +0 -1
  290. package/script/deps/jsr.io/@std/internal/1.0.5/format.d.ts.map +0 -1
  291. package/script/deps/jsr.io/@std/internal/1.0.5/styles.d.ts.map +0 -1
  292. package/script/deps/jsr.io/@std/internal/1.0.5/types.d.ts.map +0 -1
  293. package/script/mod.d.ts +0 -8
  294. package/script/mod.d.ts.map +0 -1
  295. package/script/mod.js +0 -23
  296. package/script/package.json +0 -3
  297. package/script/src/errors/api_error.d.ts +0 -63
  298. package/script/src/errors/api_error.d.ts.map +0 -1
  299. package/script/src/errors/api_error.js +0 -94
  300. package/script/src/errors/index.d.ts +0 -3
  301. package/script/src/errors/index.d.ts.map +0 -1
  302. package/script/src/errors/index.js +0 -18
  303. package/script/src/errors/permission_error.d.ts.map +0 -1
  304. package/script/src/errors/permission_error.js +0 -74
  305. package/script/src/features/admin/contract.d.ts +0 -842
  306. package/script/src/features/admin/contract.d.ts.map +0 -1
  307. package/script/src/features/admin/contract.js +0 -213
  308. package/script/src/features/admin/index.d.ts +0 -4
  309. package/script/src/features/admin/index.d.ts.map +0 -1
  310. package/script/src/features/admin/index.js +0 -19
  311. package/script/src/features/admin/repository.d.ts +0 -114
  312. package/script/src/features/admin/repository.d.ts.map +0 -1
  313. package/script/src/features/admin/repository.js +0 -252
  314. package/script/src/features/admin/schemas.d.ts.map +0 -1
  315. package/script/src/features/admin/schemas.js +0 -209
  316. package/script/src/features/auth/access/contract.d.ts +0 -14
  317. package/script/src/features/auth/access/contract.d.ts.map +0 -1
  318. package/script/src/features/auth/access/contract.js +0 -17
  319. package/script/src/features/auth/contract.d.ts +0 -112
  320. package/script/src/features/auth/contract.d.ts.map +0 -1
  321. package/script/src/features/auth/contract.js +0 -46
  322. package/script/src/features/auth/identity/contract.d.ts.map +0 -1
  323. package/script/src/features/auth/identity/contract.js +0 -20
  324. package/script/src/features/auth/identity/repository.d.ts +0 -22
  325. package/script/src/features/auth/identity/repository.d.ts.map +0 -1
  326. package/script/src/features/auth/identity/repository.js +0 -34
  327. package/script/src/features/auth/index.d.ts +0 -2
  328. package/script/src/features/auth/index.d.ts.map +0 -1
  329. package/script/src/features/auth/index.js +0 -17
  330. package/script/src/features/auth/manager.d.ts +0 -105
  331. package/script/src/features/auth/manager.d.ts.map +0 -1
  332. package/script/src/features/auth/manager.js +0 -185
  333. package/script/src/features/auth/profile/contract.d.ts.map +0 -1
  334. package/script/src/features/auth/profile/contract.js +0 -17
  335. package/script/src/features/auth/repository.d.ts +0 -30
  336. package/script/src/features/auth/repository.d.ts.map +0 -1
  337. package/script/src/features/auth/repository.js +0 -73
  338. package/script/src/features/auth/storage/client_store.d.ts +0 -30
  339. package/script/src/features/auth/storage/client_store.d.ts.map +0 -1
  340. package/script/src/features/auth/storage/client_store.js +0 -51
  341. package/script/src/features/auth/storage/client_token_handler.d.ts +0 -32
  342. package/script/src/features/auth/storage/client_token_handler.d.ts.map +0 -1
  343. package/script/src/features/auth/storage/client_token_handler.js +0 -40
  344. package/script/src/features/auth/storage/server_store.d.ts +0 -24
  345. package/script/src/features/auth/storage/server_store.d.ts.map +0 -1
  346. package/script/src/features/auth/storage/server_store.js +0 -38
  347. package/script/src/features/auth/storage/server_token_handler.d.ts +0 -36
  348. package/script/src/features/auth/storage/server_token_handler.d.ts.map +0 -1
  349. package/script/src/features/auth/storage/server_token_handler.js +0 -119
  350. package/script/src/features/auth/storage/types.d.ts.map +0 -1
  351. package/script/src/features/auth/storage/types.js +0 -2
  352. package/script/src/features/contact/contract.d.ts +0 -170
  353. package/script/src/features/contact/contract.d.ts.map +0 -1
  354. package/script/src/features/contact/contract.js +0 -52
  355. package/script/src/features/contact/index.d.ts +0 -2
  356. package/script/src/features/contact/index.d.ts.map +0 -1
  357. package/script/src/features/contact/index.js +0 -17
  358. package/script/src/features/contact/repository.d.ts +0 -58
  359. package/script/src/features/contact/repository.d.ts.map +0 -1
  360. package/script/src/features/contact/repository.js +0 -112
  361. package/script/src/features/payout/contract.d.ts +0 -623
  362. package/script/src/features/payout/contract.d.ts.map +0 -1
  363. package/script/src/features/payout/contract.js +0 -78
  364. package/script/src/features/payout/index.d.ts +0 -2
  365. package/script/src/features/payout/index.d.ts.map +0 -1
  366. package/script/src/features/payout/index.js +0 -17
  367. package/script/src/features/payout/repository.d.ts +0 -67
  368. package/script/src/features/payout/repository.d.ts.map +0 -1
  369. package/script/src/features/payout/repository.js +0 -167
  370. package/script/src/features/wallet/contract.d.ts.map +0 -1
  371. package/script/src/features/wallet/contract.js +0 -41
  372. package/script/src/features/wallet/index.d.ts +0 -2
  373. package/script/src/features/wallet/index.d.ts.map +0 -1
  374. package/script/src/features/wallet/index.js +0 -17
  375. package/script/src/features/wallet/repository.d.ts +0 -57
  376. package/script/src/features/wallet/repository.d.ts.map +0 -1
  377. package/script/src/features/wallet/repository.js +0 -97
  378. package/script/src/models/contact/derivatives/contact.d.ts.map +0 -1
  379. package/script/src/models/contact/derivatives/contact.js +0 -270
  380. package/script/src/models/contact/derivatives/contact.test.d.ts.map +0 -1
  381. package/script/src/models/contact/derivatives/contact_info.d.ts +0 -188
  382. package/script/src/models/contact/derivatives/contact_info.d.ts.map +0 -1
  383. package/script/src/models/contact/derivatives/contact_info.js +0 -260
  384. package/script/src/models/contact/derivatives/contact_info.test.d.ts.map +0 -1
  385. package/script/src/models/contact/index.d.ts +0 -5
  386. package/script/src/models/contact/index.d.ts.map +0 -1
  387. package/script/src/models/contact/index.js +0 -20
  388. package/script/src/models/contact/schemas.d.ts +0 -66
  389. package/script/src/models/contact/schemas.d.ts.map +0 -1
  390. package/script/src/models/contact/schemas.js +0 -67
  391. package/script/src/models/contact/validation.d.ts +0 -37
  392. package/script/src/models/contact/validation.d.ts.map +0 -1
  393. package/script/src/models/contact/validation.js +0 -146
  394. package/script/src/models/contact/validation.test.d.ts.map +0 -1
  395. package/script/src/models/index.d.ts +0 -7
  396. package/script/src/models/index.d.ts.map +0 -1
  397. package/script/src/models/index.js +0 -22
  398. package/script/src/models/payout/api.d.ts +0 -29
  399. package/script/src/models/payout/api.d.ts.map +0 -1
  400. package/script/src/models/payout/api.js +0 -2
  401. package/script/src/models/payout/channel.d.ts +0 -58
  402. package/script/src/models/payout/channel.d.ts.map +0 -1
  403. package/script/src/models/payout/channel.js +0 -56
  404. package/script/src/models/payout/derivatives/payout.d.ts.map +0 -1
  405. package/script/src/models/payout/derivatives/payout.js +0 -265
  406. package/script/src/models/payout/derivatives/payout.test.d.ts.map +0 -1
  407. package/script/src/models/payout/index.d.ts +0 -6
  408. package/script/src/models/payout/index.d.ts.map +0 -1
  409. package/script/src/models/payout/index.js +0 -21
  410. package/script/src/models/payout/schemas.d.ts +0 -156
  411. package/script/src/models/payout/schemas.d.ts.map +0 -1
  412. package/script/src/models/payout/schemas.js +0 -108
  413. package/script/src/models/payout/status.d.ts +0 -33
  414. package/script/src/models/payout/status.d.ts.map +0 -1
  415. package/script/src/models/payout/status.js +0 -37
  416. package/script/src/models/permission.d.ts +0 -55
  417. package/script/src/models/permission.d.ts.map +0 -1
  418. package/script/src/models/permission.js +0 -53
  419. package/script/src/models/role.d.ts.map +0 -1
  420. package/script/src/models/role.js +0 -77
  421. package/script/src/models/user/authenticated-user.d.ts +0 -77
  422. package/script/src/models/user/authenticated-user.d.ts.map +0 -1
  423. package/script/src/models/user/authenticated-user.js +0 -230
  424. package/script/src/models/user/index.d.ts +0 -4
  425. package/script/src/models/user/index.d.ts.map +0 -1
  426. package/script/src/models/user/index.js +0 -19
  427. package/script/src/models/user/managed-user.d.ts +0 -108
  428. package/script/src/models/user/managed-user.d.ts.map +0 -1
  429. package/script/src/models/user/managed-user.js +0 -260
  430. package/script/src/models/user/profile.d.ts.map +0 -1
  431. package/script/src/models/user/profile.js +0 -338
  432. package/script/src/models/wallet/index.d.ts +0 -4
  433. package/script/src/models/wallet/index.d.ts.map +0 -1
  434. package/script/src/models/wallet/index.js +0 -19
  435. package/script/src/models/wallet/schemas.d.ts +0 -95
  436. package/script/src/models/wallet/schemas.d.ts.map +0 -1
  437. package/script/src/models/wallet/schemas.js +0 -38
  438. package/script/src/models/wallet/statement_entry.d.ts +0 -160
  439. package/script/src/models/wallet/statement_entry.d.ts.map +0 -1
  440. package/script/src/models/wallet/statement_entry.js +0 -259
  441. package/script/src/models/wallet/wallet.d.ts.map +0 -1
  442. package/script/src/models/wallet/wallet.js +0 -283
  443. package/script/src/shared/base_repository.d.ts +0 -80
  444. package/script/src/shared/base_repository.d.ts.map +0 -1
  445. package/script/src/shared/base_repository.js +0 -157
  446. package/script/src/shared/common_responses.d.ts.map +0 -1
  447. package/script/src/shared/common_responses.js +0 -13
  448. package/script/src/shared/index.d.ts +0 -3
  449. package/script/src/shared/index.d.ts.map +0 -1
  450. package/script/src/shared/index.js +0 -18
  451. package/script/src/shared/token_required_repository.d.ts +0 -78
  452. package/script/src/shared/token_required_repository.d.ts.map +0 -1
  453. package/script/src/shared/token_required_repository.js +0 -132
@@ -18,168 +18,189 @@ export declare const contract: {
18
18
  rangeStart: z.ZodNumber;
19
19
  rangeEnd: z.ZodNumber;
20
20
  eager: z.ZodString;
21
- approvalStatus: z.ZodOptional<z.ZodNullable<z.ZodEnum<[import("../../models/payout/status.js").PAYOUT_APPROVAL_STATUS.APPROVED, import("../../models/payout/status.js").PAYOUT_APPROVAL_STATUS.PENDING, import("../../models/payout/status.js").PAYOUT_APPROVAL_STATUS.REJECTED]>>>;
21
+ approvalStatus: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("./payout.dtos").PayoutApprovalStatus>>>;
22
22
  orderByDesc: z.ZodString;
23
+ msisdn: z.ZodOptional<z.ZodString>;
23
24
  }, "strip", z.ZodTypeAny, {
24
- orderByDesc: string;
25
25
  rangeStart: number;
26
26
  rangeEnd: number;
27
27
  eager: string;
28
- approvalStatus?: import("../../models/payout/status.js").PAYOUT_APPROVAL_STATUS | null | undefined;
29
- }, {
30
28
  orderByDesc: string;
29
+ msisdn?: string | undefined;
30
+ approvalStatus?: import("./payout.dtos").PayoutApprovalStatus | null | undefined;
31
+ }, {
31
32
  rangeStart: number;
32
33
  rangeEnd: number;
33
34
  eager: string;
34
- approvalStatus?: import("../../models/payout/status.js").PAYOUT_APPROVAL_STATUS | null | undefined;
35
+ orderByDesc: string;
36
+ msisdn?: string | undefined;
37
+ approvalStatus?: import("./payout.dtos").PayoutApprovalStatus | null | undefined;
35
38
  }>;
36
39
  method: "GET";
37
40
  path: "";
38
41
  responses: {
39
42
  200: z.ZodObject<{
40
43
  results: z.ZodArray<z.ZodObject<{
41
- channel: z.ZodString;
42
44
  msisdn: z.ZodString;
43
45
  amount: z.ZodNumber;
44
46
  description: z.ZodString;
45
- notes: z.ZodOptional<z.ZodEffects<z.ZodNullable<z.ZodString>, string | undefined, string | null>>;
47
+ notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
48
+ } & {
46
49
  id: z.ZodString;
47
50
  profileId: z.ZodString;
48
51
  payeeName: z.ZodString;
49
- status: z.ZodEnum<[import("../../models/payout/status.js").PAYOUT_STATUS.CREATED, import("../../models/payout/status.js").PAYOUT_STATUS.PAID, import("../../models/payout/status.js").PAYOUT_STATUS.FAILED, import("../../models/payout/status.js").PAYOUT_STATUS.REJECTED, import("../../models/payout/status.js").PAYOUT_STATUS.PENDING, import("../../models/payout/status.js").PAYOUT_STATUS.QUEUED, import("../../models/payout/status.js").PAYOUT_STATUS.REVERSED]>;
52
+ countryCode: z.ZodEffects<z.ZodDefault<z.ZodString>, import("@temboplus/frontend-core").ISO2CountryCode, string | undefined>;
53
+ currencyCode: z.ZodEffects<z.ZodDefault<z.ZodString>, import("@temboplus/frontend-core").CurrencyCode, string | undefined>;
54
+ channel: z.ZodString;
55
+ status: z.ZodNativeEnum<typeof import("./payout.dtos").PayoutStatus>;
50
56
  statusMessage: z.ZodString;
51
- partnerReference: z.ZodOptional<z.ZodEffects<z.ZodNullable<z.ZodString>, string | undefined, string | null>>;
57
+ partnerReference: z.ZodOptional<z.ZodNullable<z.ZodString>>;
52
58
  createdAt: z.ZodDate;
53
59
  updatedAt: z.ZodDate;
54
- approvalStatus: z.ZodEnum<[import("../../models/payout/status.js").PAYOUT_APPROVAL_STATUS.APPROVED, import("../../models/payout/status.js").PAYOUT_APPROVAL_STATUS.PENDING, import("../../models/payout/status.js").PAYOUT_APPROVAL_STATUS.REJECTED]>;
55
- createdBy: z.ZodOptional<z.ZodEffects<z.ZodNullable<z.ZodObject<{
60
+ actionedAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
61
+ approvalStatus: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("./payout.dtos").PayoutApprovalStatus>>>;
62
+ createdBy: z.ZodOptional<z.ZodNullable<z.ZodObject<{
63
+ id: z.ZodString;
56
64
  name: z.ZodString;
57
65
  identity: z.ZodString;
58
- }, z.UnknownKeysParam, z.ZodTypeAny, {
66
+ }, "strip", z.ZodTypeAny, {
59
67
  name: string;
68
+ id: string;
60
69
  identity: string;
61
70
  }, {
62
71
  name: string;
72
+ id: string;
63
73
  identity: string;
64
- }>>, {
65
- name: string;
66
- identity: string;
67
- } | undefined, {
68
- name: string;
69
- identity: string;
70
- } | null>>;
71
- actionedBy: z.ZodOptional<z.ZodEffects<z.ZodNullable<z.ZodObject<{
74
+ }>>>;
75
+ actionedBy: z.ZodOptional<z.ZodNullable<z.ZodObject<{
76
+ id: z.ZodString;
72
77
  name: z.ZodString;
73
78
  identity: z.ZodString;
74
- }, z.UnknownKeysParam, z.ZodTypeAny, {
79
+ }, "strip", z.ZodTypeAny, {
75
80
  name: string;
81
+ id: string;
76
82
  identity: string;
77
83
  }, {
78
84
  name: string;
85
+ id: string;
79
86
  identity: string;
80
- }>>, {
81
- name: string;
82
- identity: string;
83
- } | undefined, {
84
- name: string;
85
- identity: string;
86
- } | null>>;
87
- }, z.UnknownKeysParam, z.ZodTypeAny, {
88
- status: import("../../models/payout/status.js").PAYOUT_STATUS;
87
+ }>>>;
88
+ }, "strip", z.ZodTypeAny, {
89
+ status: import("./payout.dtos").PayoutStatus;
89
90
  id: string;
90
91
  channel: string;
91
- profileId: string;
92
- createdAt: Date;
93
- updatedAt: Date;
94
92
  msisdn: string;
95
93
  amount: number;
96
94
  description: string;
97
95
  payeeName: string;
96
+ profileId: string;
97
+ countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
98
+ currencyCode: import("@temboplus/frontend-core").CurrencyCode;
98
99
  statusMessage: string;
99
- approvalStatus: import("../../models/payout/status.js").PAYOUT_APPROVAL_STATUS;
100
- notes?: string | undefined;
101
- partnerReference?: string | undefined;
100
+ createdAt: Date;
101
+ updatedAt: Date;
102
+ notes?: string | null | undefined;
103
+ partnerReference?: string | null | undefined;
104
+ actionedAt?: Date | null | undefined;
105
+ approvalStatus?: import("./payout.dtos").PayoutApprovalStatus | null | undefined;
102
106
  createdBy?: {
103
107
  name: string;
108
+ id: string;
104
109
  identity: string;
105
- } | undefined;
110
+ } | null | undefined;
106
111
  actionedBy?: {
107
112
  name: string;
113
+ id: string;
108
114
  identity: string;
109
- } | undefined;
115
+ } | null | undefined;
110
116
  }, {
111
- status: import("../../models/payout/status.js").PAYOUT_STATUS;
117
+ status: import("./payout.dtos").PayoutStatus;
112
118
  id: string;
113
119
  channel: string;
114
- profileId: string;
115
- createdAt: Date;
116
- updatedAt: Date;
117
120
  msisdn: string;
118
121
  amount: number;
119
122
  description: string;
120
123
  payeeName: string;
124
+ profileId: string;
121
125
  statusMessage: string;
122
- approvalStatus: import("../../models/payout/status.js").PAYOUT_APPROVAL_STATUS;
126
+ createdAt: Date;
127
+ updatedAt: Date;
123
128
  notes?: string | null | undefined;
129
+ countryCode?: string | undefined;
130
+ currencyCode?: string | undefined;
124
131
  partnerReference?: string | null | undefined;
132
+ actionedAt?: Date | null | undefined;
133
+ approvalStatus?: import("./payout.dtos").PayoutApprovalStatus | null | undefined;
125
134
  createdBy?: {
126
135
  name: string;
136
+ id: string;
127
137
  identity: string;
128
138
  } | null | undefined;
129
139
  actionedBy?: {
130
140
  name: string;
141
+ id: string;
131
142
  identity: string;
132
143
  } | null | undefined;
133
144
  }>, "many">;
134
145
  total: z.ZodNumber;
135
146
  }, "strip", z.ZodTypeAny, {
136
147
  results: {
137
- status: import("../../models/payout/status.js").PAYOUT_STATUS;
148
+ status: import("./payout.dtos").PayoutStatus;
138
149
  id: string;
139
150
  channel: string;
140
- profileId: string;
141
- createdAt: Date;
142
- updatedAt: Date;
143
151
  msisdn: string;
144
152
  amount: number;
145
153
  description: string;
146
154
  payeeName: string;
155
+ profileId: string;
156
+ countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
157
+ currencyCode: import("@temboplus/frontend-core").CurrencyCode;
147
158
  statusMessage: string;
148
- approvalStatus: import("../../models/payout/status.js").PAYOUT_APPROVAL_STATUS;
149
- notes?: string | undefined;
150
- partnerReference?: string | undefined;
159
+ createdAt: Date;
160
+ updatedAt: Date;
161
+ notes?: string | null | undefined;
162
+ partnerReference?: string | null | undefined;
163
+ actionedAt?: Date | null | undefined;
164
+ approvalStatus?: import("./payout.dtos").PayoutApprovalStatus | null | undefined;
151
165
  createdBy?: {
152
166
  name: string;
167
+ id: string;
153
168
  identity: string;
154
- } | undefined;
169
+ } | null | undefined;
155
170
  actionedBy?: {
156
171
  name: string;
172
+ id: string;
157
173
  identity: string;
158
- } | undefined;
174
+ } | null | undefined;
159
175
  }[];
160
176
  total: number;
161
177
  }, {
162
178
  results: {
163
- status: import("../../models/payout/status.js").PAYOUT_STATUS;
179
+ status: import("./payout.dtos").PayoutStatus;
164
180
  id: string;
165
181
  channel: string;
166
- profileId: string;
167
- createdAt: Date;
168
- updatedAt: Date;
169
182
  msisdn: string;
170
183
  amount: number;
171
184
  description: string;
172
185
  payeeName: string;
186
+ profileId: string;
173
187
  statusMessage: string;
174
- approvalStatus: import("../../models/payout/status.js").PAYOUT_APPROVAL_STATUS;
188
+ createdAt: Date;
189
+ updatedAt: Date;
175
190
  notes?: string | null | undefined;
191
+ countryCode?: string | undefined;
192
+ currencyCode?: string | undefined;
176
193
  partnerReference?: string | null | undefined;
194
+ actionedAt?: Date | null | undefined;
195
+ approvalStatus?: import("./payout.dtos").PayoutApprovalStatus | null | undefined;
177
196
  createdBy?: {
178
197
  name: string;
198
+ id: string;
179
199
  identity: string;
180
200
  } | null | undefined;
181
201
  actionedBy?: {
182
202
  name: string;
203
+ id: string;
183
204
  identity: string;
184
205
  } | null | undefined;
185
206
  }[];
@@ -192,168 +213,186 @@ export declare const contract: {
192
213
  rangeStart: z.ZodNumber;
193
214
  rangeEnd: z.ZodNumber;
194
215
  eager: z.ZodString;
195
- approvalStatus: z.ZodEnum<[import("../../models/payout/status.js").PAYOUT_APPROVAL_STATUS.APPROVED, import("../../models/payout/status.js").PAYOUT_APPROVAL_STATUS.PENDING, import("../../models/payout/status.js").PAYOUT_APPROVAL_STATUS.REJECTED]>;
216
+ approvalStatus: z.ZodNativeEnum<typeof import("./payout.dtos").PayoutApprovalStatus>;
196
217
  orderByDesc: z.ZodString;
197
218
  }, "strip", z.ZodTypeAny, {
198
- approvalStatus: import("../../models/payout/status.js").PAYOUT_APPROVAL_STATUS;
199
- orderByDesc: string;
219
+ approvalStatus: import("./payout.dtos").PayoutApprovalStatus;
200
220
  rangeStart: number;
201
221
  rangeEnd: number;
202
222
  eager: string;
203
- }, {
204
- approvalStatus: import("../../models/payout/status.js").PAYOUT_APPROVAL_STATUS;
205
223
  orderByDesc: string;
224
+ }, {
225
+ approvalStatus: import("./payout.dtos").PayoutApprovalStatus;
206
226
  rangeStart: number;
207
227
  rangeEnd: number;
208
228
  eager: string;
229
+ orderByDesc: string;
209
230
  }>;
210
231
  method: "GET";
211
232
  path: "";
212
233
  responses: {
213
234
  200: z.ZodObject<{
214
235
  results: z.ZodArray<z.ZodObject<{
215
- channel: z.ZodString;
216
236
  msisdn: z.ZodString;
217
237
  amount: z.ZodNumber;
218
238
  description: z.ZodString;
219
- notes: z.ZodOptional<z.ZodEffects<z.ZodNullable<z.ZodString>, string | undefined, string | null>>;
239
+ notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
240
+ } & {
220
241
  id: z.ZodString;
221
242
  profileId: z.ZodString;
222
243
  payeeName: z.ZodString;
223
- status: z.ZodEnum<[import("../../models/payout/status.js").PAYOUT_STATUS.CREATED, import("../../models/payout/status.js").PAYOUT_STATUS.PAID, import("../../models/payout/status.js").PAYOUT_STATUS.FAILED, import("../../models/payout/status.js").PAYOUT_STATUS.REJECTED, import("../../models/payout/status.js").PAYOUT_STATUS.PENDING, import("../../models/payout/status.js").PAYOUT_STATUS.QUEUED, import("../../models/payout/status.js").PAYOUT_STATUS.REVERSED]>;
244
+ countryCode: z.ZodEffects<z.ZodDefault<z.ZodString>, import("@temboplus/frontend-core").ISO2CountryCode, string | undefined>;
245
+ currencyCode: z.ZodEffects<z.ZodDefault<z.ZodString>, import("@temboplus/frontend-core").CurrencyCode, string | undefined>;
246
+ channel: z.ZodString;
247
+ status: z.ZodNativeEnum<typeof import("./payout.dtos").PayoutStatus>;
224
248
  statusMessage: z.ZodString;
225
- partnerReference: z.ZodOptional<z.ZodEffects<z.ZodNullable<z.ZodString>, string | undefined, string | null>>;
249
+ partnerReference: z.ZodOptional<z.ZodNullable<z.ZodString>>;
226
250
  createdAt: z.ZodDate;
227
251
  updatedAt: z.ZodDate;
228
- approvalStatus: z.ZodEnum<[import("../../models/payout/status.js").PAYOUT_APPROVAL_STATUS.APPROVED, import("../../models/payout/status.js").PAYOUT_APPROVAL_STATUS.PENDING, import("../../models/payout/status.js").PAYOUT_APPROVAL_STATUS.REJECTED]>;
229
- createdBy: z.ZodOptional<z.ZodEffects<z.ZodNullable<z.ZodObject<{
252
+ actionedAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
253
+ approvalStatus: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("./payout.dtos").PayoutApprovalStatus>>>;
254
+ createdBy: z.ZodOptional<z.ZodNullable<z.ZodObject<{
255
+ id: z.ZodString;
230
256
  name: z.ZodString;
231
257
  identity: z.ZodString;
232
- }, z.UnknownKeysParam, z.ZodTypeAny, {
258
+ }, "strip", z.ZodTypeAny, {
233
259
  name: string;
260
+ id: string;
234
261
  identity: string;
235
262
  }, {
236
263
  name: string;
264
+ id: string;
237
265
  identity: string;
238
- }>>, {
239
- name: string;
240
- identity: string;
241
- } | undefined, {
242
- name: string;
243
- identity: string;
244
- } | null>>;
245
- actionedBy: z.ZodOptional<z.ZodEffects<z.ZodNullable<z.ZodObject<{
266
+ }>>>;
267
+ actionedBy: z.ZodOptional<z.ZodNullable<z.ZodObject<{
268
+ id: z.ZodString;
246
269
  name: z.ZodString;
247
270
  identity: z.ZodString;
248
- }, z.UnknownKeysParam, z.ZodTypeAny, {
271
+ }, "strip", z.ZodTypeAny, {
249
272
  name: string;
273
+ id: string;
250
274
  identity: string;
251
275
  }, {
252
276
  name: string;
277
+ id: string;
253
278
  identity: string;
254
- }>>, {
255
- name: string;
256
- identity: string;
257
- } | undefined, {
258
- name: string;
259
- identity: string;
260
- } | null>>;
261
- }, z.UnknownKeysParam, z.ZodTypeAny, {
262
- status: import("../../models/payout/status.js").PAYOUT_STATUS;
279
+ }>>>;
280
+ }, "strip", z.ZodTypeAny, {
281
+ status: import("./payout.dtos").PayoutStatus;
263
282
  id: string;
264
283
  channel: string;
265
- profileId: string;
266
- createdAt: Date;
267
- updatedAt: Date;
268
284
  msisdn: string;
269
285
  amount: number;
270
286
  description: string;
271
287
  payeeName: string;
288
+ profileId: string;
289
+ countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
290
+ currencyCode: import("@temboplus/frontend-core").CurrencyCode;
272
291
  statusMessage: string;
273
- approvalStatus: import("../../models/payout/status.js").PAYOUT_APPROVAL_STATUS;
274
- notes?: string | undefined;
275
- partnerReference?: string | undefined;
292
+ createdAt: Date;
293
+ updatedAt: Date;
294
+ notes?: string | null | undefined;
295
+ partnerReference?: string | null | undefined;
296
+ actionedAt?: Date | null | undefined;
297
+ approvalStatus?: import("./payout.dtos").PayoutApprovalStatus | null | undefined;
276
298
  createdBy?: {
277
299
  name: string;
300
+ id: string;
278
301
  identity: string;
279
- } | undefined;
302
+ } | null | undefined;
280
303
  actionedBy?: {
281
304
  name: string;
305
+ id: string;
282
306
  identity: string;
283
- } | undefined;
307
+ } | null | undefined;
284
308
  }, {
285
- status: import("../../models/payout/status.js").PAYOUT_STATUS;
309
+ status: import("./payout.dtos").PayoutStatus;
286
310
  id: string;
287
311
  channel: string;
288
- profileId: string;
289
- createdAt: Date;
290
- updatedAt: Date;
291
312
  msisdn: string;
292
313
  amount: number;
293
314
  description: string;
294
315
  payeeName: string;
316
+ profileId: string;
295
317
  statusMessage: string;
296
- approvalStatus: import("../../models/payout/status.js").PAYOUT_APPROVAL_STATUS;
318
+ createdAt: Date;
319
+ updatedAt: Date;
297
320
  notes?: string | null | undefined;
321
+ countryCode?: string | undefined;
322
+ currencyCode?: string | undefined;
298
323
  partnerReference?: string | null | undefined;
324
+ actionedAt?: Date | null | undefined;
325
+ approvalStatus?: import("./payout.dtos").PayoutApprovalStatus | null | undefined;
299
326
  createdBy?: {
300
327
  name: string;
328
+ id: string;
301
329
  identity: string;
302
330
  } | null | undefined;
303
331
  actionedBy?: {
304
332
  name: string;
333
+ id: string;
305
334
  identity: string;
306
335
  } | null | undefined;
307
336
  }>, "many">;
308
337
  total: z.ZodNumber;
309
338
  }, "strip", z.ZodTypeAny, {
310
339
  results: {
311
- status: import("../../models/payout/status.js").PAYOUT_STATUS;
340
+ status: import("./payout.dtos").PayoutStatus;
312
341
  id: string;
313
342
  channel: string;
314
- profileId: string;
315
- createdAt: Date;
316
- updatedAt: Date;
317
343
  msisdn: string;
318
344
  amount: number;
319
345
  description: string;
320
346
  payeeName: string;
347
+ profileId: string;
348
+ countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
349
+ currencyCode: import("@temboplus/frontend-core").CurrencyCode;
321
350
  statusMessage: string;
322
- approvalStatus: import("../../models/payout/status.js").PAYOUT_APPROVAL_STATUS;
323
- notes?: string | undefined;
324
- partnerReference?: string | undefined;
351
+ createdAt: Date;
352
+ updatedAt: Date;
353
+ notes?: string | null | undefined;
354
+ partnerReference?: string | null | undefined;
355
+ actionedAt?: Date | null | undefined;
356
+ approvalStatus?: import("./payout.dtos").PayoutApprovalStatus | null | undefined;
325
357
  createdBy?: {
326
358
  name: string;
359
+ id: string;
327
360
  identity: string;
328
- } | undefined;
361
+ } | null | undefined;
329
362
  actionedBy?: {
330
363
  name: string;
364
+ id: string;
331
365
  identity: string;
332
- } | undefined;
366
+ } | null | undefined;
333
367
  }[];
334
368
  total: number;
335
369
  }, {
336
370
  results: {
337
- status: import("../../models/payout/status.js").PAYOUT_STATUS;
371
+ status: import("./payout.dtos").PayoutStatus;
338
372
  id: string;
339
373
  channel: string;
340
- profileId: string;
341
- createdAt: Date;
342
- updatedAt: Date;
343
374
  msisdn: string;
344
375
  amount: number;
345
376
  description: string;
346
377
  payeeName: string;
378
+ profileId: string;
347
379
  statusMessage: string;
348
- approvalStatus: import("../../models/payout/status.js").PAYOUT_APPROVAL_STATUS;
380
+ createdAt: Date;
381
+ updatedAt: Date;
349
382
  notes?: string | null | undefined;
383
+ countryCode?: string | undefined;
384
+ currencyCode?: string | undefined;
350
385
  partnerReference?: string | null | undefined;
386
+ actionedAt?: Date | null | undefined;
387
+ approvalStatus?: import("./payout.dtos").PayoutApprovalStatus | null | undefined;
351
388
  createdBy?: {
352
389
  name: string;
390
+ id: string;
353
391
  identity: string;
354
392
  } | null | undefined;
355
393
  actionedBy?: {
356
394
  name: string;
395
+ id: string;
357
396
  identity: string;
358
397
  } | null | undefined;
359
398
  }[];
@@ -368,15 +407,16 @@ export declare const contract: {
368
407
  msisdn: z.ZodString;
369
408
  amount: z.ZodNumber;
370
409
  description: z.ZodString;
371
- notes: z.ZodOptional<z.ZodEffects<z.ZodNullable<z.ZodString>, string | undefined, string | null>>;
410
+ notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
411
+ } & {
372
412
  payeeName: z.ZodString;
373
- }, z.UnknownKeysParam, z.ZodTypeAny, {
413
+ }, "strip", z.ZodTypeAny, {
374
414
  channel: string;
375
415
  msisdn: string;
376
416
  amount: number;
377
417
  description: string;
378
418
  payeeName: string;
379
- notes?: string | undefined;
419
+ notes?: string | null | undefined;
380
420
  }, {
381
421
  channel: string;
382
422
  msisdn: string;
@@ -388,96 +428,104 @@ export declare const contract: {
388
428
  path: "";
389
429
  responses: {
390
430
  201: z.ZodObject<{
391
- channel: z.ZodString;
392
431
  msisdn: z.ZodString;
393
432
  amount: z.ZodNumber;
394
433
  description: z.ZodString;
395
- notes: z.ZodOptional<z.ZodEffects<z.ZodNullable<z.ZodString>, string | undefined, string | null>>;
434
+ notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
435
+ } & {
396
436
  id: z.ZodString;
397
437
  profileId: z.ZodString;
398
438
  payeeName: z.ZodString;
399
- status: z.ZodEnum<[import("../../models/payout/status.js").PAYOUT_STATUS.CREATED, import("../../models/payout/status.js").PAYOUT_STATUS.PAID, import("../../models/payout/status.js").PAYOUT_STATUS.FAILED, import("../../models/payout/status.js").PAYOUT_STATUS.REJECTED, import("../../models/payout/status.js").PAYOUT_STATUS.PENDING, import("../../models/payout/status.js").PAYOUT_STATUS.QUEUED, import("../../models/payout/status.js").PAYOUT_STATUS.REVERSED]>;
439
+ countryCode: z.ZodEffects<z.ZodDefault<z.ZodString>, import("@temboplus/frontend-core").ISO2CountryCode, string | undefined>;
440
+ currencyCode: z.ZodEffects<z.ZodDefault<z.ZodString>, import("@temboplus/frontend-core").CurrencyCode, string | undefined>;
441
+ channel: z.ZodString;
442
+ status: z.ZodNativeEnum<typeof import("./payout.dtos").PayoutStatus>;
400
443
  statusMessage: z.ZodString;
401
- partnerReference: z.ZodOptional<z.ZodEffects<z.ZodNullable<z.ZodString>, string | undefined, string | null>>;
444
+ partnerReference: z.ZodOptional<z.ZodNullable<z.ZodString>>;
402
445
  createdAt: z.ZodDate;
403
446
  updatedAt: z.ZodDate;
404
- approvalStatus: z.ZodEnum<[import("../../models/payout/status.js").PAYOUT_APPROVAL_STATUS.APPROVED, import("../../models/payout/status.js").PAYOUT_APPROVAL_STATUS.PENDING, import("../../models/payout/status.js").PAYOUT_APPROVAL_STATUS.REJECTED]>;
405
- createdBy: z.ZodOptional<z.ZodEffects<z.ZodNullable<z.ZodObject<{
447
+ actionedAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
448
+ approvalStatus: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("./payout.dtos").PayoutApprovalStatus>>>;
449
+ createdBy: z.ZodOptional<z.ZodNullable<z.ZodObject<{
450
+ id: z.ZodString;
406
451
  name: z.ZodString;
407
452
  identity: z.ZodString;
408
- }, z.UnknownKeysParam, z.ZodTypeAny, {
453
+ }, "strip", z.ZodTypeAny, {
409
454
  name: string;
455
+ id: string;
410
456
  identity: string;
411
457
  }, {
412
458
  name: string;
459
+ id: string;
413
460
  identity: string;
414
- }>>, {
415
- name: string;
416
- identity: string;
417
- } | undefined, {
418
- name: string;
419
- identity: string;
420
- } | null>>;
421
- actionedBy: z.ZodOptional<z.ZodEffects<z.ZodNullable<z.ZodObject<{
461
+ }>>>;
462
+ actionedBy: z.ZodOptional<z.ZodNullable<z.ZodObject<{
463
+ id: z.ZodString;
422
464
  name: z.ZodString;
423
465
  identity: z.ZodString;
424
- }, z.UnknownKeysParam, z.ZodTypeAny, {
466
+ }, "strip", z.ZodTypeAny, {
425
467
  name: string;
468
+ id: string;
426
469
  identity: string;
427
470
  }, {
428
471
  name: string;
472
+ id: string;
429
473
  identity: string;
430
- }>>, {
431
- name: string;
432
- identity: string;
433
- } | undefined, {
434
- name: string;
435
- identity: string;
436
- } | null>>;
437
- }, z.UnknownKeysParam, z.ZodTypeAny, {
438
- status: import("../../models/payout/status.js").PAYOUT_STATUS;
474
+ }>>>;
475
+ }, "strip", z.ZodTypeAny, {
476
+ status: import("./payout.dtos").PayoutStatus;
439
477
  id: string;
440
478
  channel: string;
441
- profileId: string;
442
- createdAt: Date;
443
- updatedAt: Date;
444
479
  msisdn: string;
445
480
  amount: number;
446
481
  description: string;
447
482
  payeeName: string;
483
+ profileId: string;
484
+ countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
485
+ currencyCode: import("@temboplus/frontend-core").CurrencyCode;
448
486
  statusMessage: string;
449
- approvalStatus: import("../../models/payout/status.js").PAYOUT_APPROVAL_STATUS;
450
- notes?: string | undefined;
451
- partnerReference?: string | undefined;
487
+ createdAt: Date;
488
+ updatedAt: Date;
489
+ notes?: string | null | undefined;
490
+ partnerReference?: string | null | undefined;
491
+ actionedAt?: Date | null | undefined;
492
+ approvalStatus?: import("./payout.dtos").PayoutApprovalStatus | null | undefined;
452
493
  createdBy?: {
453
494
  name: string;
495
+ id: string;
454
496
  identity: string;
455
- } | undefined;
497
+ } | null | undefined;
456
498
  actionedBy?: {
457
499
  name: string;
500
+ id: string;
458
501
  identity: string;
459
- } | undefined;
502
+ } | null | undefined;
460
503
  }, {
461
- status: import("../../models/payout/status.js").PAYOUT_STATUS;
504
+ status: import("./payout.dtos").PayoutStatus;
462
505
  id: string;
463
506
  channel: string;
464
- profileId: string;
465
- createdAt: Date;
466
- updatedAt: Date;
467
507
  msisdn: string;
468
508
  amount: number;
469
509
  description: string;
470
510
  payeeName: string;
511
+ profileId: string;
471
512
  statusMessage: string;
472
- approvalStatus: import("../../models/payout/status.js").PAYOUT_APPROVAL_STATUS;
513
+ createdAt: Date;
514
+ updatedAt: Date;
473
515
  notes?: string | null | undefined;
516
+ countryCode?: string | undefined;
517
+ currencyCode?: string | undefined;
474
518
  partnerReference?: string | null | undefined;
519
+ actionedAt?: Date | null | undefined;
520
+ approvalStatus?: import("./payout.dtos").PayoutApprovalStatus | null | undefined;
475
521
  createdBy?: {
476
522
  name: string;
523
+ id: string;
477
524
  identity: string;
478
525
  } | null | undefined;
479
526
  actionedBy?: {
480
527
  name: string;
528
+ id: string;
481
529
  identity: string;
482
530
  } | null | undefined;
483
531
  }>;
@@ -518,101 +566,218 @@ export declare const contract: {
518
566
  path: "/:id/approve";
519
567
  responses: {
520
568
  201: z.ZodObject<{
521
- channel: z.ZodString;
522
569
  msisdn: z.ZodString;
523
570
  amount: z.ZodNumber;
524
571
  description: z.ZodString;
525
- notes: z.ZodOptional<z.ZodEffects<z.ZodNullable<z.ZodString>, string | undefined, string | null>>;
572
+ notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
573
+ } & {
526
574
  id: z.ZodString;
527
575
  profileId: z.ZodString;
528
576
  payeeName: z.ZodString;
529
- status: z.ZodEnum<[import("../../models/payout/status.js").PAYOUT_STATUS.CREATED, import("../../models/payout/status.js").PAYOUT_STATUS.PAID, import("../../models/payout/status.js").PAYOUT_STATUS.FAILED, import("../../models/payout/status.js").PAYOUT_STATUS.REJECTED, import("../../models/payout/status.js").PAYOUT_STATUS.PENDING, import("../../models/payout/status.js").PAYOUT_STATUS.QUEUED, import("../../models/payout/status.js").PAYOUT_STATUS.REVERSED]>;
577
+ countryCode: z.ZodEffects<z.ZodDefault<z.ZodString>, import("@temboplus/frontend-core").ISO2CountryCode, string | undefined>;
578
+ currencyCode: z.ZodEffects<z.ZodDefault<z.ZodString>, import("@temboplus/frontend-core").CurrencyCode, string | undefined>;
579
+ channel: z.ZodString;
580
+ status: z.ZodNativeEnum<typeof import("./payout.dtos").PayoutStatus>;
530
581
  statusMessage: z.ZodString;
531
- partnerReference: z.ZodOptional<z.ZodEffects<z.ZodNullable<z.ZodString>, string | undefined, string | null>>;
582
+ partnerReference: z.ZodOptional<z.ZodNullable<z.ZodString>>;
532
583
  createdAt: z.ZodDate;
533
584
  updatedAt: z.ZodDate;
534
- approvalStatus: z.ZodEnum<[import("../../models/payout/status.js").PAYOUT_APPROVAL_STATUS.APPROVED, import("../../models/payout/status.js").PAYOUT_APPROVAL_STATUS.PENDING, import("../../models/payout/status.js").PAYOUT_APPROVAL_STATUS.REJECTED]>;
535
- createdBy: z.ZodOptional<z.ZodEffects<z.ZodNullable<z.ZodObject<{
585
+ actionedAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
586
+ approvalStatus: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("./payout.dtos").PayoutApprovalStatus>>>;
587
+ createdBy: z.ZodOptional<z.ZodNullable<z.ZodObject<{
588
+ id: z.ZodString;
536
589
  name: z.ZodString;
537
590
  identity: z.ZodString;
538
- }, z.UnknownKeysParam, z.ZodTypeAny, {
591
+ }, "strip", z.ZodTypeAny, {
539
592
  name: string;
593
+ id: string;
540
594
  identity: string;
541
595
  }, {
542
596
  name: string;
597
+ id: string;
598
+ identity: string;
599
+ }>>>;
600
+ actionedBy: z.ZodOptional<z.ZodNullable<z.ZodObject<{
601
+ id: z.ZodString;
602
+ name: z.ZodString;
603
+ identity: z.ZodString;
604
+ }, "strip", z.ZodTypeAny, {
605
+ name: string;
606
+ id: string;
543
607
  identity: string;
544
- }>>, {
608
+ }, {
609
+ name: string;
610
+ id: string;
611
+ identity: string;
612
+ }>>>;
613
+ }, "strip", z.ZodTypeAny, {
614
+ status: import("./payout.dtos").PayoutStatus;
615
+ id: string;
616
+ channel: string;
617
+ msisdn: string;
618
+ amount: number;
619
+ description: string;
620
+ payeeName: string;
621
+ profileId: string;
622
+ countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
623
+ currencyCode: import("@temboplus/frontend-core").CurrencyCode;
624
+ statusMessage: string;
625
+ createdAt: Date;
626
+ updatedAt: Date;
627
+ notes?: string | null | undefined;
628
+ partnerReference?: string | null | undefined;
629
+ actionedAt?: Date | null | undefined;
630
+ approvalStatus?: import("./payout.dtos").PayoutApprovalStatus | null | undefined;
631
+ createdBy?: {
632
+ name: string;
633
+ id: string;
634
+ identity: string;
635
+ } | null | undefined;
636
+ actionedBy?: {
637
+ name: string;
638
+ id: string;
639
+ identity: string;
640
+ } | null | undefined;
641
+ }, {
642
+ status: import("./payout.dtos").PayoutStatus;
643
+ id: string;
644
+ channel: string;
645
+ msisdn: string;
646
+ amount: number;
647
+ description: string;
648
+ payeeName: string;
649
+ profileId: string;
650
+ statusMessage: string;
651
+ createdAt: Date;
652
+ updatedAt: Date;
653
+ notes?: string | null | undefined;
654
+ countryCode?: string | undefined;
655
+ currencyCode?: string | undefined;
656
+ partnerReference?: string | null | undefined;
657
+ actionedAt?: Date | null | undefined;
658
+ approvalStatus?: import("./payout.dtos").PayoutApprovalStatus | null | undefined;
659
+ createdBy?: {
545
660
  name: string;
661
+ id: string;
546
662
  identity: string;
547
- } | undefined, {
663
+ } | null | undefined;
664
+ actionedBy?: {
548
665
  name: string;
666
+ id: string;
549
667
  identity: string;
550
- } | null>>;
551
- actionedBy: z.ZodOptional<z.ZodEffects<z.ZodNullable<z.ZodObject<{
668
+ } | null | undefined;
669
+ }>;
670
+ 404: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
671
+ 409: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
672
+ };
673
+ };
674
+ getPayout: {
675
+ method: "GET";
676
+ path: "/:id/";
677
+ responses: {
678
+ 200: z.ZodObject<{
679
+ msisdn: z.ZodString;
680
+ amount: z.ZodNumber;
681
+ description: z.ZodString;
682
+ notes: z.ZodOptional<z.ZodNullable<z.ZodString>>;
683
+ } & {
684
+ id: z.ZodString;
685
+ profileId: z.ZodString;
686
+ payeeName: z.ZodString;
687
+ countryCode: z.ZodEffects<z.ZodDefault<z.ZodString>, import("@temboplus/frontend-core").ISO2CountryCode, string | undefined>;
688
+ currencyCode: z.ZodEffects<z.ZodDefault<z.ZodString>, import("@temboplus/frontend-core").CurrencyCode, string | undefined>;
689
+ channel: z.ZodString;
690
+ status: z.ZodNativeEnum<typeof import("./payout.dtos").PayoutStatus>;
691
+ statusMessage: z.ZodString;
692
+ partnerReference: z.ZodOptional<z.ZodNullable<z.ZodString>>;
693
+ createdAt: z.ZodDate;
694
+ updatedAt: z.ZodDate;
695
+ actionedAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
696
+ approvalStatus: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("./payout.dtos").PayoutApprovalStatus>>>;
697
+ createdBy: z.ZodOptional<z.ZodNullable<z.ZodObject<{
698
+ id: z.ZodString;
552
699
  name: z.ZodString;
553
700
  identity: z.ZodString;
554
- }, z.UnknownKeysParam, z.ZodTypeAny, {
701
+ }, "strip", z.ZodTypeAny, {
555
702
  name: string;
703
+ id: string;
556
704
  identity: string;
557
705
  }, {
558
706
  name: string;
707
+ id: string;
559
708
  identity: string;
560
- }>>, {
709
+ }>>>;
710
+ actionedBy: z.ZodOptional<z.ZodNullable<z.ZodObject<{
711
+ id: z.ZodString;
712
+ name: z.ZodString;
713
+ identity: z.ZodString;
714
+ }, "strip", z.ZodTypeAny, {
561
715
  name: string;
716
+ id: string;
562
717
  identity: string;
563
- } | undefined, {
718
+ }, {
564
719
  name: string;
720
+ id: string;
565
721
  identity: string;
566
- } | null>>;
567
- }, z.UnknownKeysParam, z.ZodTypeAny, {
568
- status: import("../../models/payout/status.js").PAYOUT_STATUS;
722
+ }>>>;
723
+ }, "strip", z.ZodTypeAny, {
724
+ status: import("./payout.dtos").PayoutStatus;
569
725
  id: string;
570
726
  channel: string;
571
- profileId: string;
572
- createdAt: Date;
573
- updatedAt: Date;
574
727
  msisdn: string;
575
728
  amount: number;
576
729
  description: string;
577
730
  payeeName: string;
731
+ profileId: string;
732
+ countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
733
+ currencyCode: import("@temboplus/frontend-core").CurrencyCode;
578
734
  statusMessage: string;
579
- approvalStatus: import("../../models/payout/status.js").PAYOUT_APPROVAL_STATUS;
580
- notes?: string | undefined;
581
- partnerReference?: string | undefined;
735
+ createdAt: Date;
736
+ updatedAt: Date;
737
+ notes?: string | null | undefined;
738
+ partnerReference?: string | null | undefined;
739
+ actionedAt?: Date | null | undefined;
740
+ approvalStatus?: import("./payout.dtos").PayoutApprovalStatus | null | undefined;
582
741
  createdBy?: {
583
742
  name: string;
743
+ id: string;
584
744
  identity: string;
585
- } | undefined;
745
+ } | null | undefined;
586
746
  actionedBy?: {
587
747
  name: string;
748
+ id: string;
588
749
  identity: string;
589
- } | undefined;
750
+ } | null | undefined;
590
751
  }, {
591
- status: import("../../models/payout/status.js").PAYOUT_STATUS;
752
+ status: import("./payout.dtos").PayoutStatus;
592
753
  id: string;
593
754
  channel: string;
594
- profileId: string;
595
- createdAt: Date;
596
- updatedAt: Date;
597
755
  msisdn: string;
598
756
  amount: number;
599
757
  description: string;
600
758
  payeeName: string;
759
+ profileId: string;
601
760
  statusMessage: string;
602
- approvalStatus: import("../../models/payout/status.js").PAYOUT_APPROVAL_STATUS;
761
+ createdAt: Date;
762
+ updatedAt: Date;
603
763
  notes?: string | null | undefined;
764
+ countryCode?: string | undefined;
765
+ currencyCode?: string | undefined;
604
766
  partnerReference?: string | null | undefined;
767
+ actionedAt?: Date | null | undefined;
768
+ approvalStatus?: import("./payout.dtos").PayoutApprovalStatus | null | undefined;
605
769
  createdBy?: {
606
770
  name: string;
771
+ id: string;
607
772
  identity: string;
608
773
  } | null | undefined;
609
774
  actionedBy?: {
610
775
  name: string;
776
+ id: string;
611
777
  identity: string;
612
778
  } | null | undefined;
613
779
  }>;
614
780
  404: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
615
- 409: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
616
781
  };
617
782
  };
618
783
  };
@@ -620,4 +785,3 @@ export declare const contract: {
620
785
  * Export type for use in client implementations
621
786
  */
622
787
  export type PayoutAPI = typeof contract;
623
- //# sourceMappingURL=contract.d.ts.map