@gbg/go-core 0.0.1-alpha.16

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 (734) hide show
  1. package/.devcontainer/devcontainer.json +45 -0
  2. package/FUNCTIONS.md +91 -0
  3. package/README.md +557 -0
  4. package/RUNTIMES.md +48 -0
  5. package/_speakeasy/.github/action-inputs-config.json +53 -0
  6. package/_speakeasy/.github/action-security-config.json +88 -0
  7. package/dist/commonjs/core.d.ts +10 -0
  8. package/dist/commonjs/core.d.ts.map +1 -0
  9. package/dist/commonjs/core.js +17 -0
  10. package/dist/commonjs/core.js.map +1 -0
  11. package/dist/commonjs/funcs/devices-add.d.ts +17 -0
  12. package/dist/commonjs/funcs/devices-add.d.ts.map +1 -0
  13. package/dist/commonjs/funcs/devices-add.js +117 -0
  14. package/dist/commonjs/funcs/devices-add.js.map +1 -0
  15. package/dist/commonjs/funcs/devices-connect.d.ts +17 -0
  16. package/dist/commonjs/funcs/devices-connect.d.ts.map +1 -0
  17. package/dist/commonjs/funcs/devices-connect.js +121 -0
  18. package/dist/commonjs/funcs/devices-connect.js.map +1 -0
  19. package/dist/commonjs/funcs/health-get.d.ts +17 -0
  20. package/dist/commonjs/funcs/health-get.d.ts.map +1 -0
  21. package/dist/commonjs/funcs/health-get.js +104 -0
  22. package/dist/commonjs/funcs/health-get.js.map +1 -0
  23. package/dist/commonjs/funcs/instances-delete.d.ts +17 -0
  24. package/dist/commonjs/funcs/instances-delete.d.ts.map +1 -0
  25. package/dist/commonjs/funcs/instances-delete.js +117 -0
  26. package/dist/commonjs/funcs/instances-delete.js.map +1 -0
  27. package/dist/commonjs/funcs/interactions-fetch.d.ts +17 -0
  28. package/dist/commonjs/funcs/interactions-fetch.d.ts.map +1 -0
  29. package/dist/commonjs/funcs/interactions-fetch.js +121 -0
  30. package/dist/commonjs/funcs/interactions-fetch.js.map +1 -0
  31. package/dist/commonjs/funcs/interactions-submit.d.ts +17 -0
  32. package/dist/commonjs/funcs/interactions-submit.d.ts.map +1 -0
  33. package/dist/commonjs/funcs/interactions-submit.js +121 -0
  34. package/dist/commonjs/funcs/interactions-submit.js.map +1 -0
  35. package/dist/commonjs/funcs/journeys-get-state.d.ts +17 -0
  36. package/dist/commonjs/funcs/journeys-get-state.d.ts.map +1 -0
  37. package/dist/commonjs/funcs/journeys-get-state.js +117 -0
  38. package/dist/commonjs/funcs/journeys-get-state.js.map +1 -0
  39. package/dist/commonjs/funcs/journeys-start.d.ts +17 -0
  40. package/dist/commonjs/funcs/journeys-start.d.ts.map +1 -0
  41. package/dist/commonjs/funcs/journeys-start.js +117 -0
  42. package/dist/commonjs/funcs/journeys-start.js.map +1 -0
  43. package/dist/commonjs/funcs/tasks-get-schema.d.ts +17 -0
  44. package/dist/commonjs/funcs/tasks-get-schema.d.ts.map +1 -0
  45. package/dist/commonjs/funcs/tasks-get-schema.js +117 -0
  46. package/dist/commonjs/funcs/tasks-get-schema.js.map +1 -0
  47. package/dist/commonjs/funcs/tasks-list-schema.d.ts +17 -0
  48. package/dist/commonjs/funcs/tasks-list-schema.d.ts.map +1 -0
  49. package/dist/commonjs/funcs/tasks-list-schema.js +117 -0
  50. package/dist/commonjs/funcs/tasks-list-schema.js.map +1 -0
  51. package/dist/commonjs/funcs/tasks-list.d.ts +17 -0
  52. package/dist/commonjs/funcs/tasks-list.d.ts.map +1 -0
  53. package/dist/commonjs/funcs/tasks-list.js +121 -0
  54. package/dist/commonjs/funcs/tasks-list.js.map +1 -0
  55. package/dist/commonjs/funcs/tasks-update.d.ts +17 -0
  56. package/dist/commonjs/funcs/tasks-update.d.ts.map +1 -0
  57. package/dist/commonjs/funcs/tasks-update.js +121 -0
  58. package/dist/commonjs/funcs/tasks-update.js.map +1 -0
  59. package/dist/commonjs/funcs/tokens-generate.d.ts +17 -0
  60. package/dist/commonjs/funcs/tokens-generate.d.ts.map +1 -0
  61. package/dist/commonjs/funcs/tokens-generate.js +119 -0
  62. package/dist/commonjs/funcs/tokens-generate.js.map +1 -0
  63. package/dist/commonjs/hooks/hooks.d.ts +25 -0
  64. package/dist/commonjs/hooks/hooks.d.ts.map +1 -0
  65. package/dist/commonjs/hooks/hooks.js +86 -0
  66. package/dist/commonjs/hooks/hooks.js.map +1 -0
  67. package/dist/commonjs/hooks/index.d.ts +3 -0
  68. package/dist/commonjs/hooks/index.d.ts.map +1 -0
  69. package/dist/commonjs/hooks/index.js +22 -0
  70. package/dist/commonjs/hooks/index.js.map +1 -0
  71. package/dist/commonjs/hooks/registration.d.ts +3 -0
  72. package/dist/commonjs/hooks/registration.d.ts.map +1 -0
  73. package/dist/commonjs/hooks/registration.js +15 -0
  74. package/dist/commonjs/hooks/registration.js.map +1 -0
  75. package/dist/commonjs/hooks/types.d.ts +76 -0
  76. package/dist/commonjs/hooks/types.d.ts.map +1 -0
  77. package/dist/commonjs/hooks/types.js +6 -0
  78. package/dist/commonjs/hooks/types.js.map +1 -0
  79. package/dist/commonjs/index.d.ts +6 -0
  80. package/dist/commonjs/index.d.ts.map +1 -0
  81. package/dist/commonjs/index.js +48 -0
  82. package/dist/commonjs/index.js.map +1 -0
  83. package/dist/commonjs/lib/base64.d.ts +10 -0
  84. package/dist/commonjs/lib/base64.d.ts.map +1 -0
  85. package/dist/commonjs/lib/base64.js +73 -0
  86. package/dist/commonjs/lib/base64.js.map +1 -0
  87. package/dist/commonjs/lib/config.d.ts +38 -0
  88. package/dist/commonjs/lib/config.d.ts.map +1 -0
  89. package/dist/commonjs/lib/config.js +37 -0
  90. package/dist/commonjs/lib/config.js.map +1 -0
  91. package/dist/commonjs/lib/dlv.d.ts +14 -0
  92. package/dist/commonjs/lib/dlv.d.ts.map +1 -0
  93. package/dist/commonjs/lib/dlv.js +49 -0
  94. package/dist/commonjs/lib/dlv.js.map +1 -0
  95. package/dist/commonjs/lib/encodings.d.ts +53 -0
  96. package/dist/commonjs/lib/encodings.d.ts.map +1 -0
  97. package/dist/commonjs/lib/encodings.js +384 -0
  98. package/dist/commonjs/lib/encodings.js.map +1 -0
  99. package/dist/commonjs/lib/env.d.ts +15 -0
  100. package/dist/commonjs/lib/env.d.ts.map +1 -0
  101. package/dist/commonjs/lib/env.js +82 -0
  102. package/dist/commonjs/lib/env.js.map +1 -0
  103. package/dist/commonjs/lib/files.d.ts +13 -0
  104. package/dist/commonjs/lib/files.d.ts.map +1 -0
  105. package/dist/commonjs/lib/files.js +77 -0
  106. package/dist/commonjs/lib/files.js.map +1 -0
  107. package/dist/commonjs/lib/http.d.ts +67 -0
  108. package/dist/commonjs/lib/http.d.ts.map +1 -0
  109. package/dist/commonjs/lib/http.js +217 -0
  110. package/dist/commonjs/lib/http.js.map +1 -0
  111. package/dist/commonjs/lib/is-plain-object.d.ts +2 -0
  112. package/dist/commonjs/lib/is-plain-object.d.ts.map +1 -0
  113. package/dist/commonjs/lib/is-plain-object.js +41 -0
  114. package/dist/commonjs/lib/is-plain-object.js.map +1 -0
  115. package/dist/commonjs/lib/logger.d.ts +6 -0
  116. package/dist/commonjs/lib/logger.d.ts.map +1 -0
  117. package/dist/commonjs/lib/logger.js +6 -0
  118. package/dist/commonjs/lib/logger.js.map +1 -0
  119. package/dist/commonjs/lib/matchers.d.ts +59 -0
  120. package/dist/commonjs/lib/matchers.d.ts.map +1 -0
  121. package/dist/commonjs/lib/matchers.js +222 -0
  122. package/dist/commonjs/lib/matchers.js.map +1 -0
  123. package/dist/commonjs/lib/primitives.d.ts +26 -0
  124. package/dist/commonjs/lib/primitives.d.ts.map +1 -0
  125. package/dist/commonjs/lib/primitives.js +111 -0
  126. package/dist/commonjs/lib/primitives.js.map +1 -0
  127. package/dist/commonjs/lib/retries.d.ts +38 -0
  128. package/dist/commonjs/lib/retries.d.ts.map +1 -0
  129. package/dist/commonjs/lib/retries.js +153 -0
  130. package/dist/commonjs/lib/retries.js.map +1 -0
  131. package/dist/commonjs/lib/schemas.d.ts +21 -0
  132. package/dist/commonjs/lib/schemas.d.ts.map +1 -0
  133. package/dist/commonjs/lib/schemas.js +95 -0
  134. package/dist/commonjs/lib/schemas.js.map +1 -0
  135. package/dist/commonjs/lib/sdks.d.ts +63 -0
  136. package/dist/commonjs/lib/sdks.d.ts.map +1 -0
  137. package/dist/commonjs/lib/sdks.js +273 -0
  138. package/dist/commonjs/lib/sdks.js.map +1 -0
  139. package/dist/commonjs/lib/security.d.ts +83 -0
  140. package/dist/commonjs/lib/security.d.ts.map +1 -0
  141. package/dist/commonjs/lib/security.js +144 -0
  142. package/dist/commonjs/lib/security.js.map +1 -0
  143. package/dist/commonjs/lib/url.d.ts +5 -0
  144. package/dist/commonjs/lib/url.d.ts.map +1 -0
  145. package/dist/commonjs/lib/url.js +25 -0
  146. package/dist/commonjs/lib/url.js.map +1 -0
  147. package/dist/commonjs/models/errors/go-default-error.d.ts +10 -0
  148. package/dist/commonjs/models/errors/go-default-error.d.ts.map +1 -0
  149. package/dist/commonjs/models/errors/go-default-error.js +34 -0
  150. package/dist/commonjs/models/errors/go-default-error.js.map +1 -0
  151. package/dist/commonjs/models/errors/go-error.d.ts +19 -0
  152. package/dist/commonjs/models/errors/go-error.d.ts.map +1 -0
  153. package/dist/commonjs/models/errors/go-error.js +20 -0
  154. package/dist/commonjs/models/errors/go-error.js.map +1 -0
  155. package/dist/commonjs/models/errors/http-client-errors.d.ts +44 -0
  156. package/dist/commonjs/models/errors/http-client-errors.d.ts.map +1 -0
  157. package/dist/commonjs/models/errors/http-client-errors.js +78 -0
  158. package/dist/commonjs/models/errors/http-client-errors.js.map +1 -0
  159. package/dist/commonjs/models/errors/index.d.ts +6 -0
  160. package/dist/commonjs/models/errors/index.d.ts.map +1 -0
  161. package/dist/commonjs/models/errors/index.js +25 -0
  162. package/dist/commonjs/models/errors/index.js.map +1 -0
  163. package/dist/commonjs/models/errors/response-validation-error.d.ts +26 -0
  164. package/dist/commonjs/models/errors/response-validation-error.d.ts.map +1 -0
  165. package/dist/commonjs/models/errors/response-validation-error.js +66 -0
  166. package/dist/commonjs/models/errors/response-validation-error.js.map +1 -0
  167. package/dist/commonjs/models/errors/sdk-validation-error.d.ts +21 -0
  168. package/dist/commonjs/models/errors/sdk-validation-error.d.ts.map +1 -0
  169. package/dist/commonjs/models/errors/sdk-validation-error.js +82 -0
  170. package/dist/commonjs/models/errors/sdk-validation-error.js.map +1 -0
  171. package/dist/commonjs/models/index.d.ts +2 -0
  172. package/dist/commonjs/models/index.d.ts.map +1 -0
  173. package/dist/commonjs/models/index.js +21 -0
  174. package/dist/commonjs/models/index.js.map +1 -0
  175. package/dist/commonjs/models/operations/add-device.d.ts +114 -0
  176. package/dist/commonjs/models/operations/add-device.d.ts.map +1 -0
  177. package/dist/commonjs/models/operations/add-device.js +129 -0
  178. package/dist/commonjs/models/operations/add-device.js.map +1 -0
  179. package/dist/commonjs/models/operations/delete-instance.d.ts +30 -0
  180. package/dist/commonjs/models/operations/delete-instance.d.ts.map +1 -0
  181. package/dist/commonjs/models/operations/delete-instance.js +59 -0
  182. package/dist/commonjs/models/operations/delete-instance.js.map +1 -0
  183. package/dist/commonjs/models/operations/device-connect.d.ts +103 -0
  184. package/dist/commonjs/models/operations/device-connect.d.ts.map +1 -0
  185. package/dist/commonjs/models/operations/device-connect.js +122 -0
  186. package/dist/commonjs/models/operations/device-connect.js.map +1 -0
  187. package/dist/commonjs/models/operations/fetch-interaction.d.ts +1562 -0
  188. package/dist/commonjs/models/operations/fetch-interaction.d.ts.map +1 -0
  189. package/dist/commonjs/models/operations/fetch-interaction.js +1345 -0
  190. package/dist/commonjs/models/operations/fetch-interaction.js.map +1 -0
  191. package/dist/commonjs/models/operations/get-journey-state.d.ts +1363 -0
  192. package/dist/commonjs/models/operations/get-journey-state.d.ts.map +1 -0
  193. package/dist/commonjs/models/operations/get-journey-state.js +1105 -0
  194. package/dist/commonjs/models/operations/get-journey-state.js.map +1 -0
  195. package/dist/commonjs/models/operations/get-task-schema.d.ts +31 -0
  196. package/dist/commonjs/models/operations/get-task-schema.d.ts.map +1 -0
  197. package/dist/commonjs/models/operations/get-task-schema.js +67 -0
  198. package/dist/commonjs/models/operations/get-task-schema.js.map +1 -0
  199. package/dist/commonjs/models/operations/get-tasks-schema.d.ts +71 -0
  200. package/dist/commonjs/models/operations/get-tasks-schema.d.ts.map +1 -0
  201. package/dist/commonjs/models/operations/get-tasks-schema.js +108 -0
  202. package/dist/commonjs/models/operations/get-tasks-schema.js.map +1 -0
  203. package/dist/commonjs/models/operations/get-tasks.d.ts +62 -0
  204. package/dist/commonjs/models/operations/get-tasks.d.ts.map +1 -0
  205. package/dist/commonjs/models/operations/get-tasks.js +91 -0
  206. package/dist/commonjs/models/operations/get-tasks.js.map +1 -0
  207. package/dist/commonjs/models/operations/health.d.ts +14 -0
  208. package/dist/commonjs/models/operations/health.d.ts.map +1 -0
  209. package/dist/commonjs/models/operations/health.js +51 -0
  210. package/dist/commonjs/models/operations/health.js.map +1 -0
  211. package/dist/commonjs/models/operations/index.d.ts +14 -0
  212. package/dist/commonjs/models/operations/index.d.ts.map +1 -0
  213. package/dist/commonjs/models/operations/index.js +33 -0
  214. package/dist/commonjs/models/operations/index.js.map +1 -0
  215. package/dist/commonjs/models/operations/post-auth-realms-go-protocol-openid-connect-token.d.ts +71 -0
  216. package/dist/commonjs/models/operations/post-auth-realms-go-protocol-openid-connect-token.d.ts.map +1 -0
  217. package/dist/commonjs/models/operations/post-auth-realms-go-protocol-openid-connect-token.js +90 -0
  218. package/dist/commonjs/models/operations/post-auth-realms-go-protocol-openid-connect-token.js.map +1 -0
  219. package/dist/commonjs/models/operations/start-journey.d.ts +2038 -0
  220. package/dist/commonjs/models/operations/start-journey.d.ts.map +1 -0
  221. package/dist/commonjs/models/operations/start-journey.js +1092 -0
  222. package/dist/commonjs/models/operations/start-journey.js.map +1 -0
  223. package/dist/commonjs/models/operations/submit-interaction.d.ts +2061 -0
  224. package/dist/commonjs/models/operations/submit-interaction.d.ts.map +1 -0
  225. package/dist/commonjs/models/operations/submit-interaction.js +1118 -0
  226. package/dist/commonjs/models/operations/submit-interaction.js.map +1 -0
  227. package/dist/commonjs/models/operations/update-task.d.ts +2045 -0
  228. package/dist/commonjs/models/operations/update-task.d.ts.map +1 -0
  229. package/dist/commonjs/models/operations/update-task.js +1097 -0
  230. package/dist/commonjs/models/operations/update-task.js.map +1 -0
  231. package/dist/commonjs/models/security.d.ts +12 -0
  232. package/dist/commonjs/models/security.d.ts.map +1 -0
  233. package/dist/commonjs/models/security.js +54 -0
  234. package/dist/commonjs/models/security.js.map +1 -0
  235. package/dist/commonjs/package.json +3 -0
  236. package/dist/commonjs/sdk/devices.d.ts +19 -0
  237. package/dist/commonjs/sdk/devices.d.ts.map +1 -0
  238. package/dist/commonjs/sdk/devices.js +32 -0
  239. package/dist/commonjs/sdk/devices.js.map +1 -0
  240. package/dist/commonjs/sdk/health.d.ts +12 -0
  241. package/dist/commonjs/sdk/health.d.ts.map +1 -0
  242. package/dist/commonjs/sdk/health.js +22 -0
  243. package/dist/commonjs/sdk/health.js.map +1 -0
  244. package/dist/commonjs/sdk/index.d.ts +2 -0
  245. package/dist/commonjs/sdk/index.d.ts.map +1 -0
  246. package/dist/commonjs/sdk/index.js +21 -0
  247. package/dist/commonjs/sdk/index.js.map +1 -0
  248. package/dist/commonjs/sdk/instances.d.ts +12 -0
  249. package/dist/commonjs/sdk/instances.d.ts.map +1 -0
  250. package/dist/commonjs/sdk/instances.js +22 -0
  251. package/dist/commonjs/sdk/instances.js.map +1 -0
  252. package/dist/commonjs/sdk/interactions.d.ts +19 -0
  253. package/dist/commonjs/sdk/interactions.d.ts.map +1 -0
  254. package/dist/commonjs/sdk/interactions.js +32 -0
  255. package/dist/commonjs/sdk/interactions.js.map +1 -0
  256. package/dist/commonjs/sdk/journeys.d.ts +19 -0
  257. package/dist/commonjs/sdk/journeys.d.ts.map +1 -0
  258. package/dist/commonjs/sdk/journeys.js +32 -0
  259. package/dist/commonjs/sdk/journeys.js.map +1 -0
  260. package/dist/commonjs/sdk/sdk.d.ts +25 -0
  261. package/dist/commonjs/sdk/sdk.d.ts.map +1 -0
  262. package/dist/commonjs/sdk/sdk.js +39 -0
  263. package/dist/commonjs/sdk/sdk.js.map +1 -0
  264. package/dist/commonjs/sdk/tasks.d.ts +33 -0
  265. package/dist/commonjs/sdk/tasks.d.ts.map +1 -0
  266. package/dist/commonjs/sdk/tasks.js +52 -0
  267. package/dist/commonjs/sdk/tasks.js.map +1 -0
  268. package/dist/commonjs/sdk/tokens.d.ts +12 -0
  269. package/dist/commonjs/sdk/tokens.d.ts.map +1 -0
  270. package/dist/commonjs/sdk/tokens.js +22 -0
  271. package/dist/commonjs/sdk/tokens.js.map +1 -0
  272. package/dist/commonjs/types/async.d.ts +23 -0
  273. package/dist/commonjs/types/async.d.ts.map +1 -0
  274. package/dist/commonjs/types/async.js +44 -0
  275. package/dist/commonjs/types/async.js.map +1 -0
  276. package/dist/commonjs/types/blobs.d.ts +4 -0
  277. package/dist/commonjs/types/blobs.d.ts.map +1 -0
  278. package/dist/commonjs/types/blobs.js +62 -0
  279. package/dist/commonjs/types/blobs.js.map +1 -0
  280. package/dist/commonjs/types/const-date-time.d.ts +3 -0
  281. package/dist/commonjs/types/const-date-time.d.ts.map +1 -0
  282. package/dist/commonjs/types/const-date-time.js +46 -0
  283. package/dist/commonjs/types/const-date-time.js.map +1 -0
  284. package/dist/commonjs/types/default-to-zero-value.d.ts +12 -0
  285. package/dist/commonjs/types/default-to-zero-value.d.ts.map +1 -0
  286. package/dist/commonjs/types/default-to-zero-value.js +35 -0
  287. package/dist/commonjs/types/default-to-zero-value.js.map +1 -0
  288. package/dist/commonjs/types/discriminated-union.d.ts +25 -0
  289. package/dist/commonjs/types/discriminated-union.d.ts.map +1 -0
  290. package/dist/commonjs/types/discriminated-union.js +98 -0
  291. package/dist/commonjs/types/discriminated-union.js.map +1 -0
  292. package/dist/commonjs/types/enums.d.ts +9 -0
  293. package/dist/commonjs/types/enums.d.ts.map +1 -0
  294. package/dist/commonjs/types/enums.js +66 -0
  295. package/dist/commonjs/types/enums.js.map +1 -0
  296. package/dist/commonjs/types/fp.d.ts +31 -0
  297. package/dist/commonjs/types/fp.d.ts.map +1 -0
  298. package/dist/commonjs/types/fp.js +37 -0
  299. package/dist/commonjs/types/fp.js.map +1 -0
  300. package/dist/commonjs/types/index.d.ts +10 -0
  301. package/dist/commonjs/types/index.d.ts.map +1 -0
  302. package/dist/commonjs/types/index.js +31 -0
  303. package/dist/commonjs/types/index.js.map +1 -0
  304. package/dist/commonjs/types/operations.d.ts +27 -0
  305. package/dist/commonjs/types/operations.d.ts.map +1 -0
  306. package/dist/commonjs/types/operations.js +83 -0
  307. package/dist/commonjs/types/operations.js.map +1 -0
  308. package/dist/commonjs/types/primitives.d.ts +11 -0
  309. package/dist/commonjs/types/primitives.d.ts.map +1 -0
  310. package/dist/commonjs/types/primitives.js +176 -0
  311. package/dist/commonjs/types/primitives.js.map +1 -0
  312. package/dist/commonjs/types/rfcdate.d.ts +21 -0
  313. package/dist/commonjs/types/rfcdate.d.ts.map +1 -0
  314. package/dist/commonjs/types/rfcdate.js +46 -0
  315. package/dist/commonjs/types/rfcdate.js.map +1 -0
  316. package/dist/commonjs/types/smart-union.d.ts +7 -0
  317. package/dist/commonjs/types/smart-union.d.ts.map +1 -0
  318. package/dist/commonjs/types/smart-union.js +154 -0
  319. package/dist/commonjs/types/smart-union.js.map +1 -0
  320. package/dist/commonjs/types/streams.d.ts +2 -0
  321. package/dist/commonjs/types/streams.d.ts.map +1 -0
  322. package/dist/commonjs/types/streams.js +18 -0
  323. package/dist/commonjs/types/streams.js.map +1 -0
  324. package/dist/commonjs/types/unrecognized.d.ts +16 -0
  325. package/dist/commonjs/types/unrecognized.d.ts.map +1 -0
  326. package/dist/commonjs/types/unrecognized.js +34 -0
  327. package/dist/commonjs/types/unrecognized.js.map +1 -0
  328. package/dist/esm/core.d.ts +10 -0
  329. package/dist/esm/core.d.ts.map +1 -0
  330. package/dist/esm/core.js +13 -0
  331. package/dist/esm/core.js.map +1 -0
  332. package/dist/esm/funcs/devices-add.d.ts +17 -0
  333. package/dist/esm/funcs/devices-add.d.ts.map +1 -0
  334. package/dist/esm/funcs/devices-add.js +81 -0
  335. package/dist/esm/funcs/devices-add.js.map +1 -0
  336. package/dist/esm/funcs/devices-connect.d.ts +17 -0
  337. package/dist/esm/funcs/devices-connect.d.ts.map +1 -0
  338. package/dist/esm/funcs/devices-connect.js +85 -0
  339. package/dist/esm/funcs/devices-connect.js.map +1 -0
  340. package/dist/esm/funcs/health-get.d.ts +17 -0
  341. package/dist/esm/funcs/health-get.d.ts.map +1 -0
  342. package/dist/esm/funcs/health-get.js +68 -0
  343. package/dist/esm/funcs/health-get.js.map +1 -0
  344. package/dist/esm/funcs/instances-delete.d.ts +17 -0
  345. package/dist/esm/funcs/instances-delete.d.ts.map +1 -0
  346. package/dist/esm/funcs/instances-delete.js +81 -0
  347. package/dist/esm/funcs/instances-delete.js.map +1 -0
  348. package/dist/esm/funcs/interactions-fetch.d.ts +17 -0
  349. package/dist/esm/funcs/interactions-fetch.d.ts.map +1 -0
  350. package/dist/esm/funcs/interactions-fetch.js +85 -0
  351. package/dist/esm/funcs/interactions-fetch.js.map +1 -0
  352. package/dist/esm/funcs/interactions-submit.d.ts +17 -0
  353. package/dist/esm/funcs/interactions-submit.d.ts.map +1 -0
  354. package/dist/esm/funcs/interactions-submit.js +85 -0
  355. package/dist/esm/funcs/interactions-submit.js.map +1 -0
  356. package/dist/esm/funcs/journeys-get-state.d.ts +17 -0
  357. package/dist/esm/funcs/journeys-get-state.d.ts.map +1 -0
  358. package/dist/esm/funcs/journeys-get-state.js +81 -0
  359. package/dist/esm/funcs/journeys-get-state.js.map +1 -0
  360. package/dist/esm/funcs/journeys-start.d.ts +17 -0
  361. package/dist/esm/funcs/journeys-start.d.ts.map +1 -0
  362. package/dist/esm/funcs/journeys-start.js +81 -0
  363. package/dist/esm/funcs/journeys-start.js.map +1 -0
  364. package/dist/esm/funcs/tasks-get-schema.d.ts +17 -0
  365. package/dist/esm/funcs/tasks-get-schema.d.ts.map +1 -0
  366. package/dist/esm/funcs/tasks-get-schema.js +81 -0
  367. package/dist/esm/funcs/tasks-get-schema.js.map +1 -0
  368. package/dist/esm/funcs/tasks-list-schema.d.ts +17 -0
  369. package/dist/esm/funcs/tasks-list-schema.d.ts.map +1 -0
  370. package/dist/esm/funcs/tasks-list-schema.js +81 -0
  371. package/dist/esm/funcs/tasks-list-schema.js.map +1 -0
  372. package/dist/esm/funcs/tasks-list.d.ts +17 -0
  373. package/dist/esm/funcs/tasks-list.d.ts.map +1 -0
  374. package/dist/esm/funcs/tasks-list.js +85 -0
  375. package/dist/esm/funcs/tasks-list.js.map +1 -0
  376. package/dist/esm/funcs/tasks-update.d.ts +17 -0
  377. package/dist/esm/funcs/tasks-update.d.ts.map +1 -0
  378. package/dist/esm/funcs/tasks-update.js +85 -0
  379. package/dist/esm/funcs/tasks-update.js.map +1 -0
  380. package/dist/esm/funcs/tokens-generate.d.ts +17 -0
  381. package/dist/esm/funcs/tokens-generate.d.ts.map +1 -0
  382. package/dist/esm/funcs/tokens-generate.js +83 -0
  383. package/dist/esm/funcs/tokens-generate.js.map +1 -0
  384. package/dist/esm/hooks/hooks.d.ts +25 -0
  385. package/dist/esm/hooks/hooks.d.ts.map +1 -0
  386. package/dist/esm/hooks/hooks.js +82 -0
  387. package/dist/esm/hooks/hooks.js.map +1 -0
  388. package/dist/esm/hooks/index.d.ts +3 -0
  389. package/dist/esm/hooks/index.d.ts.map +1 -0
  390. package/dist/esm/hooks/index.js +6 -0
  391. package/dist/esm/hooks/index.js.map +1 -0
  392. package/dist/esm/hooks/registration.d.ts +3 -0
  393. package/dist/esm/hooks/registration.d.ts.map +1 -0
  394. package/dist/esm/hooks/registration.js +12 -0
  395. package/dist/esm/hooks/registration.js.map +1 -0
  396. package/dist/esm/hooks/types.d.ts +76 -0
  397. package/dist/esm/hooks/types.d.ts.map +1 -0
  398. package/dist/esm/hooks/types.js +5 -0
  399. package/dist/esm/hooks/types.js.map +1 -0
  400. package/dist/esm/index.d.ts +6 -0
  401. package/dist/esm/index.d.ts.map +1 -0
  402. package/dist/esm/index.js +8 -0
  403. package/dist/esm/index.js.map +1 -0
  404. package/dist/esm/lib/base64.d.ts +10 -0
  405. package/dist/esm/lib/base64.d.ts.map +1 -0
  406. package/dist/esm/lib/base64.js +31 -0
  407. package/dist/esm/lib/base64.js.map +1 -0
  408. package/dist/esm/lib/config.d.ts +38 -0
  409. package/dist/esm/lib/config.d.ts.map +1 -0
  410. package/dist/esm/lib/config.js +33 -0
  411. package/dist/esm/lib/config.js.map +1 -0
  412. package/dist/esm/lib/dlv.d.ts +14 -0
  413. package/dist/esm/lib/dlv.d.ts.map +1 -0
  414. package/dist/esm/lib/dlv.js +46 -0
  415. package/dist/esm/lib/dlv.js.map +1 -0
  416. package/dist/esm/lib/encodings.d.ts +53 -0
  417. package/dist/esm/lib/encodings.d.ts.map +1 -0
  418. package/dist/esm/lib/encodings.js +370 -0
  419. package/dist/esm/lib/encodings.js.map +1 -0
  420. package/dist/esm/lib/env.d.ts +15 -0
  421. package/dist/esm/lib/env.d.ts.map +1 -0
  422. package/dist/esm/lib/env.js +44 -0
  423. package/dist/esm/lib/env.js.map +1 -0
  424. package/dist/esm/lib/files.d.ts +13 -0
  425. package/dist/esm/lib/files.d.ts.map +1 -0
  426. package/dist/esm/lib/files.js +73 -0
  427. package/dist/esm/lib/files.js.map +1 -0
  428. package/dist/esm/lib/http.d.ts +67 -0
  429. package/dist/esm/lib/http.d.ts.map +1 -0
  430. package/dist/esm/lib/http.js +207 -0
  431. package/dist/esm/lib/http.js.map +1 -0
  432. package/dist/esm/lib/is-plain-object.d.ts +2 -0
  433. package/dist/esm/lib/is-plain-object.d.ts.map +1 -0
  434. package/dist/esm/lib/is-plain-object.js +38 -0
  435. package/dist/esm/lib/is-plain-object.js.map +1 -0
  436. package/dist/esm/lib/logger.d.ts +6 -0
  437. package/dist/esm/lib/logger.d.ts.map +1 -0
  438. package/dist/esm/lib/logger.js +5 -0
  439. package/dist/esm/lib/logger.js.map +1 -0
  440. package/dist/esm/lib/matchers.d.ts +59 -0
  441. package/dist/esm/lib/matchers.d.ts.map +1 -0
  442. package/dist/esm/lib/matchers.js +203 -0
  443. package/dist/esm/lib/matchers.js.map +1 -0
  444. package/dist/esm/lib/primitives.d.ts +26 -0
  445. package/dist/esm/lib/primitives.d.ts.map +1 -0
  446. package/dist/esm/lib/primitives.js +103 -0
  447. package/dist/esm/lib/primitives.js.map +1 -0
  448. package/dist/esm/lib/retries.d.ts +38 -0
  449. package/dist/esm/lib/retries.d.ts.map +1 -0
  450. package/dist/esm/lib/retries.js +147 -0
  451. package/dist/esm/lib/retries.js.map +1 -0
  452. package/dist/esm/lib/schemas.d.ts +21 -0
  453. package/dist/esm/lib/schemas.d.ts.map +1 -0
  454. package/dist/esm/lib/schemas.js +57 -0
  455. package/dist/esm/lib/schemas.js.map +1 -0
  456. package/dist/esm/lib/sdks.d.ts +63 -0
  457. package/dist/esm/lib/sdks.d.ts.map +1 -0
  458. package/dist/esm/lib/sdks.js +269 -0
  459. package/dist/esm/lib/sdks.js.map +1 -0
  460. package/dist/esm/lib/security.d.ts +83 -0
  461. package/dist/esm/lib/security.d.ts.map +1 -0
  462. package/dist/esm/lib/security.js +137 -0
  463. package/dist/esm/lib/security.js.map +1 -0
  464. package/dist/esm/lib/url.d.ts +5 -0
  465. package/dist/esm/lib/url.d.ts.map +1 -0
  466. package/dist/esm/lib/url.js +22 -0
  467. package/dist/esm/lib/url.js.map +1 -0
  468. package/dist/esm/models/errors/go-default-error.d.ts +10 -0
  469. package/dist/esm/models/errors/go-default-error.d.ts.map +1 -0
  470. package/dist/esm/models/errors/go-default-error.js +30 -0
  471. package/dist/esm/models/errors/go-default-error.js.map +1 -0
  472. package/dist/esm/models/errors/go-error.d.ts +19 -0
  473. package/dist/esm/models/errors/go-error.d.ts.map +1 -0
  474. package/dist/esm/models/errors/go-error.js +16 -0
  475. package/dist/esm/models/errors/go-error.js.map +1 -0
  476. package/dist/esm/models/errors/http-client-errors.d.ts +44 -0
  477. package/dist/esm/models/errors/http-client-errors.d.ts.map +1 -0
  478. package/dist/esm/models/errors/http-client-errors.js +69 -0
  479. package/dist/esm/models/errors/http-client-errors.js.map +1 -0
  480. package/dist/esm/models/errors/index.d.ts +6 -0
  481. package/dist/esm/models/errors/index.d.ts.map +1 -0
  482. package/dist/esm/models/errors/index.js +9 -0
  483. package/dist/esm/models/errors/index.js.map +1 -0
  484. package/dist/esm/models/errors/response-validation-error.d.ts +26 -0
  485. package/dist/esm/models/errors/response-validation-error.d.ts.map +1 -0
  486. package/dist/esm/models/errors/response-validation-error.js +29 -0
  487. package/dist/esm/models/errors/response-validation-error.js.map +1 -0
  488. package/dist/esm/models/errors/sdk-validation-error.d.ts +21 -0
  489. package/dist/esm/models/errors/sdk-validation-error.d.ts.map +1 -0
  490. package/dist/esm/models/errors/sdk-validation-error.js +44 -0
  491. package/dist/esm/models/errors/sdk-validation-error.js.map +1 -0
  492. package/dist/esm/models/index.d.ts +2 -0
  493. package/dist/esm/models/index.d.ts.map +1 -0
  494. package/dist/esm/models/index.js +5 -0
  495. package/dist/esm/models/index.js.map +1 -0
  496. package/dist/esm/models/operations/add-device.d.ts +114 -0
  497. package/dist/esm/models/operations/add-device.d.ts.map +1 -0
  498. package/dist/esm/models/operations/add-device.js +89 -0
  499. package/dist/esm/models/operations/add-device.js.map +1 -0
  500. package/dist/esm/models/operations/delete-instance.d.ts +30 -0
  501. package/dist/esm/models/operations/delete-instance.d.ts.map +1 -0
  502. package/dist/esm/models/operations/delete-instance.js +21 -0
  503. package/dist/esm/models/operations/delete-instance.js.map +1 -0
  504. package/dist/esm/models/operations/device-connect.d.ts +103 -0
  505. package/dist/esm/models/operations/device-connect.d.ts.map +1 -0
  506. package/dist/esm/models/operations/device-connect.js +80 -0
  507. package/dist/esm/models/operations/device-connect.js.map +1 -0
  508. package/dist/esm/models/operations/fetch-interaction.d.ts +1562 -0
  509. package/dist/esm/models/operations/fetch-interaction.d.ts.map +1 -0
  510. package/dist/esm/models/operations/fetch-interaction.js +1221 -0
  511. package/dist/esm/models/operations/fetch-interaction.js.map +1 -0
  512. package/dist/esm/models/operations/get-journey-state.d.ts +1363 -0
  513. package/dist/esm/models/operations/get-journey-state.d.ts.map +1 -0
  514. package/dist/esm/models/operations/get-journey-state.js +998 -0
  515. package/dist/esm/models/operations/get-journey-state.js.map +1 -0
  516. package/dist/esm/models/operations/get-task-schema.d.ts +31 -0
  517. package/dist/esm/models/operations/get-task-schema.d.ts.map +1 -0
  518. package/dist/esm/models/operations/get-task-schema.js +29 -0
  519. package/dist/esm/models/operations/get-task-schema.js.map +1 -0
  520. package/dist/esm/models/operations/get-tasks-schema.d.ts +71 -0
  521. package/dist/esm/models/operations/get-tasks-schema.d.ts.map +1 -0
  522. package/dist/esm/models/operations/get-tasks-schema.js +67 -0
  523. package/dist/esm/models/operations/get-tasks-schema.js.map +1 -0
  524. package/dist/esm/models/operations/get-tasks.d.ts +62 -0
  525. package/dist/esm/models/operations/get-tasks.d.ts.map +1 -0
  526. package/dist/esm/models/operations/get-tasks.js +51 -0
  527. package/dist/esm/models/operations/get-tasks.js.map +1 -0
  528. package/dist/esm/models/operations/health.d.ts +14 -0
  529. package/dist/esm/models/operations/health.d.ts.map +1 -0
  530. package/dist/esm/models/operations/health.js +14 -0
  531. package/dist/esm/models/operations/health.js.map +1 -0
  532. package/dist/esm/models/operations/index.d.ts +14 -0
  533. package/dist/esm/models/operations/index.d.ts.map +1 -0
  534. package/dist/esm/models/operations/index.js +17 -0
  535. package/dist/esm/models/operations/index.js.map +1 -0
  536. package/dist/esm/models/operations/post-auth-realms-go-protocol-openid-connect-token.d.ts +71 -0
  537. package/dist/esm/models/operations/post-auth-realms-go-protocol-openid-connect-token.d.ts.map +1 -0
  538. package/dist/esm/models/operations/post-auth-realms-go-protocol-openid-connect-token.js +52 -0
  539. package/dist/esm/models/operations/post-auth-realms-go-protocol-openid-connect-token.js.map +1 -0
  540. package/dist/esm/models/operations/start-journey.d.ts +2038 -0
  541. package/dist/esm/models/operations/start-journey.d.ts.map +1 -0
  542. package/dist/esm/models/operations/start-journey.js +984 -0
  543. package/dist/esm/models/operations/start-journey.js.map +1 -0
  544. package/dist/esm/models/operations/submit-interaction.d.ts +2061 -0
  545. package/dist/esm/models/operations/submit-interaction.d.ts.map +1 -0
  546. package/dist/esm/models/operations/submit-interaction.js +1008 -0
  547. package/dist/esm/models/operations/submit-interaction.js.map +1 -0
  548. package/dist/esm/models/operations/update-task.d.ts +2045 -0
  549. package/dist/esm/models/operations/update-task.d.ts.map +1 -0
  550. package/dist/esm/models/operations/update-task.js +990 -0
  551. package/dist/esm/models/operations/update-task.js.map +1 -0
  552. package/dist/esm/models/security.d.ts +12 -0
  553. package/dist/esm/models/security.d.ts.map +1 -0
  554. package/dist/esm/models/security.js +17 -0
  555. package/dist/esm/models/security.js.map +1 -0
  556. package/dist/esm/package.json +3 -0
  557. package/dist/esm/sdk/devices.d.ts +19 -0
  558. package/dist/esm/sdk/devices.d.ts.map +1 -0
  559. package/dist/esm/sdk/devices.js +28 -0
  560. package/dist/esm/sdk/devices.js.map +1 -0
  561. package/dist/esm/sdk/health.d.ts +12 -0
  562. package/dist/esm/sdk/health.d.ts.map +1 -0
  563. package/dist/esm/sdk/health.js +18 -0
  564. package/dist/esm/sdk/health.js.map +1 -0
  565. package/dist/esm/sdk/index.d.ts +2 -0
  566. package/dist/esm/sdk/index.d.ts.map +1 -0
  567. package/dist/esm/sdk/index.js +5 -0
  568. package/dist/esm/sdk/index.js.map +1 -0
  569. package/dist/esm/sdk/instances.d.ts +12 -0
  570. package/dist/esm/sdk/instances.d.ts.map +1 -0
  571. package/dist/esm/sdk/instances.js +18 -0
  572. package/dist/esm/sdk/instances.js.map +1 -0
  573. package/dist/esm/sdk/interactions.d.ts +19 -0
  574. package/dist/esm/sdk/interactions.d.ts.map +1 -0
  575. package/dist/esm/sdk/interactions.js +28 -0
  576. package/dist/esm/sdk/interactions.js.map +1 -0
  577. package/dist/esm/sdk/journeys.d.ts +19 -0
  578. package/dist/esm/sdk/journeys.d.ts.map +1 -0
  579. package/dist/esm/sdk/journeys.js +28 -0
  580. package/dist/esm/sdk/journeys.js.map +1 -0
  581. package/dist/esm/sdk/sdk.d.ts +25 -0
  582. package/dist/esm/sdk/sdk.d.ts.map +1 -0
  583. package/dist/esm/sdk/sdk.js +35 -0
  584. package/dist/esm/sdk/sdk.js.map +1 -0
  585. package/dist/esm/sdk/tasks.d.ts +33 -0
  586. package/dist/esm/sdk/tasks.d.ts.map +1 -0
  587. package/dist/esm/sdk/tasks.js +48 -0
  588. package/dist/esm/sdk/tasks.js.map +1 -0
  589. package/dist/esm/sdk/tokens.d.ts +12 -0
  590. package/dist/esm/sdk/tokens.d.ts.map +1 -0
  591. package/dist/esm/sdk/tokens.js +18 -0
  592. package/dist/esm/sdk/tokens.js.map +1 -0
  593. package/dist/esm/types/async.d.ts +23 -0
  594. package/dist/esm/types/async.d.ts.map +1 -0
  595. package/dist/esm/types/async.js +40 -0
  596. package/dist/esm/types/async.js.map +1 -0
  597. package/dist/esm/types/blobs.d.ts +4 -0
  598. package/dist/esm/types/blobs.d.ts.map +1 -0
  599. package/dist/esm/types/blobs.js +25 -0
  600. package/dist/esm/types/blobs.js.map +1 -0
  601. package/dist/esm/types/const-date-time.d.ts +3 -0
  602. package/dist/esm/types/const-date-time.d.ts.map +1 -0
  603. package/dist/esm/types/const-date-time.js +10 -0
  604. package/dist/esm/types/const-date-time.js.map +1 -0
  605. package/dist/esm/types/default-to-zero-value.d.ts +12 -0
  606. package/dist/esm/types/default-to-zero-value.d.ts.map +1 -0
  607. package/dist/esm/types/default-to-zero-value.js +31 -0
  608. package/dist/esm/types/default-to-zero-value.js.map +1 -0
  609. package/dist/esm/types/discriminated-union.d.ts +25 -0
  610. package/dist/esm/types/discriminated-union.d.ts.map +1 -0
  611. package/dist/esm/types/discriminated-union.js +61 -0
  612. package/dist/esm/types/discriminated-union.js.map +1 -0
  613. package/dist/esm/types/enums.d.ts +9 -0
  614. package/dist/esm/types/enums.d.ts.map +1 -0
  615. package/dist/esm/types/enums.js +27 -0
  616. package/dist/esm/types/enums.js.map +1 -0
  617. package/dist/esm/types/fp.d.ts +31 -0
  618. package/dist/esm/types/fp.d.ts.map +1 -0
  619. package/dist/esm/types/fp.js +31 -0
  620. package/dist/esm/types/fp.js.map +1 -0
  621. package/dist/esm/types/index.d.ts +10 -0
  622. package/dist/esm/types/index.d.ts.map +1 -0
  623. package/dist/esm/types/index.js +10 -0
  624. package/dist/esm/types/index.js.map +1 -0
  625. package/dist/esm/types/operations.d.ts +27 -0
  626. package/dist/esm/types/operations.d.ts.map +1 -0
  627. package/dist/esm/types/operations.js +77 -0
  628. package/dist/esm/types/operations.js.map +1 -0
  629. package/dist/esm/types/primitives.d.ts +11 -0
  630. package/dist/esm/types/primitives.d.ts.map +1 -0
  631. package/dist/esm/types/primitives.js +132 -0
  632. package/dist/esm/types/primitives.js.map +1 -0
  633. package/dist/esm/types/rfcdate.d.ts +21 -0
  634. package/dist/esm/types/rfcdate.d.ts.map +1 -0
  635. package/dist/esm/types/rfcdate.js +42 -0
  636. package/dist/esm/types/rfcdate.js.map +1 -0
  637. package/dist/esm/types/smart-union.d.ts +7 -0
  638. package/dist/esm/types/smart-union.d.ts.map +1 -0
  639. package/dist/esm/types/smart-union.js +118 -0
  640. package/dist/esm/types/smart-union.js.map +1 -0
  641. package/dist/esm/types/streams.d.ts +2 -0
  642. package/dist/esm/types/streams.d.ts.map +1 -0
  643. package/dist/esm/types/streams.js +15 -0
  644. package/dist/esm/types/streams.js.map +1 -0
  645. package/dist/esm/types/unrecognized.d.ts +16 -0
  646. package/dist/esm/types/unrecognized.d.ts.map +1 -0
  647. package/dist/esm/types/unrecognized.js +31 -0
  648. package/dist/esm/types/unrecognized.js.map +1 -0
  649. package/examples/package-lock.json +611 -0
  650. package/examples/package.json +18 -0
  651. package/examples/tokensGenerate.example.ts +30 -0
  652. package/jsr.json +27 -0
  653. package/package.json +126 -0
  654. package/src/core.ts +13 -0
  655. package/src/funcs/devices-add.ts +165 -0
  656. package/src/funcs/devices-connect.ts +177 -0
  657. package/src/funcs/health-get.ts +142 -0
  658. package/src/funcs/instances-delete.ts +167 -0
  659. package/src/funcs/interactions-fetch.ts +176 -0
  660. package/src/funcs/interactions-submit.ts +176 -0
  661. package/src/funcs/journeys-get-state.ts +167 -0
  662. package/src/funcs/journeys-start.ts +165 -0
  663. package/src/funcs/tasks-get-schema.ts +167 -0
  664. package/src/funcs/tasks-list-schema.ts +167 -0
  665. package/src/funcs/tasks-list.ts +173 -0
  666. package/src/funcs/tasks-update.ts +173 -0
  667. package/src/funcs/tokens-generate.ts +179 -0
  668. package/src/hooks/hooks.ts +132 -0
  669. package/src/hooks/index.ts +6 -0
  670. package/src/hooks/registration.ts +14 -0
  671. package/src/hooks/types.ts +107 -0
  672. package/src/index.ts +9 -0
  673. package/src/lib/base64.ts +39 -0
  674. package/src/lib/config.ts +67 -0
  675. package/src/lib/dlv.ts +53 -0
  676. package/src/lib/encodings.ts +501 -0
  677. package/src/lib/env.ts +57 -0
  678. package/src/lib/files.ts +82 -0
  679. package/src/lib/http.ts +323 -0
  680. package/src/lib/is-plain-object.ts +43 -0
  681. package/src/lib/logger.ts +9 -0
  682. package/src/lib/matchers.ts +352 -0
  683. package/src/lib/primitives.ts +150 -0
  684. package/src/lib/retries.ts +218 -0
  685. package/src/lib/schemas.ts +94 -0
  686. package/src/lib/sdks.ts +406 -0
  687. package/src/lib/security.ts +264 -0
  688. package/src/lib/url.ts +33 -0
  689. package/src/models/errors/go-default-error.ts +40 -0
  690. package/src/models/errors/go-error.ts +35 -0
  691. package/src/models/errors/http-client-errors.ts +62 -0
  692. package/src/models/errors/index.ts +9 -0
  693. package/src/models/errors/response-validation-error.ts +50 -0
  694. package/src/models/errors/sdk-validation-error.ts +54 -0
  695. package/src/models/index.ts +5 -0
  696. package/src/models/operations/add-device.ts +215 -0
  697. package/src/models/operations/delete-instance.ts +69 -0
  698. package/src/models/operations/device-connect.ts +227 -0
  699. package/src/models/operations/fetch-interaction.ts +3683 -0
  700. package/src/models/operations/get-journey-state.ts +3152 -0
  701. package/src/models/operations/get-task-schema.ts +76 -0
  702. package/src/models/operations/get-tasks-schema.ts +173 -0
  703. package/src/models/operations/get-tasks.ts +144 -0
  704. package/src/models/operations/health.ts +38 -0
  705. package/src/models/operations/index.ts +17 -0
  706. package/src/models/operations/post-auth-realms-go-protocol-openid-connect-token.ts +148 -0
  707. package/src/models/operations/start-journey.ts +3785 -0
  708. package/src/models/operations/submit-interaction.ts +3977 -0
  709. package/src/models/operations/update-task.ts +3733 -0
  710. package/src/models/security.ts +34 -0
  711. package/src/sdk/devices.ts +47 -0
  712. package/src/sdk/health.ts +25 -0
  713. package/src/sdk/index.ts +5 -0
  714. package/src/sdk/instances.ts +27 -0
  715. package/src/sdk/interactions.ts +49 -0
  716. package/src/sdk/journeys.ts +45 -0
  717. package/src/sdk/sdk.ts +49 -0
  718. package/src/sdk/tasks.ts +85 -0
  719. package/src/sdk/tokens.ts +29 -0
  720. package/src/types/async.ts +68 -0
  721. package/src/types/blobs.ts +33 -0
  722. package/src/types/const-date-time.ts +15 -0
  723. package/src/types/default-to-zero-value.ts +33 -0
  724. package/src/types/discriminated-union.ts +101 -0
  725. package/src/types/enums.ts +45 -0
  726. package/src/types/fp.ts +50 -0
  727. package/src/types/index.ts +13 -0
  728. package/src/types/operations.ts +105 -0
  729. package/src/types/primitives.ts +168 -0
  730. package/src/types/rfcdate.ts +54 -0
  731. package/src/types/smart-union.ts +154 -0
  732. package/src/types/streams.ts +21 -0
  733. package/src/types/unrecognized.ts +35 -0
  734. package/tsconfig.json +40 -0
@@ -0,0 +1,1363 @@
1
+ import * as z from "zod/v4-mini";
2
+ import { OpenEnum } from "../../types/enums.js";
3
+ import { Result as SafeParseResult } from "../../types/fp.js";
4
+ import { SDKValidationError } from "../errors/sdk-validation-error.js";
5
+ export type GetJourneyStateRequest = {
6
+ /**
7
+ * Journey Instance Id, a unique identifier for a started journey instance.
8
+ */
9
+ instanceId: string;
10
+ filterKeys?: Array<string> | undefined;
11
+ };
12
+ export declare const GetJourneyStateStatus: {
13
+ readonly Completed: "Completed";
14
+ readonly InProgress: "InProgress";
15
+ readonly Failed: "Failed";
16
+ readonly Paused: "Paused";
17
+ };
18
+ export type GetJourneyStateStatus = OpenEnum<typeof GetJourneyStateStatus>;
19
+ export type MetaData = {
20
+ createdTime?: string | undefined;
21
+ completedTime?: string | undefined;
22
+ [additionalProperties: string]: unknown;
23
+ };
24
+ export type GetJourneyStateIdentityAlias = {
25
+ /**
26
+ * Title of an individual such as Mr, Mrs, Dr, Sir
27
+ */
28
+ title?: string | undefined;
29
+ /**
30
+ * A person's name used by their collegues and friends to address them
31
+ */
32
+ firstName?: string | undefined;
33
+ /**
34
+ * Any other registered names used by the individual, not aliases
35
+ */
36
+ middleNames?: Array<string> | undefined;
37
+ /**
38
+ * Any family names for the individual
39
+ */
40
+ lastNames?: Array<string> | undefined;
41
+ /**
42
+ * Any family names for the individual
43
+ */
44
+ lastNamesAtBirth?: Array<string> | undefined;
45
+ };
46
+ export declare const GetJourneyStateIdentityRelationship: {
47
+ readonly Mother: "mother";
48
+ readonly Father: "father";
49
+ readonly MaternalGrandFather: "maternalGrandFather";
50
+ readonly MaternalGrandMother: "maternalGrandMother";
51
+ readonly PaternalGrandFather: "paternalGrandFather";
52
+ readonly PaternalGrandMother: "paternalGrandMother";
53
+ };
54
+ export type GetJourneyStateIdentityRelationship = OpenEnum<typeof GetJourneyStateIdentityRelationship>;
55
+ export type GetJourneyStateIdentityRelatedPerson = {
56
+ /**
57
+ * Title of an individual such as Mr, Mrs, Dr, Sir
58
+ */
59
+ title?: string | undefined;
60
+ /**
61
+ * A person's name used by their collegues and friends to address them
62
+ */
63
+ firstName?: string | undefined;
64
+ /**
65
+ * Any other registered names used by the individual, not aliases
66
+ */
67
+ middleNames?: Array<string> | undefined;
68
+ /**
69
+ * Any family names for the individual
70
+ */
71
+ lastNames?: Array<string> | undefined;
72
+ /**
73
+ * Any family names for the individual
74
+ */
75
+ lastNamesAtBirth?: Array<string> | undefined;
76
+ relationship: GetJourneyStateIdentityRelationship;
77
+ };
78
+ export type GetJourneyStateIdentityCurrentAddressLocation = {
79
+ latitude?: string | undefined;
80
+ longitude?: string | undefined;
81
+ geoAccuracy?: string | undefined;
82
+ /**
83
+ * A What3words designation associated with this location with '.' separator.
84
+ */
85
+ what3words?: string | undefined;
86
+ };
87
+ export type GetJourneyStateIdentityCurrentAddress = {
88
+ /**
89
+ * Unformatted line based address
90
+ */
91
+ lines?: Array<string> | undefined;
92
+ /**
93
+ * The address as a single line
94
+ */
95
+ addressString?: string | undefined;
96
+ /**
97
+ * The primary delivery point for a premise or building. This could be a house number, a building name, etc.
98
+ */
99
+ premise?: string | undefined;
100
+ /**
101
+ * The name of a building or a building complex. In the US, this is the street number.
102
+ */
103
+ building?: string | undefined;
104
+ /**
105
+ * The name of a sub-building, such as a flat or apartment number.
106
+ */
107
+ subBuilding?: string | undefined;
108
+ /**
109
+ * This field holds the most common street or block data element within a country. For instance, USA Street
110
+ */
111
+ thoroughfare?: string | undefined;
112
+ /**
113
+ * The name of a dependent street or block, such as a street within a complex.
114
+ */
115
+ dependentThoroughfare?: string | undefined;
116
+ /**
117
+ * This field holds the most common population center data element within a country. For instance, USA City, Canadian Municipality
118
+ */
119
+ locality?: string | undefined;
120
+ /**
121
+ * This is a smaller area within a locality, such as a neighborhood or district. Like Manhattan in New York City, or Soho in London.
122
+ */
123
+ dependentLocality?: string | undefined;
124
+ /**
125
+ * This is an even smaller area within a dependent locality, often used in very detailed addresses.
126
+ */
127
+ doubleDependentLocality?: string | undefined;
128
+ /**
129
+ * This field contains the complete postal code for a particular delivery point, should such detail be able to be determined. For example ZIP code in the US
130
+ */
131
+ postalCode?: string | undefined;
132
+ /**
133
+ * This field contains the post box number associated with a particular delivery point, should one exist.
134
+ */
135
+ postBox?: string | undefined;
136
+ /**
137
+ * Country the address is in. It must be a valid ISO2 or ISO3 country code
138
+ */
139
+ country?: string | undefined;
140
+ superAdministrativeArea?: string | undefined;
141
+ administrativeArea?: string | undefined;
142
+ subAdministrativeArea?: string | undefined;
143
+ organization?: string | undefined;
144
+ location?: GetJourneyStateIdentityCurrentAddressLocation | undefined;
145
+ };
146
+ export type GetJourneyStateIdentityPreviousAddressLocation = {
147
+ latitude?: string | undefined;
148
+ longitude?: string | undefined;
149
+ geoAccuracy?: string | undefined;
150
+ /**
151
+ * A What3words designation associated with this location with '.' separator.
152
+ */
153
+ what3words?: string | undefined;
154
+ };
155
+ export type GetJourneyStateIdentityPreviousAddress = {
156
+ /**
157
+ * Unformatted line based address
158
+ */
159
+ lines?: Array<string> | undefined;
160
+ /**
161
+ * The address as a single line
162
+ */
163
+ addressString?: string | undefined;
164
+ /**
165
+ * The primary delivery point for a premise or building. This could be a house number, a building name, etc.
166
+ */
167
+ premise?: string | undefined;
168
+ /**
169
+ * The name of a building or a building complex. In the US, this is the street number.
170
+ */
171
+ building?: string | undefined;
172
+ /**
173
+ * The name of a sub-building, such as a flat or apartment number.
174
+ */
175
+ subBuilding?: string | undefined;
176
+ /**
177
+ * This field holds the most common street or block data element within a country. For instance, USA Street
178
+ */
179
+ thoroughfare?: string | undefined;
180
+ /**
181
+ * The name of a dependent street or block, such as a street within a complex.
182
+ */
183
+ dependentThoroughfare?: string | undefined;
184
+ /**
185
+ * This field holds the most common population center data element within a country. For instance, USA City, Canadian Municipality
186
+ */
187
+ locality?: string | undefined;
188
+ /**
189
+ * This is a smaller area within a locality, such as a neighborhood or district. Like Manhattan in New York City, or Soho in London.
190
+ */
191
+ dependentLocality?: string | undefined;
192
+ /**
193
+ * This is an even smaller area within a dependent locality, often used in very detailed addresses.
194
+ */
195
+ doubleDependentLocality?: string | undefined;
196
+ /**
197
+ * This field contains the complete postal code for a particular delivery point, should such detail be able to be determined. For example ZIP code in the US
198
+ */
199
+ postalCode?: string | undefined;
200
+ /**
201
+ * This field contains the post box number associated with a particular delivery point, should one exist.
202
+ */
203
+ postBox?: string | undefined;
204
+ /**
205
+ * Country the address is in. It must be a valid ISO2 or ISO3 country code
206
+ */
207
+ country?: string | undefined;
208
+ superAdministrativeArea?: string | undefined;
209
+ administrativeArea?: string | undefined;
210
+ subAdministrativeArea?: string | undefined;
211
+ organization?: string | undefined;
212
+ location?: GetJourneyStateIdentityPreviousAddressLocation | undefined;
213
+ /**
214
+ * Specified in year, month and day separated by -. For example 2017-1-1 or 2017-01-01 which conforms to ISO 8601
215
+ */
216
+ fromDate: string;
217
+ /**
218
+ * Specified in year, month and day separated by -. For example 2017-1-1 or 2017-01-01 which conforms to ISO 8601
219
+ */
220
+ toDate: string;
221
+ };
222
+ export type GetJourneyStateIdentityPlaceOfBirthLocation = {
223
+ latitude?: string | undefined;
224
+ longitude?: string | undefined;
225
+ geoAccuracy?: string | undefined;
226
+ /**
227
+ * A What3words designation associated with this location with '.' separator.
228
+ */
229
+ what3words?: string | undefined;
230
+ };
231
+ export type GetJourneyStateIdentityPlaceOfBirth = {
232
+ /**
233
+ * Unformatted line based address
234
+ */
235
+ lines?: Array<string> | undefined;
236
+ /**
237
+ * The address as a single line
238
+ */
239
+ addressString?: string | undefined;
240
+ /**
241
+ * The primary delivery point for a premise or building. This could be a house number, a building name, etc.
242
+ */
243
+ premise?: string | undefined;
244
+ /**
245
+ * The name of a building or a building complex. In the US, this is the street number.
246
+ */
247
+ building?: string | undefined;
248
+ /**
249
+ * The name of a sub-building, such as a flat or apartment number.
250
+ */
251
+ subBuilding?: string | undefined;
252
+ /**
253
+ * This field holds the most common street or block data element within a country. For instance, USA Street
254
+ */
255
+ thoroughfare?: string | undefined;
256
+ /**
257
+ * The name of a dependent street or block, such as a street within a complex.
258
+ */
259
+ dependentThoroughfare?: string | undefined;
260
+ /**
261
+ * This field holds the most common population center data element within a country. For instance, USA City, Canadian Municipality
262
+ */
263
+ locality?: string | undefined;
264
+ /**
265
+ * This is a smaller area within a locality, such as a neighborhood or district. Like Manhattan in New York City, or Soho in London.
266
+ */
267
+ dependentLocality?: string | undefined;
268
+ /**
269
+ * This is an even smaller area within a dependent locality, often used in very detailed addresses.
270
+ */
271
+ doubleDependentLocality?: string | undefined;
272
+ /**
273
+ * This field contains the complete postal code for a particular delivery point, should such detail be able to be determined. For example ZIP code in the US
274
+ */
275
+ postalCode?: string | undefined;
276
+ /**
277
+ * This field contains the post box number associated with a particular delivery point, should one exist.
278
+ */
279
+ postBox?: string | undefined;
280
+ /**
281
+ * Country the address is in. It must be a valid ISO2 or ISO3 country code
282
+ */
283
+ country?: string | undefined;
284
+ superAdministrativeArea?: string | undefined;
285
+ administrativeArea?: string | undefined;
286
+ subAdministrativeArea?: string | undefined;
287
+ organization?: string | undefined;
288
+ location?: GetJourneyStateIdentityPlaceOfBirthLocation | undefined;
289
+ };
290
+ export type GetJourneyStateIdentityIdNumber = {
291
+ /**
292
+ * The type of phone number, such as landline, mobile, fax, unknown etc
293
+ */
294
+ type: string;
295
+ /**
296
+ * ID number eg, National Insurance Number in UK, Social Securtiy Number in US
297
+ */
298
+ idNumber: string;
299
+ /**
300
+ * Country the address is in. It must be a valid ISO2 or ISO3 country code
301
+ */
302
+ country?: string | undefined;
303
+ };
304
+ export type GetJourneyStateIdentityPhone = {
305
+ /**
306
+ * The type of phone number, such as landline, mobile, fax, unknown etc
307
+ */
308
+ type: string;
309
+ /**
310
+ * Phone number, ideally in international format with +(Country Code)
311
+ */
312
+ number: string;
313
+ };
314
+ export type GetJourneyStateIdentityEmail = {
315
+ /**
316
+ * The type of email, such as home, work, unknown etc
317
+ */
318
+ type: string;
319
+ /**
320
+ * Email address
321
+ */
322
+ email: string;
323
+ };
324
+ export type GetJourneyStateIdentitySocial = {
325
+ /**
326
+ * An agreed standardised name for the social media platform this identity relates to such as Facebook, Twitter, unknown etc
327
+ */
328
+ type: string;
329
+ /**
330
+ * the identity used on this platform
331
+ */
332
+ identity: string;
333
+ };
334
+ export type GetJourneyStateIdentity = {
335
+ /**
336
+ * Title of an individual such as Mr, Mrs, Dr, Sir
337
+ */
338
+ title?: string | undefined;
339
+ /**
340
+ * A person's name used by their collegues and friends to address them
341
+ */
342
+ firstName?: string | undefined;
343
+ /**
344
+ * Any other registered names used by the individual, not aliases
345
+ */
346
+ middleNames?: Array<string> | undefined;
347
+ /**
348
+ * Any family names for the individual
349
+ */
350
+ lastNames?: Array<string> | undefined;
351
+ /**
352
+ * Any family names for the individual
353
+ */
354
+ lastNamesAtBirth?: Array<string> | undefined;
355
+ aliases?: Array<GetJourneyStateIdentityAlias> | undefined;
356
+ relatedPersons?: Array<GetJourneyStateIdentityRelatedPerson> | undefined;
357
+ /**
358
+ * Specified in year, month and day separated by -. For example 2017-1-1 or 2017-01-01 which conforms to ISO 8601
359
+ */
360
+ dateOfBirth?: string | undefined;
361
+ gender?: string | undefined;
362
+ currentAddress?: GetJourneyStateIdentityCurrentAddress | undefined;
363
+ previousAddresses?: Array<GetJourneyStateIdentityPreviousAddress> | undefined;
364
+ placeOfBirth?: GetJourneyStateIdentityPlaceOfBirth | undefined;
365
+ idNumbers?: Array<GetJourneyStateIdentityIdNumber> | undefined;
366
+ phones?: Array<GetJourneyStateIdentityPhone> | undefined;
367
+ emails?: Array<GetJourneyStateIdentityEmail> | undefined;
368
+ socials?: Array<GetJourneyStateIdentitySocial> | undefined;
369
+ /**
370
+ * The subject's mother's maiden name, used for identity verification
371
+ */
372
+ mothersMaidenName?: string | undefined;
373
+ };
374
+ export type GetJourneyStateAddress = {
375
+ addressString?: string | undefined;
376
+ extractedAddressString?: string | undefined;
377
+ addressLine1?: string | undefined;
378
+ addressLine2?: string | undefined;
379
+ locality?: string | undefined;
380
+ administrativeArea?: string | undefined;
381
+ postalCode?: string | undefined;
382
+ };
383
+ export type GetJourneyStateDocumentDevice = {
384
+ type?: string | undefined;
385
+ model?: string | undefined;
386
+ hasContactlessReader?: boolean | undefined;
387
+ hasMagneticStripeReader?: boolean | undefined;
388
+ hasCamera?: boolean | undefined;
389
+ serialNumber?: string | undefined;
390
+ manufacturer?: string | undefined;
391
+ };
392
+ export declare const GetJourneyStateName: {
393
+ readonly Com: "COM";
394
+ readonly Sod: "SOD";
395
+ readonly Dg1: "DG1";
396
+ readonly Dg2: "DG2";
397
+ readonly Dg3: "DG3";
398
+ readonly Dg4: "DG4";
399
+ readonly Dg5: "DG5";
400
+ readonly Dg6: "DG6";
401
+ readonly Dg7: "DG7";
402
+ readonly Dg8: "DG8";
403
+ readonly Dg9: "DG9";
404
+ readonly Dg10: "DG10";
405
+ readonly Dg11: "DG11";
406
+ readonly Dg12: "DG12";
407
+ readonly Dg13: "DG13";
408
+ readonly Dg14: "DG14";
409
+ readonly Dg15: "DG15";
410
+ };
411
+ export type GetJourneyStateName = OpenEnum<typeof GetJourneyStateName>;
412
+ export type GetJourneyStateLd = {
413
+ name: GetJourneyStateName;
414
+ data: string;
415
+ [additionalProperties: string]: unknown;
416
+ };
417
+ export declare const GetJourneyStateAuthType: {
418
+ readonly ActiveAuthentication: "ActiveAuthentication";
419
+ readonly BasicAccessControl: "BasicAccessControl";
420
+ readonly ChipAuthentication: "ChipAuthentication";
421
+ readonly PassiveAuthentication: "PassiveAuthentication";
422
+ readonly SupplementalAccessControl: "SupplementalAccessControl";
423
+ readonly ExtendedAccessControl: "ExtendedAccessControl";
424
+ readonly TerminalAuthentication: "TerminalAuthentication";
425
+ };
426
+ export type GetJourneyStateAuthType = OpenEnum<typeof GetJourneyStateAuthType>;
427
+ export declare const GetJourneyStateResult: {
428
+ readonly Success: "Success";
429
+ readonly Failure: "Failure";
430
+ readonly Skipped: "Skipped";
431
+ };
432
+ export type GetJourneyStateResult = OpenEnum<typeof GetJourneyStateResult>;
433
+ export type GetJourneyStateChipAuth = {
434
+ type: GetJourneyStateAuthType;
435
+ result: GetJourneyStateResult;
436
+ [additionalProperties: string]: unknown;
437
+ };
438
+ export type GetJourneyStateChip = {
439
+ lds: Array<GetJourneyStateLd>;
440
+ auth: Array<GetJourneyStateChipAuth>;
441
+ [additionalProperties: string]: unknown;
442
+ };
443
+ export type GetJourneyStateSide = {
444
+ side: string;
445
+ id: string;
446
+ documentQuality: string;
447
+ documentQualityScore: number;
448
+ };
449
+ export type GetJourneyStateClassification = {
450
+ ids?: Array<string> | undefined;
451
+ category?: string | undefined;
452
+ type?: string | undefined;
453
+ subtype?: string | undefined;
454
+ isDoubleSided?: boolean | undefined;
455
+ hasNFC?: boolean | undefined;
456
+ year?: string | undefined;
457
+ countryCode?: string | undefined;
458
+ countryName?: string | undefined;
459
+ stateCode?: string | undefined;
460
+ stateName?: string | undefined;
461
+ sides?: Array<GetJourneyStateSide> | undefined;
462
+ };
463
+ export type GetJourneyStateAggregatedFieldBoundingBox = {
464
+ x: number;
465
+ y: number;
466
+ width: number;
467
+ height: number;
468
+ };
469
+ export type GetJourneyStateAggregatedFieldRegionOfInterest = {
470
+ boundingBox?: GetJourneyStateAggregatedFieldBoundingBox | undefined;
471
+ side: string;
472
+ spectrum?: string | undefined;
473
+ imageId?: string | undefined;
474
+ };
475
+ export type GetJourneyStateAggregatedField = {
476
+ label: string;
477
+ value: string;
478
+ source: string;
479
+ isNonLatin: boolean;
480
+ regionOfInterest?: GetJourneyStateAggregatedFieldRegionOfInterest | undefined;
481
+ };
482
+ export type GetJourneyStateDetailBoundingBox = {
483
+ x: number;
484
+ y: number;
485
+ width: number;
486
+ height: number;
487
+ };
488
+ export type GetJourneyStateDetailRegionOfInterest = {
489
+ boundingBox?: GetJourneyStateDetailBoundingBox | undefined;
490
+ side: string;
491
+ spectrum?: string | undefined;
492
+ imageId?: string | undefined;
493
+ };
494
+ export type GetJourneyStateDetail = {
495
+ label: string;
496
+ value: string;
497
+ source: string;
498
+ isNonLatin: boolean;
499
+ regionOfInterest?: GetJourneyStateDetailRegionOfInterest | undefined;
500
+ };
501
+ export type GetJourneyStateExtractedField = {
502
+ label: string;
503
+ details: Array<GetJourneyStateDetail>;
504
+ };
505
+ export type GetJourneyStateExtractedImage = {
506
+ label: string;
507
+ side: string;
508
+ imageID: string;
509
+ };
510
+ export type GetJourneyStateExtraction = {
511
+ aggregatedFields?: Array<GetJourneyStateAggregatedField> | undefined;
512
+ extractedFields?: Array<GetJourneyStateExtractedField> | undefined;
513
+ extractedImages?: Array<GetJourneyStateExtractedImage> | undefined;
514
+ };
515
+ export type GetJourneyStateValidationCheckBoundingBox = {
516
+ x: number;
517
+ y: number;
518
+ width: number;
519
+ height: number;
520
+ };
521
+ export type GetJourneyStateValidationCheckRegionOfInterest = {
522
+ boundingBox?: GetJourneyStateValidationCheckBoundingBox | undefined;
523
+ side: string;
524
+ spectrum?: string | undefined;
525
+ imageId?: string | undefined;
526
+ };
527
+ export type GetJourneyStateValidationCheck = {
528
+ name: string;
529
+ title: string;
530
+ info: string;
531
+ validationResult: string;
532
+ resultInfo: string;
533
+ weight: string;
534
+ regionOfInterests?: Array<GetJourneyStateValidationCheckRegionOfInterest> | undefined;
535
+ type: string;
536
+ };
537
+ export type GetJourneyStateAggregatedValidationCheckBoundingBox = {
538
+ x: number;
539
+ y: number;
540
+ width: number;
541
+ height: number;
542
+ };
543
+ export type GetJourneyStateAggregatedValidationCheckRegionOfInterest = {
544
+ boundingBox?: GetJourneyStateAggregatedValidationCheckBoundingBox | undefined;
545
+ side: string;
546
+ spectrum?: string | undefined;
547
+ imageId?: string | undefined;
548
+ };
549
+ export type GetJourneyStateAggregatedValidationCheck = {
550
+ name: string;
551
+ title: string;
552
+ info: string;
553
+ validationResult: string;
554
+ resultInfo: string;
555
+ weight: string;
556
+ regionOfInterests?: Array<GetJourneyStateAggregatedValidationCheckRegionOfInterest> | undefined;
557
+ type: string;
558
+ };
559
+ export type GetJourneyStateValidation = {
560
+ validationChecks?: Array<GetJourneyStateValidationCheck> | undefined;
561
+ aggregatedValidationChecks?: Array<GetJourneyStateAggregatedValidationCheck> | undefined;
562
+ };
563
+ export type GetJourneyStateDocumentAlias = {
564
+ /**
565
+ * Title of an individual such as Mr, Mrs, Dr, Sir
566
+ */
567
+ title?: string | undefined;
568
+ /**
569
+ * A person's name used by their collegues and friends to address them
570
+ */
571
+ firstName?: string | undefined;
572
+ /**
573
+ * Any other registered names used by the individual, not aliases
574
+ */
575
+ middleNames?: Array<string> | undefined;
576
+ /**
577
+ * Any family names for the individual
578
+ */
579
+ lastNames?: Array<string> | undefined;
580
+ /**
581
+ * Any family names for the individual
582
+ */
583
+ lastNamesAtBirth?: Array<string> | undefined;
584
+ };
585
+ export declare const GetJourneyStateDocumentRelationship: {
586
+ readonly Mother: "mother";
587
+ readonly Father: "father";
588
+ readonly MaternalGrandFather: "maternalGrandFather";
589
+ readonly MaternalGrandMother: "maternalGrandMother";
590
+ readonly PaternalGrandFather: "paternalGrandFather";
591
+ readonly PaternalGrandMother: "paternalGrandMother";
592
+ };
593
+ export type GetJourneyStateDocumentRelationship = OpenEnum<typeof GetJourneyStateDocumentRelationship>;
594
+ export type GetJourneyStateDocumentRelatedPerson = {
595
+ /**
596
+ * Title of an individual such as Mr, Mrs, Dr, Sir
597
+ */
598
+ title?: string | undefined;
599
+ /**
600
+ * A person's name used by their collegues and friends to address them
601
+ */
602
+ firstName?: string | undefined;
603
+ /**
604
+ * Any other registered names used by the individual, not aliases
605
+ */
606
+ middleNames?: Array<string> | undefined;
607
+ /**
608
+ * Any family names for the individual
609
+ */
610
+ lastNames?: Array<string> | undefined;
611
+ /**
612
+ * Any family names for the individual
613
+ */
614
+ lastNamesAtBirth?: Array<string> | undefined;
615
+ relationship: GetJourneyStateDocumentRelationship;
616
+ };
617
+ export type GetJourneyStateDocumentCurrentAddressLocation = {
618
+ latitude?: string | undefined;
619
+ longitude?: string | undefined;
620
+ geoAccuracy?: string | undefined;
621
+ /**
622
+ * A What3words designation associated with this location with '.' separator.
623
+ */
624
+ what3words?: string | undefined;
625
+ };
626
+ export type GetJourneyStateDocumentCurrentAddress = {
627
+ /**
628
+ * Unformatted line based address
629
+ */
630
+ lines?: Array<string> | undefined;
631
+ /**
632
+ * The address as a single line
633
+ */
634
+ addressString?: string | undefined;
635
+ /**
636
+ * The primary delivery point for a premise or building. This could be a house number, a building name, etc.
637
+ */
638
+ premise?: string | undefined;
639
+ /**
640
+ * The name of a building or a building complex. In the US, this is the street number.
641
+ */
642
+ building?: string | undefined;
643
+ /**
644
+ * The name of a sub-building, such as a flat or apartment number.
645
+ */
646
+ subBuilding?: string | undefined;
647
+ /**
648
+ * This field holds the most common street or block data element within a country. For instance, USA Street
649
+ */
650
+ thoroughfare?: string | undefined;
651
+ /**
652
+ * The name of a dependent street or block, such as a street within a complex.
653
+ */
654
+ dependentThoroughfare?: string | undefined;
655
+ /**
656
+ * This field holds the most common population center data element within a country. For instance, USA City, Canadian Municipality
657
+ */
658
+ locality?: string | undefined;
659
+ /**
660
+ * This is a smaller area within a locality, such as a neighborhood or district. Like Manhattan in New York City, or Soho in London.
661
+ */
662
+ dependentLocality?: string | undefined;
663
+ /**
664
+ * This is an even smaller area within a dependent locality, often used in very detailed addresses.
665
+ */
666
+ doubleDependentLocality?: string | undefined;
667
+ /**
668
+ * This field contains the complete postal code for a particular delivery point, should such detail be able to be determined. For example ZIP code in the US
669
+ */
670
+ postalCode?: string | undefined;
671
+ /**
672
+ * This field contains the post box number associated with a particular delivery point, should one exist.
673
+ */
674
+ postBox?: string | undefined;
675
+ /**
676
+ * Country the address is in. It must be a valid ISO2 or ISO3 country code
677
+ */
678
+ country?: string | undefined;
679
+ superAdministrativeArea?: string | undefined;
680
+ administrativeArea?: string | undefined;
681
+ subAdministrativeArea?: string | undefined;
682
+ organization?: string | undefined;
683
+ location?: GetJourneyStateDocumentCurrentAddressLocation | undefined;
684
+ };
685
+ export type GetJourneyStateDocumentPreviousAddressLocation = {
686
+ latitude?: string | undefined;
687
+ longitude?: string | undefined;
688
+ geoAccuracy?: string | undefined;
689
+ /**
690
+ * A What3words designation associated with this location with '.' separator.
691
+ */
692
+ what3words?: string | undefined;
693
+ };
694
+ export type GetJourneyStateDocumentPreviousAddress = {
695
+ /**
696
+ * Unformatted line based address
697
+ */
698
+ lines?: Array<string> | undefined;
699
+ /**
700
+ * The address as a single line
701
+ */
702
+ addressString?: string | undefined;
703
+ /**
704
+ * The primary delivery point for a premise or building. This could be a house number, a building name, etc.
705
+ */
706
+ premise?: string | undefined;
707
+ /**
708
+ * The name of a building or a building complex. In the US, this is the street number.
709
+ */
710
+ building?: string | undefined;
711
+ /**
712
+ * The name of a sub-building, such as a flat or apartment number.
713
+ */
714
+ subBuilding?: string | undefined;
715
+ /**
716
+ * This field holds the most common street or block data element within a country. For instance, USA Street
717
+ */
718
+ thoroughfare?: string | undefined;
719
+ /**
720
+ * The name of a dependent street or block, such as a street within a complex.
721
+ */
722
+ dependentThoroughfare?: string | undefined;
723
+ /**
724
+ * This field holds the most common population center data element within a country. For instance, USA City, Canadian Municipality
725
+ */
726
+ locality?: string | undefined;
727
+ /**
728
+ * This is a smaller area within a locality, such as a neighborhood or district. Like Manhattan in New York City, or Soho in London.
729
+ */
730
+ dependentLocality?: string | undefined;
731
+ /**
732
+ * This is an even smaller area within a dependent locality, often used in very detailed addresses.
733
+ */
734
+ doubleDependentLocality?: string | undefined;
735
+ /**
736
+ * This field contains the complete postal code for a particular delivery point, should such detail be able to be determined. For example ZIP code in the US
737
+ */
738
+ postalCode?: string | undefined;
739
+ /**
740
+ * This field contains the post box number associated with a particular delivery point, should one exist.
741
+ */
742
+ postBox?: string | undefined;
743
+ /**
744
+ * Country the address is in. It must be a valid ISO2 or ISO3 country code
745
+ */
746
+ country?: string | undefined;
747
+ superAdministrativeArea?: string | undefined;
748
+ administrativeArea?: string | undefined;
749
+ subAdministrativeArea?: string | undefined;
750
+ organization?: string | undefined;
751
+ location?: GetJourneyStateDocumentPreviousAddressLocation | undefined;
752
+ /**
753
+ * Specified in year, month and day separated by -. For example 2017-1-1 or 2017-01-01 which conforms to ISO 8601
754
+ */
755
+ fromDate: string;
756
+ /**
757
+ * Specified in year, month and day separated by -. For example 2017-1-1 or 2017-01-01 which conforms to ISO 8601
758
+ */
759
+ toDate: string;
760
+ };
761
+ export type GetJourneyStateDocumentPlaceOfBirthLocation = {
762
+ latitude?: string | undefined;
763
+ longitude?: string | undefined;
764
+ geoAccuracy?: string | undefined;
765
+ /**
766
+ * A What3words designation associated with this location with '.' separator.
767
+ */
768
+ what3words?: string | undefined;
769
+ };
770
+ export type GetJourneyStateDocumentPlaceOfBirth = {
771
+ /**
772
+ * Unformatted line based address
773
+ */
774
+ lines?: Array<string> | undefined;
775
+ /**
776
+ * The address as a single line
777
+ */
778
+ addressString?: string | undefined;
779
+ /**
780
+ * The primary delivery point for a premise or building. This could be a house number, a building name, etc.
781
+ */
782
+ premise?: string | undefined;
783
+ /**
784
+ * The name of a building or a building complex. In the US, this is the street number.
785
+ */
786
+ building?: string | undefined;
787
+ /**
788
+ * The name of a sub-building, such as a flat or apartment number.
789
+ */
790
+ subBuilding?: string | undefined;
791
+ /**
792
+ * This field holds the most common street or block data element within a country. For instance, USA Street
793
+ */
794
+ thoroughfare?: string | undefined;
795
+ /**
796
+ * The name of a dependent street or block, such as a street within a complex.
797
+ */
798
+ dependentThoroughfare?: string | undefined;
799
+ /**
800
+ * This field holds the most common population center data element within a country. For instance, USA City, Canadian Municipality
801
+ */
802
+ locality?: string | undefined;
803
+ /**
804
+ * This is a smaller area within a locality, such as a neighborhood or district. Like Manhattan in New York City, or Soho in London.
805
+ */
806
+ dependentLocality?: string | undefined;
807
+ /**
808
+ * This is an even smaller area within a dependent locality, often used in very detailed addresses.
809
+ */
810
+ doubleDependentLocality?: string | undefined;
811
+ /**
812
+ * This field contains the complete postal code for a particular delivery point, should such detail be able to be determined. For example ZIP code in the US
813
+ */
814
+ postalCode?: string | undefined;
815
+ /**
816
+ * This field contains the post box number associated with a particular delivery point, should one exist.
817
+ */
818
+ postBox?: string | undefined;
819
+ /**
820
+ * Country the address is in. It must be a valid ISO2 or ISO3 country code
821
+ */
822
+ country?: string | undefined;
823
+ superAdministrativeArea?: string | undefined;
824
+ administrativeArea?: string | undefined;
825
+ subAdministrativeArea?: string | undefined;
826
+ organization?: string | undefined;
827
+ location?: GetJourneyStateDocumentPlaceOfBirthLocation | undefined;
828
+ };
829
+ export type GetJourneyStateDocumentIdNumber = {
830
+ /**
831
+ * The type of phone number, such as landline, mobile, fax, unknown etc
832
+ */
833
+ type: string;
834
+ /**
835
+ * ID number eg, National Insurance Number in UK, Social Securtiy Number in US
836
+ */
837
+ idNumber: string;
838
+ /**
839
+ * Country the address is in. It must be a valid ISO2 or ISO3 country code
840
+ */
841
+ country?: string | undefined;
842
+ };
843
+ export type GetJourneyStateDocumentPhone = {
844
+ /**
845
+ * The type of phone number, such as landline, mobile, fax, unknown etc
846
+ */
847
+ type: string;
848
+ /**
849
+ * Phone number, ideally in international format with +(Country Code)
850
+ */
851
+ number: string;
852
+ };
853
+ export type GetJourneyStateDocumentEmail = {
854
+ /**
855
+ * The type of email, such as home, work, unknown etc
856
+ */
857
+ type: string;
858
+ /**
859
+ * Email address
860
+ */
861
+ email: string;
862
+ };
863
+ export type GetJourneyStateDocumentSocial = {
864
+ /**
865
+ * An agreed standardised name for the social media platform this identity relates to such as Facebook, Twitter, unknown etc
866
+ */
867
+ type: string;
868
+ /**
869
+ * the identity used on this platform
870
+ */
871
+ identity: string;
872
+ };
873
+ export type GetJourneyStateDocumentSubject = {
874
+ /**
875
+ * Title of an individual such as Mr, Mrs, Dr, Sir
876
+ */
877
+ title?: string | undefined;
878
+ /**
879
+ * A person's name used by their collegues and friends to address them
880
+ */
881
+ firstName?: string | undefined;
882
+ /**
883
+ * Any other registered names used by the individual, not aliases
884
+ */
885
+ middleNames?: Array<string> | undefined;
886
+ /**
887
+ * Any family names for the individual
888
+ */
889
+ lastNames?: Array<string> | undefined;
890
+ /**
891
+ * Any family names for the individual
892
+ */
893
+ lastNamesAtBirth?: Array<string> | undefined;
894
+ aliases?: Array<GetJourneyStateDocumentAlias> | undefined;
895
+ relatedPersons?: Array<GetJourneyStateDocumentRelatedPerson> | undefined;
896
+ /**
897
+ * Specified in year, month and day separated by -. For example 2017-1-1 or 2017-01-01 which conforms to ISO 8601
898
+ */
899
+ dateOfBirth?: string | undefined;
900
+ gender?: string | undefined;
901
+ currentAddress?: GetJourneyStateDocumentCurrentAddress | undefined;
902
+ previousAddresses?: Array<GetJourneyStateDocumentPreviousAddress> | undefined;
903
+ placeOfBirth?: GetJourneyStateDocumentPlaceOfBirth | undefined;
904
+ idNumbers?: Array<GetJourneyStateDocumentIdNumber> | undefined;
905
+ phones?: Array<GetJourneyStateDocumentPhone> | undefined;
906
+ emails?: Array<GetJourneyStateDocumentEmail> | undefined;
907
+ socials?: Array<GetJourneyStateDocumentSocial> | undefined;
908
+ /**
909
+ * The subject's mother's maiden name, used for identity verification
910
+ */
911
+ mothersMaidenName?: string | undefined;
912
+ };
913
+ export type GetJourneyStateDocument = {
914
+ oneDBarcode?: string | undefined;
915
+ address?: GetJourneyStateAddress | undefined;
916
+ applicationDate?: string | undefined;
917
+ applicationNumber?: string | undefined;
918
+ dateOfBirth?: string | undefined;
919
+ placeOfBirth?: string | undefined;
920
+ placeOfBirthNative?: string | undefined;
921
+ bloodType?: string | undefined;
922
+ controlNumber?: string | undefined;
923
+ countryCode?: string | undefined;
924
+ countryName?: string | undefined;
925
+ documentClassCode?: string | undefined;
926
+ documentClassName?: string | undefined;
927
+ documentNumber?: string | undefined;
928
+ documentSignerCertificate?: string | undefined;
929
+ employer?: string | undefined;
930
+ employerAddress?: string | undefined;
931
+ entries?: string | undefined;
932
+ expirationDate?: string | undefined;
933
+ eyeColor?: string | undefined;
934
+ fathersName?: string | undefined;
935
+ fathersNameNative?: string | undefined;
936
+ fathersSurname?: string | undefined;
937
+ firstName?: string | undefined;
938
+ fullName?: string | undefined;
939
+ fullNameNative?: string | undefined;
940
+ givenName?: string | undefined;
941
+ givenNameNative?: string | undefined;
942
+ hairColor?: string | undefined;
943
+ height?: string | undefined;
944
+ /**
945
+ * Specified in year, month and day separated by -. For example 2017-1-1 or 2017-01-01 which conforms to ISO 8601
946
+ */
947
+ issueDate?: string | undefined;
948
+ issuingAuthority?: string | undefined;
949
+ issuingAuthorityNative?: string | undefined;
950
+ issuingStateCode?: string | undefined;
951
+ issuingStateName?: string | undefined;
952
+ licenseClass?: string | undefined;
953
+ licenseEndorsements?: string | undefined;
954
+ licenseRestrictions?: string | undefined;
955
+ mrz?: string | undefined;
956
+ mrz1?: string | undefined;
957
+ mrz2?: string | undefined;
958
+ mrz3?: string | undefined;
959
+ middleName?: string | undefined;
960
+ mothersName?: string | undefined;
961
+ mothersNameNative?: string | undefined;
962
+ mothersSurname?: string | undefined;
963
+ nameSuffix?: string | undefined;
964
+ nationalityCode?: string | undefined;
965
+ nationalityName?: string | undefined;
966
+ nationalityNameNative?: string | undefined;
967
+ occupation?: string | undefined;
968
+ organDonor?: boolean | undefined;
969
+ passportNumber?: string | undefined;
970
+ permitNumber?: string | undefined;
971
+ personalNumber?: string | undefined;
972
+ photo?: string | undefined;
973
+ photoCompressed?: string | undefined;
974
+ photoEncoding?: string | undefined;
975
+ sex?: string | undefined;
976
+ sexNative?: string | undefined;
977
+ signature?: string | undefined;
978
+ signatureCompressed?: string | undefined;
979
+ signatureEncoding?: string | undefined;
980
+ socialSecurityNumber?: string | undefined;
981
+ startDate?: string | undefined;
982
+ surname?: string | undefined;
983
+ surnameNative?: string | undefined;
984
+ visaClass?: string | undefined;
985
+ visaNumber?: string | undefined;
986
+ weight?: string | undefined;
987
+ cardNumber?: string | undefined;
988
+ /**
989
+ * Country the address is in. It must be a valid ISO2 or ISO3 country code
990
+ */
991
+ issuerCountryCode?: string | undefined;
992
+ id?: string | undefined;
993
+ type?: string | undefined;
994
+ category?: string | undefined;
995
+ subtype?: string | undefined;
996
+ format?: string | undefined;
997
+ device?: GetJourneyStateDocumentDevice | undefined;
998
+ side1Image?: string | undefined;
999
+ side2Image?: string | undefined;
1000
+ chip?: GetJourneyStateChip | undefined;
1001
+ classification?: GetJourneyStateClassification | undefined;
1002
+ extraction?: GetJourneyStateExtraction | undefined;
1003
+ validation?: GetJourneyStateValidation | undefined;
1004
+ subType?: string | undefined;
1005
+ number?: string | undefined;
1006
+ /**
1007
+ * Specified in year, month and day separated by -. For example 2017-1-1 or 2017-01-01 which conforms to ISO 8601
1008
+ */
1009
+ expiryDate?: string | undefined;
1010
+ subject?: GetJourneyStateDocumentSubject | undefined;
1011
+ /**
1012
+ * Country the address is in. It must be a valid ISO2 or ISO3 country code
1013
+ */
1014
+ country?: string | undefined;
1015
+ };
1016
+ export type GetJourneyStateBiometric4 = {
1017
+ id?: string | undefined;
1018
+ type?: string | undefined;
1019
+ selfieImage: string;
1020
+ anchorImage: string;
1021
+ };
1022
+ export type GetJourneyStateBiometric3 = {
1023
+ id?: string | undefined;
1024
+ type?: string | undefined;
1025
+ selfieImage: string;
1026
+ selfieImageEncryption?: boolean | undefined;
1027
+ };
1028
+ export type GetJourneyStateBiometric2 = {
1029
+ id?: string | undefined;
1030
+ type?: string | undefined;
1031
+ face1Image: string;
1032
+ face2Image: string;
1033
+ };
1034
+ export type GetJourneyStateBiometric1 = {
1035
+ id?: string | undefined;
1036
+ type?: string | undefined;
1037
+ faceImage: string;
1038
+ };
1039
+ export type GetJourneyStateBiometricUnion = GetJourneyStateBiometric2 | GetJourneyStateBiometric4 | GetJourneyStateBiometric1 | GetJourneyStateBiometric3;
1040
+ export type GetJourneyStateUser = {
1041
+ id: string;
1042
+ email: string;
1043
+ domain: string;
1044
+ };
1045
+ export type GetJourneyStateClient = {
1046
+ id: string;
1047
+ ip: string;
1048
+ address: string;
1049
+ };
1050
+ export type GetJourneyStateModel = {
1051
+ identifier: string;
1052
+ name: string;
1053
+ };
1054
+ export type GetJourneyStateSessionDevice = {
1055
+ id: string;
1056
+ manufacturer: string;
1057
+ model: GetJourneyStateModel;
1058
+ };
1059
+ export type GetJourneyStateTrace = {
1060
+ id: string;
1061
+ };
1062
+ export type GetJourneyStateSpan = {
1063
+ id: string;
1064
+ };
1065
+ export type GetJourneyStateTransaction = {
1066
+ id: string;
1067
+ };
1068
+ export type GetJourneyStateSessionAuth = {
1069
+ id: string;
1070
+ scope?: string | undefined;
1071
+ codeVerifier?: string | undefined;
1072
+ code?: string | undefined;
1073
+ state?: string | undefined;
1074
+ redirectUri?: string | undefined;
1075
+ responseType?: string | undefined;
1076
+ clientId?: string | undefined;
1077
+ clientSecret?: string | undefined;
1078
+ };
1079
+ export type GetJourneyStateSession = {
1080
+ user?: GetJourneyStateUser | undefined;
1081
+ client?: GetJourneyStateClient | undefined;
1082
+ device?: GetJourneyStateSessionDevice | undefined;
1083
+ trace?: GetJourneyStateTrace | undefined;
1084
+ span?: GetJourneyStateSpan | undefined;
1085
+ transaction?: GetJourneyStateTransaction | undefined;
1086
+ auth?: Array<GetJourneyStateSessionAuth> | undefined;
1087
+ };
1088
+ export declare const GetJourneyStateConsentType: {
1089
+ readonly Rollup: "rollup";
1090
+ readonly Explicit: "explicit";
1091
+ readonly Implicit: "implicit";
1092
+ };
1093
+ export type GetJourneyStateConsentType = OpenEnum<typeof GetJourneyStateConsentType>;
1094
+ export type GetJourneyStateConsent = {
1095
+ type?: GetJourneyStateConsentType | undefined;
1096
+ id?: string | undefined;
1097
+ version?: string | undefined;
1098
+ url: string;
1099
+ effectiveDate?: string | undefined;
1100
+ expiryDate?: string | undefined;
1101
+ terms?: string | undefined;
1102
+ purpose?: string | undefined;
1103
+ legalBasis?: string | undefined;
1104
+ jurisdiction?: string | undefined;
1105
+ subject?: string | undefined;
1106
+ signatory?: string | undefined;
1107
+ };
1108
+ export type GetJourneyStateSubject = {
1109
+ identity?: GetJourneyStateIdentity | undefined;
1110
+ documents?: Array<GetJourneyStateDocument> | undefined;
1111
+ biometrics?: Array<GetJourneyStateBiometric2 | GetJourneyStateBiometric4 | GetJourneyStateBiometric1 | GetJourneyStateBiometric3> | undefined;
1112
+ sessions?: Array<GetJourneyStateSession> | undefined;
1113
+ consent?: Array<GetJourneyStateConsent> | undefined;
1114
+ uid?: string | undefined;
1115
+ };
1116
+ export type GetJourneyStateContext = {
1117
+ subject: GetJourneyStateSubject;
1118
+ };
1119
+ /**
1120
+ * Success
1121
+ */
1122
+ export type GetJourneyStateResponse = {
1123
+ /**
1124
+ * Journey Instance Id, a unique identifier for a started journey instance.
1125
+ */
1126
+ instanceId: string;
1127
+ status: GetJourneyStateStatus;
1128
+ metaData?: MetaData | undefined;
1129
+ context?: GetJourneyStateContext | undefined;
1130
+ data?: {
1131
+ [k: string]: any;
1132
+ } | undefined;
1133
+ };
1134
+ /** @internal */
1135
+ export type GetJourneyStateRequest$Outbound = {
1136
+ instanceId: string;
1137
+ filterKeys?: Array<string> | undefined;
1138
+ };
1139
+ /** @internal */
1140
+ export declare const GetJourneyStateRequest$outboundSchema: z.ZodMiniType<GetJourneyStateRequest$Outbound, GetJourneyStateRequest>;
1141
+ export declare function getJourneyStateRequestToJSON(getJourneyStateRequest: GetJourneyStateRequest): string;
1142
+ /** @internal */
1143
+ export declare const GetJourneyStateStatus$inboundSchema: z.ZodMiniType<GetJourneyStateStatus, unknown>;
1144
+ /** @internal */
1145
+ export declare const MetaData$inboundSchema: z.ZodMiniType<MetaData, unknown>;
1146
+ export declare function metaDataFromJSON(jsonString: string): SafeParseResult<MetaData, SDKValidationError>;
1147
+ /** @internal */
1148
+ export declare const GetJourneyStateIdentityAlias$inboundSchema: z.ZodMiniType<GetJourneyStateIdentityAlias, unknown>;
1149
+ export declare function getJourneyStateIdentityAliasFromJSON(jsonString: string): SafeParseResult<GetJourneyStateIdentityAlias, SDKValidationError>;
1150
+ /** @internal */
1151
+ export declare const GetJourneyStateIdentityRelationship$inboundSchema: z.ZodMiniType<GetJourneyStateIdentityRelationship, unknown>;
1152
+ /** @internal */
1153
+ export declare const GetJourneyStateIdentityRelatedPerson$inboundSchema: z.ZodMiniType<GetJourneyStateIdentityRelatedPerson, unknown>;
1154
+ export declare function getJourneyStateIdentityRelatedPersonFromJSON(jsonString: string): SafeParseResult<GetJourneyStateIdentityRelatedPerson, SDKValidationError>;
1155
+ /** @internal */
1156
+ export declare const GetJourneyStateIdentityCurrentAddressLocation$inboundSchema: z.ZodMiniType<GetJourneyStateIdentityCurrentAddressLocation, unknown>;
1157
+ export declare function getJourneyStateIdentityCurrentAddressLocationFromJSON(jsonString: string): SafeParseResult<GetJourneyStateIdentityCurrentAddressLocation, SDKValidationError>;
1158
+ /** @internal */
1159
+ export declare const GetJourneyStateIdentityCurrentAddress$inboundSchema: z.ZodMiniType<GetJourneyStateIdentityCurrentAddress, unknown>;
1160
+ export declare function getJourneyStateIdentityCurrentAddressFromJSON(jsonString: string): SafeParseResult<GetJourneyStateIdentityCurrentAddress, SDKValidationError>;
1161
+ /** @internal */
1162
+ export declare const GetJourneyStateIdentityPreviousAddressLocation$inboundSchema: z.ZodMiniType<GetJourneyStateIdentityPreviousAddressLocation, unknown>;
1163
+ export declare function getJourneyStateIdentityPreviousAddressLocationFromJSON(jsonString: string): SafeParseResult<GetJourneyStateIdentityPreviousAddressLocation, SDKValidationError>;
1164
+ /** @internal */
1165
+ export declare const GetJourneyStateIdentityPreviousAddress$inboundSchema: z.ZodMiniType<GetJourneyStateIdentityPreviousAddress, unknown>;
1166
+ export declare function getJourneyStateIdentityPreviousAddressFromJSON(jsonString: string): SafeParseResult<GetJourneyStateIdentityPreviousAddress, SDKValidationError>;
1167
+ /** @internal */
1168
+ export declare const GetJourneyStateIdentityPlaceOfBirthLocation$inboundSchema: z.ZodMiniType<GetJourneyStateIdentityPlaceOfBirthLocation, unknown>;
1169
+ export declare function getJourneyStateIdentityPlaceOfBirthLocationFromJSON(jsonString: string): SafeParseResult<GetJourneyStateIdentityPlaceOfBirthLocation, SDKValidationError>;
1170
+ /** @internal */
1171
+ export declare const GetJourneyStateIdentityPlaceOfBirth$inboundSchema: z.ZodMiniType<GetJourneyStateIdentityPlaceOfBirth, unknown>;
1172
+ export declare function getJourneyStateIdentityPlaceOfBirthFromJSON(jsonString: string): SafeParseResult<GetJourneyStateIdentityPlaceOfBirth, SDKValidationError>;
1173
+ /** @internal */
1174
+ export declare const GetJourneyStateIdentityIdNumber$inboundSchema: z.ZodMiniType<GetJourneyStateIdentityIdNumber, unknown>;
1175
+ export declare function getJourneyStateIdentityIdNumberFromJSON(jsonString: string): SafeParseResult<GetJourneyStateIdentityIdNumber, SDKValidationError>;
1176
+ /** @internal */
1177
+ export declare const GetJourneyStateIdentityPhone$inboundSchema: z.ZodMiniType<GetJourneyStateIdentityPhone, unknown>;
1178
+ export declare function getJourneyStateIdentityPhoneFromJSON(jsonString: string): SafeParseResult<GetJourneyStateIdentityPhone, SDKValidationError>;
1179
+ /** @internal */
1180
+ export declare const GetJourneyStateIdentityEmail$inboundSchema: z.ZodMiniType<GetJourneyStateIdentityEmail, unknown>;
1181
+ export declare function getJourneyStateIdentityEmailFromJSON(jsonString: string): SafeParseResult<GetJourneyStateIdentityEmail, SDKValidationError>;
1182
+ /** @internal */
1183
+ export declare const GetJourneyStateIdentitySocial$inboundSchema: z.ZodMiniType<GetJourneyStateIdentitySocial, unknown>;
1184
+ export declare function getJourneyStateIdentitySocialFromJSON(jsonString: string): SafeParseResult<GetJourneyStateIdentitySocial, SDKValidationError>;
1185
+ /** @internal */
1186
+ export declare const GetJourneyStateIdentity$inboundSchema: z.ZodMiniType<GetJourneyStateIdentity, unknown>;
1187
+ export declare function getJourneyStateIdentityFromJSON(jsonString: string): SafeParseResult<GetJourneyStateIdentity, SDKValidationError>;
1188
+ /** @internal */
1189
+ export declare const GetJourneyStateAddress$inboundSchema: z.ZodMiniType<GetJourneyStateAddress, unknown>;
1190
+ export declare function getJourneyStateAddressFromJSON(jsonString: string): SafeParseResult<GetJourneyStateAddress, SDKValidationError>;
1191
+ /** @internal */
1192
+ export declare const GetJourneyStateDocumentDevice$inboundSchema: z.ZodMiniType<GetJourneyStateDocumentDevice, unknown>;
1193
+ export declare function getJourneyStateDocumentDeviceFromJSON(jsonString: string): SafeParseResult<GetJourneyStateDocumentDevice, SDKValidationError>;
1194
+ /** @internal */
1195
+ export declare const GetJourneyStateName$inboundSchema: z.ZodMiniType<GetJourneyStateName, unknown>;
1196
+ /** @internal */
1197
+ export declare const GetJourneyStateLd$inboundSchema: z.ZodMiniType<GetJourneyStateLd, unknown>;
1198
+ export declare function getJourneyStateLdFromJSON(jsonString: string): SafeParseResult<GetJourneyStateLd, SDKValidationError>;
1199
+ /** @internal */
1200
+ export declare const GetJourneyStateAuthType$inboundSchema: z.ZodMiniType<GetJourneyStateAuthType, unknown>;
1201
+ /** @internal */
1202
+ export declare const GetJourneyStateResult$inboundSchema: z.ZodMiniType<GetJourneyStateResult, unknown>;
1203
+ /** @internal */
1204
+ export declare const GetJourneyStateChipAuth$inboundSchema: z.ZodMiniType<GetJourneyStateChipAuth, unknown>;
1205
+ export declare function getJourneyStateChipAuthFromJSON(jsonString: string): SafeParseResult<GetJourneyStateChipAuth, SDKValidationError>;
1206
+ /** @internal */
1207
+ export declare const GetJourneyStateChip$inboundSchema: z.ZodMiniType<GetJourneyStateChip, unknown>;
1208
+ export declare function getJourneyStateChipFromJSON(jsonString: string): SafeParseResult<GetJourneyStateChip, SDKValidationError>;
1209
+ /** @internal */
1210
+ export declare const GetJourneyStateSide$inboundSchema: z.ZodMiniType<GetJourneyStateSide, unknown>;
1211
+ export declare function getJourneyStateSideFromJSON(jsonString: string): SafeParseResult<GetJourneyStateSide, SDKValidationError>;
1212
+ /** @internal */
1213
+ export declare const GetJourneyStateClassification$inboundSchema: z.ZodMiniType<GetJourneyStateClassification, unknown>;
1214
+ export declare function getJourneyStateClassificationFromJSON(jsonString: string): SafeParseResult<GetJourneyStateClassification, SDKValidationError>;
1215
+ /** @internal */
1216
+ export declare const GetJourneyStateAggregatedFieldBoundingBox$inboundSchema: z.ZodMiniType<GetJourneyStateAggregatedFieldBoundingBox, unknown>;
1217
+ export declare function getJourneyStateAggregatedFieldBoundingBoxFromJSON(jsonString: string): SafeParseResult<GetJourneyStateAggregatedFieldBoundingBox, SDKValidationError>;
1218
+ /** @internal */
1219
+ export declare const GetJourneyStateAggregatedFieldRegionOfInterest$inboundSchema: z.ZodMiniType<GetJourneyStateAggregatedFieldRegionOfInterest, unknown>;
1220
+ export declare function getJourneyStateAggregatedFieldRegionOfInterestFromJSON(jsonString: string): SafeParseResult<GetJourneyStateAggregatedFieldRegionOfInterest, SDKValidationError>;
1221
+ /** @internal */
1222
+ export declare const GetJourneyStateAggregatedField$inboundSchema: z.ZodMiniType<GetJourneyStateAggregatedField, unknown>;
1223
+ export declare function getJourneyStateAggregatedFieldFromJSON(jsonString: string): SafeParseResult<GetJourneyStateAggregatedField, SDKValidationError>;
1224
+ /** @internal */
1225
+ export declare const GetJourneyStateDetailBoundingBox$inboundSchema: z.ZodMiniType<GetJourneyStateDetailBoundingBox, unknown>;
1226
+ export declare function getJourneyStateDetailBoundingBoxFromJSON(jsonString: string): SafeParseResult<GetJourneyStateDetailBoundingBox, SDKValidationError>;
1227
+ /** @internal */
1228
+ export declare const GetJourneyStateDetailRegionOfInterest$inboundSchema: z.ZodMiniType<GetJourneyStateDetailRegionOfInterest, unknown>;
1229
+ export declare function getJourneyStateDetailRegionOfInterestFromJSON(jsonString: string): SafeParseResult<GetJourneyStateDetailRegionOfInterest, SDKValidationError>;
1230
+ /** @internal */
1231
+ export declare const GetJourneyStateDetail$inboundSchema: z.ZodMiniType<GetJourneyStateDetail, unknown>;
1232
+ export declare function getJourneyStateDetailFromJSON(jsonString: string): SafeParseResult<GetJourneyStateDetail, SDKValidationError>;
1233
+ /** @internal */
1234
+ export declare const GetJourneyStateExtractedField$inboundSchema: z.ZodMiniType<GetJourneyStateExtractedField, unknown>;
1235
+ export declare function getJourneyStateExtractedFieldFromJSON(jsonString: string): SafeParseResult<GetJourneyStateExtractedField, SDKValidationError>;
1236
+ /** @internal */
1237
+ export declare const GetJourneyStateExtractedImage$inboundSchema: z.ZodMiniType<GetJourneyStateExtractedImage, unknown>;
1238
+ export declare function getJourneyStateExtractedImageFromJSON(jsonString: string): SafeParseResult<GetJourneyStateExtractedImage, SDKValidationError>;
1239
+ /** @internal */
1240
+ export declare const GetJourneyStateExtraction$inboundSchema: z.ZodMiniType<GetJourneyStateExtraction, unknown>;
1241
+ export declare function getJourneyStateExtractionFromJSON(jsonString: string): SafeParseResult<GetJourneyStateExtraction, SDKValidationError>;
1242
+ /** @internal */
1243
+ export declare const GetJourneyStateValidationCheckBoundingBox$inboundSchema: z.ZodMiniType<GetJourneyStateValidationCheckBoundingBox, unknown>;
1244
+ export declare function getJourneyStateValidationCheckBoundingBoxFromJSON(jsonString: string): SafeParseResult<GetJourneyStateValidationCheckBoundingBox, SDKValidationError>;
1245
+ /** @internal */
1246
+ export declare const GetJourneyStateValidationCheckRegionOfInterest$inboundSchema: z.ZodMiniType<GetJourneyStateValidationCheckRegionOfInterest, unknown>;
1247
+ export declare function getJourneyStateValidationCheckRegionOfInterestFromJSON(jsonString: string): SafeParseResult<GetJourneyStateValidationCheckRegionOfInterest, SDKValidationError>;
1248
+ /** @internal */
1249
+ export declare const GetJourneyStateValidationCheck$inboundSchema: z.ZodMiniType<GetJourneyStateValidationCheck, unknown>;
1250
+ export declare function getJourneyStateValidationCheckFromJSON(jsonString: string): SafeParseResult<GetJourneyStateValidationCheck, SDKValidationError>;
1251
+ /** @internal */
1252
+ export declare const GetJourneyStateAggregatedValidationCheckBoundingBox$inboundSchema: z.ZodMiniType<GetJourneyStateAggregatedValidationCheckBoundingBox, unknown>;
1253
+ export declare function getJourneyStateAggregatedValidationCheckBoundingBoxFromJSON(jsonString: string): SafeParseResult<GetJourneyStateAggregatedValidationCheckBoundingBox, SDKValidationError>;
1254
+ /** @internal */
1255
+ export declare const GetJourneyStateAggregatedValidationCheckRegionOfInterest$inboundSchema: z.ZodMiniType<GetJourneyStateAggregatedValidationCheckRegionOfInterest, unknown>;
1256
+ export declare function getJourneyStateAggregatedValidationCheckRegionOfInterestFromJSON(jsonString: string): SafeParseResult<GetJourneyStateAggregatedValidationCheckRegionOfInterest, SDKValidationError>;
1257
+ /** @internal */
1258
+ export declare const GetJourneyStateAggregatedValidationCheck$inboundSchema: z.ZodMiniType<GetJourneyStateAggregatedValidationCheck, unknown>;
1259
+ export declare function getJourneyStateAggregatedValidationCheckFromJSON(jsonString: string): SafeParseResult<GetJourneyStateAggregatedValidationCheck, SDKValidationError>;
1260
+ /** @internal */
1261
+ export declare const GetJourneyStateValidation$inboundSchema: z.ZodMiniType<GetJourneyStateValidation, unknown>;
1262
+ export declare function getJourneyStateValidationFromJSON(jsonString: string): SafeParseResult<GetJourneyStateValidation, SDKValidationError>;
1263
+ /** @internal */
1264
+ export declare const GetJourneyStateDocumentAlias$inboundSchema: z.ZodMiniType<GetJourneyStateDocumentAlias, unknown>;
1265
+ export declare function getJourneyStateDocumentAliasFromJSON(jsonString: string): SafeParseResult<GetJourneyStateDocumentAlias, SDKValidationError>;
1266
+ /** @internal */
1267
+ export declare const GetJourneyStateDocumentRelationship$inboundSchema: z.ZodMiniType<GetJourneyStateDocumentRelationship, unknown>;
1268
+ /** @internal */
1269
+ export declare const GetJourneyStateDocumentRelatedPerson$inboundSchema: z.ZodMiniType<GetJourneyStateDocumentRelatedPerson, unknown>;
1270
+ export declare function getJourneyStateDocumentRelatedPersonFromJSON(jsonString: string): SafeParseResult<GetJourneyStateDocumentRelatedPerson, SDKValidationError>;
1271
+ /** @internal */
1272
+ export declare const GetJourneyStateDocumentCurrentAddressLocation$inboundSchema: z.ZodMiniType<GetJourneyStateDocumentCurrentAddressLocation, unknown>;
1273
+ export declare function getJourneyStateDocumentCurrentAddressLocationFromJSON(jsonString: string): SafeParseResult<GetJourneyStateDocumentCurrentAddressLocation, SDKValidationError>;
1274
+ /** @internal */
1275
+ export declare const GetJourneyStateDocumentCurrentAddress$inboundSchema: z.ZodMiniType<GetJourneyStateDocumentCurrentAddress, unknown>;
1276
+ export declare function getJourneyStateDocumentCurrentAddressFromJSON(jsonString: string): SafeParseResult<GetJourneyStateDocumentCurrentAddress, SDKValidationError>;
1277
+ /** @internal */
1278
+ export declare const GetJourneyStateDocumentPreviousAddressLocation$inboundSchema: z.ZodMiniType<GetJourneyStateDocumentPreviousAddressLocation, unknown>;
1279
+ export declare function getJourneyStateDocumentPreviousAddressLocationFromJSON(jsonString: string): SafeParseResult<GetJourneyStateDocumentPreviousAddressLocation, SDKValidationError>;
1280
+ /** @internal */
1281
+ export declare const GetJourneyStateDocumentPreviousAddress$inboundSchema: z.ZodMiniType<GetJourneyStateDocumentPreviousAddress, unknown>;
1282
+ export declare function getJourneyStateDocumentPreviousAddressFromJSON(jsonString: string): SafeParseResult<GetJourneyStateDocumentPreviousAddress, SDKValidationError>;
1283
+ /** @internal */
1284
+ export declare const GetJourneyStateDocumentPlaceOfBirthLocation$inboundSchema: z.ZodMiniType<GetJourneyStateDocumentPlaceOfBirthLocation, unknown>;
1285
+ export declare function getJourneyStateDocumentPlaceOfBirthLocationFromJSON(jsonString: string): SafeParseResult<GetJourneyStateDocumentPlaceOfBirthLocation, SDKValidationError>;
1286
+ /** @internal */
1287
+ export declare const GetJourneyStateDocumentPlaceOfBirth$inboundSchema: z.ZodMiniType<GetJourneyStateDocumentPlaceOfBirth, unknown>;
1288
+ export declare function getJourneyStateDocumentPlaceOfBirthFromJSON(jsonString: string): SafeParseResult<GetJourneyStateDocumentPlaceOfBirth, SDKValidationError>;
1289
+ /** @internal */
1290
+ export declare const GetJourneyStateDocumentIdNumber$inboundSchema: z.ZodMiniType<GetJourneyStateDocumentIdNumber, unknown>;
1291
+ export declare function getJourneyStateDocumentIdNumberFromJSON(jsonString: string): SafeParseResult<GetJourneyStateDocumentIdNumber, SDKValidationError>;
1292
+ /** @internal */
1293
+ export declare const GetJourneyStateDocumentPhone$inboundSchema: z.ZodMiniType<GetJourneyStateDocumentPhone, unknown>;
1294
+ export declare function getJourneyStateDocumentPhoneFromJSON(jsonString: string): SafeParseResult<GetJourneyStateDocumentPhone, SDKValidationError>;
1295
+ /** @internal */
1296
+ export declare const GetJourneyStateDocumentEmail$inboundSchema: z.ZodMiniType<GetJourneyStateDocumentEmail, unknown>;
1297
+ export declare function getJourneyStateDocumentEmailFromJSON(jsonString: string): SafeParseResult<GetJourneyStateDocumentEmail, SDKValidationError>;
1298
+ /** @internal */
1299
+ export declare const GetJourneyStateDocumentSocial$inboundSchema: z.ZodMiniType<GetJourneyStateDocumentSocial, unknown>;
1300
+ export declare function getJourneyStateDocumentSocialFromJSON(jsonString: string): SafeParseResult<GetJourneyStateDocumentSocial, SDKValidationError>;
1301
+ /** @internal */
1302
+ export declare const GetJourneyStateDocumentSubject$inboundSchema: z.ZodMiniType<GetJourneyStateDocumentSubject, unknown>;
1303
+ export declare function getJourneyStateDocumentSubjectFromJSON(jsonString: string): SafeParseResult<GetJourneyStateDocumentSubject, SDKValidationError>;
1304
+ /** @internal */
1305
+ export declare const GetJourneyStateDocument$inboundSchema: z.ZodMiniType<GetJourneyStateDocument, unknown>;
1306
+ export declare function getJourneyStateDocumentFromJSON(jsonString: string): SafeParseResult<GetJourneyStateDocument, SDKValidationError>;
1307
+ /** @internal */
1308
+ export declare const GetJourneyStateBiometric4$inboundSchema: z.ZodMiniType<GetJourneyStateBiometric4, unknown>;
1309
+ export declare function getJourneyStateBiometric4FromJSON(jsonString: string): SafeParseResult<GetJourneyStateBiometric4, SDKValidationError>;
1310
+ /** @internal */
1311
+ export declare const GetJourneyStateBiometric3$inboundSchema: z.ZodMiniType<GetJourneyStateBiometric3, unknown>;
1312
+ export declare function getJourneyStateBiometric3FromJSON(jsonString: string): SafeParseResult<GetJourneyStateBiometric3, SDKValidationError>;
1313
+ /** @internal */
1314
+ export declare const GetJourneyStateBiometric2$inboundSchema: z.ZodMiniType<GetJourneyStateBiometric2, unknown>;
1315
+ export declare function getJourneyStateBiometric2FromJSON(jsonString: string): SafeParseResult<GetJourneyStateBiometric2, SDKValidationError>;
1316
+ /** @internal */
1317
+ export declare const GetJourneyStateBiometric1$inboundSchema: z.ZodMiniType<GetJourneyStateBiometric1, unknown>;
1318
+ export declare function getJourneyStateBiometric1FromJSON(jsonString: string): SafeParseResult<GetJourneyStateBiometric1, SDKValidationError>;
1319
+ /** @internal */
1320
+ export declare const GetJourneyStateBiometricUnion$inboundSchema: z.ZodMiniType<GetJourneyStateBiometricUnion, unknown>;
1321
+ export declare function getJourneyStateBiometricUnionFromJSON(jsonString: string): SafeParseResult<GetJourneyStateBiometricUnion, SDKValidationError>;
1322
+ /** @internal */
1323
+ export declare const GetJourneyStateUser$inboundSchema: z.ZodMiniType<GetJourneyStateUser, unknown>;
1324
+ export declare function getJourneyStateUserFromJSON(jsonString: string): SafeParseResult<GetJourneyStateUser, SDKValidationError>;
1325
+ /** @internal */
1326
+ export declare const GetJourneyStateClient$inboundSchema: z.ZodMiniType<GetJourneyStateClient, unknown>;
1327
+ export declare function getJourneyStateClientFromJSON(jsonString: string): SafeParseResult<GetJourneyStateClient, SDKValidationError>;
1328
+ /** @internal */
1329
+ export declare const GetJourneyStateModel$inboundSchema: z.ZodMiniType<GetJourneyStateModel, unknown>;
1330
+ export declare function getJourneyStateModelFromJSON(jsonString: string): SafeParseResult<GetJourneyStateModel, SDKValidationError>;
1331
+ /** @internal */
1332
+ export declare const GetJourneyStateSessionDevice$inboundSchema: z.ZodMiniType<GetJourneyStateSessionDevice, unknown>;
1333
+ export declare function getJourneyStateSessionDeviceFromJSON(jsonString: string): SafeParseResult<GetJourneyStateSessionDevice, SDKValidationError>;
1334
+ /** @internal */
1335
+ export declare const GetJourneyStateTrace$inboundSchema: z.ZodMiniType<GetJourneyStateTrace, unknown>;
1336
+ export declare function getJourneyStateTraceFromJSON(jsonString: string): SafeParseResult<GetJourneyStateTrace, SDKValidationError>;
1337
+ /** @internal */
1338
+ export declare const GetJourneyStateSpan$inboundSchema: z.ZodMiniType<GetJourneyStateSpan, unknown>;
1339
+ export declare function getJourneyStateSpanFromJSON(jsonString: string): SafeParseResult<GetJourneyStateSpan, SDKValidationError>;
1340
+ /** @internal */
1341
+ export declare const GetJourneyStateTransaction$inboundSchema: z.ZodMiniType<GetJourneyStateTransaction, unknown>;
1342
+ export declare function getJourneyStateTransactionFromJSON(jsonString: string): SafeParseResult<GetJourneyStateTransaction, SDKValidationError>;
1343
+ /** @internal */
1344
+ export declare const GetJourneyStateSessionAuth$inboundSchema: z.ZodMiniType<GetJourneyStateSessionAuth, unknown>;
1345
+ export declare function getJourneyStateSessionAuthFromJSON(jsonString: string): SafeParseResult<GetJourneyStateSessionAuth, SDKValidationError>;
1346
+ /** @internal */
1347
+ export declare const GetJourneyStateSession$inboundSchema: z.ZodMiniType<GetJourneyStateSession, unknown>;
1348
+ export declare function getJourneyStateSessionFromJSON(jsonString: string): SafeParseResult<GetJourneyStateSession, SDKValidationError>;
1349
+ /** @internal */
1350
+ export declare const GetJourneyStateConsentType$inboundSchema: z.ZodMiniType<GetJourneyStateConsentType, unknown>;
1351
+ /** @internal */
1352
+ export declare const GetJourneyStateConsent$inboundSchema: z.ZodMiniType<GetJourneyStateConsent, unknown>;
1353
+ export declare function getJourneyStateConsentFromJSON(jsonString: string): SafeParseResult<GetJourneyStateConsent, SDKValidationError>;
1354
+ /** @internal */
1355
+ export declare const GetJourneyStateSubject$inboundSchema: z.ZodMiniType<GetJourneyStateSubject, unknown>;
1356
+ export declare function getJourneyStateSubjectFromJSON(jsonString: string): SafeParseResult<GetJourneyStateSubject, SDKValidationError>;
1357
+ /** @internal */
1358
+ export declare const GetJourneyStateContext$inboundSchema: z.ZodMiniType<GetJourneyStateContext, unknown>;
1359
+ export declare function getJourneyStateContextFromJSON(jsonString: string): SafeParseResult<GetJourneyStateContext, SDKValidationError>;
1360
+ /** @internal */
1361
+ export declare const GetJourneyStateResponse$inboundSchema: z.ZodMiniType<GetJourneyStateResponse, unknown>;
1362
+ export declare function getJourneyStateResponseFromJSON(jsonString: string): SafeParseResult<GetJourneyStateResponse, SDKValidationError>;
1363
+ //# sourceMappingURL=get-journey-state.d.ts.map