@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 GetApplicationRequest = {
7
+ id: string;
8
+ };
9
+ export declare const GetApplicationType: {
10
+ readonly Applications: "applications";
11
+ };
12
+ export type GetApplicationType = ClosedEnum<typeof GetApplicationType>;
13
+ export declare const GetApplicationDataApplicationsType: {
14
+ readonly LoanDetails: "loan-details";
15
+ };
16
+ export type GetApplicationDataApplicationsType = ClosedEnum<typeof GetApplicationDataApplicationsType>;
17
+ export type GetApplicationDataApplicationsResponse2002 = {
18
+ type: GetApplicationDataApplicationsType;
19
+ id: string;
20
+ };
21
+ export declare const GetApplicationDataType: {
22
+ readonly LoanDetails: "loan-details";
23
+ };
24
+ export type GetApplicationDataType = ClosedEnum<typeof GetApplicationDataType>;
25
+ export type GetApplicationDataApplicationsResponse2001 = {
26
+ type: GetApplicationDataType;
27
+ id: string;
28
+ };
29
+ export type GetApplicationApplicationsResponse200Data = GetApplicationDataApplicationsResponse2001 | Array<GetApplicationDataApplicationsResponse2002>;
30
+ export type GetApplicationLoanDetails = {
31
+ data: GetApplicationDataApplicationsResponse2001 | Array<GetApplicationDataApplicationsResponse2002> | 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 GetApplicationDataApplicationsResponse200Type: {
41
+ readonly Customers: "customers";
42
+ };
43
+ export type GetApplicationDataApplicationsResponse200Type = ClosedEnum<typeof GetApplicationDataApplicationsResponse200Type>;
44
+ export type GetApplicationDataApplications2 = {
45
+ type: GetApplicationDataApplicationsResponse200Type;
46
+ id: string;
47
+ };
48
+ export declare const GetApplicationDataApplicationsResponseType: {
49
+ readonly Customers: "customers";
50
+ };
51
+ export type GetApplicationDataApplicationsResponseType = ClosedEnum<typeof GetApplicationDataApplicationsResponseType>;
52
+ export type GetApplicationDataApplications1 = {
53
+ type: GetApplicationDataApplicationsResponseType;
54
+ id: string;
55
+ };
56
+ export type GetApplicationApplicationsResponse200ApplicationJSONData = GetApplicationDataApplications1 | Array<GetApplicationDataApplications2>;
57
+ export type GetApplicationCustomers = {
58
+ data: GetApplicationDataApplications1 | Array<GetApplicationDataApplications2> | 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 GetApplicationDataApplicationsResponse200ApplicationJSONResponseBodyType: {
68
+ readonly Asset: "asset";
69
+ };
70
+ export type GetApplicationDataApplicationsResponse200ApplicationJSONResponseBodyType = ClosedEnum<typeof GetApplicationDataApplicationsResponse200ApplicationJSONResponseBodyType>;
71
+ export type GetApplicationDataApplicationsResponse2 = {
72
+ type: GetApplicationDataApplicationsResponse200ApplicationJSONResponseBodyType;
73
+ id: string;
74
+ };
75
+ export declare const GetApplicationDataApplicationsResponse200ApplicationJSONType: {
76
+ readonly Asset: "asset";
77
+ };
78
+ export type GetApplicationDataApplicationsResponse200ApplicationJSONType = ClosedEnum<typeof GetApplicationDataApplicationsResponse200ApplicationJSONType>;
79
+ export type GetApplicationDataApplicationsResponse1 = {
80
+ type: GetApplicationDataApplicationsResponse200ApplicationJSONType;
81
+ id: string;
82
+ };
83
+ export type GetApplicationApplicationsResponseData = GetApplicationDataApplicationsResponse1 | Array<GetApplicationDataApplicationsResponse2>;
84
+ export type GetApplicationAsset = {
85
+ data: GetApplicationDataApplicationsResponse1 | Array<GetApplicationDataApplicationsResponse2> | null;
86
+ /**
87
+ * Standard link object
88
+ */
89
+ links?: components.Links | undefined;
90
+ meta?: {
91
+ [k: string]: any;
92
+ } | undefined;
93
+ };
94
+ export type GetApplicationRelationships = {
95
+ loanDetails?: GetApplicationLoanDetails | undefined;
96
+ customers?: GetApplicationCustomers | undefined;
97
+ asset?: GetApplicationAsset | undefined;
98
+ };
99
+ export type GetApplicationData = {
100
+ type: GetApplicationType;
101
+ id: string;
102
+ /**
103
+ * Application resource attributes
104
+ */
105
+ attributes?: components.ApplicationAttributes | undefined;
106
+ relationships?: GetApplicationRelationships | undefined;
107
+ /**
108
+ * Standard link object
109
+ */
110
+ links?: components.Links | undefined;
111
+ meta?: {
112
+ [k: string]: any;
113
+ } | undefined;
114
+ };
115
+ export type GetApplicationAttributes = {};
116
+ export type GetApplicationData2 = {
117
+ type: string;
118
+ id: string;
119
+ };
120
+ export type GetApplicationData1 = {
121
+ type: string;
122
+ id: string;
123
+ };
124
+ export type GetApplicationApplicationsData = GetApplicationData1 | Array<GetApplicationData2>;
125
+ export type GetApplicationApplicationsRelationships = {
126
+ data: GetApplicationData1 | Array<GetApplicationData2> | null;
127
+ /**
128
+ * Standard link object
129
+ */
130
+ links?: components.Links | undefined;
131
+ meta?: {
132
+ [k: string]: any;
133
+ } | undefined;
134
+ };
135
+ export type GetApplicationIncluded = {
136
+ type: string;
137
+ id: string;
138
+ attributes?: GetApplicationAttributes | undefined;
139
+ relationships?: {
140
+ [k: string]: GetApplicationApplicationsRelationships;
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 GetApplicationResponseBody = {
154
+ data: GetApplicationData;
155
+ included?: Array<GetApplicationIncluded> | undefined;
156
+ /**
157
+ * Standard link object
158
+ */
159
+ links?: components.Links | undefined;
160
+ };
161
+ /** @internal */
162
+ export declare const GetApplicationRequest$inboundSchema: z.ZodType<GetApplicationRequest, z.ZodTypeDef, unknown>;
163
+ /** @internal */
164
+ export type GetApplicationRequest$Outbound = {
165
+ id: string;
166
+ };
167
+ /** @internal */
168
+ export declare const GetApplicationRequest$outboundSchema: z.ZodType<GetApplicationRequest$Outbound, z.ZodTypeDef, GetApplicationRequest>;
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 GetApplicationRequest$ {
174
+ /** @deprecated use `GetApplicationRequest$inboundSchema` instead. */
175
+ const inboundSchema: z.ZodType<GetApplicationRequest, z.ZodTypeDef, unknown>;
176
+ /** @deprecated use `GetApplicationRequest$outboundSchema` instead. */
177
+ const outboundSchema: z.ZodType<GetApplicationRequest$Outbound, z.ZodTypeDef, GetApplicationRequest>;
178
+ /** @deprecated use `GetApplicationRequest$Outbound` instead. */
179
+ type Outbound = GetApplicationRequest$Outbound;
180
+ }
181
+ export declare function getApplicationRequestToJSON(getApplicationRequest: GetApplicationRequest): string;
182
+ export declare function getApplicationRequestFromJSON(jsonString: string): SafeParseResult<GetApplicationRequest, SDKValidationError>;
183
+ /** @internal */
184
+ export declare const GetApplicationType$inboundSchema: z.ZodNativeEnum<typeof GetApplicationType>;
185
+ /** @internal */
186
+ export declare const GetApplicationType$outboundSchema: z.ZodNativeEnum<typeof GetApplicationType>;
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 GetApplicationType$ {
192
+ /** @deprecated use `GetApplicationType$inboundSchema` instead. */
193
+ const inboundSchema: z.ZodNativeEnum<{
194
+ readonly Applications: "applications";
195
+ }>;
196
+ /** @deprecated use `GetApplicationType$outboundSchema` instead. */
197
+ const outboundSchema: z.ZodNativeEnum<{
198
+ readonly Applications: "applications";
199
+ }>;
200
+ }
201
+ /** @internal */
202
+ export declare const GetApplicationDataApplicationsType$inboundSchema: z.ZodNativeEnum<typeof GetApplicationDataApplicationsType>;
203
+ /** @internal */
204
+ export declare const GetApplicationDataApplicationsType$outboundSchema: z.ZodNativeEnum<typeof GetApplicationDataApplicationsType>;
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 GetApplicationDataApplicationsType$ {
210
+ /** @deprecated use `GetApplicationDataApplicationsType$inboundSchema` instead. */
211
+ const inboundSchema: z.ZodNativeEnum<{
212
+ readonly LoanDetails: "loan-details";
213
+ }>;
214
+ /** @deprecated use `GetApplicationDataApplicationsType$outboundSchema` instead. */
215
+ const outboundSchema: z.ZodNativeEnum<{
216
+ readonly LoanDetails: "loan-details";
217
+ }>;
218
+ }
219
+ /** @internal */
220
+ export declare const GetApplicationDataApplicationsResponse2002$inboundSchema: z.ZodType<GetApplicationDataApplicationsResponse2002, z.ZodTypeDef, unknown>;
221
+ /** @internal */
222
+ export type GetApplicationDataApplicationsResponse2002$Outbound = {
223
+ type: string;
224
+ id: string;
225
+ };
226
+ /** @internal */
227
+ export declare const GetApplicationDataApplicationsResponse2002$outboundSchema: z.ZodType<GetApplicationDataApplicationsResponse2002$Outbound, z.ZodTypeDef, GetApplicationDataApplicationsResponse2002>;
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 GetApplicationDataApplicationsResponse2002$ {
233
+ /** @deprecated use `GetApplicationDataApplicationsResponse2002$inboundSchema` instead. */
234
+ const inboundSchema: z.ZodType<GetApplicationDataApplicationsResponse2002, z.ZodTypeDef, unknown>;
235
+ /** @deprecated use `GetApplicationDataApplicationsResponse2002$outboundSchema` instead. */
236
+ const outboundSchema: z.ZodType<GetApplicationDataApplicationsResponse2002$Outbound, z.ZodTypeDef, GetApplicationDataApplicationsResponse2002>;
237
+ /** @deprecated use `GetApplicationDataApplicationsResponse2002$Outbound` instead. */
238
+ type Outbound = GetApplicationDataApplicationsResponse2002$Outbound;
239
+ }
240
+ export declare function getApplicationDataApplicationsResponse2002ToJSON(getApplicationDataApplicationsResponse2002: GetApplicationDataApplicationsResponse2002): string;
241
+ export declare function getApplicationDataApplicationsResponse2002FromJSON(jsonString: string): SafeParseResult<GetApplicationDataApplicationsResponse2002, SDKValidationError>;
242
+ /** @internal */
243
+ export declare const GetApplicationDataType$inboundSchema: z.ZodNativeEnum<typeof GetApplicationDataType>;
244
+ /** @internal */
245
+ export declare const GetApplicationDataType$outboundSchema: z.ZodNativeEnum<typeof GetApplicationDataType>;
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 GetApplicationDataType$ {
251
+ /** @deprecated use `GetApplicationDataType$inboundSchema` instead. */
252
+ const inboundSchema: z.ZodNativeEnum<{
253
+ readonly LoanDetails: "loan-details";
254
+ }>;
255
+ /** @deprecated use `GetApplicationDataType$outboundSchema` instead. */
256
+ const outboundSchema: z.ZodNativeEnum<{
257
+ readonly LoanDetails: "loan-details";
258
+ }>;
259
+ }
260
+ /** @internal */
261
+ export declare const GetApplicationDataApplicationsResponse2001$inboundSchema: z.ZodType<GetApplicationDataApplicationsResponse2001, z.ZodTypeDef, unknown>;
262
+ /** @internal */
263
+ export type GetApplicationDataApplicationsResponse2001$Outbound = {
264
+ type: string;
265
+ id: string;
266
+ };
267
+ /** @internal */
268
+ export declare const GetApplicationDataApplicationsResponse2001$outboundSchema: z.ZodType<GetApplicationDataApplicationsResponse2001$Outbound, z.ZodTypeDef, GetApplicationDataApplicationsResponse2001>;
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 GetApplicationDataApplicationsResponse2001$ {
274
+ /** @deprecated use `GetApplicationDataApplicationsResponse2001$inboundSchema` instead. */
275
+ const inboundSchema: z.ZodType<GetApplicationDataApplicationsResponse2001, z.ZodTypeDef, unknown>;
276
+ /** @deprecated use `GetApplicationDataApplicationsResponse2001$outboundSchema` instead. */
277
+ const outboundSchema: z.ZodType<GetApplicationDataApplicationsResponse2001$Outbound, z.ZodTypeDef, GetApplicationDataApplicationsResponse2001>;
278
+ /** @deprecated use `GetApplicationDataApplicationsResponse2001$Outbound` instead. */
279
+ type Outbound = GetApplicationDataApplicationsResponse2001$Outbound;
280
+ }
281
+ export declare function getApplicationDataApplicationsResponse2001ToJSON(getApplicationDataApplicationsResponse2001: GetApplicationDataApplicationsResponse2001): string;
282
+ export declare function getApplicationDataApplicationsResponse2001FromJSON(jsonString: string): SafeParseResult<GetApplicationDataApplicationsResponse2001, SDKValidationError>;
283
+ /** @internal */
284
+ export declare const GetApplicationApplicationsResponse200Data$inboundSchema: z.ZodType<GetApplicationApplicationsResponse200Data, z.ZodTypeDef, unknown>;
285
+ /** @internal */
286
+ export type GetApplicationApplicationsResponse200Data$Outbound = GetApplicationDataApplicationsResponse2001$Outbound | Array<GetApplicationDataApplicationsResponse2002$Outbound>;
287
+ /** @internal */
288
+ export declare const GetApplicationApplicationsResponse200Data$outboundSchema: z.ZodType<GetApplicationApplicationsResponse200Data$Outbound, z.ZodTypeDef, GetApplicationApplicationsResponse200Data>;
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 GetApplicationApplicationsResponse200Data$ {
294
+ /** @deprecated use `GetApplicationApplicationsResponse200Data$inboundSchema` instead. */
295
+ const inboundSchema: z.ZodType<GetApplicationApplicationsResponse200Data, z.ZodTypeDef, unknown>;
296
+ /** @deprecated use `GetApplicationApplicationsResponse200Data$outboundSchema` instead. */
297
+ const outboundSchema: z.ZodType<GetApplicationApplicationsResponse200Data$Outbound, z.ZodTypeDef, GetApplicationApplicationsResponse200Data>;
298
+ /** @deprecated use `GetApplicationApplicationsResponse200Data$Outbound` instead. */
299
+ type Outbound = GetApplicationApplicationsResponse200Data$Outbound;
300
+ }
301
+ export declare function getApplicationApplicationsResponse200DataToJSON(getApplicationApplicationsResponse200Data: GetApplicationApplicationsResponse200Data): string;
302
+ export declare function getApplicationApplicationsResponse200DataFromJSON(jsonString: string): SafeParseResult<GetApplicationApplicationsResponse200Data, SDKValidationError>;
303
+ /** @internal */
304
+ export declare const GetApplicationLoanDetails$inboundSchema: z.ZodType<GetApplicationLoanDetails, z.ZodTypeDef, unknown>;
305
+ /** @internal */
306
+ export type GetApplicationLoanDetails$Outbound = {
307
+ data: GetApplicationDataApplicationsResponse2001$Outbound | Array<GetApplicationDataApplicationsResponse2002$Outbound> | null;
308
+ links?: components.Links$Outbound | undefined;
309
+ meta?: {
310
+ [k: string]: any;
311
+ } | undefined;
312
+ };
313
+ /** @internal */
314
+ export declare const GetApplicationLoanDetails$outboundSchema: z.ZodType<GetApplicationLoanDetails$Outbound, z.ZodTypeDef, GetApplicationLoanDetails>;
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 GetApplicationLoanDetails$ {
320
+ /** @deprecated use `GetApplicationLoanDetails$inboundSchema` instead. */
321
+ const inboundSchema: z.ZodType<GetApplicationLoanDetails, z.ZodTypeDef, unknown>;
322
+ /** @deprecated use `GetApplicationLoanDetails$outboundSchema` instead. */
323
+ const outboundSchema: z.ZodType<GetApplicationLoanDetails$Outbound, z.ZodTypeDef, GetApplicationLoanDetails>;
324
+ /** @deprecated use `GetApplicationLoanDetails$Outbound` instead. */
325
+ type Outbound = GetApplicationLoanDetails$Outbound;
326
+ }
327
+ export declare function getApplicationLoanDetailsToJSON(getApplicationLoanDetails: GetApplicationLoanDetails): string;
328
+ export declare function getApplicationLoanDetailsFromJSON(jsonString: string): SafeParseResult<GetApplicationLoanDetails, SDKValidationError>;
329
+ /** @internal */
330
+ export declare const GetApplicationDataApplicationsResponse200Type$inboundSchema: z.ZodNativeEnum<typeof GetApplicationDataApplicationsResponse200Type>;
331
+ /** @internal */
332
+ export declare const GetApplicationDataApplicationsResponse200Type$outboundSchema: z.ZodNativeEnum<typeof GetApplicationDataApplicationsResponse200Type>;
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 GetApplicationDataApplicationsResponse200Type$ {
338
+ /** @deprecated use `GetApplicationDataApplicationsResponse200Type$inboundSchema` instead. */
339
+ const inboundSchema: z.ZodNativeEnum<{
340
+ readonly Customers: "customers";
341
+ }>;
342
+ /** @deprecated use `GetApplicationDataApplicationsResponse200Type$outboundSchema` instead. */
343
+ const outboundSchema: z.ZodNativeEnum<{
344
+ readonly Customers: "customers";
345
+ }>;
346
+ }
347
+ /** @internal */
348
+ export declare const GetApplicationDataApplications2$inboundSchema: z.ZodType<GetApplicationDataApplications2, z.ZodTypeDef, unknown>;
349
+ /** @internal */
350
+ export type GetApplicationDataApplications2$Outbound = {
351
+ type: string;
352
+ id: string;
353
+ };
354
+ /** @internal */
355
+ export declare const GetApplicationDataApplications2$outboundSchema: z.ZodType<GetApplicationDataApplications2$Outbound, z.ZodTypeDef, GetApplicationDataApplications2>;
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 GetApplicationDataApplications2$ {
361
+ /** @deprecated use `GetApplicationDataApplications2$inboundSchema` instead. */
362
+ const inboundSchema: z.ZodType<GetApplicationDataApplications2, z.ZodTypeDef, unknown>;
363
+ /** @deprecated use `GetApplicationDataApplications2$outboundSchema` instead. */
364
+ const outboundSchema: z.ZodType<GetApplicationDataApplications2$Outbound, z.ZodTypeDef, GetApplicationDataApplications2>;
365
+ /** @deprecated use `GetApplicationDataApplications2$Outbound` instead. */
366
+ type Outbound = GetApplicationDataApplications2$Outbound;
367
+ }
368
+ export declare function getApplicationDataApplications2ToJSON(getApplicationDataApplications2: GetApplicationDataApplications2): string;
369
+ export declare function getApplicationDataApplications2FromJSON(jsonString: string): SafeParseResult<GetApplicationDataApplications2, SDKValidationError>;
370
+ /** @internal */
371
+ export declare const GetApplicationDataApplicationsResponseType$inboundSchema: z.ZodNativeEnum<typeof GetApplicationDataApplicationsResponseType>;
372
+ /** @internal */
373
+ export declare const GetApplicationDataApplicationsResponseType$outboundSchema: z.ZodNativeEnum<typeof GetApplicationDataApplicationsResponseType>;
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 GetApplicationDataApplicationsResponseType$ {
379
+ /** @deprecated use `GetApplicationDataApplicationsResponseType$inboundSchema` instead. */
380
+ const inboundSchema: z.ZodNativeEnum<{
381
+ readonly Customers: "customers";
382
+ }>;
383
+ /** @deprecated use `GetApplicationDataApplicationsResponseType$outboundSchema` instead. */
384
+ const outboundSchema: z.ZodNativeEnum<{
385
+ readonly Customers: "customers";
386
+ }>;
387
+ }
388
+ /** @internal */
389
+ export declare const GetApplicationDataApplications1$inboundSchema: z.ZodType<GetApplicationDataApplications1, z.ZodTypeDef, unknown>;
390
+ /** @internal */
391
+ export type GetApplicationDataApplications1$Outbound = {
392
+ type: string;
393
+ id: string;
394
+ };
395
+ /** @internal */
396
+ export declare const GetApplicationDataApplications1$outboundSchema: z.ZodType<GetApplicationDataApplications1$Outbound, z.ZodTypeDef, GetApplicationDataApplications1>;
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 GetApplicationDataApplications1$ {
402
+ /** @deprecated use `GetApplicationDataApplications1$inboundSchema` instead. */
403
+ const inboundSchema: z.ZodType<GetApplicationDataApplications1, z.ZodTypeDef, unknown>;
404
+ /** @deprecated use `GetApplicationDataApplications1$outboundSchema` instead. */
405
+ const outboundSchema: z.ZodType<GetApplicationDataApplications1$Outbound, z.ZodTypeDef, GetApplicationDataApplications1>;
406
+ /** @deprecated use `GetApplicationDataApplications1$Outbound` instead. */
407
+ type Outbound = GetApplicationDataApplications1$Outbound;
408
+ }
409
+ export declare function getApplicationDataApplications1ToJSON(getApplicationDataApplications1: GetApplicationDataApplications1): string;
410
+ export declare function getApplicationDataApplications1FromJSON(jsonString: string): SafeParseResult<GetApplicationDataApplications1, SDKValidationError>;
411
+ /** @internal */
412
+ export declare const GetApplicationApplicationsResponse200ApplicationJSONData$inboundSchema: z.ZodType<GetApplicationApplicationsResponse200ApplicationJSONData, z.ZodTypeDef, unknown>;
413
+ /** @internal */
414
+ export type GetApplicationApplicationsResponse200ApplicationJSONData$Outbound = GetApplicationDataApplications1$Outbound | Array<GetApplicationDataApplications2$Outbound>;
415
+ /** @internal */
416
+ export declare const GetApplicationApplicationsResponse200ApplicationJSONData$outboundSchema: z.ZodType<GetApplicationApplicationsResponse200ApplicationJSONData$Outbound, z.ZodTypeDef, GetApplicationApplicationsResponse200ApplicationJSONData>;
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 GetApplicationApplicationsResponse200ApplicationJSONData$ {
422
+ /** @deprecated use `GetApplicationApplicationsResponse200ApplicationJSONData$inboundSchema` instead. */
423
+ const inboundSchema: z.ZodType<GetApplicationApplicationsResponse200ApplicationJSONData, z.ZodTypeDef, unknown>;
424
+ /** @deprecated use `GetApplicationApplicationsResponse200ApplicationJSONData$outboundSchema` instead. */
425
+ const outboundSchema: z.ZodType<GetApplicationApplicationsResponse200ApplicationJSONData$Outbound, z.ZodTypeDef, GetApplicationApplicationsResponse200ApplicationJSONData>;
426
+ /** @deprecated use `GetApplicationApplicationsResponse200ApplicationJSONData$Outbound` instead. */
427
+ type Outbound = GetApplicationApplicationsResponse200ApplicationJSONData$Outbound;
428
+ }
429
+ export declare function getApplicationApplicationsResponse200ApplicationJSONDataToJSON(getApplicationApplicationsResponse200ApplicationJSONData: GetApplicationApplicationsResponse200ApplicationJSONData): string;
430
+ export declare function getApplicationApplicationsResponse200ApplicationJSONDataFromJSON(jsonString: string): SafeParseResult<GetApplicationApplicationsResponse200ApplicationJSONData, SDKValidationError>;
431
+ /** @internal */
432
+ export declare const GetApplicationCustomers$inboundSchema: z.ZodType<GetApplicationCustomers, z.ZodTypeDef, unknown>;
433
+ /** @internal */
434
+ export type GetApplicationCustomers$Outbound = {
435
+ data: GetApplicationDataApplications1$Outbound | Array<GetApplicationDataApplications2$Outbound> | null;
436
+ links?: components.Links$Outbound | undefined;
437
+ meta?: {
438
+ [k: string]: any;
439
+ } | undefined;
440
+ };
441
+ /** @internal */
442
+ export declare const GetApplicationCustomers$outboundSchema: z.ZodType<GetApplicationCustomers$Outbound, z.ZodTypeDef, GetApplicationCustomers>;
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 GetApplicationCustomers$ {
448
+ /** @deprecated use `GetApplicationCustomers$inboundSchema` instead. */
449
+ const inboundSchema: z.ZodType<GetApplicationCustomers, z.ZodTypeDef, unknown>;
450
+ /** @deprecated use `GetApplicationCustomers$outboundSchema` instead. */
451
+ const outboundSchema: z.ZodType<GetApplicationCustomers$Outbound, z.ZodTypeDef, GetApplicationCustomers>;
452
+ /** @deprecated use `GetApplicationCustomers$Outbound` instead. */
453
+ type Outbound = GetApplicationCustomers$Outbound;
454
+ }
455
+ export declare function getApplicationCustomersToJSON(getApplicationCustomers: GetApplicationCustomers): string;
456
+ export declare function getApplicationCustomersFromJSON(jsonString: string): SafeParseResult<GetApplicationCustomers, SDKValidationError>;
457
+ /** @internal */
458
+ export declare const GetApplicationDataApplicationsResponse200ApplicationJSONResponseBodyType$inboundSchema: z.ZodNativeEnum<typeof GetApplicationDataApplicationsResponse200ApplicationJSONResponseBodyType>;
459
+ /** @internal */
460
+ export declare const GetApplicationDataApplicationsResponse200ApplicationJSONResponseBodyType$outboundSchema: z.ZodNativeEnum<typeof GetApplicationDataApplicationsResponse200ApplicationJSONResponseBodyType>;
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 GetApplicationDataApplicationsResponse200ApplicationJSONResponseBodyType$ {
466
+ /** @deprecated use `GetApplicationDataApplicationsResponse200ApplicationJSONResponseBodyType$inboundSchema` instead. */
467
+ const inboundSchema: z.ZodNativeEnum<{
468
+ readonly Asset: "asset";
469
+ }>;
470
+ /** @deprecated use `GetApplicationDataApplicationsResponse200ApplicationJSONResponseBodyType$outboundSchema` instead. */
471
+ const outboundSchema: z.ZodNativeEnum<{
472
+ readonly Asset: "asset";
473
+ }>;
474
+ }
475
+ /** @internal */
476
+ export declare const GetApplicationDataApplicationsResponse2$inboundSchema: z.ZodType<GetApplicationDataApplicationsResponse2, z.ZodTypeDef, unknown>;
477
+ /** @internal */
478
+ export type GetApplicationDataApplicationsResponse2$Outbound = {
479
+ type: string;
480
+ id: string;
481
+ };
482
+ /** @internal */
483
+ export declare const GetApplicationDataApplicationsResponse2$outboundSchema: z.ZodType<GetApplicationDataApplicationsResponse2$Outbound, z.ZodTypeDef, GetApplicationDataApplicationsResponse2>;
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 GetApplicationDataApplicationsResponse2$ {
489
+ /** @deprecated use `GetApplicationDataApplicationsResponse2$inboundSchema` instead. */
490
+ const inboundSchema: z.ZodType<GetApplicationDataApplicationsResponse2, z.ZodTypeDef, unknown>;
491
+ /** @deprecated use `GetApplicationDataApplicationsResponse2$outboundSchema` instead. */
492
+ const outboundSchema: z.ZodType<GetApplicationDataApplicationsResponse2$Outbound, z.ZodTypeDef, GetApplicationDataApplicationsResponse2>;
493
+ /** @deprecated use `GetApplicationDataApplicationsResponse2$Outbound` instead. */
494
+ type Outbound = GetApplicationDataApplicationsResponse2$Outbound;
495
+ }
496
+ export declare function getApplicationDataApplicationsResponse2ToJSON(getApplicationDataApplicationsResponse2: GetApplicationDataApplicationsResponse2): string;
497
+ export declare function getApplicationDataApplicationsResponse2FromJSON(jsonString: string): SafeParseResult<GetApplicationDataApplicationsResponse2, SDKValidationError>;
498
+ /** @internal */
499
+ export declare const GetApplicationDataApplicationsResponse200ApplicationJSONType$inboundSchema: z.ZodNativeEnum<typeof GetApplicationDataApplicationsResponse200ApplicationJSONType>;
500
+ /** @internal */
501
+ export declare const GetApplicationDataApplicationsResponse200ApplicationJSONType$outboundSchema: z.ZodNativeEnum<typeof GetApplicationDataApplicationsResponse200ApplicationJSONType>;
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 GetApplicationDataApplicationsResponse200ApplicationJSONType$ {
507
+ /** @deprecated use `GetApplicationDataApplicationsResponse200ApplicationJSONType$inboundSchema` instead. */
508
+ const inboundSchema: z.ZodNativeEnum<{
509
+ readonly Asset: "asset";
510
+ }>;
511
+ /** @deprecated use `GetApplicationDataApplicationsResponse200ApplicationJSONType$outboundSchema` instead. */
512
+ const outboundSchema: z.ZodNativeEnum<{
513
+ readonly Asset: "asset";
514
+ }>;
515
+ }
516
+ /** @internal */
517
+ export declare const GetApplicationDataApplicationsResponse1$inboundSchema: z.ZodType<GetApplicationDataApplicationsResponse1, z.ZodTypeDef, unknown>;
518
+ /** @internal */
519
+ export type GetApplicationDataApplicationsResponse1$Outbound = {
520
+ type: string;
521
+ id: string;
522
+ };
523
+ /** @internal */
524
+ export declare const GetApplicationDataApplicationsResponse1$outboundSchema: z.ZodType<GetApplicationDataApplicationsResponse1$Outbound, z.ZodTypeDef, GetApplicationDataApplicationsResponse1>;
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 GetApplicationDataApplicationsResponse1$ {
530
+ /** @deprecated use `GetApplicationDataApplicationsResponse1$inboundSchema` instead. */
531
+ const inboundSchema: z.ZodType<GetApplicationDataApplicationsResponse1, z.ZodTypeDef, unknown>;
532
+ /** @deprecated use `GetApplicationDataApplicationsResponse1$outboundSchema` instead. */
533
+ const outboundSchema: z.ZodType<GetApplicationDataApplicationsResponse1$Outbound, z.ZodTypeDef, GetApplicationDataApplicationsResponse1>;
534
+ /** @deprecated use `GetApplicationDataApplicationsResponse1$Outbound` instead. */
535
+ type Outbound = GetApplicationDataApplicationsResponse1$Outbound;
536
+ }
537
+ export declare function getApplicationDataApplicationsResponse1ToJSON(getApplicationDataApplicationsResponse1: GetApplicationDataApplicationsResponse1): string;
538
+ export declare function getApplicationDataApplicationsResponse1FromJSON(jsonString: string): SafeParseResult<GetApplicationDataApplicationsResponse1, SDKValidationError>;
539
+ /** @internal */
540
+ export declare const GetApplicationApplicationsResponseData$inboundSchema: z.ZodType<GetApplicationApplicationsResponseData, z.ZodTypeDef, unknown>;
541
+ /** @internal */
542
+ export type GetApplicationApplicationsResponseData$Outbound = GetApplicationDataApplicationsResponse1$Outbound | Array<GetApplicationDataApplicationsResponse2$Outbound>;
543
+ /** @internal */
544
+ export declare const GetApplicationApplicationsResponseData$outboundSchema: z.ZodType<GetApplicationApplicationsResponseData$Outbound, z.ZodTypeDef, GetApplicationApplicationsResponseData>;
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 GetApplicationApplicationsResponseData$ {
550
+ /** @deprecated use `GetApplicationApplicationsResponseData$inboundSchema` instead. */
551
+ const inboundSchema: z.ZodType<GetApplicationApplicationsResponseData, z.ZodTypeDef, unknown>;
552
+ /** @deprecated use `GetApplicationApplicationsResponseData$outboundSchema` instead. */
553
+ const outboundSchema: z.ZodType<GetApplicationApplicationsResponseData$Outbound, z.ZodTypeDef, GetApplicationApplicationsResponseData>;
554
+ /** @deprecated use `GetApplicationApplicationsResponseData$Outbound` instead. */
555
+ type Outbound = GetApplicationApplicationsResponseData$Outbound;
556
+ }
557
+ export declare function getApplicationApplicationsResponseDataToJSON(getApplicationApplicationsResponseData: GetApplicationApplicationsResponseData): string;
558
+ export declare function getApplicationApplicationsResponseDataFromJSON(jsonString: string): SafeParseResult<GetApplicationApplicationsResponseData, SDKValidationError>;
559
+ /** @internal */
560
+ export declare const GetApplicationAsset$inboundSchema: z.ZodType<GetApplicationAsset, z.ZodTypeDef, unknown>;
561
+ /** @internal */
562
+ export type GetApplicationAsset$Outbound = {
563
+ data: GetApplicationDataApplicationsResponse1$Outbound | Array<GetApplicationDataApplicationsResponse2$Outbound> | null;
564
+ links?: components.Links$Outbound | undefined;
565
+ meta?: {
566
+ [k: string]: any;
567
+ } | undefined;
568
+ };
569
+ /** @internal */
570
+ export declare const GetApplicationAsset$outboundSchema: z.ZodType<GetApplicationAsset$Outbound, z.ZodTypeDef, GetApplicationAsset>;
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 GetApplicationAsset$ {
576
+ /** @deprecated use `GetApplicationAsset$inboundSchema` instead. */
577
+ const inboundSchema: z.ZodType<GetApplicationAsset, z.ZodTypeDef, unknown>;
578
+ /** @deprecated use `GetApplicationAsset$outboundSchema` instead. */
579
+ const outboundSchema: z.ZodType<GetApplicationAsset$Outbound, z.ZodTypeDef, GetApplicationAsset>;
580
+ /** @deprecated use `GetApplicationAsset$Outbound` instead. */
581
+ type Outbound = GetApplicationAsset$Outbound;
582
+ }
583
+ export declare function getApplicationAssetToJSON(getApplicationAsset: GetApplicationAsset): string;
584
+ export declare function getApplicationAssetFromJSON(jsonString: string): SafeParseResult<GetApplicationAsset, SDKValidationError>;
585
+ /** @internal */
586
+ export declare const GetApplicationRelationships$inboundSchema: z.ZodType<GetApplicationRelationships, z.ZodTypeDef, unknown>;
587
+ /** @internal */
588
+ export type GetApplicationRelationships$Outbound = {
589
+ loanDetails?: GetApplicationLoanDetails$Outbound | undefined;
590
+ customers?: GetApplicationCustomers$Outbound | undefined;
591
+ asset?: GetApplicationAsset$Outbound | undefined;
592
+ };
593
+ /** @internal */
594
+ export declare const GetApplicationRelationships$outboundSchema: z.ZodType<GetApplicationRelationships$Outbound, z.ZodTypeDef, GetApplicationRelationships>;
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 GetApplicationRelationships$ {
600
+ /** @deprecated use `GetApplicationRelationships$inboundSchema` instead. */
601
+ const inboundSchema: z.ZodType<GetApplicationRelationships, z.ZodTypeDef, unknown>;
602
+ /** @deprecated use `GetApplicationRelationships$outboundSchema` instead. */
603
+ const outboundSchema: z.ZodType<GetApplicationRelationships$Outbound, z.ZodTypeDef, GetApplicationRelationships>;
604
+ /** @deprecated use `GetApplicationRelationships$Outbound` instead. */
605
+ type Outbound = GetApplicationRelationships$Outbound;
606
+ }
607
+ export declare function getApplicationRelationshipsToJSON(getApplicationRelationships: GetApplicationRelationships): string;
608
+ export declare function getApplicationRelationshipsFromJSON(jsonString: string): SafeParseResult<GetApplicationRelationships, SDKValidationError>;
609
+ /** @internal */
610
+ export declare const GetApplicationData$inboundSchema: z.ZodType<GetApplicationData, z.ZodTypeDef, unknown>;
611
+ /** @internal */
612
+ export type GetApplicationData$Outbound = {
613
+ type: string;
614
+ id: string;
615
+ attributes?: components.ApplicationAttributes$Outbound | undefined;
616
+ relationships?: GetApplicationRelationships$Outbound | undefined;
617
+ links?: components.Links$Outbound | undefined;
618
+ meta?: {
619
+ [k: string]: any;
620
+ } | undefined;
621
+ };
622
+ /** @internal */
623
+ export declare const GetApplicationData$outboundSchema: z.ZodType<GetApplicationData$Outbound, z.ZodTypeDef, GetApplicationData>;
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 GetApplicationData$ {
629
+ /** @deprecated use `GetApplicationData$inboundSchema` instead. */
630
+ const inboundSchema: z.ZodType<GetApplicationData, z.ZodTypeDef, unknown>;
631
+ /** @deprecated use `GetApplicationData$outboundSchema` instead. */
632
+ const outboundSchema: z.ZodType<GetApplicationData$Outbound, z.ZodTypeDef, GetApplicationData>;
633
+ /** @deprecated use `GetApplicationData$Outbound` instead. */
634
+ type Outbound = GetApplicationData$Outbound;
635
+ }
636
+ export declare function getApplicationDataToJSON(getApplicationData: GetApplicationData): string;
637
+ export declare function getApplicationDataFromJSON(jsonString: string): SafeParseResult<GetApplicationData, SDKValidationError>;
638
+ /** @internal */
639
+ export declare const GetApplicationAttributes$inboundSchema: z.ZodType<GetApplicationAttributes, z.ZodTypeDef, unknown>;
640
+ /** @internal */
641
+ export type GetApplicationAttributes$Outbound = {};
642
+ /** @internal */
643
+ export declare const GetApplicationAttributes$outboundSchema: z.ZodType<GetApplicationAttributes$Outbound, z.ZodTypeDef, GetApplicationAttributes>;
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 GetApplicationAttributes$ {
649
+ /** @deprecated use `GetApplicationAttributes$inboundSchema` instead. */
650
+ const inboundSchema: z.ZodType<GetApplicationAttributes, z.ZodTypeDef, unknown>;
651
+ /** @deprecated use `GetApplicationAttributes$outboundSchema` instead. */
652
+ const outboundSchema: z.ZodType<GetApplicationAttributes$Outbound, z.ZodTypeDef, GetApplicationAttributes>;
653
+ /** @deprecated use `GetApplicationAttributes$Outbound` instead. */
654
+ type Outbound = GetApplicationAttributes$Outbound;
655
+ }
656
+ export declare function getApplicationAttributesToJSON(getApplicationAttributes: GetApplicationAttributes): string;
657
+ export declare function getApplicationAttributesFromJSON(jsonString: string): SafeParseResult<GetApplicationAttributes, SDKValidationError>;
658
+ /** @internal */
659
+ export declare const GetApplicationData2$inboundSchema: z.ZodType<GetApplicationData2, z.ZodTypeDef, unknown>;
660
+ /** @internal */
661
+ export type GetApplicationData2$Outbound = {
662
+ type: string;
663
+ id: string;
664
+ };
665
+ /** @internal */
666
+ export declare const GetApplicationData2$outboundSchema: z.ZodType<GetApplicationData2$Outbound, z.ZodTypeDef, GetApplicationData2>;
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 GetApplicationData2$ {
672
+ /** @deprecated use `GetApplicationData2$inboundSchema` instead. */
673
+ const inboundSchema: z.ZodType<GetApplicationData2, z.ZodTypeDef, unknown>;
674
+ /** @deprecated use `GetApplicationData2$outboundSchema` instead. */
675
+ const outboundSchema: z.ZodType<GetApplicationData2$Outbound, z.ZodTypeDef, GetApplicationData2>;
676
+ /** @deprecated use `GetApplicationData2$Outbound` instead. */
677
+ type Outbound = GetApplicationData2$Outbound;
678
+ }
679
+ export declare function getApplicationData2ToJSON(getApplicationData2: GetApplicationData2): string;
680
+ export declare function getApplicationData2FromJSON(jsonString: string): SafeParseResult<GetApplicationData2, SDKValidationError>;
681
+ /** @internal */
682
+ export declare const GetApplicationData1$inboundSchema: z.ZodType<GetApplicationData1, z.ZodTypeDef, unknown>;
683
+ /** @internal */
684
+ export type GetApplicationData1$Outbound = {
685
+ type: string;
686
+ id: string;
687
+ };
688
+ /** @internal */
689
+ export declare const GetApplicationData1$outboundSchema: z.ZodType<GetApplicationData1$Outbound, z.ZodTypeDef, GetApplicationData1>;
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 GetApplicationData1$ {
695
+ /** @deprecated use `GetApplicationData1$inboundSchema` instead. */
696
+ const inboundSchema: z.ZodType<GetApplicationData1, z.ZodTypeDef, unknown>;
697
+ /** @deprecated use `GetApplicationData1$outboundSchema` instead. */
698
+ const outboundSchema: z.ZodType<GetApplicationData1$Outbound, z.ZodTypeDef, GetApplicationData1>;
699
+ /** @deprecated use `GetApplicationData1$Outbound` instead. */
700
+ type Outbound = GetApplicationData1$Outbound;
701
+ }
702
+ export declare function getApplicationData1ToJSON(getApplicationData1: GetApplicationData1): string;
703
+ export declare function getApplicationData1FromJSON(jsonString: string): SafeParseResult<GetApplicationData1, SDKValidationError>;
704
+ /** @internal */
705
+ export declare const GetApplicationApplicationsData$inboundSchema: z.ZodType<GetApplicationApplicationsData, z.ZodTypeDef, unknown>;
706
+ /** @internal */
707
+ export type GetApplicationApplicationsData$Outbound = GetApplicationData1$Outbound | Array<GetApplicationData2$Outbound>;
708
+ /** @internal */
709
+ export declare const GetApplicationApplicationsData$outboundSchema: z.ZodType<GetApplicationApplicationsData$Outbound, z.ZodTypeDef, GetApplicationApplicationsData>;
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 GetApplicationApplicationsData$ {
715
+ /** @deprecated use `GetApplicationApplicationsData$inboundSchema` instead. */
716
+ const inboundSchema: z.ZodType<GetApplicationApplicationsData, z.ZodTypeDef, unknown>;
717
+ /** @deprecated use `GetApplicationApplicationsData$outboundSchema` instead. */
718
+ const outboundSchema: z.ZodType<GetApplicationApplicationsData$Outbound, z.ZodTypeDef, GetApplicationApplicationsData>;
719
+ /** @deprecated use `GetApplicationApplicationsData$Outbound` instead. */
720
+ type Outbound = GetApplicationApplicationsData$Outbound;
721
+ }
722
+ export declare function getApplicationApplicationsDataToJSON(getApplicationApplicationsData: GetApplicationApplicationsData): string;
723
+ export declare function getApplicationApplicationsDataFromJSON(jsonString: string): SafeParseResult<GetApplicationApplicationsData, SDKValidationError>;
724
+ /** @internal */
725
+ export declare const GetApplicationApplicationsRelationships$inboundSchema: z.ZodType<GetApplicationApplicationsRelationships, z.ZodTypeDef, unknown>;
726
+ /** @internal */
727
+ export type GetApplicationApplicationsRelationships$Outbound = {
728
+ data: GetApplicationData1$Outbound | Array<GetApplicationData2$Outbound> | null;
729
+ links?: components.Links$Outbound | undefined;
730
+ meta?: {
731
+ [k: string]: any;
732
+ } | undefined;
733
+ };
734
+ /** @internal */
735
+ export declare const GetApplicationApplicationsRelationships$outboundSchema: z.ZodType<GetApplicationApplicationsRelationships$Outbound, z.ZodTypeDef, GetApplicationApplicationsRelationships>;
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 GetApplicationApplicationsRelationships$ {
741
+ /** @deprecated use `GetApplicationApplicationsRelationships$inboundSchema` instead. */
742
+ const inboundSchema: z.ZodType<GetApplicationApplicationsRelationships, z.ZodTypeDef, unknown>;
743
+ /** @deprecated use `GetApplicationApplicationsRelationships$outboundSchema` instead. */
744
+ const outboundSchema: z.ZodType<GetApplicationApplicationsRelationships$Outbound, z.ZodTypeDef, GetApplicationApplicationsRelationships>;
745
+ /** @deprecated use `GetApplicationApplicationsRelationships$Outbound` instead. */
746
+ type Outbound = GetApplicationApplicationsRelationships$Outbound;
747
+ }
748
+ export declare function getApplicationApplicationsRelationshipsToJSON(getApplicationApplicationsRelationships: GetApplicationApplicationsRelationships): string;
749
+ export declare function getApplicationApplicationsRelationshipsFromJSON(jsonString: string): SafeParseResult<GetApplicationApplicationsRelationships, SDKValidationError>;
750
+ /** @internal */
751
+ export declare const GetApplicationIncluded$inboundSchema: z.ZodType<GetApplicationIncluded, z.ZodTypeDef, unknown>;
752
+ /** @internal */
753
+ export type GetApplicationIncluded$Outbound = {
754
+ type: string;
755
+ id: string;
756
+ attributes?: GetApplicationAttributes$Outbound | undefined;
757
+ relationships?: {
758
+ [k: string]: GetApplicationApplicationsRelationships$Outbound;
759
+ } | undefined;
760
+ links?: components.Links$Outbound | undefined;
761
+ meta?: {
762
+ [k: string]: any;
763
+ } | undefined;
764
+ };
765
+ /** @internal */
766
+ export declare const GetApplicationIncluded$outboundSchema: z.ZodType<GetApplicationIncluded$Outbound, z.ZodTypeDef, GetApplicationIncluded>;
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 GetApplicationIncluded$ {
772
+ /** @deprecated use `GetApplicationIncluded$inboundSchema` instead. */
773
+ const inboundSchema: z.ZodType<GetApplicationIncluded, z.ZodTypeDef, unknown>;
774
+ /** @deprecated use `GetApplicationIncluded$outboundSchema` instead. */
775
+ const outboundSchema: z.ZodType<GetApplicationIncluded$Outbound, z.ZodTypeDef, GetApplicationIncluded>;
776
+ /** @deprecated use `GetApplicationIncluded$Outbound` instead. */
777
+ type Outbound = GetApplicationIncluded$Outbound;
778
+ }
779
+ export declare function getApplicationIncludedToJSON(getApplicationIncluded: GetApplicationIncluded): string;
780
+ export declare function getApplicationIncludedFromJSON(jsonString: string): SafeParseResult<GetApplicationIncluded, SDKValidationError>;
781
+ /** @internal */
782
+ export declare const GetApplicationResponseBody$inboundSchema: z.ZodType<GetApplicationResponseBody, z.ZodTypeDef, unknown>;
783
+ /** @internal */
784
+ export type GetApplicationResponseBody$Outbound = {
785
+ data: GetApplicationData$Outbound;
786
+ included?: Array<GetApplicationIncluded$Outbound> | undefined;
787
+ links?: components.Links$Outbound | undefined;
788
+ };
789
+ /** @internal */
790
+ export declare const GetApplicationResponseBody$outboundSchema: z.ZodType<GetApplicationResponseBody$Outbound, z.ZodTypeDef, GetApplicationResponseBody>;
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 GetApplicationResponseBody$ {
796
+ /** @deprecated use `GetApplicationResponseBody$inboundSchema` instead. */
797
+ const inboundSchema: z.ZodType<GetApplicationResponseBody, z.ZodTypeDef, unknown>;
798
+ /** @deprecated use `GetApplicationResponseBody$outboundSchema` instead. */
799
+ const outboundSchema: z.ZodType<GetApplicationResponseBody$Outbound, z.ZodTypeDef, GetApplicationResponseBody>;
800
+ /** @deprecated use `GetApplicationResponseBody$Outbound` instead. */
801
+ type Outbound = GetApplicationResponseBody$Outbound;
802
+ }
803
+ export declare function getApplicationResponseBodyToJSON(getApplicationResponseBody: GetApplicationResponseBody): string;
804
+ export declare function getApplicationResponseBodyFromJSON(jsonString: string): SafeParseResult<GetApplicationResponseBody, SDKValidationError>;
805
+ //# sourceMappingURL=getapplication.d.ts.map