@financeable/aggregation 0.2.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 (394) hide show
  1. package/.devcontainer/README.md +35 -0
  2. package/.devcontainer/devcontainer.json +45 -0
  3. package/FUNCTIONS.md +225 -0
  4. package/README.md +967 -0
  5. package/RUNTIMES.md +48 -0
  6. package/core.d.ts +10 -0
  7. package/core.d.ts.map +1 -0
  8. package/core.js +17 -0
  9. package/core.js.map +1 -0
  10. package/docs/sdks/applications/README.md +467 -0
  11. package/docs/sdks/financeable/README.md +5 -0
  12. package/financeable-typescript/.devcontainer/README.md +30 -0
  13. package/financeable-typescript/FUNCTIONS.md +205 -0
  14. package/financeable-typescript/README.md +895 -0
  15. package/financeable-typescript/RUNTIMES.md +22 -0
  16. package/financeable-typescript/docs/sdks/applications/README.md +427 -0
  17. package/financeable-typescript/docs/sdks/financeable/README.md +5 -0
  18. package/financeable-typescript/src/core.ts +13 -0
  19. package/financeable-typescript/src/funcs/applicationsCreate.ts +124 -0
  20. package/financeable-typescript/src/funcs/applicationsGet.ts +128 -0
  21. package/financeable-typescript/src/funcs/applicationsList.ts +126 -0
  22. package/financeable-typescript/src/hooks/hooks.ts +129 -0
  23. package/financeable-typescript/src/hooks/index.ts +6 -0
  24. package/financeable-typescript/src/hooks/types.ts +109 -0
  25. package/financeable-typescript/src/index.ts +7 -0
  26. package/financeable-typescript/src/lib/base64.ts +37 -0
  27. package/financeable-typescript/src/lib/config.ts +59 -0
  28. package/financeable-typescript/src/lib/dlv.ts +53 -0
  29. package/financeable-typescript/src/lib/encodings.ts +449 -0
  30. package/financeable-typescript/src/lib/env.ts +37 -0
  31. package/financeable-typescript/src/lib/files.ts +40 -0
  32. package/financeable-typescript/src/lib/http.ts +323 -0
  33. package/financeable-typescript/src/lib/is-plain-object.ts +43 -0
  34. package/financeable-typescript/src/lib/logger.ts +9 -0
  35. package/financeable-typescript/src/lib/matchers.ts +322 -0
  36. package/financeable-typescript/src/lib/primitives.ts +122 -0
  37. package/financeable-typescript/src/lib/retries.ts +219 -0
  38. package/financeable-typescript/src/lib/schemas.ts +86 -0
  39. package/financeable-typescript/src/lib/sdks.ts +392 -0
  40. package/financeable-typescript/src/lib/security.ts +227 -0
  41. package/financeable-typescript/src/lib/url.ts +33 -0
  42. package/financeable-typescript/src/models/components/addressattributes.ts +148 -0
  43. package/financeable-typescript/src/models/components/apierrorlinks.ts +65 -0
  44. package/financeable-typescript/src/models/components/applicationattributes.ts +128 -0
  45. package/financeable-typescript/src/models/components/applicationattributescreate.ts +90 -0
  46. package/financeable-typescript/src/models/components/applicationresourcebulksubmission.ts +1000 -0
  47. package/financeable-typescript/src/models/components/applicationstatus.ts +39 -0
  48. package/financeable-typescript/src/models/components/applicationtype.ts +33 -0
  49. package/financeable-typescript/src/models/components/assetattributes.ts +400 -0
  50. package/financeable-typescript/src/models/components/customerattributes.ts +171 -0
  51. package/financeable-typescript/src/models/components/customertitle.ts +35 -0
  52. package/financeable-typescript/src/models/components/errorsource.ts +79 -0
  53. package/financeable-typescript/src/models/components/forbiddenerror.ts +207 -0
  54. package/financeable-typescript/src/models/components/frequencytype.ts +40 -0
  55. package/financeable-typescript/src/models/components/index.ts +20 -0
  56. package/financeable-typescript/src/models/components/links.ts +72 -0
  57. package/financeable-typescript/src/models/components/loandetailsattributes.ts +187 -0
  58. package/financeable-typescript/src/models/components/repaymentstructure.ts +40 -0
  59. package/financeable-typescript/src/models/errors/apierror.ts +27 -0
  60. package/financeable-typescript/src/models/errors/createapplication.ts +76 -0
  61. package/financeable-typescript/src/models/errors/getapplication.ts +76 -0
  62. package/financeable-typescript/src/models/errors/getapplications.ts +76 -0
  63. package/financeable-typescript/src/models/errors/httpclienterrors.ts +62 -0
  64. package/financeable-typescript/src/models/errors/index.ts +10 -0
  65. package/financeable-typescript/src/models/errors/sdkvalidationerror.ts +97 -0
  66. package/financeable-typescript/src/models/operations/createapplication.ts +1649 -0
  67. package/financeable-typescript/src/models/operations/getapplication.ts +1829 -0
  68. package/financeable-typescript/src/models/operations/getapplications.ts +1790 -0
  69. package/financeable-typescript/src/models/operations/index.ts +7 -0
  70. package/financeable-typescript/src/sdk/applications.ts +55 -0
  71. package/financeable-typescript/src/sdk/index.ts +5 -0
  72. package/financeable-typescript/src/sdk/sdk.ts +13 -0
  73. package/financeable-typescript/src/types/blobs.ts +31 -0
  74. package/financeable-typescript/src/types/constdatetime.ts +15 -0
  75. package/financeable-typescript/src/types/enums.ts +16 -0
  76. package/financeable-typescript/src/types/fp.ts +50 -0
  77. package/financeable-typescript/src/types/index.ts +11 -0
  78. package/financeable-typescript/src/types/operations.ts +105 -0
  79. package/financeable-typescript/src/types/rfcdate.ts +54 -0
  80. package/financeable-typescript/src/types/streams.ts +21 -0
  81. package/funcs/applicationsCreate.d.ts +14 -0
  82. package/funcs/applicationsCreate.d.ts.map +1 -0
  83. package/funcs/applicationsCreate.js +105 -0
  84. package/funcs/applicationsCreate.js.map +1 -0
  85. package/funcs/applicationsGet.d.ts +13 -0
  86. package/funcs/applicationsGet.d.ts.map +1 -0
  87. package/funcs/applicationsGet.js +109 -0
  88. package/funcs/applicationsGet.js.map +1 -0
  89. package/funcs/applicationsList.d.ts +13 -0
  90. package/funcs/applicationsList.d.ts.map +1 -0
  91. package/funcs/applicationsList.js +107 -0
  92. package/funcs/applicationsList.js.map +1 -0
  93. package/hooks/hooks.d.ts +24 -0
  94. package/hooks/hooks.d.ts.map +1 -0
  95. package/hooks/hooks.js +84 -0
  96. package/hooks/hooks.js.map +1 -0
  97. package/hooks/index.d.ts +3 -0
  98. package/hooks/index.d.ts.map +1 -0
  99. package/hooks/index.js +22 -0
  100. package/hooks/index.js.map +1 -0
  101. package/hooks/types.d.ts +78 -0
  102. package/hooks/types.d.ts.map +1 -0
  103. package/hooks/types.js +6 -0
  104. package/hooks/types.js.map +1 -0
  105. package/index.d.ts +4 -0
  106. package/index.d.ts.map +1 -0
  107. package/index.js +46 -0
  108. package/index.js.map +1 -0
  109. package/jsr.json +27 -0
  110. package/lib/base64.d.ts +10 -0
  111. package/lib/base64.d.ts.map +1 -0
  112. package/lib/base64.js +71 -0
  113. package/lib/base64.js.map +1 -0
  114. package/lib/config.d.ts +33 -0
  115. package/lib/config.d.ts.map +1 -0
  116. package/lib/config.js +35 -0
  117. package/lib/config.js.map +1 -0
  118. package/lib/dlv.d.ts +14 -0
  119. package/lib/dlv.d.ts.map +1 -0
  120. package/lib/dlv.js +49 -0
  121. package/lib/dlv.js.map +1 -0
  122. package/lib/encodings.d.ts +52 -0
  123. package/lib/encodings.d.ts.map +1 -0
  124. package/lib/encodings.js +368 -0
  125. package/lib/encodings.js.map +1 -0
  126. package/lib/env.d.ts +14 -0
  127. package/lib/env.d.ts.map +1 -0
  128. package/lib/env.js +64 -0
  129. package/lib/env.js.map +1 -0
  130. package/lib/files.d.ts +8 -0
  131. package/lib/files.d.ts.map +1 -0
  132. package/lib/files.js +36 -0
  133. package/lib/files.js.map +1 -0
  134. package/lib/http.d.ts +67 -0
  135. package/lib/http.d.ts.map +1 -0
  136. package/lib/http.js +217 -0
  137. package/lib/http.js.map +1 -0
  138. package/lib/is-plain-object.d.ts +2 -0
  139. package/lib/is-plain-object.d.ts.map +1 -0
  140. package/lib/is-plain-object.js +41 -0
  141. package/lib/is-plain-object.js.map +1 -0
  142. package/lib/logger.d.ts +6 -0
  143. package/lib/logger.d.ts.map +1 -0
  144. package/lib/logger.js +6 -0
  145. package/lib/logger.js.map +1 -0
  146. package/lib/matchers.d.ts +64 -0
  147. package/lib/matchers.d.ts.map +1 -0
  148. package/lib/matchers.js +204 -0
  149. package/lib/matchers.js.map +1 -0
  150. package/lib/primitives.d.ts +23 -0
  151. package/lib/primitives.d.ts.map +1 -0
  152. package/lib/primitives.js +104 -0
  153. package/lib/primitives.js.map +1 -0
  154. package/lib/retries.d.ts +38 -0
  155. package/lib/retries.d.ts.map +1 -0
  156. package/lib/retries.js +153 -0
  157. package/lib/retries.js.map +1 -0
  158. package/lib/schemas.d.ts +19 -0
  159. package/lib/schemas.d.ts.map +1 -0
  160. package/lib/schemas.js +62 -0
  161. package/lib/schemas.js.map +1 -0
  162. package/lib/sdks.d.ts +60 -0
  163. package/lib/sdks.d.ts.map +1 -0
  164. package/lib/sdks.js +280 -0
  165. package/lib/sdks.js.map +1 -0
  166. package/lib/security.d.ts +79 -0
  167. package/lib/security.d.ts.map +1 -0
  168. package/lib/security.js +121 -0
  169. package/lib/security.js.map +1 -0
  170. package/lib/url.d.ts +5 -0
  171. package/lib/url.d.ts.map +1 -0
  172. package/lib/url.js +25 -0
  173. package/lib/url.js.map +1 -0
  174. package/models/components/addressattributes.d.ts +83 -0
  175. package/models/components/addressattributes.d.ts.map +1 -0
  176. package/models/components/addressattributes.js +117 -0
  177. package/models/components/addressattributes.js.map +1 -0
  178. package/models/components/apierrorlinks.d.ts +32 -0
  179. package/models/components/apierrorlinks.d.ts.map +1 -0
  180. package/models/components/apierrorlinks.js +69 -0
  181. package/models/components/apierrorlinks.js.map +1 -0
  182. package/models/components/applicationattributes.d.ts +69 -0
  183. package/models/components/applicationattributes.d.ts.map +1 -0
  184. package/models/components/applicationattributes.js +85 -0
  185. package/models/components/applicationattributes.js.map +1 -0
  186. package/models/components/applicationattributescreate.d.ts +43 -0
  187. package/models/components/applicationattributescreate.d.ts.map +1 -0
  188. package/models/components/applicationattributescreate.js +74 -0
  189. package/models/components/applicationattributescreate.js.map +1 -0
  190. package/models/components/applicationresourcebulksubmission.d.ts +456 -0
  191. package/models/components/applicationresourcebulksubmission.d.ts.map +1 -0
  192. package/models/components/applicationresourcebulksubmission.js +492 -0
  193. package/models/components/applicationresourcebulksubmission.js.map +1 -0
  194. package/models/components/applicationstatus.d.ts +46 -0
  195. package/models/components/applicationstatus.d.ts.map +1 -0
  196. package/models/components/applicationstatus.js +66 -0
  197. package/models/components/applicationstatus.js.map +1 -0
  198. package/models/components/applicationtype.d.ts +28 -0
  199. package/models/components/applicationtype.d.ts.map +1 -0
  200. package/models/components/applicationtype.js +60 -0
  201. package/models/components/applicationtype.js.map +1 -0
  202. package/models/components/assetattributes.d.ts +388 -0
  203. package/models/components/assetattributes.d.ts.map +1 -0
  204. package/models/components/assetattributes.js +244 -0
  205. package/models/components/assetattributes.js.map +1 -0
  206. package/models/components/customerattributes.d.ts +103 -0
  207. package/models/components/customerattributes.d.ts.map +1 -0
  208. package/models/components/customerattributes.js +120 -0
  209. package/models/components/customerattributes.js.map +1 -0
  210. package/models/components/customertitle.d.ts +34 -0
  211. package/models/components/customertitle.d.ts.map +1 -0
  212. package/models/components/customertitle.js +62 -0
  213. package/models/components/customertitle.js.map +1 -0
  214. package/models/components/errorsource.d.ts +42 -0
  215. package/models/components/errorsource.d.ts.map +1 -0
  216. package/models/components/errorsource.js +73 -0
  217. package/models/components/errorsource.js.map +1 -0
  218. package/models/components/forbiddenerror.d.ts +141 -0
  219. package/models/components/forbiddenerror.d.ts.map +1 -0
  220. package/models/components/forbiddenerror.js +158 -0
  221. package/models/components/forbiddenerror.js.map +1 -0
  222. package/models/components/frequencytype.d.ts +37 -0
  223. package/models/components/frequencytype.d.ts.map +1 -0
  224. package/models/components/frequencytype.js +64 -0
  225. package/models/components/frequencytype.js.map +1 -0
  226. package/models/components/index.d.ts +17 -0
  227. package/models/components/index.d.ts.map +1 -0
  228. package/models/components/index.js +36 -0
  229. package/models/components/index.js.map +1 -0
  230. package/models/components/links.d.ts +40 -0
  231. package/models/components/links.d.ts.map +1 -0
  232. package/models/components/links.js +72 -0
  233. package/models/components/links.js.map +1 -0
  234. package/models/components/loandetailsattributes.d.ts +112 -0
  235. package/models/components/loandetailsattributes.d.ts.map +1 -0
  236. package/models/components/loandetailsattributes.js +101 -0
  237. package/models/components/loandetailsattributes.js.map +1 -0
  238. package/models/components/repaymentstructure.d.ts +37 -0
  239. package/models/components/repaymentstructure.d.ts.map +1 -0
  240. package/models/components/repaymentstructure.js +64 -0
  241. package/models/components/repaymentstructure.js.map +1 -0
  242. package/models/errors/apierror.d.ts +8 -0
  243. package/models/errors/apierror.d.ts.map +1 -0
  244. package/models/errors/apierror.js +21 -0
  245. package/models/errors/apierror.js.map +1 -0
  246. package/models/errors/createapplication.d.ts +38 -0
  247. package/models/errors/createapplication.d.ts.map +1 -0
  248. package/models/errors/createapplication.js +81 -0
  249. package/models/errors/createapplication.js.map +1 -0
  250. package/models/errors/getapplication.d.ts +38 -0
  251. package/models/errors/getapplication.d.ts.map +1 -0
  252. package/models/errors/getapplication.js +81 -0
  253. package/models/errors/getapplication.js.map +1 -0
  254. package/models/errors/getapplications.d.ts +38 -0
  255. package/models/errors/getapplications.d.ts.map +1 -0
  256. package/models/errors/getapplications.js +81 -0
  257. package/models/errors/getapplications.js.map +1 -0
  258. package/models/errors/httpclienterrors.d.ts +44 -0
  259. package/models/errors/httpclienterrors.d.ts.map +1 -0
  260. package/models/errors/httpclienterrors.js +78 -0
  261. package/models/errors/httpclienterrors.js.map +1 -0
  262. package/models/errors/index.d.ts +7 -0
  263. package/models/errors/index.d.ts.map +1 -0
  264. package/models/errors/index.js +26 -0
  265. package/models/errors/index.js.map +1 -0
  266. package/models/errors/sdkvalidationerror.d.ts +20 -0
  267. package/models/errors/sdkvalidationerror.d.ts.map +1 -0
  268. package/models/errors/sdkvalidationerror.js +115 -0
  269. package/models/errors/sdkvalidationerror.js.map +1 -0
  270. package/models/operations/createapplication.d.ts +780 -0
  271. package/models/operations/createapplication.d.ts.map +1 -0
  272. package/models/operations/createapplication.js +834 -0
  273. package/models/operations/createapplication.js.map +1 -0
  274. package/models/operations/getapplication.d.ts +805 -0
  275. package/models/operations/getapplication.d.ts.map +1 -0
  276. package/models/operations/getapplication.js +861 -0
  277. package/models/operations/getapplication.js.map +1 -0
  278. package/models/operations/getapplications.d.ts +805 -0
  279. package/models/operations/getapplications.d.ts.map +1 -0
  280. package/models/operations/getapplications.js +864 -0
  281. package/models/operations/getapplications.js.map +1 -0
  282. package/models/operations/index.d.ts +4 -0
  283. package/models/operations/index.d.ts.map +1 -0
  284. package/models/operations/index.js +23 -0
  285. package/models/operations/index.js.map +1 -0
  286. package/package.json +30 -0
  287. package/sdk/applications.d.ts +18 -0
  288. package/sdk/applications.d.ts.map +1 -0
  289. package/sdk/applications.js +33 -0
  290. package/sdk/applications.js.map +1 -0
  291. package/sdk/index.d.ts +2 -0
  292. package/sdk/index.d.ts.map +1 -0
  293. package/sdk/index.js +21 -0
  294. package/sdk/index.js.map +1 -0
  295. package/sdk/sdk.d.ts +7 -0
  296. package/sdk/sdk.d.ts.map +1 -0
  297. package/sdk/sdk.js +15 -0
  298. package/sdk/sdk.js.map +1 -0
  299. package/src/core.ts +13 -0
  300. package/src/funcs/applicationsCreate.ts +128 -0
  301. package/src/funcs/applicationsGet.ts +132 -0
  302. package/src/funcs/applicationsList.ts +130 -0
  303. package/src/hooks/hooks.ts +129 -0
  304. package/src/hooks/index.ts +6 -0
  305. package/src/hooks/types.ts +110 -0
  306. package/src/index.ts +7 -0
  307. package/src/lib/base64.ts +37 -0
  308. package/src/lib/config.ts +59 -0
  309. package/src/lib/dlv.ts +53 -0
  310. package/src/lib/encodings.ts +483 -0
  311. package/src/lib/env.ts +37 -0
  312. package/src/lib/files.ts +40 -0
  313. package/src/lib/http.ts +323 -0
  314. package/src/lib/is-plain-object.ts +43 -0
  315. package/src/lib/logger.ts +9 -0
  316. package/src/lib/matchers.ts +322 -0
  317. package/src/lib/primitives.ts +136 -0
  318. package/src/lib/retries.ts +218 -0
  319. package/src/lib/schemas.ts +91 -0
  320. package/src/lib/sdks.ts +400 -0
  321. package/src/lib/security.ts +227 -0
  322. package/src/lib/url.ts +33 -0
  323. package/src/models/components/addressattributes.ts +148 -0
  324. package/src/models/components/apierrorlinks.ts +65 -0
  325. package/src/models/components/applicationattributes.ts +128 -0
  326. package/src/models/components/applicationattributescreate.ts +90 -0
  327. package/src/models/components/applicationresourcebulksubmission.ts +1000 -0
  328. package/src/models/components/applicationstatus.ts +39 -0
  329. package/src/models/components/applicationtype.ts +33 -0
  330. package/src/models/components/assetattributes.ts +400 -0
  331. package/src/models/components/customerattributes.ts +171 -0
  332. package/src/models/components/customertitle.ts +35 -0
  333. package/src/models/components/errorsource.ts +79 -0
  334. package/src/models/components/forbiddenerror.ts +207 -0
  335. package/src/models/components/frequencytype.ts +40 -0
  336. package/src/models/components/index.ts +20 -0
  337. package/src/models/components/links.ts +72 -0
  338. package/src/models/components/loandetailsattributes.ts +187 -0
  339. package/src/models/components/repaymentstructure.ts +40 -0
  340. package/src/models/errors/apierror.ts +27 -0
  341. package/src/models/errors/createapplication.ts +76 -0
  342. package/src/models/errors/getapplication.ts +76 -0
  343. package/src/models/errors/getapplications.ts +76 -0
  344. package/src/models/errors/httpclienterrors.ts +62 -0
  345. package/src/models/errors/index.ts +10 -0
  346. package/src/models/errors/sdkvalidationerror.ts +97 -0
  347. package/src/models/operations/createapplication.ts +1649 -0
  348. package/src/models/operations/getapplication.ts +1829 -0
  349. package/src/models/operations/getapplications.ts +1790 -0
  350. package/src/models/operations/index.ts +7 -0
  351. package/src/sdk/applications.ts +55 -0
  352. package/src/sdk/index.ts +5 -0
  353. package/src/sdk/sdk.ts +13 -0
  354. package/src/types/blobs.ts +31 -0
  355. package/src/types/constdatetime.ts +15 -0
  356. package/src/types/enums.ts +16 -0
  357. package/src/types/fp.ts +50 -0
  358. package/src/types/index.ts +11 -0
  359. package/src/types/operations.ts +105 -0
  360. package/src/types/rfcdate.ts +54 -0
  361. package/src/types/streams.ts +21 -0
  362. package/tsconfig.json +41 -0
  363. package/types/blobs.d.ts +4 -0
  364. package/types/blobs.d.ts.map +1 -0
  365. package/types/blobs.js +62 -0
  366. package/types/blobs.js.map +1 -0
  367. package/types/constdatetime.d.ts +3 -0
  368. package/types/constdatetime.d.ts.map +1 -0
  369. package/types/constdatetime.js +46 -0
  370. package/types/constdatetime.js.map +1 -0
  371. package/types/enums.d.ts +12 -0
  372. package/types/enums.d.ts.map +1 -0
  373. package/types/enums.js +10 -0
  374. package/types/enums.js.map +1 -0
  375. package/types/fp.d.ts +31 -0
  376. package/types/fp.d.ts.map +1 -0
  377. package/types/fp.js +37 -0
  378. package/types/fp.js.map +1 -0
  379. package/types/index.d.ts +8 -0
  380. package/types/index.d.ts.map +1 -0
  381. package/types/index.js +16 -0
  382. package/types/index.js.map +1 -0
  383. package/types/operations.d.ts +27 -0
  384. package/types/operations.d.ts.map +1 -0
  385. package/types/operations.js +83 -0
  386. package/types/operations.js.map +1 -0
  387. package/types/rfcdate.d.ts +21 -0
  388. package/types/rfcdate.d.ts.map +1 -0
  389. package/types/rfcdate.js +46 -0
  390. package/types/rfcdate.js.map +1 -0
  391. package/types/streams.d.ts +2 -0
  392. package/types/streams.d.ts.map +1 -0
  393. package/types/streams.js +18 -0
  394. package/types/streams.js.map +1 -0
@@ -0,0 +1,805 @@
1
+ import * as z from "zod";
2
+ import { ClosedEnum } from "../../types/enums.js";
3
+ import { Result as SafeParseResult } from "../../types/fp.js";
4
+ import * as components from "../components/index.js";
5
+ import { SDKValidationError } from "../errors/sdkvalidationerror.js";
6
+ export type GetApplicationsRequest = {
7
+ humanId?: string | undefined;
8
+ };
9
+ export declare const GetApplicationsType: {
10
+ readonly Applications: "applications";
11
+ };
12
+ export type GetApplicationsType = ClosedEnum<typeof GetApplicationsType>;
13
+ export declare const GetApplicationsDataApplicationsType: {
14
+ readonly LoanDetails: "loan-details";
15
+ };
16
+ export type GetApplicationsDataApplicationsType = ClosedEnum<typeof GetApplicationsDataApplicationsType>;
17
+ export type GetApplicationsData2 = {
18
+ type: GetApplicationsDataApplicationsType;
19
+ id: string;
20
+ };
21
+ export declare const GetApplicationsDataType: {
22
+ readonly LoanDetails: "loan-details";
23
+ };
24
+ export type GetApplicationsDataType = ClosedEnum<typeof GetApplicationsDataType>;
25
+ export type GetApplicationsData1 = {
26
+ type: GetApplicationsDataType;
27
+ id: string;
28
+ };
29
+ export type GetApplicationsApplicationsResponse200Data = GetApplicationsData1 | Array<GetApplicationsData2>;
30
+ export type GetApplicationsLoanDetails = {
31
+ data: GetApplicationsData1 | Array<GetApplicationsData2> | null;
32
+ /**
33
+ * Standard link object
34
+ */
35
+ links?: components.Links | undefined;
36
+ meta?: {
37
+ [k: string]: any;
38
+ } | undefined;
39
+ };
40
+ export declare const GetApplicationsDataApplicationsResponse200Type: {
41
+ readonly Customers: "customers";
42
+ };
43
+ export type GetApplicationsDataApplicationsResponse200Type = ClosedEnum<typeof GetApplicationsDataApplicationsResponse200Type>;
44
+ export type GetApplicationsDataApplications2 = {
45
+ type: GetApplicationsDataApplicationsResponse200Type;
46
+ id: string;
47
+ };
48
+ export declare const GetApplicationsDataApplicationsResponseType: {
49
+ readonly Customers: "customers";
50
+ };
51
+ export type GetApplicationsDataApplicationsResponseType = ClosedEnum<typeof GetApplicationsDataApplicationsResponseType>;
52
+ export type GetApplicationsDataApplications1 = {
53
+ type: GetApplicationsDataApplicationsResponseType;
54
+ id: string;
55
+ };
56
+ export type GetApplicationsApplicationsResponse200ApplicationJSONData = GetApplicationsDataApplications1 | Array<GetApplicationsDataApplications2>;
57
+ export type GetApplicationsCustomers = {
58
+ data: GetApplicationsDataApplications1 | Array<GetApplicationsDataApplications2> | null;
59
+ /**
60
+ * Standard link object
61
+ */
62
+ links?: components.Links | undefined;
63
+ meta?: {
64
+ [k: string]: any;
65
+ } | undefined;
66
+ };
67
+ export declare const GetApplicationsDataApplicationsResponse200ApplicationJSONResponseBodyType: {
68
+ readonly Asset: "asset";
69
+ };
70
+ export type GetApplicationsDataApplicationsResponse200ApplicationJSONResponseBodyType = ClosedEnum<typeof GetApplicationsDataApplicationsResponse200ApplicationJSONResponseBodyType>;
71
+ export type GetApplicationsDataApplicationsResponse2 = {
72
+ type: GetApplicationsDataApplicationsResponse200ApplicationJSONResponseBodyType;
73
+ id: string;
74
+ };
75
+ export declare const GetApplicationsDataApplicationsResponse200ApplicationJSONType: {
76
+ readonly Asset: "asset";
77
+ };
78
+ export type GetApplicationsDataApplicationsResponse200ApplicationJSONType = ClosedEnum<typeof GetApplicationsDataApplicationsResponse200ApplicationJSONType>;
79
+ export type GetApplicationsDataApplicationsResponse1 = {
80
+ type: GetApplicationsDataApplicationsResponse200ApplicationJSONType;
81
+ id: string;
82
+ };
83
+ export type GetApplicationsApplicationsResponseData = GetApplicationsDataApplicationsResponse1 | Array<GetApplicationsDataApplicationsResponse2>;
84
+ export type GetApplicationsAsset = {
85
+ data: GetApplicationsDataApplicationsResponse1 | Array<GetApplicationsDataApplicationsResponse2> | null;
86
+ /**
87
+ * Standard link object
88
+ */
89
+ links?: components.Links | undefined;
90
+ meta?: {
91
+ [k: string]: any;
92
+ } | undefined;
93
+ };
94
+ export type GetApplicationsRelationships = {
95
+ loanDetails?: GetApplicationsLoanDetails | undefined;
96
+ customers?: GetApplicationsCustomers | undefined;
97
+ asset?: GetApplicationsAsset | undefined;
98
+ };
99
+ export type GetApplicationsData = {
100
+ type: GetApplicationsType;
101
+ id: string;
102
+ /**
103
+ * Application resource attributes
104
+ */
105
+ attributes?: components.ApplicationAttributes | undefined;
106
+ relationships?: GetApplicationsRelationships | undefined;
107
+ /**
108
+ * Standard link object
109
+ */
110
+ links?: components.Links | undefined;
111
+ meta?: {
112
+ [k: string]: any;
113
+ } | undefined;
114
+ };
115
+ export type GetApplicationsAttributes = {};
116
+ export type Data2 = {
117
+ type: string;
118
+ id: string;
119
+ };
120
+ export type Data1 = {
121
+ type: string;
122
+ id: string;
123
+ };
124
+ export type GetApplicationsApplicationsData = Data1 | Array<Data2>;
125
+ export type GetApplicationsApplicationsRelationships = {
126
+ data: Data1 | Array<Data2> | null;
127
+ /**
128
+ * Standard link object
129
+ */
130
+ links?: components.Links | undefined;
131
+ meta?: {
132
+ [k: string]: any;
133
+ } | undefined;
134
+ };
135
+ export type GetApplicationsIncluded = {
136
+ type: string;
137
+ id: string;
138
+ attributes?: GetApplicationsAttributes | undefined;
139
+ relationships?: {
140
+ [k: string]: GetApplicationsApplicationsRelationships;
141
+ } | undefined;
142
+ /**
143
+ * Standard link object
144
+ */
145
+ links?: components.Links | undefined;
146
+ meta?: {
147
+ [k: string]: any;
148
+ } | undefined;
149
+ };
150
+ /**
151
+ * The request has succeeded.
152
+ */
153
+ export type GetApplicationsResponseBody = {
154
+ data: GetApplicationsData;
155
+ included?: Array<GetApplicationsIncluded> | undefined;
156
+ /**
157
+ * Standard link object
158
+ */
159
+ links?: components.Links | undefined;
160
+ };
161
+ /** @internal */
162
+ export declare const GetApplicationsRequest$inboundSchema: z.ZodType<GetApplicationsRequest, z.ZodTypeDef, unknown>;
163
+ /** @internal */
164
+ export type GetApplicationsRequest$Outbound = {
165
+ humanId?: string | undefined;
166
+ };
167
+ /** @internal */
168
+ export declare const GetApplicationsRequest$outboundSchema: z.ZodType<GetApplicationsRequest$Outbound, z.ZodTypeDef, GetApplicationsRequest>;
169
+ /**
170
+ * @internal
171
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
172
+ */
173
+ export declare namespace GetApplicationsRequest$ {
174
+ /** @deprecated use `GetApplicationsRequest$inboundSchema` instead. */
175
+ const inboundSchema: z.ZodType<GetApplicationsRequest, z.ZodTypeDef, unknown>;
176
+ /** @deprecated use `GetApplicationsRequest$outboundSchema` instead. */
177
+ const outboundSchema: z.ZodType<GetApplicationsRequest$Outbound, z.ZodTypeDef, GetApplicationsRequest>;
178
+ /** @deprecated use `GetApplicationsRequest$Outbound` instead. */
179
+ type Outbound = GetApplicationsRequest$Outbound;
180
+ }
181
+ export declare function getApplicationsRequestToJSON(getApplicationsRequest: GetApplicationsRequest): string;
182
+ export declare function getApplicationsRequestFromJSON(jsonString: string): SafeParseResult<GetApplicationsRequest, SDKValidationError>;
183
+ /** @internal */
184
+ export declare const GetApplicationsType$inboundSchema: z.ZodNativeEnum<typeof GetApplicationsType>;
185
+ /** @internal */
186
+ export declare const GetApplicationsType$outboundSchema: z.ZodNativeEnum<typeof GetApplicationsType>;
187
+ /**
188
+ * @internal
189
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
190
+ */
191
+ export declare namespace GetApplicationsType$ {
192
+ /** @deprecated use `GetApplicationsType$inboundSchema` instead. */
193
+ const inboundSchema: z.ZodNativeEnum<{
194
+ readonly Applications: "applications";
195
+ }>;
196
+ /** @deprecated use `GetApplicationsType$outboundSchema` instead. */
197
+ const outboundSchema: z.ZodNativeEnum<{
198
+ readonly Applications: "applications";
199
+ }>;
200
+ }
201
+ /** @internal */
202
+ export declare const GetApplicationsDataApplicationsType$inboundSchema: z.ZodNativeEnum<typeof GetApplicationsDataApplicationsType>;
203
+ /** @internal */
204
+ export declare const GetApplicationsDataApplicationsType$outboundSchema: z.ZodNativeEnum<typeof GetApplicationsDataApplicationsType>;
205
+ /**
206
+ * @internal
207
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
208
+ */
209
+ export declare namespace GetApplicationsDataApplicationsType$ {
210
+ /** @deprecated use `GetApplicationsDataApplicationsType$inboundSchema` instead. */
211
+ const inboundSchema: z.ZodNativeEnum<{
212
+ readonly LoanDetails: "loan-details";
213
+ }>;
214
+ /** @deprecated use `GetApplicationsDataApplicationsType$outboundSchema` instead. */
215
+ const outboundSchema: z.ZodNativeEnum<{
216
+ readonly LoanDetails: "loan-details";
217
+ }>;
218
+ }
219
+ /** @internal */
220
+ export declare const GetApplicationsData2$inboundSchema: z.ZodType<GetApplicationsData2, z.ZodTypeDef, unknown>;
221
+ /** @internal */
222
+ export type GetApplicationsData2$Outbound = {
223
+ type: string;
224
+ id: string;
225
+ };
226
+ /** @internal */
227
+ export declare const GetApplicationsData2$outboundSchema: z.ZodType<GetApplicationsData2$Outbound, z.ZodTypeDef, GetApplicationsData2>;
228
+ /**
229
+ * @internal
230
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
231
+ */
232
+ export declare namespace GetApplicationsData2$ {
233
+ /** @deprecated use `GetApplicationsData2$inboundSchema` instead. */
234
+ const inboundSchema: z.ZodType<GetApplicationsData2, z.ZodTypeDef, unknown>;
235
+ /** @deprecated use `GetApplicationsData2$outboundSchema` instead. */
236
+ const outboundSchema: z.ZodType<GetApplicationsData2$Outbound, z.ZodTypeDef, GetApplicationsData2>;
237
+ /** @deprecated use `GetApplicationsData2$Outbound` instead. */
238
+ type Outbound = GetApplicationsData2$Outbound;
239
+ }
240
+ export declare function getApplicationsData2ToJSON(getApplicationsData2: GetApplicationsData2): string;
241
+ export declare function getApplicationsData2FromJSON(jsonString: string): SafeParseResult<GetApplicationsData2, SDKValidationError>;
242
+ /** @internal */
243
+ export declare const GetApplicationsDataType$inboundSchema: z.ZodNativeEnum<typeof GetApplicationsDataType>;
244
+ /** @internal */
245
+ export declare const GetApplicationsDataType$outboundSchema: z.ZodNativeEnum<typeof GetApplicationsDataType>;
246
+ /**
247
+ * @internal
248
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
249
+ */
250
+ export declare namespace GetApplicationsDataType$ {
251
+ /** @deprecated use `GetApplicationsDataType$inboundSchema` instead. */
252
+ const inboundSchema: z.ZodNativeEnum<{
253
+ readonly LoanDetails: "loan-details";
254
+ }>;
255
+ /** @deprecated use `GetApplicationsDataType$outboundSchema` instead. */
256
+ const outboundSchema: z.ZodNativeEnum<{
257
+ readonly LoanDetails: "loan-details";
258
+ }>;
259
+ }
260
+ /** @internal */
261
+ export declare const GetApplicationsData1$inboundSchema: z.ZodType<GetApplicationsData1, z.ZodTypeDef, unknown>;
262
+ /** @internal */
263
+ export type GetApplicationsData1$Outbound = {
264
+ type: string;
265
+ id: string;
266
+ };
267
+ /** @internal */
268
+ export declare const GetApplicationsData1$outboundSchema: z.ZodType<GetApplicationsData1$Outbound, z.ZodTypeDef, GetApplicationsData1>;
269
+ /**
270
+ * @internal
271
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
272
+ */
273
+ export declare namespace GetApplicationsData1$ {
274
+ /** @deprecated use `GetApplicationsData1$inboundSchema` instead. */
275
+ const inboundSchema: z.ZodType<GetApplicationsData1, z.ZodTypeDef, unknown>;
276
+ /** @deprecated use `GetApplicationsData1$outboundSchema` instead. */
277
+ const outboundSchema: z.ZodType<GetApplicationsData1$Outbound, z.ZodTypeDef, GetApplicationsData1>;
278
+ /** @deprecated use `GetApplicationsData1$Outbound` instead. */
279
+ type Outbound = GetApplicationsData1$Outbound;
280
+ }
281
+ export declare function getApplicationsData1ToJSON(getApplicationsData1: GetApplicationsData1): string;
282
+ export declare function getApplicationsData1FromJSON(jsonString: string): SafeParseResult<GetApplicationsData1, SDKValidationError>;
283
+ /** @internal */
284
+ export declare const GetApplicationsApplicationsResponse200Data$inboundSchema: z.ZodType<GetApplicationsApplicationsResponse200Data, z.ZodTypeDef, unknown>;
285
+ /** @internal */
286
+ export type GetApplicationsApplicationsResponse200Data$Outbound = GetApplicationsData1$Outbound | Array<GetApplicationsData2$Outbound>;
287
+ /** @internal */
288
+ export declare const GetApplicationsApplicationsResponse200Data$outboundSchema: z.ZodType<GetApplicationsApplicationsResponse200Data$Outbound, z.ZodTypeDef, GetApplicationsApplicationsResponse200Data>;
289
+ /**
290
+ * @internal
291
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
292
+ */
293
+ export declare namespace GetApplicationsApplicationsResponse200Data$ {
294
+ /** @deprecated use `GetApplicationsApplicationsResponse200Data$inboundSchema` instead. */
295
+ const inboundSchema: z.ZodType<GetApplicationsApplicationsResponse200Data, z.ZodTypeDef, unknown>;
296
+ /** @deprecated use `GetApplicationsApplicationsResponse200Data$outboundSchema` instead. */
297
+ const outboundSchema: z.ZodType<GetApplicationsApplicationsResponse200Data$Outbound, z.ZodTypeDef, GetApplicationsApplicationsResponse200Data>;
298
+ /** @deprecated use `GetApplicationsApplicationsResponse200Data$Outbound` instead. */
299
+ type Outbound = GetApplicationsApplicationsResponse200Data$Outbound;
300
+ }
301
+ export declare function getApplicationsApplicationsResponse200DataToJSON(getApplicationsApplicationsResponse200Data: GetApplicationsApplicationsResponse200Data): string;
302
+ export declare function getApplicationsApplicationsResponse200DataFromJSON(jsonString: string): SafeParseResult<GetApplicationsApplicationsResponse200Data, SDKValidationError>;
303
+ /** @internal */
304
+ export declare const GetApplicationsLoanDetails$inboundSchema: z.ZodType<GetApplicationsLoanDetails, z.ZodTypeDef, unknown>;
305
+ /** @internal */
306
+ export type GetApplicationsLoanDetails$Outbound = {
307
+ data: GetApplicationsData1$Outbound | Array<GetApplicationsData2$Outbound> | null;
308
+ links?: components.Links$Outbound | undefined;
309
+ meta?: {
310
+ [k: string]: any;
311
+ } | undefined;
312
+ };
313
+ /** @internal */
314
+ export declare const GetApplicationsLoanDetails$outboundSchema: z.ZodType<GetApplicationsLoanDetails$Outbound, z.ZodTypeDef, GetApplicationsLoanDetails>;
315
+ /**
316
+ * @internal
317
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
318
+ */
319
+ export declare namespace GetApplicationsLoanDetails$ {
320
+ /** @deprecated use `GetApplicationsLoanDetails$inboundSchema` instead. */
321
+ const inboundSchema: z.ZodType<GetApplicationsLoanDetails, z.ZodTypeDef, unknown>;
322
+ /** @deprecated use `GetApplicationsLoanDetails$outboundSchema` instead. */
323
+ const outboundSchema: z.ZodType<GetApplicationsLoanDetails$Outbound, z.ZodTypeDef, GetApplicationsLoanDetails>;
324
+ /** @deprecated use `GetApplicationsLoanDetails$Outbound` instead. */
325
+ type Outbound = GetApplicationsLoanDetails$Outbound;
326
+ }
327
+ export declare function getApplicationsLoanDetailsToJSON(getApplicationsLoanDetails: GetApplicationsLoanDetails): string;
328
+ export declare function getApplicationsLoanDetailsFromJSON(jsonString: string): SafeParseResult<GetApplicationsLoanDetails, SDKValidationError>;
329
+ /** @internal */
330
+ export declare const GetApplicationsDataApplicationsResponse200Type$inboundSchema: z.ZodNativeEnum<typeof GetApplicationsDataApplicationsResponse200Type>;
331
+ /** @internal */
332
+ export declare const GetApplicationsDataApplicationsResponse200Type$outboundSchema: z.ZodNativeEnum<typeof GetApplicationsDataApplicationsResponse200Type>;
333
+ /**
334
+ * @internal
335
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
336
+ */
337
+ export declare namespace GetApplicationsDataApplicationsResponse200Type$ {
338
+ /** @deprecated use `GetApplicationsDataApplicationsResponse200Type$inboundSchema` instead. */
339
+ const inboundSchema: z.ZodNativeEnum<{
340
+ readonly Customers: "customers";
341
+ }>;
342
+ /** @deprecated use `GetApplicationsDataApplicationsResponse200Type$outboundSchema` instead. */
343
+ const outboundSchema: z.ZodNativeEnum<{
344
+ readonly Customers: "customers";
345
+ }>;
346
+ }
347
+ /** @internal */
348
+ export declare const GetApplicationsDataApplications2$inboundSchema: z.ZodType<GetApplicationsDataApplications2, z.ZodTypeDef, unknown>;
349
+ /** @internal */
350
+ export type GetApplicationsDataApplications2$Outbound = {
351
+ type: string;
352
+ id: string;
353
+ };
354
+ /** @internal */
355
+ export declare const GetApplicationsDataApplications2$outboundSchema: z.ZodType<GetApplicationsDataApplications2$Outbound, z.ZodTypeDef, GetApplicationsDataApplications2>;
356
+ /**
357
+ * @internal
358
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
359
+ */
360
+ export declare namespace GetApplicationsDataApplications2$ {
361
+ /** @deprecated use `GetApplicationsDataApplications2$inboundSchema` instead. */
362
+ const inboundSchema: z.ZodType<GetApplicationsDataApplications2, z.ZodTypeDef, unknown>;
363
+ /** @deprecated use `GetApplicationsDataApplications2$outboundSchema` instead. */
364
+ const outboundSchema: z.ZodType<GetApplicationsDataApplications2$Outbound, z.ZodTypeDef, GetApplicationsDataApplications2>;
365
+ /** @deprecated use `GetApplicationsDataApplications2$Outbound` instead. */
366
+ type Outbound = GetApplicationsDataApplications2$Outbound;
367
+ }
368
+ export declare function getApplicationsDataApplications2ToJSON(getApplicationsDataApplications2: GetApplicationsDataApplications2): string;
369
+ export declare function getApplicationsDataApplications2FromJSON(jsonString: string): SafeParseResult<GetApplicationsDataApplications2, SDKValidationError>;
370
+ /** @internal */
371
+ export declare const GetApplicationsDataApplicationsResponseType$inboundSchema: z.ZodNativeEnum<typeof GetApplicationsDataApplicationsResponseType>;
372
+ /** @internal */
373
+ export declare const GetApplicationsDataApplicationsResponseType$outboundSchema: z.ZodNativeEnum<typeof GetApplicationsDataApplicationsResponseType>;
374
+ /**
375
+ * @internal
376
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
377
+ */
378
+ export declare namespace GetApplicationsDataApplicationsResponseType$ {
379
+ /** @deprecated use `GetApplicationsDataApplicationsResponseType$inboundSchema` instead. */
380
+ const inboundSchema: z.ZodNativeEnum<{
381
+ readonly Customers: "customers";
382
+ }>;
383
+ /** @deprecated use `GetApplicationsDataApplicationsResponseType$outboundSchema` instead. */
384
+ const outboundSchema: z.ZodNativeEnum<{
385
+ readonly Customers: "customers";
386
+ }>;
387
+ }
388
+ /** @internal */
389
+ export declare const GetApplicationsDataApplications1$inboundSchema: z.ZodType<GetApplicationsDataApplications1, z.ZodTypeDef, unknown>;
390
+ /** @internal */
391
+ export type GetApplicationsDataApplications1$Outbound = {
392
+ type: string;
393
+ id: string;
394
+ };
395
+ /** @internal */
396
+ export declare const GetApplicationsDataApplications1$outboundSchema: z.ZodType<GetApplicationsDataApplications1$Outbound, z.ZodTypeDef, GetApplicationsDataApplications1>;
397
+ /**
398
+ * @internal
399
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
400
+ */
401
+ export declare namespace GetApplicationsDataApplications1$ {
402
+ /** @deprecated use `GetApplicationsDataApplications1$inboundSchema` instead. */
403
+ const inboundSchema: z.ZodType<GetApplicationsDataApplications1, z.ZodTypeDef, unknown>;
404
+ /** @deprecated use `GetApplicationsDataApplications1$outboundSchema` instead. */
405
+ const outboundSchema: z.ZodType<GetApplicationsDataApplications1$Outbound, z.ZodTypeDef, GetApplicationsDataApplications1>;
406
+ /** @deprecated use `GetApplicationsDataApplications1$Outbound` instead. */
407
+ type Outbound = GetApplicationsDataApplications1$Outbound;
408
+ }
409
+ export declare function getApplicationsDataApplications1ToJSON(getApplicationsDataApplications1: GetApplicationsDataApplications1): string;
410
+ export declare function getApplicationsDataApplications1FromJSON(jsonString: string): SafeParseResult<GetApplicationsDataApplications1, SDKValidationError>;
411
+ /** @internal */
412
+ export declare const GetApplicationsApplicationsResponse200ApplicationJSONData$inboundSchema: z.ZodType<GetApplicationsApplicationsResponse200ApplicationJSONData, z.ZodTypeDef, unknown>;
413
+ /** @internal */
414
+ export type GetApplicationsApplicationsResponse200ApplicationJSONData$Outbound = GetApplicationsDataApplications1$Outbound | Array<GetApplicationsDataApplications2$Outbound>;
415
+ /** @internal */
416
+ export declare const GetApplicationsApplicationsResponse200ApplicationJSONData$outboundSchema: z.ZodType<GetApplicationsApplicationsResponse200ApplicationJSONData$Outbound, z.ZodTypeDef, GetApplicationsApplicationsResponse200ApplicationJSONData>;
417
+ /**
418
+ * @internal
419
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
420
+ */
421
+ export declare namespace GetApplicationsApplicationsResponse200ApplicationJSONData$ {
422
+ /** @deprecated use `GetApplicationsApplicationsResponse200ApplicationJSONData$inboundSchema` instead. */
423
+ const inboundSchema: z.ZodType<GetApplicationsApplicationsResponse200ApplicationJSONData, z.ZodTypeDef, unknown>;
424
+ /** @deprecated use `GetApplicationsApplicationsResponse200ApplicationJSONData$outboundSchema` instead. */
425
+ const outboundSchema: z.ZodType<GetApplicationsApplicationsResponse200ApplicationJSONData$Outbound, z.ZodTypeDef, GetApplicationsApplicationsResponse200ApplicationJSONData>;
426
+ /** @deprecated use `GetApplicationsApplicationsResponse200ApplicationJSONData$Outbound` instead. */
427
+ type Outbound = GetApplicationsApplicationsResponse200ApplicationJSONData$Outbound;
428
+ }
429
+ export declare function getApplicationsApplicationsResponse200ApplicationJSONDataToJSON(getApplicationsApplicationsResponse200ApplicationJSONData: GetApplicationsApplicationsResponse200ApplicationJSONData): string;
430
+ export declare function getApplicationsApplicationsResponse200ApplicationJSONDataFromJSON(jsonString: string): SafeParseResult<GetApplicationsApplicationsResponse200ApplicationJSONData, SDKValidationError>;
431
+ /** @internal */
432
+ export declare const GetApplicationsCustomers$inboundSchema: z.ZodType<GetApplicationsCustomers, z.ZodTypeDef, unknown>;
433
+ /** @internal */
434
+ export type GetApplicationsCustomers$Outbound = {
435
+ data: GetApplicationsDataApplications1$Outbound | Array<GetApplicationsDataApplications2$Outbound> | null;
436
+ links?: components.Links$Outbound | undefined;
437
+ meta?: {
438
+ [k: string]: any;
439
+ } | undefined;
440
+ };
441
+ /** @internal */
442
+ export declare const GetApplicationsCustomers$outboundSchema: z.ZodType<GetApplicationsCustomers$Outbound, z.ZodTypeDef, GetApplicationsCustomers>;
443
+ /**
444
+ * @internal
445
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
446
+ */
447
+ export declare namespace GetApplicationsCustomers$ {
448
+ /** @deprecated use `GetApplicationsCustomers$inboundSchema` instead. */
449
+ const inboundSchema: z.ZodType<GetApplicationsCustomers, z.ZodTypeDef, unknown>;
450
+ /** @deprecated use `GetApplicationsCustomers$outboundSchema` instead. */
451
+ const outboundSchema: z.ZodType<GetApplicationsCustomers$Outbound, z.ZodTypeDef, GetApplicationsCustomers>;
452
+ /** @deprecated use `GetApplicationsCustomers$Outbound` instead. */
453
+ type Outbound = GetApplicationsCustomers$Outbound;
454
+ }
455
+ export declare function getApplicationsCustomersToJSON(getApplicationsCustomers: GetApplicationsCustomers): string;
456
+ export declare function getApplicationsCustomersFromJSON(jsonString: string): SafeParseResult<GetApplicationsCustomers, SDKValidationError>;
457
+ /** @internal */
458
+ export declare const GetApplicationsDataApplicationsResponse200ApplicationJSONResponseBodyType$inboundSchema: z.ZodNativeEnum<typeof GetApplicationsDataApplicationsResponse200ApplicationJSONResponseBodyType>;
459
+ /** @internal */
460
+ export declare const GetApplicationsDataApplicationsResponse200ApplicationJSONResponseBodyType$outboundSchema: z.ZodNativeEnum<typeof GetApplicationsDataApplicationsResponse200ApplicationJSONResponseBodyType>;
461
+ /**
462
+ * @internal
463
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
464
+ */
465
+ export declare namespace GetApplicationsDataApplicationsResponse200ApplicationJSONResponseBodyType$ {
466
+ /** @deprecated use `GetApplicationsDataApplicationsResponse200ApplicationJSONResponseBodyType$inboundSchema` instead. */
467
+ const inboundSchema: z.ZodNativeEnum<{
468
+ readonly Asset: "asset";
469
+ }>;
470
+ /** @deprecated use `GetApplicationsDataApplicationsResponse200ApplicationJSONResponseBodyType$outboundSchema` instead. */
471
+ const outboundSchema: z.ZodNativeEnum<{
472
+ readonly Asset: "asset";
473
+ }>;
474
+ }
475
+ /** @internal */
476
+ export declare const GetApplicationsDataApplicationsResponse2$inboundSchema: z.ZodType<GetApplicationsDataApplicationsResponse2, z.ZodTypeDef, unknown>;
477
+ /** @internal */
478
+ export type GetApplicationsDataApplicationsResponse2$Outbound = {
479
+ type: string;
480
+ id: string;
481
+ };
482
+ /** @internal */
483
+ export declare const GetApplicationsDataApplicationsResponse2$outboundSchema: z.ZodType<GetApplicationsDataApplicationsResponse2$Outbound, z.ZodTypeDef, GetApplicationsDataApplicationsResponse2>;
484
+ /**
485
+ * @internal
486
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
487
+ */
488
+ export declare namespace GetApplicationsDataApplicationsResponse2$ {
489
+ /** @deprecated use `GetApplicationsDataApplicationsResponse2$inboundSchema` instead. */
490
+ const inboundSchema: z.ZodType<GetApplicationsDataApplicationsResponse2, z.ZodTypeDef, unknown>;
491
+ /** @deprecated use `GetApplicationsDataApplicationsResponse2$outboundSchema` instead. */
492
+ const outboundSchema: z.ZodType<GetApplicationsDataApplicationsResponse2$Outbound, z.ZodTypeDef, GetApplicationsDataApplicationsResponse2>;
493
+ /** @deprecated use `GetApplicationsDataApplicationsResponse2$Outbound` instead. */
494
+ type Outbound = GetApplicationsDataApplicationsResponse2$Outbound;
495
+ }
496
+ export declare function getApplicationsDataApplicationsResponse2ToJSON(getApplicationsDataApplicationsResponse2: GetApplicationsDataApplicationsResponse2): string;
497
+ export declare function getApplicationsDataApplicationsResponse2FromJSON(jsonString: string): SafeParseResult<GetApplicationsDataApplicationsResponse2, SDKValidationError>;
498
+ /** @internal */
499
+ export declare const GetApplicationsDataApplicationsResponse200ApplicationJSONType$inboundSchema: z.ZodNativeEnum<typeof GetApplicationsDataApplicationsResponse200ApplicationJSONType>;
500
+ /** @internal */
501
+ export declare const GetApplicationsDataApplicationsResponse200ApplicationJSONType$outboundSchema: z.ZodNativeEnum<typeof GetApplicationsDataApplicationsResponse200ApplicationJSONType>;
502
+ /**
503
+ * @internal
504
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
505
+ */
506
+ export declare namespace GetApplicationsDataApplicationsResponse200ApplicationJSONType$ {
507
+ /** @deprecated use `GetApplicationsDataApplicationsResponse200ApplicationJSONType$inboundSchema` instead. */
508
+ const inboundSchema: z.ZodNativeEnum<{
509
+ readonly Asset: "asset";
510
+ }>;
511
+ /** @deprecated use `GetApplicationsDataApplicationsResponse200ApplicationJSONType$outboundSchema` instead. */
512
+ const outboundSchema: z.ZodNativeEnum<{
513
+ readonly Asset: "asset";
514
+ }>;
515
+ }
516
+ /** @internal */
517
+ export declare const GetApplicationsDataApplicationsResponse1$inboundSchema: z.ZodType<GetApplicationsDataApplicationsResponse1, z.ZodTypeDef, unknown>;
518
+ /** @internal */
519
+ export type GetApplicationsDataApplicationsResponse1$Outbound = {
520
+ type: string;
521
+ id: string;
522
+ };
523
+ /** @internal */
524
+ export declare const GetApplicationsDataApplicationsResponse1$outboundSchema: z.ZodType<GetApplicationsDataApplicationsResponse1$Outbound, z.ZodTypeDef, GetApplicationsDataApplicationsResponse1>;
525
+ /**
526
+ * @internal
527
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
528
+ */
529
+ export declare namespace GetApplicationsDataApplicationsResponse1$ {
530
+ /** @deprecated use `GetApplicationsDataApplicationsResponse1$inboundSchema` instead. */
531
+ const inboundSchema: z.ZodType<GetApplicationsDataApplicationsResponse1, z.ZodTypeDef, unknown>;
532
+ /** @deprecated use `GetApplicationsDataApplicationsResponse1$outboundSchema` instead. */
533
+ const outboundSchema: z.ZodType<GetApplicationsDataApplicationsResponse1$Outbound, z.ZodTypeDef, GetApplicationsDataApplicationsResponse1>;
534
+ /** @deprecated use `GetApplicationsDataApplicationsResponse1$Outbound` instead. */
535
+ type Outbound = GetApplicationsDataApplicationsResponse1$Outbound;
536
+ }
537
+ export declare function getApplicationsDataApplicationsResponse1ToJSON(getApplicationsDataApplicationsResponse1: GetApplicationsDataApplicationsResponse1): string;
538
+ export declare function getApplicationsDataApplicationsResponse1FromJSON(jsonString: string): SafeParseResult<GetApplicationsDataApplicationsResponse1, SDKValidationError>;
539
+ /** @internal */
540
+ export declare const GetApplicationsApplicationsResponseData$inboundSchema: z.ZodType<GetApplicationsApplicationsResponseData, z.ZodTypeDef, unknown>;
541
+ /** @internal */
542
+ export type GetApplicationsApplicationsResponseData$Outbound = GetApplicationsDataApplicationsResponse1$Outbound | Array<GetApplicationsDataApplicationsResponse2$Outbound>;
543
+ /** @internal */
544
+ export declare const GetApplicationsApplicationsResponseData$outboundSchema: z.ZodType<GetApplicationsApplicationsResponseData$Outbound, z.ZodTypeDef, GetApplicationsApplicationsResponseData>;
545
+ /**
546
+ * @internal
547
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
548
+ */
549
+ export declare namespace GetApplicationsApplicationsResponseData$ {
550
+ /** @deprecated use `GetApplicationsApplicationsResponseData$inboundSchema` instead. */
551
+ const inboundSchema: z.ZodType<GetApplicationsApplicationsResponseData, z.ZodTypeDef, unknown>;
552
+ /** @deprecated use `GetApplicationsApplicationsResponseData$outboundSchema` instead. */
553
+ const outboundSchema: z.ZodType<GetApplicationsApplicationsResponseData$Outbound, z.ZodTypeDef, GetApplicationsApplicationsResponseData>;
554
+ /** @deprecated use `GetApplicationsApplicationsResponseData$Outbound` instead. */
555
+ type Outbound = GetApplicationsApplicationsResponseData$Outbound;
556
+ }
557
+ export declare function getApplicationsApplicationsResponseDataToJSON(getApplicationsApplicationsResponseData: GetApplicationsApplicationsResponseData): string;
558
+ export declare function getApplicationsApplicationsResponseDataFromJSON(jsonString: string): SafeParseResult<GetApplicationsApplicationsResponseData, SDKValidationError>;
559
+ /** @internal */
560
+ export declare const GetApplicationsAsset$inboundSchema: z.ZodType<GetApplicationsAsset, z.ZodTypeDef, unknown>;
561
+ /** @internal */
562
+ export type GetApplicationsAsset$Outbound = {
563
+ data: GetApplicationsDataApplicationsResponse1$Outbound | Array<GetApplicationsDataApplicationsResponse2$Outbound> | null;
564
+ links?: components.Links$Outbound | undefined;
565
+ meta?: {
566
+ [k: string]: any;
567
+ } | undefined;
568
+ };
569
+ /** @internal */
570
+ export declare const GetApplicationsAsset$outboundSchema: z.ZodType<GetApplicationsAsset$Outbound, z.ZodTypeDef, GetApplicationsAsset>;
571
+ /**
572
+ * @internal
573
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
574
+ */
575
+ export declare namespace GetApplicationsAsset$ {
576
+ /** @deprecated use `GetApplicationsAsset$inboundSchema` instead. */
577
+ const inboundSchema: z.ZodType<GetApplicationsAsset, z.ZodTypeDef, unknown>;
578
+ /** @deprecated use `GetApplicationsAsset$outboundSchema` instead. */
579
+ const outboundSchema: z.ZodType<GetApplicationsAsset$Outbound, z.ZodTypeDef, GetApplicationsAsset>;
580
+ /** @deprecated use `GetApplicationsAsset$Outbound` instead. */
581
+ type Outbound = GetApplicationsAsset$Outbound;
582
+ }
583
+ export declare function getApplicationsAssetToJSON(getApplicationsAsset: GetApplicationsAsset): string;
584
+ export declare function getApplicationsAssetFromJSON(jsonString: string): SafeParseResult<GetApplicationsAsset, SDKValidationError>;
585
+ /** @internal */
586
+ export declare const GetApplicationsRelationships$inboundSchema: z.ZodType<GetApplicationsRelationships, z.ZodTypeDef, unknown>;
587
+ /** @internal */
588
+ export type GetApplicationsRelationships$Outbound = {
589
+ loanDetails?: GetApplicationsLoanDetails$Outbound | undefined;
590
+ customers?: GetApplicationsCustomers$Outbound | undefined;
591
+ asset?: GetApplicationsAsset$Outbound | undefined;
592
+ };
593
+ /** @internal */
594
+ export declare const GetApplicationsRelationships$outboundSchema: z.ZodType<GetApplicationsRelationships$Outbound, z.ZodTypeDef, GetApplicationsRelationships>;
595
+ /**
596
+ * @internal
597
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
598
+ */
599
+ export declare namespace GetApplicationsRelationships$ {
600
+ /** @deprecated use `GetApplicationsRelationships$inboundSchema` instead. */
601
+ const inboundSchema: z.ZodType<GetApplicationsRelationships, z.ZodTypeDef, unknown>;
602
+ /** @deprecated use `GetApplicationsRelationships$outboundSchema` instead. */
603
+ const outboundSchema: z.ZodType<GetApplicationsRelationships$Outbound, z.ZodTypeDef, GetApplicationsRelationships>;
604
+ /** @deprecated use `GetApplicationsRelationships$Outbound` instead. */
605
+ type Outbound = GetApplicationsRelationships$Outbound;
606
+ }
607
+ export declare function getApplicationsRelationshipsToJSON(getApplicationsRelationships: GetApplicationsRelationships): string;
608
+ export declare function getApplicationsRelationshipsFromJSON(jsonString: string): SafeParseResult<GetApplicationsRelationships, SDKValidationError>;
609
+ /** @internal */
610
+ export declare const GetApplicationsData$inboundSchema: z.ZodType<GetApplicationsData, z.ZodTypeDef, unknown>;
611
+ /** @internal */
612
+ export type GetApplicationsData$Outbound = {
613
+ type: string;
614
+ id: string;
615
+ attributes?: components.ApplicationAttributes$Outbound | undefined;
616
+ relationships?: GetApplicationsRelationships$Outbound | undefined;
617
+ links?: components.Links$Outbound | undefined;
618
+ meta?: {
619
+ [k: string]: any;
620
+ } | undefined;
621
+ };
622
+ /** @internal */
623
+ export declare const GetApplicationsData$outboundSchema: z.ZodType<GetApplicationsData$Outbound, z.ZodTypeDef, GetApplicationsData>;
624
+ /**
625
+ * @internal
626
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
627
+ */
628
+ export declare namespace GetApplicationsData$ {
629
+ /** @deprecated use `GetApplicationsData$inboundSchema` instead. */
630
+ const inboundSchema: z.ZodType<GetApplicationsData, z.ZodTypeDef, unknown>;
631
+ /** @deprecated use `GetApplicationsData$outboundSchema` instead. */
632
+ const outboundSchema: z.ZodType<GetApplicationsData$Outbound, z.ZodTypeDef, GetApplicationsData>;
633
+ /** @deprecated use `GetApplicationsData$Outbound` instead. */
634
+ type Outbound = GetApplicationsData$Outbound;
635
+ }
636
+ export declare function getApplicationsDataToJSON(getApplicationsData: GetApplicationsData): string;
637
+ export declare function getApplicationsDataFromJSON(jsonString: string): SafeParseResult<GetApplicationsData, SDKValidationError>;
638
+ /** @internal */
639
+ export declare const GetApplicationsAttributes$inboundSchema: z.ZodType<GetApplicationsAttributes, z.ZodTypeDef, unknown>;
640
+ /** @internal */
641
+ export type GetApplicationsAttributes$Outbound = {};
642
+ /** @internal */
643
+ export declare const GetApplicationsAttributes$outboundSchema: z.ZodType<GetApplicationsAttributes$Outbound, z.ZodTypeDef, GetApplicationsAttributes>;
644
+ /**
645
+ * @internal
646
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
647
+ */
648
+ export declare namespace GetApplicationsAttributes$ {
649
+ /** @deprecated use `GetApplicationsAttributes$inboundSchema` instead. */
650
+ const inboundSchema: z.ZodType<GetApplicationsAttributes, z.ZodTypeDef, unknown>;
651
+ /** @deprecated use `GetApplicationsAttributes$outboundSchema` instead. */
652
+ const outboundSchema: z.ZodType<GetApplicationsAttributes$Outbound, z.ZodTypeDef, GetApplicationsAttributes>;
653
+ /** @deprecated use `GetApplicationsAttributes$Outbound` instead. */
654
+ type Outbound = GetApplicationsAttributes$Outbound;
655
+ }
656
+ export declare function getApplicationsAttributesToJSON(getApplicationsAttributes: GetApplicationsAttributes): string;
657
+ export declare function getApplicationsAttributesFromJSON(jsonString: string): SafeParseResult<GetApplicationsAttributes, SDKValidationError>;
658
+ /** @internal */
659
+ export declare const Data2$inboundSchema: z.ZodType<Data2, z.ZodTypeDef, unknown>;
660
+ /** @internal */
661
+ export type Data2$Outbound = {
662
+ type: string;
663
+ id: string;
664
+ };
665
+ /** @internal */
666
+ export declare const Data2$outboundSchema: z.ZodType<Data2$Outbound, z.ZodTypeDef, Data2>;
667
+ /**
668
+ * @internal
669
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
670
+ */
671
+ export declare namespace Data2$ {
672
+ /** @deprecated use `Data2$inboundSchema` instead. */
673
+ const inboundSchema: z.ZodType<Data2, z.ZodTypeDef, unknown>;
674
+ /** @deprecated use `Data2$outboundSchema` instead. */
675
+ const outboundSchema: z.ZodType<Data2$Outbound, z.ZodTypeDef, Data2>;
676
+ /** @deprecated use `Data2$Outbound` instead. */
677
+ type Outbound = Data2$Outbound;
678
+ }
679
+ export declare function data2ToJSON(data2: Data2): string;
680
+ export declare function data2FromJSON(jsonString: string): SafeParseResult<Data2, SDKValidationError>;
681
+ /** @internal */
682
+ export declare const Data1$inboundSchema: z.ZodType<Data1, z.ZodTypeDef, unknown>;
683
+ /** @internal */
684
+ export type Data1$Outbound = {
685
+ type: string;
686
+ id: string;
687
+ };
688
+ /** @internal */
689
+ export declare const Data1$outboundSchema: z.ZodType<Data1$Outbound, z.ZodTypeDef, Data1>;
690
+ /**
691
+ * @internal
692
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
693
+ */
694
+ export declare namespace Data1$ {
695
+ /** @deprecated use `Data1$inboundSchema` instead. */
696
+ const inboundSchema: z.ZodType<Data1, z.ZodTypeDef, unknown>;
697
+ /** @deprecated use `Data1$outboundSchema` instead. */
698
+ const outboundSchema: z.ZodType<Data1$Outbound, z.ZodTypeDef, Data1>;
699
+ /** @deprecated use `Data1$Outbound` instead. */
700
+ type Outbound = Data1$Outbound;
701
+ }
702
+ export declare function data1ToJSON(data1: Data1): string;
703
+ export declare function data1FromJSON(jsonString: string): SafeParseResult<Data1, SDKValidationError>;
704
+ /** @internal */
705
+ export declare const GetApplicationsApplicationsData$inboundSchema: z.ZodType<GetApplicationsApplicationsData, z.ZodTypeDef, unknown>;
706
+ /** @internal */
707
+ export type GetApplicationsApplicationsData$Outbound = Data1$Outbound | Array<Data2$Outbound>;
708
+ /** @internal */
709
+ export declare const GetApplicationsApplicationsData$outboundSchema: z.ZodType<GetApplicationsApplicationsData$Outbound, z.ZodTypeDef, GetApplicationsApplicationsData>;
710
+ /**
711
+ * @internal
712
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
713
+ */
714
+ export declare namespace GetApplicationsApplicationsData$ {
715
+ /** @deprecated use `GetApplicationsApplicationsData$inboundSchema` instead. */
716
+ const inboundSchema: z.ZodType<GetApplicationsApplicationsData, z.ZodTypeDef, unknown>;
717
+ /** @deprecated use `GetApplicationsApplicationsData$outboundSchema` instead. */
718
+ const outboundSchema: z.ZodType<GetApplicationsApplicationsData$Outbound, z.ZodTypeDef, GetApplicationsApplicationsData>;
719
+ /** @deprecated use `GetApplicationsApplicationsData$Outbound` instead. */
720
+ type Outbound = GetApplicationsApplicationsData$Outbound;
721
+ }
722
+ export declare function getApplicationsApplicationsDataToJSON(getApplicationsApplicationsData: GetApplicationsApplicationsData): string;
723
+ export declare function getApplicationsApplicationsDataFromJSON(jsonString: string): SafeParseResult<GetApplicationsApplicationsData, SDKValidationError>;
724
+ /** @internal */
725
+ export declare const GetApplicationsApplicationsRelationships$inboundSchema: z.ZodType<GetApplicationsApplicationsRelationships, z.ZodTypeDef, unknown>;
726
+ /** @internal */
727
+ export type GetApplicationsApplicationsRelationships$Outbound = {
728
+ data: Data1$Outbound | Array<Data2$Outbound> | null;
729
+ links?: components.Links$Outbound | undefined;
730
+ meta?: {
731
+ [k: string]: any;
732
+ } | undefined;
733
+ };
734
+ /** @internal */
735
+ export declare const GetApplicationsApplicationsRelationships$outboundSchema: z.ZodType<GetApplicationsApplicationsRelationships$Outbound, z.ZodTypeDef, GetApplicationsApplicationsRelationships>;
736
+ /**
737
+ * @internal
738
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
739
+ */
740
+ export declare namespace GetApplicationsApplicationsRelationships$ {
741
+ /** @deprecated use `GetApplicationsApplicationsRelationships$inboundSchema` instead. */
742
+ const inboundSchema: z.ZodType<GetApplicationsApplicationsRelationships, z.ZodTypeDef, unknown>;
743
+ /** @deprecated use `GetApplicationsApplicationsRelationships$outboundSchema` instead. */
744
+ const outboundSchema: z.ZodType<GetApplicationsApplicationsRelationships$Outbound, z.ZodTypeDef, GetApplicationsApplicationsRelationships>;
745
+ /** @deprecated use `GetApplicationsApplicationsRelationships$Outbound` instead. */
746
+ type Outbound = GetApplicationsApplicationsRelationships$Outbound;
747
+ }
748
+ export declare function getApplicationsApplicationsRelationshipsToJSON(getApplicationsApplicationsRelationships: GetApplicationsApplicationsRelationships): string;
749
+ export declare function getApplicationsApplicationsRelationshipsFromJSON(jsonString: string): SafeParseResult<GetApplicationsApplicationsRelationships, SDKValidationError>;
750
+ /** @internal */
751
+ export declare const GetApplicationsIncluded$inboundSchema: z.ZodType<GetApplicationsIncluded, z.ZodTypeDef, unknown>;
752
+ /** @internal */
753
+ export type GetApplicationsIncluded$Outbound = {
754
+ type: string;
755
+ id: string;
756
+ attributes?: GetApplicationsAttributes$Outbound | undefined;
757
+ relationships?: {
758
+ [k: string]: GetApplicationsApplicationsRelationships$Outbound;
759
+ } | undefined;
760
+ links?: components.Links$Outbound | undefined;
761
+ meta?: {
762
+ [k: string]: any;
763
+ } | undefined;
764
+ };
765
+ /** @internal */
766
+ export declare const GetApplicationsIncluded$outboundSchema: z.ZodType<GetApplicationsIncluded$Outbound, z.ZodTypeDef, GetApplicationsIncluded>;
767
+ /**
768
+ * @internal
769
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
770
+ */
771
+ export declare namespace GetApplicationsIncluded$ {
772
+ /** @deprecated use `GetApplicationsIncluded$inboundSchema` instead. */
773
+ const inboundSchema: z.ZodType<GetApplicationsIncluded, z.ZodTypeDef, unknown>;
774
+ /** @deprecated use `GetApplicationsIncluded$outboundSchema` instead. */
775
+ const outboundSchema: z.ZodType<GetApplicationsIncluded$Outbound, z.ZodTypeDef, GetApplicationsIncluded>;
776
+ /** @deprecated use `GetApplicationsIncluded$Outbound` instead. */
777
+ type Outbound = GetApplicationsIncluded$Outbound;
778
+ }
779
+ export declare function getApplicationsIncludedToJSON(getApplicationsIncluded: GetApplicationsIncluded): string;
780
+ export declare function getApplicationsIncludedFromJSON(jsonString: string): SafeParseResult<GetApplicationsIncluded, SDKValidationError>;
781
+ /** @internal */
782
+ export declare const GetApplicationsResponseBody$inboundSchema: z.ZodType<GetApplicationsResponseBody, z.ZodTypeDef, unknown>;
783
+ /** @internal */
784
+ export type GetApplicationsResponseBody$Outbound = {
785
+ data: GetApplicationsData$Outbound;
786
+ included?: Array<GetApplicationsIncluded$Outbound> | undefined;
787
+ links?: components.Links$Outbound | undefined;
788
+ };
789
+ /** @internal */
790
+ export declare const GetApplicationsResponseBody$outboundSchema: z.ZodType<GetApplicationsResponseBody$Outbound, z.ZodTypeDef, GetApplicationsResponseBody>;
791
+ /**
792
+ * @internal
793
+ * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module.
794
+ */
795
+ export declare namespace GetApplicationsResponseBody$ {
796
+ /** @deprecated use `GetApplicationsResponseBody$inboundSchema` instead. */
797
+ const inboundSchema: z.ZodType<GetApplicationsResponseBody, z.ZodTypeDef, unknown>;
798
+ /** @deprecated use `GetApplicationsResponseBody$outboundSchema` instead. */
799
+ const outboundSchema: z.ZodType<GetApplicationsResponseBody$Outbound, z.ZodTypeDef, GetApplicationsResponseBody>;
800
+ /** @deprecated use `GetApplicationsResponseBody$Outbound` instead. */
801
+ type Outbound = GetApplicationsResponseBody$Outbound;
802
+ }
803
+ export declare function getApplicationsResponseBodyToJSON(getApplicationsResponseBody: GetApplicationsResponseBody): string;
804
+ export declare function getApplicationsResponseBodyFromJSON(jsonString: string): SafeParseResult<GetApplicationsResponseBody, SDKValidationError>;
805
+ //# sourceMappingURL=getapplications.d.ts.map