@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,2061 @@
1
+ import * as z from "zod/v4-mini";
2
+ import * as discriminatedUnionTypes from "../../types/discriminated-union.js";
3
+ import { ClosedEnum } from "../../types/enums.js";
4
+ import { Result as SafeParseResult } from "../../types/fp.js";
5
+ import { SDKValidationError } from "../errors/sdk-validation-error.js";
6
+ export type SubmitInteractionSecurity = {
7
+ interactionAccess: string;
8
+ };
9
+ export type Participant = {
10
+ /**
11
+ * Optional domain element identifier
12
+ */
13
+ domainElementId?: string | undefined;
14
+ instruction?: string | undefined;
15
+ };
16
+ export type SubmitInteractionIdentityAlias = {
17
+ /**
18
+ * Title of an individual such as Mr, Mrs, Dr, Sir
19
+ */
20
+ title?: string | undefined;
21
+ /**
22
+ * A person's name used by their collegues and friends to address them
23
+ */
24
+ firstName?: string | undefined;
25
+ /**
26
+ * Any other registered names used by the individual, not aliases
27
+ */
28
+ middleNames?: Array<string> | undefined;
29
+ /**
30
+ * Any family names for the individual
31
+ */
32
+ lastNames?: Array<string> | undefined;
33
+ /**
34
+ * Any family names for the individual
35
+ */
36
+ lastNamesAtBirth?: Array<string> | undefined;
37
+ };
38
+ export declare const SubmitInteractionIdentityRelationship: {
39
+ readonly Mother: "mother";
40
+ readonly Father: "father";
41
+ readonly MaternalGrandFather: "maternalGrandFather";
42
+ readonly MaternalGrandMother: "maternalGrandMother";
43
+ readonly PaternalGrandFather: "paternalGrandFather";
44
+ readonly PaternalGrandMother: "paternalGrandMother";
45
+ };
46
+ export type SubmitInteractionIdentityRelationship = ClosedEnum<typeof SubmitInteractionIdentityRelationship>;
47
+ export type SubmitInteractionIdentityRelatedPerson = {
48
+ /**
49
+ * Title of an individual such as Mr, Mrs, Dr, Sir
50
+ */
51
+ title?: string | undefined;
52
+ /**
53
+ * A person's name used by their collegues and friends to address them
54
+ */
55
+ firstName?: string | undefined;
56
+ /**
57
+ * Any other registered names used by the individual, not aliases
58
+ */
59
+ middleNames?: Array<string> | undefined;
60
+ /**
61
+ * Any family names for the individual
62
+ */
63
+ lastNames?: Array<string> | undefined;
64
+ /**
65
+ * Any family names for the individual
66
+ */
67
+ lastNamesAtBirth?: Array<string> | undefined;
68
+ relationship: SubmitInteractionIdentityRelationship;
69
+ };
70
+ export type SubmitInteractionIdentityCurrentAddressLocation = {
71
+ latitude?: string | undefined;
72
+ longitude?: string | undefined;
73
+ geoAccuracy?: string | undefined;
74
+ /**
75
+ * A What3words designation associated with this location with '.' separator.
76
+ */
77
+ what3words?: string | undefined;
78
+ };
79
+ export type SubmitInteractionIdentityCurrentAddress = {
80
+ /**
81
+ * Unformatted line based address
82
+ */
83
+ lines?: Array<string> | undefined;
84
+ /**
85
+ * The address as a single line
86
+ */
87
+ addressString?: string | undefined;
88
+ /**
89
+ * The primary delivery point for a premise or building. This could be a house number, a building name, etc.
90
+ */
91
+ premise?: string | undefined;
92
+ /**
93
+ * The name of a building or a building complex. In the US, this is the street number.
94
+ */
95
+ building?: string | undefined;
96
+ /**
97
+ * The name of a sub-building, such as a flat or apartment number.
98
+ */
99
+ subBuilding?: string | undefined;
100
+ /**
101
+ * This field holds the most common street or block data element within a country. For instance, USA Street
102
+ */
103
+ thoroughfare?: string | undefined;
104
+ /**
105
+ * The name of a dependent street or block, such as a street within a complex.
106
+ */
107
+ dependentThoroughfare?: string | undefined;
108
+ /**
109
+ * This field holds the most common population center data element within a country. For instance, USA City, Canadian Municipality
110
+ */
111
+ locality?: string | undefined;
112
+ /**
113
+ * This is a smaller area within a locality, such as a neighborhood or district. Like Manhattan in New York City, or Soho in London.
114
+ */
115
+ dependentLocality?: string | undefined;
116
+ /**
117
+ * This is an even smaller area within a dependent locality, often used in very detailed addresses.
118
+ */
119
+ doubleDependentLocality?: string | undefined;
120
+ /**
121
+ * 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
122
+ */
123
+ postalCode?: string | undefined;
124
+ /**
125
+ * This field contains the post box number associated with a particular delivery point, should one exist.
126
+ */
127
+ postBox?: string | undefined;
128
+ /**
129
+ * Country the address is in. It must be a valid ISO2 or ISO3 country code
130
+ */
131
+ country?: string | undefined;
132
+ superAdministrativeArea?: string | undefined;
133
+ administrativeArea?: string | undefined;
134
+ subAdministrativeArea?: string | undefined;
135
+ organization?: string | undefined;
136
+ location?: SubmitInteractionIdentityCurrentAddressLocation | undefined;
137
+ };
138
+ export type SubmitInteractionIdentityPreviousAddressLocation = {
139
+ latitude?: string | undefined;
140
+ longitude?: string | undefined;
141
+ geoAccuracy?: string | undefined;
142
+ /**
143
+ * A What3words designation associated with this location with '.' separator.
144
+ */
145
+ what3words?: string | undefined;
146
+ };
147
+ export type SubmitInteractionIdentityPreviousAddress = {
148
+ /**
149
+ * Unformatted line based address
150
+ */
151
+ lines?: Array<string> | undefined;
152
+ /**
153
+ * The address as a single line
154
+ */
155
+ addressString?: string | undefined;
156
+ /**
157
+ * The primary delivery point for a premise or building. This could be a house number, a building name, etc.
158
+ */
159
+ premise?: string | undefined;
160
+ /**
161
+ * The name of a building or a building complex. In the US, this is the street number.
162
+ */
163
+ building?: string | undefined;
164
+ /**
165
+ * The name of a sub-building, such as a flat or apartment number.
166
+ */
167
+ subBuilding?: string | undefined;
168
+ /**
169
+ * This field holds the most common street or block data element within a country. For instance, USA Street
170
+ */
171
+ thoroughfare?: string | undefined;
172
+ /**
173
+ * The name of a dependent street or block, such as a street within a complex.
174
+ */
175
+ dependentThoroughfare?: string | undefined;
176
+ /**
177
+ * This field holds the most common population center data element within a country. For instance, USA City, Canadian Municipality
178
+ */
179
+ locality?: string | undefined;
180
+ /**
181
+ * This is a smaller area within a locality, such as a neighborhood or district. Like Manhattan in New York City, or Soho in London.
182
+ */
183
+ dependentLocality?: string | undefined;
184
+ /**
185
+ * This is an even smaller area within a dependent locality, often used in very detailed addresses.
186
+ */
187
+ doubleDependentLocality?: string | undefined;
188
+ /**
189
+ * 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
190
+ */
191
+ postalCode?: string | undefined;
192
+ /**
193
+ * This field contains the post box number associated with a particular delivery point, should one exist.
194
+ */
195
+ postBox?: string | undefined;
196
+ /**
197
+ * Country the address is in. It must be a valid ISO2 or ISO3 country code
198
+ */
199
+ country?: string | undefined;
200
+ superAdministrativeArea?: string | undefined;
201
+ administrativeArea?: string | undefined;
202
+ subAdministrativeArea?: string | undefined;
203
+ organization?: string | undefined;
204
+ location?: SubmitInteractionIdentityPreviousAddressLocation | undefined;
205
+ /**
206
+ * Specified in year, month and day separated by -. For example 2017-1-1 or 2017-01-01 which conforms to ISO 8601
207
+ */
208
+ fromDate: string;
209
+ /**
210
+ * Specified in year, month and day separated by -. For example 2017-1-1 or 2017-01-01 which conforms to ISO 8601
211
+ */
212
+ toDate: string;
213
+ };
214
+ export type SubmitInteractionIdentityPlaceOfBirthLocation = {
215
+ latitude?: string | undefined;
216
+ longitude?: string | undefined;
217
+ geoAccuracy?: string | undefined;
218
+ /**
219
+ * A What3words designation associated with this location with '.' separator.
220
+ */
221
+ what3words?: string | undefined;
222
+ };
223
+ export type SubmitInteractionIdentityPlaceOfBirth = {
224
+ /**
225
+ * Unformatted line based address
226
+ */
227
+ lines?: Array<string> | undefined;
228
+ /**
229
+ * The address as a single line
230
+ */
231
+ addressString?: string | undefined;
232
+ /**
233
+ * The primary delivery point for a premise or building. This could be a house number, a building name, etc.
234
+ */
235
+ premise?: string | undefined;
236
+ /**
237
+ * The name of a building or a building complex. In the US, this is the street number.
238
+ */
239
+ building?: string | undefined;
240
+ /**
241
+ * The name of a sub-building, such as a flat or apartment number.
242
+ */
243
+ subBuilding?: string | undefined;
244
+ /**
245
+ * This field holds the most common street or block data element within a country. For instance, USA Street
246
+ */
247
+ thoroughfare?: string | undefined;
248
+ /**
249
+ * The name of a dependent street or block, such as a street within a complex.
250
+ */
251
+ dependentThoroughfare?: string | undefined;
252
+ /**
253
+ * This field holds the most common population center data element within a country. For instance, USA City, Canadian Municipality
254
+ */
255
+ locality?: string | undefined;
256
+ /**
257
+ * This is a smaller area within a locality, such as a neighborhood or district. Like Manhattan in New York City, or Soho in London.
258
+ */
259
+ dependentLocality?: string | undefined;
260
+ /**
261
+ * This is an even smaller area within a dependent locality, often used in very detailed addresses.
262
+ */
263
+ doubleDependentLocality?: string | undefined;
264
+ /**
265
+ * 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
266
+ */
267
+ postalCode?: string | undefined;
268
+ /**
269
+ * This field contains the post box number associated with a particular delivery point, should one exist.
270
+ */
271
+ postBox?: string | undefined;
272
+ /**
273
+ * Country the address is in. It must be a valid ISO2 or ISO3 country code
274
+ */
275
+ country?: string | undefined;
276
+ superAdministrativeArea?: string | undefined;
277
+ administrativeArea?: string | undefined;
278
+ subAdministrativeArea?: string | undefined;
279
+ organization?: string | undefined;
280
+ location?: SubmitInteractionIdentityPlaceOfBirthLocation | undefined;
281
+ };
282
+ export type SubmitInteractionIdentityIdNumber = {
283
+ /**
284
+ * The type of phone number, such as landline, mobile, fax, unknown etc
285
+ */
286
+ type: string;
287
+ /**
288
+ * ID number eg, National Insurance Number in UK, Social Securtiy Number in US
289
+ */
290
+ idNumber: string;
291
+ /**
292
+ * Country the address is in. It must be a valid ISO2 or ISO3 country code
293
+ */
294
+ country?: string | undefined;
295
+ };
296
+ export type SubmitInteractionIdentityPhone = {
297
+ /**
298
+ * The type of phone number, such as landline, mobile, fax, unknown etc
299
+ */
300
+ type: string;
301
+ /**
302
+ * Phone number, ideally in international format with +(Country Code)
303
+ */
304
+ number: string;
305
+ };
306
+ export type SubmitInteractionIdentityEmail = {
307
+ /**
308
+ * The type of email, such as home, work, unknown etc
309
+ */
310
+ type: string;
311
+ /**
312
+ * Email address
313
+ */
314
+ email: string;
315
+ };
316
+ export type SubmitInteractionIdentitySocial = {
317
+ /**
318
+ * An agreed standardised name for the social media platform this identity relates to such as Facebook, Twitter, unknown etc
319
+ */
320
+ type: string;
321
+ /**
322
+ * the identity used on this platform
323
+ */
324
+ identity: string;
325
+ };
326
+ export type SubmitInteractionIdentity = {
327
+ /**
328
+ * Title of an individual such as Mr, Mrs, Dr, Sir
329
+ */
330
+ title?: string | undefined;
331
+ /**
332
+ * A person's name used by their collegues and friends to address them
333
+ */
334
+ firstName?: string | undefined;
335
+ /**
336
+ * Any other registered names used by the individual, not aliases
337
+ */
338
+ middleNames?: Array<string> | undefined;
339
+ /**
340
+ * Any family names for the individual
341
+ */
342
+ lastNames?: Array<string> | undefined;
343
+ /**
344
+ * Any family names for the individual
345
+ */
346
+ lastNamesAtBirth?: Array<string> | undefined;
347
+ aliases?: Array<SubmitInteractionIdentityAlias> | undefined;
348
+ relatedPersons?: Array<SubmitInteractionIdentityRelatedPerson> | undefined;
349
+ /**
350
+ * Specified in year, month and day separated by -. For example 2017-1-1 or 2017-01-01 which conforms to ISO 8601
351
+ */
352
+ dateOfBirth?: string | undefined;
353
+ gender?: string | undefined;
354
+ currentAddress?: SubmitInteractionIdentityCurrentAddress | undefined;
355
+ previousAddresses?: Array<SubmitInteractionIdentityPreviousAddress> | undefined;
356
+ placeOfBirth?: SubmitInteractionIdentityPlaceOfBirth | undefined;
357
+ idNumbers?: Array<SubmitInteractionIdentityIdNumber> | undefined;
358
+ phones?: Array<SubmitInteractionIdentityPhone> | undefined;
359
+ emails?: Array<SubmitInteractionIdentityEmail> | undefined;
360
+ socials?: Array<SubmitInteractionIdentitySocial> | undefined;
361
+ /**
362
+ * The subject's mother's maiden name, used for identity verification
363
+ */
364
+ mothersMaidenName?: string | undefined;
365
+ };
366
+ export type SubmitInteractionAddress = {
367
+ addressString?: string | undefined;
368
+ extractedAddressString?: string | undefined;
369
+ addressLine1?: string | undefined;
370
+ addressLine2?: string | undefined;
371
+ locality?: string | undefined;
372
+ administrativeArea?: string | undefined;
373
+ postalCode?: string | undefined;
374
+ };
375
+ export type SubmitInteractionDocumentDevice = {
376
+ type?: string | undefined;
377
+ model?: string | undefined;
378
+ hasContactlessReader?: boolean | undefined;
379
+ hasMagneticStripeReader?: boolean | undefined;
380
+ hasCamera?: boolean | undefined;
381
+ serialNumber?: string | undefined;
382
+ manufacturer?: string | undefined;
383
+ };
384
+ export declare const SubmitInteractionName: {
385
+ readonly Com: "COM";
386
+ readonly Sod: "SOD";
387
+ readonly Dg1: "DG1";
388
+ readonly Dg2: "DG2";
389
+ readonly Dg3: "DG3";
390
+ readonly Dg4: "DG4";
391
+ readonly Dg5: "DG5";
392
+ readonly Dg6: "DG6";
393
+ readonly Dg7: "DG7";
394
+ readonly Dg8: "DG8";
395
+ readonly Dg9: "DG9";
396
+ readonly Dg10: "DG10";
397
+ readonly Dg11: "DG11";
398
+ readonly Dg12: "DG12";
399
+ readonly Dg13: "DG13";
400
+ readonly Dg14: "DG14";
401
+ readonly Dg15: "DG15";
402
+ };
403
+ export type SubmitInteractionName = ClosedEnum<typeof SubmitInteractionName>;
404
+ export type SubmitInteractionLd = {
405
+ name: SubmitInteractionName;
406
+ data: string;
407
+ [additionalProperties: string]: unknown;
408
+ };
409
+ export declare const SubmitInteractionAuthType: {
410
+ readonly ActiveAuthentication: "ActiveAuthentication";
411
+ readonly BasicAccessControl: "BasicAccessControl";
412
+ readonly ChipAuthentication: "ChipAuthentication";
413
+ readonly PassiveAuthentication: "PassiveAuthentication";
414
+ readonly SupplementalAccessControl: "SupplementalAccessControl";
415
+ readonly ExtendedAccessControl: "ExtendedAccessControl";
416
+ readonly TerminalAuthentication: "TerminalAuthentication";
417
+ };
418
+ export type SubmitInteractionAuthType = ClosedEnum<typeof SubmitInteractionAuthType>;
419
+ export declare const SubmitInteractionResult: {
420
+ readonly Success: "Success";
421
+ readonly Failure: "Failure";
422
+ readonly Skipped: "Skipped";
423
+ };
424
+ export type SubmitInteractionResult = ClosedEnum<typeof SubmitInteractionResult>;
425
+ export type SubmitInteractionChipAuth = {
426
+ type: SubmitInteractionAuthType;
427
+ result: SubmitInteractionResult;
428
+ [additionalProperties: string]: unknown;
429
+ };
430
+ export type SubmitInteractionChip = {
431
+ lds: Array<SubmitInteractionLd>;
432
+ auth: Array<SubmitInteractionChipAuth>;
433
+ [additionalProperties: string]: unknown;
434
+ };
435
+ export type SubmitInteractionSide = {
436
+ side: string;
437
+ id: string;
438
+ documentQuality: string;
439
+ documentQualityScore: number;
440
+ };
441
+ export type SubmitInteractionClassification = {
442
+ ids?: Array<string> | undefined;
443
+ category?: string | undefined;
444
+ type?: string | undefined;
445
+ subtype?: string | undefined;
446
+ isDoubleSided?: boolean | undefined;
447
+ hasNFC?: boolean | undefined;
448
+ year?: string | undefined;
449
+ countryCode?: string | undefined;
450
+ countryName?: string | undefined;
451
+ stateCode?: string | undefined;
452
+ stateName?: string | undefined;
453
+ sides?: Array<SubmitInteractionSide> | undefined;
454
+ };
455
+ export type SubmitInteractionAggregatedFieldBoundingBox = {
456
+ x: number;
457
+ y: number;
458
+ width: number;
459
+ height: number;
460
+ };
461
+ export type SubmitInteractionAggregatedFieldRegionOfInterest = {
462
+ boundingBox?: SubmitInteractionAggregatedFieldBoundingBox | undefined;
463
+ side: string;
464
+ spectrum?: string | undefined;
465
+ imageId?: string | undefined;
466
+ };
467
+ export type SubmitInteractionAggregatedField = {
468
+ label: string;
469
+ value: string;
470
+ source: string;
471
+ isNonLatin: boolean;
472
+ regionOfInterest?: SubmitInteractionAggregatedFieldRegionOfInterest | undefined;
473
+ };
474
+ export type SubmitInteractionDetailBoundingBox = {
475
+ x: number;
476
+ y: number;
477
+ width: number;
478
+ height: number;
479
+ };
480
+ export type SubmitInteractionDetailRegionOfInterest = {
481
+ boundingBox?: SubmitInteractionDetailBoundingBox | undefined;
482
+ side: string;
483
+ spectrum?: string | undefined;
484
+ imageId?: string | undefined;
485
+ };
486
+ export type SubmitInteractionDetail = {
487
+ label: string;
488
+ value: string;
489
+ source: string;
490
+ isNonLatin: boolean;
491
+ regionOfInterest?: SubmitInteractionDetailRegionOfInterest | undefined;
492
+ };
493
+ export type SubmitInteractionExtractedField = {
494
+ label: string;
495
+ details: Array<SubmitInteractionDetail>;
496
+ };
497
+ export type SubmitInteractionExtractedImage = {
498
+ label: string;
499
+ side: string;
500
+ imageID: string;
501
+ };
502
+ export type SubmitInteractionExtraction = {
503
+ aggregatedFields?: Array<SubmitInteractionAggregatedField> | undefined;
504
+ extractedFields?: Array<SubmitInteractionExtractedField> | undefined;
505
+ extractedImages?: Array<SubmitInteractionExtractedImage> | undefined;
506
+ };
507
+ export type SubmitInteractionValidationCheckBoundingBox = {
508
+ x: number;
509
+ y: number;
510
+ width: number;
511
+ height: number;
512
+ };
513
+ export type SubmitInteractionValidationCheckRegionOfInterest = {
514
+ boundingBox?: SubmitInteractionValidationCheckBoundingBox | undefined;
515
+ side: string;
516
+ spectrum?: string | undefined;
517
+ imageId?: string | undefined;
518
+ };
519
+ export type SubmitInteractionValidationCheck = {
520
+ name: string;
521
+ title: string;
522
+ info: string;
523
+ validationResult: string;
524
+ resultInfo: string;
525
+ weight: string;
526
+ regionOfInterests?: Array<SubmitInteractionValidationCheckRegionOfInterest> | undefined;
527
+ type: string;
528
+ };
529
+ export type SubmitInteractionAggregatedValidationCheckBoundingBox = {
530
+ x: number;
531
+ y: number;
532
+ width: number;
533
+ height: number;
534
+ };
535
+ export type SubmitInteractionAggregatedValidationCheckRegionOfInterest = {
536
+ boundingBox?: SubmitInteractionAggregatedValidationCheckBoundingBox | undefined;
537
+ side: string;
538
+ spectrum?: string | undefined;
539
+ imageId?: string | undefined;
540
+ };
541
+ export type SubmitInteractionAggregatedValidationCheck = {
542
+ name: string;
543
+ title: string;
544
+ info: string;
545
+ validationResult: string;
546
+ resultInfo: string;
547
+ weight: string;
548
+ regionOfInterests?: Array<SubmitInteractionAggregatedValidationCheckRegionOfInterest> | undefined;
549
+ type: string;
550
+ };
551
+ export type SubmitInteractionValidation = {
552
+ validationChecks?: Array<SubmitInteractionValidationCheck> | undefined;
553
+ aggregatedValidationChecks?: Array<SubmitInteractionAggregatedValidationCheck> | undefined;
554
+ };
555
+ export type SubmitInteractionDocumentAlias = {
556
+ /**
557
+ * Title of an individual such as Mr, Mrs, Dr, Sir
558
+ */
559
+ title?: string | undefined;
560
+ /**
561
+ * A person's name used by their collegues and friends to address them
562
+ */
563
+ firstName?: string | undefined;
564
+ /**
565
+ * Any other registered names used by the individual, not aliases
566
+ */
567
+ middleNames?: Array<string> | undefined;
568
+ /**
569
+ * Any family names for the individual
570
+ */
571
+ lastNames?: Array<string> | undefined;
572
+ /**
573
+ * Any family names for the individual
574
+ */
575
+ lastNamesAtBirth?: Array<string> | undefined;
576
+ };
577
+ export declare const SubmitInteractionDocumentRelationship: {
578
+ readonly Mother: "mother";
579
+ readonly Father: "father";
580
+ readonly MaternalGrandFather: "maternalGrandFather";
581
+ readonly MaternalGrandMother: "maternalGrandMother";
582
+ readonly PaternalGrandFather: "paternalGrandFather";
583
+ readonly PaternalGrandMother: "paternalGrandMother";
584
+ };
585
+ export type SubmitInteractionDocumentRelationship = ClosedEnum<typeof SubmitInteractionDocumentRelationship>;
586
+ export type SubmitInteractionDocumentRelatedPerson = {
587
+ /**
588
+ * Title of an individual such as Mr, Mrs, Dr, Sir
589
+ */
590
+ title?: string | undefined;
591
+ /**
592
+ * A person's name used by their collegues and friends to address them
593
+ */
594
+ firstName?: string | undefined;
595
+ /**
596
+ * Any other registered names used by the individual, not aliases
597
+ */
598
+ middleNames?: Array<string> | undefined;
599
+ /**
600
+ * Any family names for the individual
601
+ */
602
+ lastNames?: Array<string> | undefined;
603
+ /**
604
+ * Any family names for the individual
605
+ */
606
+ lastNamesAtBirth?: Array<string> | undefined;
607
+ relationship: SubmitInteractionDocumentRelationship;
608
+ };
609
+ export type SubmitInteractionDocumentCurrentAddressLocation = {
610
+ latitude?: string | undefined;
611
+ longitude?: string | undefined;
612
+ geoAccuracy?: string | undefined;
613
+ /**
614
+ * A What3words designation associated with this location with '.' separator.
615
+ */
616
+ what3words?: string | undefined;
617
+ };
618
+ export type SubmitInteractionDocumentCurrentAddress = {
619
+ /**
620
+ * Unformatted line based address
621
+ */
622
+ lines?: Array<string> | undefined;
623
+ /**
624
+ * The address as a single line
625
+ */
626
+ addressString?: string | undefined;
627
+ /**
628
+ * The primary delivery point for a premise or building. This could be a house number, a building name, etc.
629
+ */
630
+ premise?: string | undefined;
631
+ /**
632
+ * The name of a building or a building complex. In the US, this is the street number.
633
+ */
634
+ building?: string | undefined;
635
+ /**
636
+ * The name of a sub-building, such as a flat or apartment number.
637
+ */
638
+ subBuilding?: string | undefined;
639
+ /**
640
+ * This field holds the most common street or block data element within a country. For instance, USA Street
641
+ */
642
+ thoroughfare?: string | undefined;
643
+ /**
644
+ * The name of a dependent street or block, such as a street within a complex.
645
+ */
646
+ dependentThoroughfare?: string | undefined;
647
+ /**
648
+ * This field holds the most common population center data element within a country. For instance, USA City, Canadian Municipality
649
+ */
650
+ locality?: string | undefined;
651
+ /**
652
+ * This is a smaller area within a locality, such as a neighborhood or district. Like Manhattan in New York City, or Soho in London.
653
+ */
654
+ dependentLocality?: string | undefined;
655
+ /**
656
+ * This is an even smaller area within a dependent locality, often used in very detailed addresses.
657
+ */
658
+ doubleDependentLocality?: string | undefined;
659
+ /**
660
+ * 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
661
+ */
662
+ postalCode?: string | undefined;
663
+ /**
664
+ * This field contains the post box number associated with a particular delivery point, should one exist.
665
+ */
666
+ postBox?: string | undefined;
667
+ /**
668
+ * Country the address is in. It must be a valid ISO2 or ISO3 country code
669
+ */
670
+ country?: string | undefined;
671
+ superAdministrativeArea?: string | undefined;
672
+ administrativeArea?: string | undefined;
673
+ subAdministrativeArea?: string | undefined;
674
+ organization?: string | undefined;
675
+ location?: SubmitInteractionDocumentCurrentAddressLocation | undefined;
676
+ };
677
+ export type SubmitInteractionDocumentPreviousAddressLocation = {
678
+ latitude?: string | undefined;
679
+ longitude?: string | undefined;
680
+ geoAccuracy?: string | undefined;
681
+ /**
682
+ * A What3words designation associated with this location with '.' separator.
683
+ */
684
+ what3words?: string | undefined;
685
+ };
686
+ export type SubmitInteractionDocumentPreviousAddress = {
687
+ /**
688
+ * Unformatted line based address
689
+ */
690
+ lines?: Array<string> | undefined;
691
+ /**
692
+ * The address as a single line
693
+ */
694
+ addressString?: string | undefined;
695
+ /**
696
+ * The primary delivery point for a premise or building. This could be a house number, a building name, etc.
697
+ */
698
+ premise?: string | undefined;
699
+ /**
700
+ * The name of a building or a building complex. In the US, this is the street number.
701
+ */
702
+ building?: string | undefined;
703
+ /**
704
+ * The name of a sub-building, such as a flat or apartment number.
705
+ */
706
+ subBuilding?: string | undefined;
707
+ /**
708
+ * This field holds the most common street or block data element within a country. For instance, USA Street
709
+ */
710
+ thoroughfare?: string | undefined;
711
+ /**
712
+ * The name of a dependent street or block, such as a street within a complex.
713
+ */
714
+ dependentThoroughfare?: string | undefined;
715
+ /**
716
+ * This field holds the most common population center data element within a country. For instance, USA City, Canadian Municipality
717
+ */
718
+ locality?: string | undefined;
719
+ /**
720
+ * This is a smaller area within a locality, such as a neighborhood or district. Like Manhattan in New York City, or Soho in London.
721
+ */
722
+ dependentLocality?: string | undefined;
723
+ /**
724
+ * This is an even smaller area within a dependent locality, often used in very detailed addresses.
725
+ */
726
+ doubleDependentLocality?: string | undefined;
727
+ /**
728
+ * 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
729
+ */
730
+ postalCode?: string | undefined;
731
+ /**
732
+ * This field contains the post box number associated with a particular delivery point, should one exist.
733
+ */
734
+ postBox?: string | undefined;
735
+ /**
736
+ * Country the address is in. It must be a valid ISO2 or ISO3 country code
737
+ */
738
+ country?: string | undefined;
739
+ superAdministrativeArea?: string | undefined;
740
+ administrativeArea?: string | undefined;
741
+ subAdministrativeArea?: string | undefined;
742
+ organization?: string | undefined;
743
+ location?: SubmitInteractionDocumentPreviousAddressLocation | undefined;
744
+ /**
745
+ * Specified in year, month and day separated by -. For example 2017-1-1 or 2017-01-01 which conforms to ISO 8601
746
+ */
747
+ fromDate: string;
748
+ /**
749
+ * Specified in year, month and day separated by -. For example 2017-1-1 or 2017-01-01 which conforms to ISO 8601
750
+ */
751
+ toDate: string;
752
+ };
753
+ export type SubmitInteractionDocumentPlaceOfBirthLocation = {
754
+ latitude?: string | undefined;
755
+ longitude?: string | undefined;
756
+ geoAccuracy?: string | undefined;
757
+ /**
758
+ * A What3words designation associated with this location with '.' separator.
759
+ */
760
+ what3words?: string | undefined;
761
+ };
762
+ export type SubmitInteractionDocumentPlaceOfBirth = {
763
+ /**
764
+ * Unformatted line based address
765
+ */
766
+ lines?: Array<string> | undefined;
767
+ /**
768
+ * The address as a single line
769
+ */
770
+ addressString?: string | undefined;
771
+ /**
772
+ * The primary delivery point for a premise or building. This could be a house number, a building name, etc.
773
+ */
774
+ premise?: string | undefined;
775
+ /**
776
+ * The name of a building or a building complex. In the US, this is the street number.
777
+ */
778
+ building?: string | undefined;
779
+ /**
780
+ * The name of a sub-building, such as a flat or apartment number.
781
+ */
782
+ subBuilding?: string | undefined;
783
+ /**
784
+ * This field holds the most common street or block data element within a country. For instance, USA Street
785
+ */
786
+ thoroughfare?: string | undefined;
787
+ /**
788
+ * The name of a dependent street or block, such as a street within a complex.
789
+ */
790
+ dependentThoroughfare?: string | undefined;
791
+ /**
792
+ * This field holds the most common population center data element within a country. For instance, USA City, Canadian Municipality
793
+ */
794
+ locality?: string | undefined;
795
+ /**
796
+ * This is a smaller area within a locality, such as a neighborhood or district. Like Manhattan in New York City, or Soho in London.
797
+ */
798
+ dependentLocality?: string | undefined;
799
+ /**
800
+ * This is an even smaller area within a dependent locality, often used in very detailed addresses.
801
+ */
802
+ doubleDependentLocality?: string | undefined;
803
+ /**
804
+ * 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
805
+ */
806
+ postalCode?: string | undefined;
807
+ /**
808
+ * This field contains the post box number associated with a particular delivery point, should one exist.
809
+ */
810
+ postBox?: string | undefined;
811
+ /**
812
+ * Country the address is in. It must be a valid ISO2 or ISO3 country code
813
+ */
814
+ country?: string | undefined;
815
+ superAdministrativeArea?: string | undefined;
816
+ administrativeArea?: string | undefined;
817
+ subAdministrativeArea?: string | undefined;
818
+ organization?: string | undefined;
819
+ location?: SubmitInteractionDocumentPlaceOfBirthLocation | undefined;
820
+ };
821
+ export type SubmitInteractionDocumentIdNumber = {
822
+ /**
823
+ * The type of phone number, such as landline, mobile, fax, unknown etc
824
+ */
825
+ type: string;
826
+ /**
827
+ * ID number eg, National Insurance Number in UK, Social Securtiy Number in US
828
+ */
829
+ idNumber: string;
830
+ /**
831
+ * Country the address is in. It must be a valid ISO2 or ISO3 country code
832
+ */
833
+ country?: string | undefined;
834
+ };
835
+ export type SubmitInteractionDocumentPhone = {
836
+ /**
837
+ * The type of phone number, such as landline, mobile, fax, unknown etc
838
+ */
839
+ type: string;
840
+ /**
841
+ * Phone number, ideally in international format with +(Country Code)
842
+ */
843
+ number: string;
844
+ };
845
+ export type SubmitInteractionDocumentEmail = {
846
+ /**
847
+ * The type of email, such as home, work, unknown etc
848
+ */
849
+ type: string;
850
+ /**
851
+ * Email address
852
+ */
853
+ email: string;
854
+ };
855
+ export type SubmitInteractionDocumentSocial = {
856
+ /**
857
+ * An agreed standardised name for the social media platform this identity relates to such as Facebook, Twitter, unknown etc
858
+ */
859
+ type: string;
860
+ /**
861
+ * the identity used on this platform
862
+ */
863
+ identity: string;
864
+ };
865
+ export type SubmitInteractionDocumentSubject = {
866
+ /**
867
+ * Title of an individual such as Mr, Mrs, Dr, Sir
868
+ */
869
+ title?: string | undefined;
870
+ /**
871
+ * A person's name used by their collegues and friends to address them
872
+ */
873
+ firstName?: string | undefined;
874
+ /**
875
+ * Any other registered names used by the individual, not aliases
876
+ */
877
+ middleNames?: Array<string> | undefined;
878
+ /**
879
+ * Any family names for the individual
880
+ */
881
+ lastNames?: Array<string> | undefined;
882
+ /**
883
+ * Any family names for the individual
884
+ */
885
+ lastNamesAtBirth?: Array<string> | undefined;
886
+ aliases?: Array<SubmitInteractionDocumentAlias> | undefined;
887
+ relatedPersons?: Array<SubmitInteractionDocumentRelatedPerson> | undefined;
888
+ /**
889
+ * Specified in year, month and day separated by -. For example 2017-1-1 or 2017-01-01 which conforms to ISO 8601
890
+ */
891
+ dateOfBirth?: string | undefined;
892
+ gender?: string | undefined;
893
+ currentAddress?: SubmitInteractionDocumentCurrentAddress | undefined;
894
+ previousAddresses?: Array<SubmitInteractionDocumentPreviousAddress> | undefined;
895
+ placeOfBirth?: SubmitInteractionDocumentPlaceOfBirth | undefined;
896
+ idNumbers?: Array<SubmitInteractionDocumentIdNumber> | undefined;
897
+ phones?: Array<SubmitInteractionDocumentPhone> | undefined;
898
+ emails?: Array<SubmitInteractionDocumentEmail> | undefined;
899
+ socials?: Array<SubmitInteractionDocumentSocial> | undefined;
900
+ /**
901
+ * The subject's mother's maiden name, used for identity verification
902
+ */
903
+ mothersMaidenName?: string | undefined;
904
+ };
905
+ export type SubmitInteractionDocument = {
906
+ oneDBarcode?: string | undefined;
907
+ address?: SubmitInteractionAddress | undefined;
908
+ applicationDate?: string | undefined;
909
+ applicationNumber?: string | undefined;
910
+ dateOfBirth?: string | undefined;
911
+ placeOfBirth?: string | undefined;
912
+ placeOfBirthNative?: string | undefined;
913
+ bloodType?: string | undefined;
914
+ controlNumber?: string | undefined;
915
+ countryCode?: string | undefined;
916
+ countryName?: string | undefined;
917
+ documentClassCode?: string | undefined;
918
+ documentClassName?: string | undefined;
919
+ documentNumber?: string | undefined;
920
+ documentSignerCertificate?: string | undefined;
921
+ employer?: string | undefined;
922
+ employerAddress?: string | undefined;
923
+ entries?: string | undefined;
924
+ expirationDate?: string | undefined;
925
+ eyeColor?: string | undefined;
926
+ fathersName?: string | undefined;
927
+ fathersNameNative?: string | undefined;
928
+ fathersSurname?: string | undefined;
929
+ firstName?: string | undefined;
930
+ fullName?: string | undefined;
931
+ fullNameNative?: string | undefined;
932
+ givenName?: string | undefined;
933
+ givenNameNative?: string | undefined;
934
+ hairColor?: string | undefined;
935
+ height?: string | undefined;
936
+ /**
937
+ * Specified in year, month and day separated by -. For example 2017-1-1 or 2017-01-01 which conforms to ISO 8601
938
+ */
939
+ issueDate?: string | undefined;
940
+ issuingAuthority?: string | undefined;
941
+ issuingAuthorityNative?: string | undefined;
942
+ issuingStateCode?: string | undefined;
943
+ issuingStateName?: string | undefined;
944
+ licenseClass?: string | undefined;
945
+ licenseEndorsements?: string | undefined;
946
+ licenseRestrictions?: string | undefined;
947
+ mrz?: string | undefined;
948
+ mrz1?: string | undefined;
949
+ mrz2?: string | undefined;
950
+ mrz3?: string | undefined;
951
+ middleName?: string | undefined;
952
+ mothersName?: string | undefined;
953
+ mothersNameNative?: string | undefined;
954
+ mothersSurname?: string | undefined;
955
+ nameSuffix?: string | undefined;
956
+ nationalityCode?: string | undefined;
957
+ nationalityName?: string | undefined;
958
+ nationalityNameNative?: string | undefined;
959
+ occupation?: string | undefined;
960
+ organDonor?: boolean | undefined;
961
+ passportNumber?: string | undefined;
962
+ permitNumber?: string | undefined;
963
+ personalNumber?: string | undefined;
964
+ photo?: string | undefined;
965
+ photoCompressed?: string | undefined;
966
+ photoEncoding?: string | undefined;
967
+ sex?: string | undefined;
968
+ sexNative?: string | undefined;
969
+ signature?: string | undefined;
970
+ signatureCompressed?: string | undefined;
971
+ signatureEncoding?: string | undefined;
972
+ socialSecurityNumber?: string | undefined;
973
+ startDate?: string | undefined;
974
+ surname?: string | undefined;
975
+ surnameNative?: string | undefined;
976
+ visaClass?: string | undefined;
977
+ visaNumber?: string | undefined;
978
+ weight?: string | undefined;
979
+ cardNumber?: string | undefined;
980
+ /**
981
+ * Country the address is in. It must be a valid ISO2 or ISO3 country code
982
+ */
983
+ issuerCountryCode?: string | undefined;
984
+ id?: string | undefined;
985
+ type?: string | undefined;
986
+ category?: string | undefined;
987
+ subtype?: string | undefined;
988
+ format?: string | undefined;
989
+ device?: SubmitInteractionDocumentDevice | undefined;
990
+ side1Image?: string | undefined;
991
+ side2Image?: string | undefined;
992
+ chip?: SubmitInteractionChip | undefined;
993
+ classification?: SubmitInteractionClassification | undefined;
994
+ extraction?: SubmitInteractionExtraction | undefined;
995
+ validation?: SubmitInteractionValidation | undefined;
996
+ subType?: string | undefined;
997
+ number?: string | undefined;
998
+ /**
999
+ * Specified in year, month and day separated by -. For example 2017-1-1 or 2017-01-01 which conforms to ISO 8601
1000
+ */
1001
+ expiryDate?: string | undefined;
1002
+ subject?: SubmitInteractionDocumentSubject | undefined;
1003
+ /**
1004
+ * Country the address is in. It must be a valid ISO2 or ISO3 country code
1005
+ */
1006
+ country?: string | undefined;
1007
+ };
1008
+ export type SubmitInteractionBiometric4 = {
1009
+ id?: string | undefined;
1010
+ type?: string | undefined;
1011
+ selfieImage: string;
1012
+ anchorImage: string;
1013
+ };
1014
+ export type SubmitInteractionBiometric3 = {
1015
+ id?: string | undefined;
1016
+ type?: string | undefined;
1017
+ selfieImage: string;
1018
+ selfieImageEncryption?: boolean | undefined;
1019
+ };
1020
+ export type SubmitInteractionBiometric2 = {
1021
+ id?: string | undefined;
1022
+ type?: string | undefined;
1023
+ face1Image: string;
1024
+ face2Image: string;
1025
+ };
1026
+ export type SubmitInteractionBiometric1 = {
1027
+ id?: string | undefined;
1028
+ type?: string | undefined;
1029
+ faceImage: string;
1030
+ };
1031
+ export type SubmitInteractionBiometricUnion = SubmitInteractionBiometric2 | SubmitInteractionBiometric4 | SubmitInteractionBiometric1 | SubmitInteractionBiometric3;
1032
+ export type SubmitInteractionUser = {
1033
+ id: string;
1034
+ email: string;
1035
+ domain: string;
1036
+ };
1037
+ export type SubmitInteractionClient = {
1038
+ id: string;
1039
+ ip: string;
1040
+ address: string;
1041
+ };
1042
+ export type SubmitInteractionModel = {
1043
+ identifier: string;
1044
+ name: string;
1045
+ };
1046
+ export type SubmitInteractionSessionDevice = {
1047
+ id: string;
1048
+ manufacturer: string;
1049
+ model: SubmitInteractionModel;
1050
+ };
1051
+ export type SubmitInteractionTrace = {
1052
+ id: string;
1053
+ };
1054
+ export type SubmitInteractionSpan = {
1055
+ id: string;
1056
+ };
1057
+ export type SubmitInteractionTransaction = {
1058
+ id: string;
1059
+ };
1060
+ export type SubmitInteractionSessionAuth = {
1061
+ id: string;
1062
+ scope?: string | undefined;
1063
+ codeVerifier?: string | undefined;
1064
+ code?: string | undefined;
1065
+ state?: string | undefined;
1066
+ redirectUri?: string | undefined;
1067
+ responseType?: string | undefined;
1068
+ clientId?: string | undefined;
1069
+ clientSecret?: string | undefined;
1070
+ };
1071
+ export type SubmitInteractionSession = {
1072
+ user?: SubmitInteractionUser | undefined;
1073
+ client?: SubmitInteractionClient | undefined;
1074
+ device?: SubmitInteractionSessionDevice | undefined;
1075
+ trace?: SubmitInteractionTrace | undefined;
1076
+ span?: SubmitInteractionSpan | undefined;
1077
+ transaction?: SubmitInteractionTransaction | undefined;
1078
+ auth?: Array<SubmitInteractionSessionAuth> | undefined;
1079
+ };
1080
+ export declare const SubmitInteractionConsentType: {
1081
+ readonly Rollup: "rollup";
1082
+ readonly Explicit: "explicit";
1083
+ readonly Implicit: "implicit";
1084
+ };
1085
+ export type SubmitInteractionConsentType = ClosedEnum<typeof SubmitInteractionConsentType>;
1086
+ export type SubmitInteractionConsent = {
1087
+ type?: SubmitInteractionConsentType | undefined;
1088
+ id?: string | undefined;
1089
+ version?: string | undefined;
1090
+ url: string;
1091
+ effectiveDate?: string | undefined;
1092
+ expiryDate?: string | undefined;
1093
+ terms?: string | undefined;
1094
+ purpose?: string | undefined;
1095
+ legalBasis?: string | undefined;
1096
+ jurisdiction?: string | undefined;
1097
+ subject?: string | undefined;
1098
+ signatory?: string | undefined;
1099
+ };
1100
+ export type SubmitInteractionSubject = {
1101
+ identity?: SubmitInteractionIdentity | undefined;
1102
+ documents?: Array<SubmitInteractionDocument> | undefined;
1103
+ biometrics?: Array<SubmitInteractionBiometric2 | SubmitInteractionBiometric4 | SubmitInteractionBiometric1 | SubmitInteractionBiometric3> | undefined;
1104
+ sessions?: Array<SubmitInteractionSession> | undefined;
1105
+ consent?: Array<SubmitInteractionConsent> | undefined;
1106
+ uid?: string | undefined;
1107
+ };
1108
+ export type SubmitInteractionContext = {
1109
+ subject: SubmitInteractionSubject;
1110
+ };
1111
+ export type SubmitInteractionRequest = {
1112
+ /**
1113
+ * Journey instance identifier
1114
+ */
1115
+ instanceId: string;
1116
+ /**
1117
+ * Interaction identifier
1118
+ */
1119
+ interactionId: string;
1120
+ /**
1121
+ * List of participant identifiers involved in the interaction
1122
+ */
1123
+ participants?: Array<Participant> | undefined;
1124
+ context?: SubmitInteractionContext | undefined;
1125
+ };
1126
+ export type SubmitInteractionError = {
1127
+ status: "error";
1128
+ /**
1129
+ * Error code indicating the type of error
1130
+ */
1131
+ code: number;
1132
+ /**
1133
+ * Error message detailing the issue
1134
+ */
1135
+ message: string;
1136
+ };
1137
+ export type Success = {
1138
+ status: "success";
1139
+ };
1140
+ /**
1141
+ * Success
1142
+ */
1143
+ export type SubmitInteractionResponse = Success | SubmitInteractionError | discriminatedUnionTypes.Unknown<"status">;
1144
+ /** @internal */
1145
+ export type SubmitInteractionSecurity$Outbound = {
1146
+ InteractionAccess: string;
1147
+ };
1148
+ /** @internal */
1149
+ export declare const SubmitInteractionSecurity$outboundSchema: z.ZodMiniType<SubmitInteractionSecurity$Outbound, SubmitInteractionSecurity>;
1150
+ export declare function submitInteractionSecurityToJSON(submitInteractionSecurity: SubmitInteractionSecurity): string;
1151
+ /** @internal */
1152
+ export type Participant$Outbound = {
1153
+ domainElementId?: string | undefined;
1154
+ instruction?: string | undefined;
1155
+ };
1156
+ /** @internal */
1157
+ export declare const Participant$outboundSchema: z.ZodMiniType<Participant$Outbound, Participant>;
1158
+ export declare function participantToJSON(participant: Participant): string;
1159
+ /** @internal */
1160
+ export type SubmitInteractionIdentityAlias$Outbound = {
1161
+ title?: string | undefined;
1162
+ firstName?: string | undefined;
1163
+ middleNames?: Array<string> | undefined;
1164
+ lastNames?: Array<string> | undefined;
1165
+ lastNamesAtBirth?: Array<string> | undefined;
1166
+ };
1167
+ /** @internal */
1168
+ export declare const SubmitInteractionIdentityAlias$outboundSchema: z.ZodMiniType<SubmitInteractionIdentityAlias$Outbound, SubmitInteractionIdentityAlias>;
1169
+ export declare function submitInteractionIdentityAliasToJSON(submitInteractionIdentityAlias: SubmitInteractionIdentityAlias): string;
1170
+ /** @internal */
1171
+ export declare const SubmitInteractionIdentityRelationship$outboundSchema: z.ZodMiniEnum<typeof SubmitInteractionIdentityRelationship>;
1172
+ /** @internal */
1173
+ export type SubmitInteractionIdentityRelatedPerson$Outbound = {
1174
+ title?: string | undefined;
1175
+ firstName?: string | undefined;
1176
+ middleNames?: Array<string> | undefined;
1177
+ lastNames?: Array<string> | undefined;
1178
+ lastNamesAtBirth?: Array<string> | undefined;
1179
+ relationship: string;
1180
+ };
1181
+ /** @internal */
1182
+ export declare const SubmitInteractionIdentityRelatedPerson$outboundSchema: z.ZodMiniType<SubmitInteractionIdentityRelatedPerson$Outbound, SubmitInteractionIdentityRelatedPerson>;
1183
+ export declare function submitInteractionIdentityRelatedPersonToJSON(submitInteractionIdentityRelatedPerson: SubmitInteractionIdentityRelatedPerson): string;
1184
+ /** @internal */
1185
+ export type SubmitInteractionIdentityCurrentAddressLocation$Outbound = {
1186
+ latitude?: string | undefined;
1187
+ longitude?: string | undefined;
1188
+ geoAccuracy?: string | undefined;
1189
+ what3words?: string | undefined;
1190
+ };
1191
+ /** @internal */
1192
+ export declare const SubmitInteractionIdentityCurrentAddressLocation$outboundSchema: z.ZodMiniType<SubmitInteractionIdentityCurrentAddressLocation$Outbound, SubmitInteractionIdentityCurrentAddressLocation>;
1193
+ export declare function submitInteractionIdentityCurrentAddressLocationToJSON(submitInteractionIdentityCurrentAddressLocation: SubmitInteractionIdentityCurrentAddressLocation): string;
1194
+ /** @internal */
1195
+ export type SubmitInteractionIdentityCurrentAddress$Outbound = {
1196
+ lines?: Array<string> | undefined;
1197
+ addressString?: string | undefined;
1198
+ premise?: string | undefined;
1199
+ building?: string | undefined;
1200
+ subBuilding?: string | undefined;
1201
+ thoroughfare?: string | undefined;
1202
+ dependentThoroughfare?: string | undefined;
1203
+ locality?: string | undefined;
1204
+ dependentLocality?: string | undefined;
1205
+ doubleDependentLocality?: string | undefined;
1206
+ postalCode?: string | undefined;
1207
+ postBox?: string | undefined;
1208
+ country?: string | undefined;
1209
+ superAdministrativeArea?: string | undefined;
1210
+ administrativeArea?: string | undefined;
1211
+ subAdministrativeArea?: string | undefined;
1212
+ organization?: string | undefined;
1213
+ location?: SubmitInteractionIdentityCurrentAddressLocation$Outbound | undefined;
1214
+ };
1215
+ /** @internal */
1216
+ export declare const SubmitInteractionIdentityCurrentAddress$outboundSchema: z.ZodMiniType<SubmitInteractionIdentityCurrentAddress$Outbound, SubmitInteractionIdentityCurrentAddress>;
1217
+ export declare function submitInteractionIdentityCurrentAddressToJSON(submitInteractionIdentityCurrentAddress: SubmitInteractionIdentityCurrentAddress): string;
1218
+ /** @internal */
1219
+ export type SubmitInteractionIdentityPreviousAddressLocation$Outbound = {
1220
+ latitude?: string | undefined;
1221
+ longitude?: string | undefined;
1222
+ geoAccuracy?: string | undefined;
1223
+ what3words?: string | undefined;
1224
+ };
1225
+ /** @internal */
1226
+ export declare const SubmitInteractionIdentityPreviousAddressLocation$outboundSchema: z.ZodMiniType<SubmitInteractionIdentityPreviousAddressLocation$Outbound, SubmitInteractionIdentityPreviousAddressLocation>;
1227
+ export declare function submitInteractionIdentityPreviousAddressLocationToJSON(submitInteractionIdentityPreviousAddressLocation: SubmitInteractionIdentityPreviousAddressLocation): string;
1228
+ /** @internal */
1229
+ export type SubmitInteractionIdentityPreviousAddress$Outbound = {
1230
+ lines?: Array<string> | undefined;
1231
+ addressString?: string | undefined;
1232
+ premise?: string | undefined;
1233
+ building?: string | undefined;
1234
+ subBuilding?: string | undefined;
1235
+ thoroughfare?: string | undefined;
1236
+ dependentThoroughfare?: string | undefined;
1237
+ locality?: string | undefined;
1238
+ dependentLocality?: string | undefined;
1239
+ doubleDependentLocality?: string | undefined;
1240
+ postalCode?: string | undefined;
1241
+ postBox?: string | undefined;
1242
+ country?: string | undefined;
1243
+ superAdministrativeArea?: string | undefined;
1244
+ administrativeArea?: string | undefined;
1245
+ subAdministrativeArea?: string | undefined;
1246
+ organization?: string | undefined;
1247
+ location?: SubmitInteractionIdentityPreviousAddressLocation$Outbound | undefined;
1248
+ fromDate: string;
1249
+ toDate: string;
1250
+ };
1251
+ /** @internal */
1252
+ export declare const SubmitInteractionIdentityPreviousAddress$outboundSchema: z.ZodMiniType<SubmitInteractionIdentityPreviousAddress$Outbound, SubmitInteractionIdentityPreviousAddress>;
1253
+ export declare function submitInteractionIdentityPreviousAddressToJSON(submitInteractionIdentityPreviousAddress: SubmitInteractionIdentityPreviousAddress): string;
1254
+ /** @internal */
1255
+ export type SubmitInteractionIdentityPlaceOfBirthLocation$Outbound = {
1256
+ latitude?: string | undefined;
1257
+ longitude?: string | undefined;
1258
+ geoAccuracy?: string | undefined;
1259
+ what3words?: string | undefined;
1260
+ };
1261
+ /** @internal */
1262
+ export declare const SubmitInteractionIdentityPlaceOfBirthLocation$outboundSchema: z.ZodMiniType<SubmitInteractionIdentityPlaceOfBirthLocation$Outbound, SubmitInteractionIdentityPlaceOfBirthLocation>;
1263
+ export declare function submitInteractionIdentityPlaceOfBirthLocationToJSON(submitInteractionIdentityPlaceOfBirthLocation: SubmitInteractionIdentityPlaceOfBirthLocation): string;
1264
+ /** @internal */
1265
+ export type SubmitInteractionIdentityPlaceOfBirth$Outbound = {
1266
+ lines?: Array<string> | undefined;
1267
+ addressString?: string | undefined;
1268
+ premise?: string | undefined;
1269
+ building?: string | undefined;
1270
+ subBuilding?: string | undefined;
1271
+ thoroughfare?: string | undefined;
1272
+ dependentThoroughfare?: string | undefined;
1273
+ locality?: string | undefined;
1274
+ dependentLocality?: string | undefined;
1275
+ doubleDependentLocality?: string | undefined;
1276
+ postalCode?: string | undefined;
1277
+ postBox?: string | undefined;
1278
+ country?: string | undefined;
1279
+ superAdministrativeArea?: string | undefined;
1280
+ administrativeArea?: string | undefined;
1281
+ subAdministrativeArea?: string | undefined;
1282
+ organization?: string | undefined;
1283
+ location?: SubmitInteractionIdentityPlaceOfBirthLocation$Outbound | undefined;
1284
+ };
1285
+ /** @internal */
1286
+ export declare const SubmitInteractionIdentityPlaceOfBirth$outboundSchema: z.ZodMiniType<SubmitInteractionIdentityPlaceOfBirth$Outbound, SubmitInteractionIdentityPlaceOfBirth>;
1287
+ export declare function submitInteractionIdentityPlaceOfBirthToJSON(submitInteractionIdentityPlaceOfBirth: SubmitInteractionIdentityPlaceOfBirth): string;
1288
+ /** @internal */
1289
+ export type SubmitInteractionIdentityIdNumber$Outbound = {
1290
+ type: string;
1291
+ idNumber: string;
1292
+ country?: string | undefined;
1293
+ };
1294
+ /** @internal */
1295
+ export declare const SubmitInteractionIdentityIdNumber$outboundSchema: z.ZodMiniType<SubmitInteractionIdentityIdNumber$Outbound, SubmitInteractionIdentityIdNumber>;
1296
+ export declare function submitInteractionIdentityIdNumberToJSON(submitInteractionIdentityIdNumber: SubmitInteractionIdentityIdNumber): string;
1297
+ /** @internal */
1298
+ export type SubmitInteractionIdentityPhone$Outbound = {
1299
+ type: string;
1300
+ number: string;
1301
+ };
1302
+ /** @internal */
1303
+ export declare const SubmitInteractionIdentityPhone$outboundSchema: z.ZodMiniType<SubmitInteractionIdentityPhone$Outbound, SubmitInteractionIdentityPhone>;
1304
+ export declare function submitInteractionIdentityPhoneToJSON(submitInteractionIdentityPhone: SubmitInteractionIdentityPhone): string;
1305
+ /** @internal */
1306
+ export type SubmitInteractionIdentityEmail$Outbound = {
1307
+ type: string;
1308
+ email: string;
1309
+ };
1310
+ /** @internal */
1311
+ export declare const SubmitInteractionIdentityEmail$outboundSchema: z.ZodMiniType<SubmitInteractionIdentityEmail$Outbound, SubmitInteractionIdentityEmail>;
1312
+ export declare function submitInteractionIdentityEmailToJSON(submitInteractionIdentityEmail: SubmitInteractionIdentityEmail): string;
1313
+ /** @internal */
1314
+ export type SubmitInteractionIdentitySocial$Outbound = {
1315
+ type: string;
1316
+ identity: string;
1317
+ };
1318
+ /** @internal */
1319
+ export declare const SubmitInteractionIdentitySocial$outboundSchema: z.ZodMiniType<SubmitInteractionIdentitySocial$Outbound, SubmitInteractionIdentitySocial>;
1320
+ export declare function submitInteractionIdentitySocialToJSON(submitInteractionIdentitySocial: SubmitInteractionIdentitySocial): string;
1321
+ /** @internal */
1322
+ export type SubmitInteractionIdentity$Outbound = {
1323
+ title?: string | undefined;
1324
+ firstName?: string | undefined;
1325
+ middleNames?: Array<string> | undefined;
1326
+ lastNames?: Array<string> | undefined;
1327
+ lastNamesAtBirth?: Array<string> | undefined;
1328
+ aliases?: Array<SubmitInteractionIdentityAlias$Outbound> | undefined;
1329
+ relatedPersons?: Array<SubmitInteractionIdentityRelatedPerson$Outbound> | undefined;
1330
+ dateOfBirth?: string | undefined;
1331
+ gender?: string | undefined;
1332
+ currentAddress?: SubmitInteractionIdentityCurrentAddress$Outbound | undefined;
1333
+ previousAddresses?: Array<SubmitInteractionIdentityPreviousAddress$Outbound> | undefined;
1334
+ placeOfBirth?: SubmitInteractionIdentityPlaceOfBirth$Outbound | undefined;
1335
+ idNumbers?: Array<SubmitInteractionIdentityIdNumber$Outbound> | undefined;
1336
+ phones?: Array<SubmitInteractionIdentityPhone$Outbound> | undefined;
1337
+ emails?: Array<SubmitInteractionIdentityEmail$Outbound> | undefined;
1338
+ socials?: Array<SubmitInteractionIdentitySocial$Outbound> | undefined;
1339
+ mothersMaidenName?: string | undefined;
1340
+ };
1341
+ /** @internal */
1342
+ export declare const SubmitInteractionIdentity$outboundSchema: z.ZodMiniType<SubmitInteractionIdentity$Outbound, SubmitInteractionIdentity>;
1343
+ export declare function submitInteractionIdentityToJSON(submitInteractionIdentity: SubmitInteractionIdentity): string;
1344
+ /** @internal */
1345
+ export type SubmitInteractionAddress$Outbound = {
1346
+ addressString?: string | undefined;
1347
+ extractedAddressString?: string | undefined;
1348
+ addressLine1?: string | undefined;
1349
+ addressLine2?: string | undefined;
1350
+ locality?: string | undefined;
1351
+ administrativeArea?: string | undefined;
1352
+ postalCode?: string | undefined;
1353
+ };
1354
+ /** @internal */
1355
+ export declare const SubmitInteractionAddress$outboundSchema: z.ZodMiniType<SubmitInteractionAddress$Outbound, SubmitInteractionAddress>;
1356
+ export declare function submitInteractionAddressToJSON(submitInteractionAddress: SubmitInteractionAddress): string;
1357
+ /** @internal */
1358
+ export type SubmitInteractionDocumentDevice$Outbound = {
1359
+ type?: string | undefined;
1360
+ model?: string | undefined;
1361
+ hasContactlessReader?: boolean | undefined;
1362
+ hasMagneticStripeReader?: boolean | undefined;
1363
+ hasCamera?: boolean | undefined;
1364
+ serialNumber?: string | undefined;
1365
+ manufacturer?: string | undefined;
1366
+ };
1367
+ /** @internal */
1368
+ export declare const SubmitInteractionDocumentDevice$outboundSchema: z.ZodMiniType<SubmitInteractionDocumentDevice$Outbound, SubmitInteractionDocumentDevice>;
1369
+ export declare function submitInteractionDocumentDeviceToJSON(submitInteractionDocumentDevice: SubmitInteractionDocumentDevice): string;
1370
+ /** @internal */
1371
+ export declare const SubmitInteractionName$outboundSchema: z.ZodMiniEnum<typeof SubmitInteractionName>;
1372
+ /** @internal */
1373
+ export type SubmitInteractionLd$Outbound = {
1374
+ name: string;
1375
+ data: string;
1376
+ [additionalProperties: string]: unknown;
1377
+ };
1378
+ /** @internal */
1379
+ export declare const SubmitInteractionLd$outboundSchema: z.ZodMiniType<SubmitInteractionLd$Outbound, SubmitInteractionLd>;
1380
+ export declare function submitInteractionLdToJSON(submitInteractionLd: SubmitInteractionLd): string;
1381
+ /** @internal */
1382
+ export declare const SubmitInteractionAuthType$outboundSchema: z.ZodMiniEnum<typeof SubmitInteractionAuthType>;
1383
+ /** @internal */
1384
+ export declare const SubmitInteractionResult$outboundSchema: z.ZodMiniEnum<typeof SubmitInteractionResult>;
1385
+ /** @internal */
1386
+ export type SubmitInteractionChipAuth$Outbound = {
1387
+ type: string;
1388
+ result: string;
1389
+ [additionalProperties: string]: unknown;
1390
+ };
1391
+ /** @internal */
1392
+ export declare const SubmitInteractionChipAuth$outboundSchema: z.ZodMiniType<SubmitInteractionChipAuth$Outbound, SubmitInteractionChipAuth>;
1393
+ export declare function submitInteractionChipAuthToJSON(submitInteractionChipAuth: SubmitInteractionChipAuth): string;
1394
+ /** @internal */
1395
+ export type SubmitInteractionChip$Outbound = {
1396
+ lds: Array<SubmitInteractionLd$Outbound>;
1397
+ auth: Array<SubmitInteractionChipAuth$Outbound>;
1398
+ [additionalProperties: string]: unknown;
1399
+ };
1400
+ /** @internal */
1401
+ export declare const SubmitInteractionChip$outboundSchema: z.ZodMiniType<SubmitInteractionChip$Outbound, SubmitInteractionChip>;
1402
+ export declare function submitInteractionChipToJSON(submitInteractionChip: SubmitInteractionChip): string;
1403
+ /** @internal */
1404
+ export type SubmitInteractionSide$Outbound = {
1405
+ side: string;
1406
+ id: string;
1407
+ documentQuality: string;
1408
+ documentQualityScore: number;
1409
+ };
1410
+ /** @internal */
1411
+ export declare const SubmitInteractionSide$outboundSchema: z.ZodMiniType<SubmitInteractionSide$Outbound, SubmitInteractionSide>;
1412
+ export declare function submitInteractionSideToJSON(submitInteractionSide: SubmitInteractionSide): string;
1413
+ /** @internal */
1414
+ export type SubmitInteractionClassification$Outbound = {
1415
+ ids?: Array<string> | undefined;
1416
+ category?: string | undefined;
1417
+ type?: string | undefined;
1418
+ subtype?: string | undefined;
1419
+ isDoubleSided?: boolean | undefined;
1420
+ hasNFC?: boolean | undefined;
1421
+ year?: string | undefined;
1422
+ countryCode?: string | undefined;
1423
+ countryName?: string | undefined;
1424
+ stateCode?: string | undefined;
1425
+ stateName?: string | undefined;
1426
+ sides?: Array<SubmitInteractionSide$Outbound> | undefined;
1427
+ };
1428
+ /** @internal */
1429
+ export declare const SubmitInteractionClassification$outboundSchema: z.ZodMiniType<SubmitInteractionClassification$Outbound, SubmitInteractionClassification>;
1430
+ export declare function submitInteractionClassificationToJSON(submitInteractionClassification: SubmitInteractionClassification): string;
1431
+ /** @internal */
1432
+ export type SubmitInteractionAggregatedFieldBoundingBox$Outbound = {
1433
+ x: number;
1434
+ y: number;
1435
+ width: number;
1436
+ height: number;
1437
+ };
1438
+ /** @internal */
1439
+ export declare const SubmitInteractionAggregatedFieldBoundingBox$outboundSchema: z.ZodMiniType<SubmitInteractionAggregatedFieldBoundingBox$Outbound, SubmitInteractionAggregatedFieldBoundingBox>;
1440
+ export declare function submitInteractionAggregatedFieldBoundingBoxToJSON(submitInteractionAggregatedFieldBoundingBox: SubmitInteractionAggregatedFieldBoundingBox): string;
1441
+ /** @internal */
1442
+ export type SubmitInteractionAggregatedFieldRegionOfInterest$Outbound = {
1443
+ boundingBox?: SubmitInteractionAggregatedFieldBoundingBox$Outbound | undefined;
1444
+ side: string;
1445
+ spectrum?: string | undefined;
1446
+ imageId?: string | undefined;
1447
+ };
1448
+ /** @internal */
1449
+ export declare const SubmitInteractionAggregatedFieldRegionOfInterest$outboundSchema: z.ZodMiniType<SubmitInteractionAggregatedFieldRegionOfInterest$Outbound, SubmitInteractionAggregatedFieldRegionOfInterest>;
1450
+ export declare function submitInteractionAggregatedFieldRegionOfInterestToJSON(submitInteractionAggregatedFieldRegionOfInterest: SubmitInteractionAggregatedFieldRegionOfInterest): string;
1451
+ /** @internal */
1452
+ export type SubmitInteractionAggregatedField$Outbound = {
1453
+ label: string;
1454
+ value: string;
1455
+ source: string;
1456
+ isNonLatin: boolean;
1457
+ regionOfInterest?: SubmitInteractionAggregatedFieldRegionOfInterest$Outbound | undefined;
1458
+ };
1459
+ /** @internal */
1460
+ export declare const SubmitInteractionAggregatedField$outboundSchema: z.ZodMiniType<SubmitInteractionAggregatedField$Outbound, SubmitInteractionAggregatedField>;
1461
+ export declare function submitInteractionAggregatedFieldToJSON(submitInteractionAggregatedField: SubmitInteractionAggregatedField): string;
1462
+ /** @internal */
1463
+ export type SubmitInteractionDetailBoundingBox$Outbound = {
1464
+ x: number;
1465
+ y: number;
1466
+ width: number;
1467
+ height: number;
1468
+ };
1469
+ /** @internal */
1470
+ export declare const SubmitInteractionDetailBoundingBox$outboundSchema: z.ZodMiniType<SubmitInteractionDetailBoundingBox$Outbound, SubmitInteractionDetailBoundingBox>;
1471
+ export declare function submitInteractionDetailBoundingBoxToJSON(submitInteractionDetailBoundingBox: SubmitInteractionDetailBoundingBox): string;
1472
+ /** @internal */
1473
+ export type SubmitInteractionDetailRegionOfInterest$Outbound = {
1474
+ boundingBox?: SubmitInteractionDetailBoundingBox$Outbound | undefined;
1475
+ side: string;
1476
+ spectrum?: string | undefined;
1477
+ imageId?: string | undefined;
1478
+ };
1479
+ /** @internal */
1480
+ export declare const SubmitInteractionDetailRegionOfInterest$outboundSchema: z.ZodMiniType<SubmitInteractionDetailRegionOfInterest$Outbound, SubmitInteractionDetailRegionOfInterest>;
1481
+ export declare function submitInteractionDetailRegionOfInterestToJSON(submitInteractionDetailRegionOfInterest: SubmitInteractionDetailRegionOfInterest): string;
1482
+ /** @internal */
1483
+ export type SubmitInteractionDetail$Outbound = {
1484
+ label: string;
1485
+ value: string;
1486
+ source: string;
1487
+ isNonLatin: boolean;
1488
+ regionOfInterest?: SubmitInteractionDetailRegionOfInterest$Outbound | undefined;
1489
+ };
1490
+ /** @internal */
1491
+ export declare const SubmitInteractionDetail$outboundSchema: z.ZodMiniType<SubmitInteractionDetail$Outbound, SubmitInteractionDetail>;
1492
+ export declare function submitInteractionDetailToJSON(submitInteractionDetail: SubmitInteractionDetail): string;
1493
+ /** @internal */
1494
+ export type SubmitInteractionExtractedField$Outbound = {
1495
+ label: string;
1496
+ details: Array<SubmitInteractionDetail$Outbound>;
1497
+ };
1498
+ /** @internal */
1499
+ export declare const SubmitInteractionExtractedField$outboundSchema: z.ZodMiniType<SubmitInteractionExtractedField$Outbound, SubmitInteractionExtractedField>;
1500
+ export declare function submitInteractionExtractedFieldToJSON(submitInteractionExtractedField: SubmitInteractionExtractedField): string;
1501
+ /** @internal */
1502
+ export type SubmitInteractionExtractedImage$Outbound = {
1503
+ label: string;
1504
+ side: string;
1505
+ imageID: string;
1506
+ };
1507
+ /** @internal */
1508
+ export declare const SubmitInteractionExtractedImage$outboundSchema: z.ZodMiniType<SubmitInteractionExtractedImage$Outbound, SubmitInteractionExtractedImage>;
1509
+ export declare function submitInteractionExtractedImageToJSON(submitInteractionExtractedImage: SubmitInteractionExtractedImage): string;
1510
+ /** @internal */
1511
+ export type SubmitInteractionExtraction$Outbound = {
1512
+ aggregatedFields?: Array<SubmitInteractionAggregatedField$Outbound> | undefined;
1513
+ extractedFields?: Array<SubmitInteractionExtractedField$Outbound> | undefined;
1514
+ extractedImages?: Array<SubmitInteractionExtractedImage$Outbound> | undefined;
1515
+ };
1516
+ /** @internal */
1517
+ export declare const SubmitInteractionExtraction$outboundSchema: z.ZodMiniType<SubmitInteractionExtraction$Outbound, SubmitInteractionExtraction>;
1518
+ export declare function submitInteractionExtractionToJSON(submitInteractionExtraction: SubmitInteractionExtraction): string;
1519
+ /** @internal */
1520
+ export type SubmitInteractionValidationCheckBoundingBox$Outbound = {
1521
+ x: number;
1522
+ y: number;
1523
+ width: number;
1524
+ height: number;
1525
+ };
1526
+ /** @internal */
1527
+ export declare const SubmitInteractionValidationCheckBoundingBox$outboundSchema: z.ZodMiniType<SubmitInteractionValidationCheckBoundingBox$Outbound, SubmitInteractionValidationCheckBoundingBox>;
1528
+ export declare function submitInteractionValidationCheckBoundingBoxToJSON(submitInteractionValidationCheckBoundingBox: SubmitInteractionValidationCheckBoundingBox): string;
1529
+ /** @internal */
1530
+ export type SubmitInteractionValidationCheckRegionOfInterest$Outbound = {
1531
+ boundingBox?: SubmitInteractionValidationCheckBoundingBox$Outbound | undefined;
1532
+ side: string;
1533
+ spectrum?: string | undefined;
1534
+ imageId?: string | undefined;
1535
+ };
1536
+ /** @internal */
1537
+ export declare const SubmitInteractionValidationCheckRegionOfInterest$outboundSchema: z.ZodMiniType<SubmitInteractionValidationCheckRegionOfInterest$Outbound, SubmitInteractionValidationCheckRegionOfInterest>;
1538
+ export declare function submitInteractionValidationCheckRegionOfInterestToJSON(submitInteractionValidationCheckRegionOfInterest: SubmitInteractionValidationCheckRegionOfInterest): string;
1539
+ /** @internal */
1540
+ export type SubmitInteractionValidationCheck$Outbound = {
1541
+ name: string;
1542
+ title: string;
1543
+ info: string;
1544
+ validationResult: string;
1545
+ resultInfo: string;
1546
+ weight: string;
1547
+ regionOfInterests?: Array<SubmitInteractionValidationCheckRegionOfInterest$Outbound> | undefined;
1548
+ type: string;
1549
+ };
1550
+ /** @internal */
1551
+ export declare const SubmitInteractionValidationCheck$outboundSchema: z.ZodMiniType<SubmitInteractionValidationCheck$Outbound, SubmitInteractionValidationCheck>;
1552
+ export declare function submitInteractionValidationCheckToJSON(submitInteractionValidationCheck: SubmitInteractionValidationCheck): string;
1553
+ /** @internal */
1554
+ export type SubmitInteractionAggregatedValidationCheckBoundingBox$Outbound = {
1555
+ x: number;
1556
+ y: number;
1557
+ width: number;
1558
+ height: number;
1559
+ };
1560
+ /** @internal */
1561
+ export declare const SubmitInteractionAggregatedValidationCheckBoundingBox$outboundSchema: z.ZodMiniType<SubmitInteractionAggregatedValidationCheckBoundingBox$Outbound, SubmitInteractionAggregatedValidationCheckBoundingBox>;
1562
+ export declare function submitInteractionAggregatedValidationCheckBoundingBoxToJSON(submitInteractionAggregatedValidationCheckBoundingBox: SubmitInteractionAggregatedValidationCheckBoundingBox): string;
1563
+ /** @internal */
1564
+ export type SubmitInteractionAggregatedValidationCheckRegionOfInterest$Outbound = {
1565
+ boundingBox?: SubmitInteractionAggregatedValidationCheckBoundingBox$Outbound | undefined;
1566
+ side: string;
1567
+ spectrum?: string | undefined;
1568
+ imageId?: string | undefined;
1569
+ };
1570
+ /** @internal */
1571
+ export declare const SubmitInteractionAggregatedValidationCheckRegionOfInterest$outboundSchema: z.ZodMiniType<SubmitInteractionAggregatedValidationCheckRegionOfInterest$Outbound, SubmitInteractionAggregatedValidationCheckRegionOfInterest>;
1572
+ export declare function submitInteractionAggregatedValidationCheckRegionOfInterestToJSON(submitInteractionAggregatedValidationCheckRegionOfInterest: SubmitInteractionAggregatedValidationCheckRegionOfInterest): string;
1573
+ /** @internal */
1574
+ export type SubmitInteractionAggregatedValidationCheck$Outbound = {
1575
+ name: string;
1576
+ title: string;
1577
+ info: string;
1578
+ validationResult: string;
1579
+ resultInfo: string;
1580
+ weight: string;
1581
+ regionOfInterests?: Array<SubmitInteractionAggregatedValidationCheckRegionOfInterest$Outbound> | undefined;
1582
+ type: string;
1583
+ };
1584
+ /** @internal */
1585
+ export declare const SubmitInteractionAggregatedValidationCheck$outboundSchema: z.ZodMiniType<SubmitInteractionAggregatedValidationCheck$Outbound, SubmitInteractionAggregatedValidationCheck>;
1586
+ export declare function submitInteractionAggregatedValidationCheckToJSON(submitInteractionAggregatedValidationCheck: SubmitInteractionAggregatedValidationCheck): string;
1587
+ /** @internal */
1588
+ export type SubmitInteractionValidation$Outbound = {
1589
+ validationChecks?: Array<SubmitInteractionValidationCheck$Outbound> | undefined;
1590
+ aggregatedValidationChecks?: Array<SubmitInteractionAggregatedValidationCheck$Outbound> | undefined;
1591
+ };
1592
+ /** @internal */
1593
+ export declare const SubmitInteractionValidation$outboundSchema: z.ZodMiniType<SubmitInteractionValidation$Outbound, SubmitInteractionValidation>;
1594
+ export declare function submitInteractionValidationToJSON(submitInteractionValidation: SubmitInteractionValidation): string;
1595
+ /** @internal */
1596
+ export type SubmitInteractionDocumentAlias$Outbound = {
1597
+ title?: string | undefined;
1598
+ firstName?: string | undefined;
1599
+ middleNames?: Array<string> | undefined;
1600
+ lastNames?: Array<string> | undefined;
1601
+ lastNamesAtBirth?: Array<string> | undefined;
1602
+ };
1603
+ /** @internal */
1604
+ export declare const SubmitInteractionDocumentAlias$outboundSchema: z.ZodMiniType<SubmitInteractionDocumentAlias$Outbound, SubmitInteractionDocumentAlias>;
1605
+ export declare function submitInteractionDocumentAliasToJSON(submitInteractionDocumentAlias: SubmitInteractionDocumentAlias): string;
1606
+ /** @internal */
1607
+ export declare const SubmitInteractionDocumentRelationship$outboundSchema: z.ZodMiniEnum<typeof SubmitInteractionDocumentRelationship>;
1608
+ /** @internal */
1609
+ export type SubmitInteractionDocumentRelatedPerson$Outbound = {
1610
+ title?: string | undefined;
1611
+ firstName?: string | undefined;
1612
+ middleNames?: Array<string> | undefined;
1613
+ lastNames?: Array<string> | undefined;
1614
+ lastNamesAtBirth?: Array<string> | undefined;
1615
+ relationship: string;
1616
+ };
1617
+ /** @internal */
1618
+ export declare const SubmitInteractionDocumentRelatedPerson$outboundSchema: z.ZodMiniType<SubmitInteractionDocumentRelatedPerson$Outbound, SubmitInteractionDocumentRelatedPerson>;
1619
+ export declare function submitInteractionDocumentRelatedPersonToJSON(submitInteractionDocumentRelatedPerson: SubmitInteractionDocumentRelatedPerson): string;
1620
+ /** @internal */
1621
+ export type SubmitInteractionDocumentCurrentAddressLocation$Outbound = {
1622
+ latitude?: string | undefined;
1623
+ longitude?: string | undefined;
1624
+ geoAccuracy?: string | undefined;
1625
+ what3words?: string | undefined;
1626
+ };
1627
+ /** @internal */
1628
+ export declare const SubmitInteractionDocumentCurrentAddressLocation$outboundSchema: z.ZodMiniType<SubmitInteractionDocumentCurrentAddressLocation$Outbound, SubmitInteractionDocumentCurrentAddressLocation>;
1629
+ export declare function submitInteractionDocumentCurrentAddressLocationToJSON(submitInteractionDocumentCurrentAddressLocation: SubmitInteractionDocumentCurrentAddressLocation): string;
1630
+ /** @internal */
1631
+ export type SubmitInteractionDocumentCurrentAddress$Outbound = {
1632
+ lines?: Array<string> | undefined;
1633
+ addressString?: string | undefined;
1634
+ premise?: string | undefined;
1635
+ building?: string | undefined;
1636
+ subBuilding?: string | undefined;
1637
+ thoroughfare?: string | undefined;
1638
+ dependentThoroughfare?: string | undefined;
1639
+ locality?: string | undefined;
1640
+ dependentLocality?: string | undefined;
1641
+ doubleDependentLocality?: string | undefined;
1642
+ postalCode?: string | undefined;
1643
+ postBox?: string | undefined;
1644
+ country?: string | undefined;
1645
+ superAdministrativeArea?: string | undefined;
1646
+ administrativeArea?: string | undefined;
1647
+ subAdministrativeArea?: string | undefined;
1648
+ organization?: string | undefined;
1649
+ location?: SubmitInteractionDocumentCurrentAddressLocation$Outbound | undefined;
1650
+ };
1651
+ /** @internal */
1652
+ export declare const SubmitInteractionDocumentCurrentAddress$outboundSchema: z.ZodMiniType<SubmitInteractionDocumentCurrentAddress$Outbound, SubmitInteractionDocumentCurrentAddress>;
1653
+ export declare function submitInteractionDocumentCurrentAddressToJSON(submitInteractionDocumentCurrentAddress: SubmitInteractionDocumentCurrentAddress): string;
1654
+ /** @internal */
1655
+ export type SubmitInteractionDocumentPreviousAddressLocation$Outbound = {
1656
+ latitude?: string | undefined;
1657
+ longitude?: string | undefined;
1658
+ geoAccuracy?: string | undefined;
1659
+ what3words?: string | undefined;
1660
+ };
1661
+ /** @internal */
1662
+ export declare const SubmitInteractionDocumentPreviousAddressLocation$outboundSchema: z.ZodMiniType<SubmitInteractionDocumentPreviousAddressLocation$Outbound, SubmitInteractionDocumentPreviousAddressLocation>;
1663
+ export declare function submitInteractionDocumentPreviousAddressLocationToJSON(submitInteractionDocumentPreviousAddressLocation: SubmitInteractionDocumentPreviousAddressLocation): string;
1664
+ /** @internal */
1665
+ export type SubmitInteractionDocumentPreviousAddress$Outbound = {
1666
+ lines?: Array<string> | undefined;
1667
+ addressString?: string | undefined;
1668
+ premise?: string | undefined;
1669
+ building?: string | undefined;
1670
+ subBuilding?: string | undefined;
1671
+ thoroughfare?: string | undefined;
1672
+ dependentThoroughfare?: string | undefined;
1673
+ locality?: string | undefined;
1674
+ dependentLocality?: string | undefined;
1675
+ doubleDependentLocality?: string | undefined;
1676
+ postalCode?: string | undefined;
1677
+ postBox?: string | undefined;
1678
+ country?: string | undefined;
1679
+ superAdministrativeArea?: string | undefined;
1680
+ administrativeArea?: string | undefined;
1681
+ subAdministrativeArea?: string | undefined;
1682
+ organization?: string | undefined;
1683
+ location?: SubmitInteractionDocumentPreviousAddressLocation$Outbound | undefined;
1684
+ fromDate: string;
1685
+ toDate: string;
1686
+ };
1687
+ /** @internal */
1688
+ export declare const SubmitInteractionDocumentPreviousAddress$outboundSchema: z.ZodMiniType<SubmitInteractionDocumentPreviousAddress$Outbound, SubmitInteractionDocumentPreviousAddress>;
1689
+ export declare function submitInteractionDocumentPreviousAddressToJSON(submitInteractionDocumentPreviousAddress: SubmitInteractionDocumentPreviousAddress): string;
1690
+ /** @internal */
1691
+ export type SubmitInteractionDocumentPlaceOfBirthLocation$Outbound = {
1692
+ latitude?: string | undefined;
1693
+ longitude?: string | undefined;
1694
+ geoAccuracy?: string | undefined;
1695
+ what3words?: string | undefined;
1696
+ };
1697
+ /** @internal */
1698
+ export declare const SubmitInteractionDocumentPlaceOfBirthLocation$outboundSchema: z.ZodMiniType<SubmitInteractionDocumentPlaceOfBirthLocation$Outbound, SubmitInteractionDocumentPlaceOfBirthLocation>;
1699
+ export declare function submitInteractionDocumentPlaceOfBirthLocationToJSON(submitInteractionDocumentPlaceOfBirthLocation: SubmitInteractionDocumentPlaceOfBirthLocation): string;
1700
+ /** @internal */
1701
+ export type SubmitInteractionDocumentPlaceOfBirth$Outbound = {
1702
+ lines?: Array<string> | undefined;
1703
+ addressString?: string | undefined;
1704
+ premise?: string | undefined;
1705
+ building?: string | undefined;
1706
+ subBuilding?: string | undefined;
1707
+ thoroughfare?: string | undefined;
1708
+ dependentThoroughfare?: string | undefined;
1709
+ locality?: string | undefined;
1710
+ dependentLocality?: string | undefined;
1711
+ doubleDependentLocality?: string | undefined;
1712
+ postalCode?: string | undefined;
1713
+ postBox?: string | undefined;
1714
+ country?: string | undefined;
1715
+ superAdministrativeArea?: string | undefined;
1716
+ administrativeArea?: string | undefined;
1717
+ subAdministrativeArea?: string | undefined;
1718
+ organization?: string | undefined;
1719
+ location?: SubmitInteractionDocumentPlaceOfBirthLocation$Outbound | undefined;
1720
+ };
1721
+ /** @internal */
1722
+ export declare const SubmitInteractionDocumentPlaceOfBirth$outboundSchema: z.ZodMiniType<SubmitInteractionDocumentPlaceOfBirth$Outbound, SubmitInteractionDocumentPlaceOfBirth>;
1723
+ export declare function submitInteractionDocumentPlaceOfBirthToJSON(submitInteractionDocumentPlaceOfBirth: SubmitInteractionDocumentPlaceOfBirth): string;
1724
+ /** @internal */
1725
+ export type SubmitInteractionDocumentIdNumber$Outbound = {
1726
+ type: string;
1727
+ idNumber: string;
1728
+ country?: string | undefined;
1729
+ };
1730
+ /** @internal */
1731
+ export declare const SubmitInteractionDocumentIdNumber$outboundSchema: z.ZodMiniType<SubmitInteractionDocumentIdNumber$Outbound, SubmitInteractionDocumentIdNumber>;
1732
+ export declare function submitInteractionDocumentIdNumberToJSON(submitInteractionDocumentIdNumber: SubmitInteractionDocumentIdNumber): string;
1733
+ /** @internal */
1734
+ export type SubmitInteractionDocumentPhone$Outbound = {
1735
+ type: string;
1736
+ number: string;
1737
+ };
1738
+ /** @internal */
1739
+ export declare const SubmitInteractionDocumentPhone$outboundSchema: z.ZodMiniType<SubmitInteractionDocumentPhone$Outbound, SubmitInteractionDocumentPhone>;
1740
+ export declare function submitInteractionDocumentPhoneToJSON(submitInteractionDocumentPhone: SubmitInteractionDocumentPhone): string;
1741
+ /** @internal */
1742
+ export type SubmitInteractionDocumentEmail$Outbound = {
1743
+ type: string;
1744
+ email: string;
1745
+ };
1746
+ /** @internal */
1747
+ export declare const SubmitInteractionDocumentEmail$outboundSchema: z.ZodMiniType<SubmitInteractionDocumentEmail$Outbound, SubmitInteractionDocumentEmail>;
1748
+ export declare function submitInteractionDocumentEmailToJSON(submitInteractionDocumentEmail: SubmitInteractionDocumentEmail): string;
1749
+ /** @internal */
1750
+ export type SubmitInteractionDocumentSocial$Outbound = {
1751
+ type: string;
1752
+ identity: string;
1753
+ };
1754
+ /** @internal */
1755
+ export declare const SubmitInteractionDocumentSocial$outboundSchema: z.ZodMiniType<SubmitInteractionDocumentSocial$Outbound, SubmitInteractionDocumentSocial>;
1756
+ export declare function submitInteractionDocumentSocialToJSON(submitInteractionDocumentSocial: SubmitInteractionDocumentSocial): string;
1757
+ /** @internal */
1758
+ export type SubmitInteractionDocumentSubject$Outbound = {
1759
+ title?: string | undefined;
1760
+ firstName?: string | undefined;
1761
+ middleNames?: Array<string> | undefined;
1762
+ lastNames?: Array<string> | undefined;
1763
+ lastNamesAtBirth?: Array<string> | undefined;
1764
+ aliases?: Array<SubmitInteractionDocumentAlias$Outbound> | undefined;
1765
+ relatedPersons?: Array<SubmitInteractionDocumentRelatedPerson$Outbound> | undefined;
1766
+ dateOfBirth?: string | undefined;
1767
+ gender?: string | undefined;
1768
+ currentAddress?: SubmitInteractionDocumentCurrentAddress$Outbound | undefined;
1769
+ previousAddresses?: Array<SubmitInteractionDocumentPreviousAddress$Outbound> | undefined;
1770
+ placeOfBirth?: SubmitInteractionDocumentPlaceOfBirth$Outbound | undefined;
1771
+ idNumbers?: Array<SubmitInteractionDocumentIdNumber$Outbound> | undefined;
1772
+ phones?: Array<SubmitInteractionDocumentPhone$Outbound> | undefined;
1773
+ emails?: Array<SubmitInteractionDocumentEmail$Outbound> | undefined;
1774
+ socials?: Array<SubmitInteractionDocumentSocial$Outbound> | undefined;
1775
+ mothersMaidenName?: string | undefined;
1776
+ };
1777
+ /** @internal */
1778
+ export declare const SubmitInteractionDocumentSubject$outboundSchema: z.ZodMiniType<SubmitInteractionDocumentSubject$Outbound, SubmitInteractionDocumentSubject>;
1779
+ export declare function submitInteractionDocumentSubjectToJSON(submitInteractionDocumentSubject: SubmitInteractionDocumentSubject): string;
1780
+ /** @internal */
1781
+ export type SubmitInteractionDocument$Outbound = {
1782
+ oneDBarcode?: string | undefined;
1783
+ address?: SubmitInteractionAddress$Outbound | undefined;
1784
+ applicationDate?: string | undefined;
1785
+ applicationNumber?: string | undefined;
1786
+ dateOfBirth?: string | undefined;
1787
+ placeOfBirth?: string | undefined;
1788
+ placeOfBirthNative?: string | undefined;
1789
+ bloodType?: string | undefined;
1790
+ controlNumber?: string | undefined;
1791
+ countryCode?: string | undefined;
1792
+ countryName?: string | undefined;
1793
+ documentClassCode?: string | undefined;
1794
+ documentClassName?: string | undefined;
1795
+ documentNumber?: string | undefined;
1796
+ documentSignerCertificate?: string | undefined;
1797
+ employer?: string | undefined;
1798
+ employerAddress?: string | undefined;
1799
+ entries?: string | undefined;
1800
+ expirationDate?: string | undefined;
1801
+ eyeColor?: string | undefined;
1802
+ fathersName?: string | undefined;
1803
+ fathersNameNative?: string | undefined;
1804
+ fathersSurname?: string | undefined;
1805
+ firstName?: string | undefined;
1806
+ fullName?: string | undefined;
1807
+ fullNameNative?: string | undefined;
1808
+ givenName?: string | undefined;
1809
+ givenNameNative?: string | undefined;
1810
+ hairColor?: string | undefined;
1811
+ height?: string | undefined;
1812
+ issueDate?: string | undefined;
1813
+ issuingAuthority?: string | undefined;
1814
+ issuingAuthorityNative?: string | undefined;
1815
+ issuingStateCode?: string | undefined;
1816
+ issuingStateName?: string | undefined;
1817
+ licenseClass?: string | undefined;
1818
+ licenseEndorsements?: string | undefined;
1819
+ licenseRestrictions?: string | undefined;
1820
+ mrz?: string | undefined;
1821
+ mrz1?: string | undefined;
1822
+ mrz2?: string | undefined;
1823
+ mrz3?: string | undefined;
1824
+ middleName?: string | undefined;
1825
+ mothersName?: string | undefined;
1826
+ mothersNameNative?: string | undefined;
1827
+ mothersSurname?: string | undefined;
1828
+ nameSuffix?: string | undefined;
1829
+ nationalityCode?: string | undefined;
1830
+ nationalityName?: string | undefined;
1831
+ nationalityNameNative?: string | undefined;
1832
+ occupation?: string | undefined;
1833
+ organDonor?: boolean | undefined;
1834
+ passportNumber?: string | undefined;
1835
+ permitNumber?: string | undefined;
1836
+ personalNumber?: string | undefined;
1837
+ photo?: string | undefined;
1838
+ photoCompressed?: string | undefined;
1839
+ photoEncoding?: string | undefined;
1840
+ sex?: string | undefined;
1841
+ sexNative?: string | undefined;
1842
+ signature?: string | undefined;
1843
+ signatureCompressed?: string | undefined;
1844
+ signatureEncoding?: string | undefined;
1845
+ socialSecurityNumber?: string | undefined;
1846
+ startDate?: string | undefined;
1847
+ surname?: string | undefined;
1848
+ surnameNative?: string | undefined;
1849
+ visaClass?: string | undefined;
1850
+ visaNumber?: string | undefined;
1851
+ weight?: string | undefined;
1852
+ cardNumber?: string | undefined;
1853
+ issuerCountryCode?: string | undefined;
1854
+ id?: string | undefined;
1855
+ type?: string | undefined;
1856
+ category?: string | undefined;
1857
+ subtype?: string | undefined;
1858
+ format?: string | undefined;
1859
+ device?: SubmitInteractionDocumentDevice$Outbound | undefined;
1860
+ side1Image?: string | undefined;
1861
+ side2Image?: string | undefined;
1862
+ chip?: SubmitInteractionChip$Outbound | undefined;
1863
+ classification?: SubmitInteractionClassification$Outbound | undefined;
1864
+ extraction?: SubmitInteractionExtraction$Outbound | undefined;
1865
+ validation?: SubmitInteractionValidation$Outbound | undefined;
1866
+ subType?: string | undefined;
1867
+ number?: string | undefined;
1868
+ expiryDate?: string | undefined;
1869
+ subject?: SubmitInteractionDocumentSubject$Outbound | undefined;
1870
+ country?: string | undefined;
1871
+ };
1872
+ /** @internal */
1873
+ export declare const SubmitInteractionDocument$outboundSchema: z.ZodMiniType<SubmitInteractionDocument$Outbound, SubmitInteractionDocument>;
1874
+ export declare function submitInteractionDocumentToJSON(submitInteractionDocument: SubmitInteractionDocument): string;
1875
+ /** @internal */
1876
+ export type SubmitInteractionBiometric4$Outbound = {
1877
+ id?: string | undefined;
1878
+ type?: string | undefined;
1879
+ selfieImage: string;
1880
+ anchorImage: string;
1881
+ };
1882
+ /** @internal */
1883
+ export declare const SubmitInteractionBiometric4$outboundSchema: z.ZodMiniType<SubmitInteractionBiometric4$Outbound, SubmitInteractionBiometric4>;
1884
+ export declare function submitInteractionBiometric4ToJSON(submitInteractionBiometric4: SubmitInteractionBiometric4): string;
1885
+ /** @internal */
1886
+ export type SubmitInteractionBiometric3$Outbound = {
1887
+ id?: string | undefined;
1888
+ type?: string | undefined;
1889
+ selfieImage: string;
1890
+ selfieImageEncryption?: boolean | undefined;
1891
+ };
1892
+ /** @internal */
1893
+ export declare const SubmitInteractionBiometric3$outboundSchema: z.ZodMiniType<SubmitInteractionBiometric3$Outbound, SubmitInteractionBiometric3>;
1894
+ export declare function submitInteractionBiometric3ToJSON(submitInteractionBiometric3: SubmitInteractionBiometric3): string;
1895
+ /** @internal */
1896
+ export type SubmitInteractionBiometric2$Outbound = {
1897
+ id?: string | undefined;
1898
+ type?: string | undefined;
1899
+ face1Image: string;
1900
+ face2Image: string;
1901
+ };
1902
+ /** @internal */
1903
+ export declare const SubmitInteractionBiometric2$outboundSchema: z.ZodMiniType<SubmitInteractionBiometric2$Outbound, SubmitInteractionBiometric2>;
1904
+ export declare function submitInteractionBiometric2ToJSON(submitInteractionBiometric2: SubmitInteractionBiometric2): string;
1905
+ /** @internal */
1906
+ export type SubmitInteractionBiometric1$Outbound = {
1907
+ id?: string | undefined;
1908
+ type?: string | undefined;
1909
+ faceImage: string;
1910
+ };
1911
+ /** @internal */
1912
+ export declare const SubmitInteractionBiometric1$outboundSchema: z.ZodMiniType<SubmitInteractionBiometric1$Outbound, SubmitInteractionBiometric1>;
1913
+ export declare function submitInteractionBiometric1ToJSON(submitInteractionBiometric1: SubmitInteractionBiometric1): string;
1914
+ /** @internal */
1915
+ export type SubmitInteractionBiometricUnion$Outbound = SubmitInteractionBiometric2$Outbound | SubmitInteractionBiometric4$Outbound | SubmitInteractionBiometric1$Outbound | SubmitInteractionBiometric3$Outbound;
1916
+ /** @internal */
1917
+ export declare const SubmitInteractionBiometricUnion$outboundSchema: z.ZodMiniType<SubmitInteractionBiometricUnion$Outbound, SubmitInteractionBiometricUnion>;
1918
+ export declare function submitInteractionBiometricUnionToJSON(submitInteractionBiometricUnion: SubmitInteractionBiometricUnion): string;
1919
+ /** @internal */
1920
+ export type SubmitInteractionUser$Outbound = {
1921
+ id: string;
1922
+ email: string;
1923
+ domain: string;
1924
+ };
1925
+ /** @internal */
1926
+ export declare const SubmitInteractionUser$outboundSchema: z.ZodMiniType<SubmitInteractionUser$Outbound, SubmitInteractionUser>;
1927
+ export declare function submitInteractionUserToJSON(submitInteractionUser: SubmitInteractionUser): string;
1928
+ /** @internal */
1929
+ export type SubmitInteractionClient$Outbound = {
1930
+ id: string;
1931
+ ip: string;
1932
+ address: string;
1933
+ };
1934
+ /** @internal */
1935
+ export declare const SubmitInteractionClient$outboundSchema: z.ZodMiniType<SubmitInteractionClient$Outbound, SubmitInteractionClient>;
1936
+ export declare function submitInteractionClientToJSON(submitInteractionClient: SubmitInteractionClient): string;
1937
+ /** @internal */
1938
+ export type SubmitInteractionModel$Outbound = {
1939
+ identifier: string;
1940
+ name: string;
1941
+ };
1942
+ /** @internal */
1943
+ export declare const SubmitInteractionModel$outboundSchema: z.ZodMiniType<SubmitInteractionModel$Outbound, SubmitInteractionModel>;
1944
+ export declare function submitInteractionModelToJSON(submitInteractionModel: SubmitInteractionModel): string;
1945
+ /** @internal */
1946
+ export type SubmitInteractionSessionDevice$Outbound = {
1947
+ id: string;
1948
+ manufacturer: string;
1949
+ model: SubmitInteractionModel$Outbound;
1950
+ };
1951
+ /** @internal */
1952
+ export declare const SubmitInteractionSessionDevice$outboundSchema: z.ZodMiniType<SubmitInteractionSessionDevice$Outbound, SubmitInteractionSessionDevice>;
1953
+ export declare function submitInteractionSessionDeviceToJSON(submitInteractionSessionDevice: SubmitInteractionSessionDevice): string;
1954
+ /** @internal */
1955
+ export type SubmitInteractionTrace$Outbound = {
1956
+ id: string;
1957
+ };
1958
+ /** @internal */
1959
+ export declare const SubmitInteractionTrace$outboundSchema: z.ZodMiniType<SubmitInteractionTrace$Outbound, SubmitInteractionTrace>;
1960
+ export declare function submitInteractionTraceToJSON(submitInteractionTrace: SubmitInteractionTrace): string;
1961
+ /** @internal */
1962
+ export type SubmitInteractionSpan$Outbound = {
1963
+ id: string;
1964
+ };
1965
+ /** @internal */
1966
+ export declare const SubmitInteractionSpan$outboundSchema: z.ZodMiniType<SubmitInteractionSpan$Outbound, SubmitInteractionSpan>;
1967
+ export declare function submitInteractionSpanToJSON(submitInteractionSpan: SubmitInteractionSpan): string;
1968
+ /** @internal */
1969
+ export type SubmitInteractionTransaction$Outbound = {
1970
+ id: string;
1971
+ };
1972
+ /** @internal */
1973
+ export declare const SubmitInteractionTransaction$outboundSchema: z.ZodMiniType<SubmitInteractionTransaction$Outbound, SubmitInteractionTransaction>;
1974
+ export declare function submitInteractionTransactionToJSON(submitInteractionTransaction: SubmitInteractionTransaction): string;
1975
+ /** @internal */
1976
+ export type SubmitInteractionSessionAuth$Outbound = {
1977
+ id: string;
1978
+ scope?: string | undefined;
1979
+ codeVerifier?: string | undefined;
1980
+ code?: string | undefined;
1981
+ state?: string | undefined;
1982
+ redirectUri?: string | undefined;
1983
+ responseType?: string | undefined;
1984
+ clientId?: string | undefined;
1985
+ clientSecret?: string | undefined;
1986
+ };
1987
+ /** @internal */
1988
+ export declare const SubmitInteractionSessionAuth$outboundSchema: z.ZodMiniType<SubmitInteractionSessionAuth$Outbound, SubmitInteractionSessionAuth>;
1989
+ export declare function submitInteractionSessionAuthToJSON(submitInteractionSessionAuth: SubmitInteractionSessionAuth): string;
1990
+ /** @internal */
1991
+ export type SubmitInteractionSession$Outbound = {
1992
+ user?: SubmitInteractionUser$Outbound | undefined;
1993
+ client?: SubmitInteractionClient$Outbound | undefined;
1994
+ device?: SubmitInteractionSessionDevice$Outbound | undefined;
1995
+ trace?: SubmitInteractionTrace$Outbound | undefined;
1996
+ span?: SubmitInteractionSpan$Outbound | undefined;
1997
+ transaction?: SubmitInteractionTransaction$Outbound | undefined;
1998
+ auth?: Array<SubmitInteractionSessionAuth$Outbound> | undefined;
1999
+ };
2000
+ /** @internal */
2001
+ export declare const SubmitInteractionSession$outboundSchema: z.ZodMiniType<SubmitInteractionSession$Outbound, SubmitInteractionSession>;
2002
+ export declare function submitInteractionSessionToJSON(submitInteractionSession: SubmitInteractionSession): string;
2003
+ /** @internal */
2004
+ export declare const SubmitInteractionConsentType$outboundSchema: z.ZodMiniEnum<typeof SubmitInteractionConsentType>;
2005
+ /** @internal */
2006
+ export type SubmitInteractionConsent$Outbound = {
2007
+ type?: string | undefined;
2008
+ id?: string | undefined;
2009
+ version?: string | undefined;
2010
+ url: string;
2011
+ effectiveDate?: string | undefined;
2012
+ expiryDate?: string | undefined;
2013
+ terms?: string | undefined;
2014
+ purpose?: string | undefined;
2015
+ legalBasis?: string | undefined;
2016
+ jurisdiction?: string | undefined;
2017
+ subject?: string | undefined;
2018
+ signatory?: string | undefined;
2019
+ };
2020
+ /** @internal */
2021
+ export declare const SubmitInteractionConsent$outboundSchema: z.ZodMiniType<SubmitInteractionConsent$Outbound, SubmitInteractionConsent>;
2022
+ export declare function submitInteractionConsentToJSON(submitInteractionConsent: SubmitInteractionConsent): string;
2023
+ /** @internal */
2024
+ export type SubmitInteractionSubject$Outbound = {
2025
+ identity?: SubmitInteractionIdentity$Outbound | undefined;
2026
+ documents?: Array<SubmitInteractionDocument$Outbound> | undefined;
2027
+ biometrics?: Array<SubmitInteractionBiometric2$Outbound | SubmitInteractionBiometric4$Outbound | SubmitInteractionBiometric1$Outbound | SubmitInteractionBiometric3$Outbound> | undefined;
2028
+ sessions?: Array<SubmitInteractionSession$Outbound> | undefined;
2029
+ consent?: Array<SubmitInteractionConsent$Outbound> | undefined;
2030
+ uid?: string | undefined;
2031
+ };
2032
+ /** @internal */
2033
+ export declare const SubmitInteractionSubject$outboundSchema: z.ZodMiniType<SubmitInteractionSubject$Outbound, SubmitInteractionSubject>;
2034
+ export declare function submitInteractionSubjectToJSON(submitInteractionSubject: SubmitInteractionSubject): string;
2035
+ /** @internal */
2036
+ export type SubmitInteractionContext$Outbound = {
2037
+ subject: SubmitInteractionSubject$Outbound;
2038
+ };
2039
+ /** @internal */
2040
+ export declare const SubmitInteractionContext$outboundSchema: z.ZodMiniType<SubmitInteractionContext$Outbound, SubmitInteractionContext>;
2041
+ export declare function submitInteractionContextToJSON(submitInteractionContext: SubmitInteractionContext): string;
2042
+ /** @internal */
2043
+ export type SubmitInteractionRequest$Outbound = {
2044
+ instanceId: string;
2045
+ interactionId: string;
2046
+ participants?: Array<Participant$Outbound> | undefined;
2047
+ context?: SubmitInteractionContext$Outbound | undefined;
2048
+ };
2049
+ /** @internal */
2050
+ export declare const SubmitInteractionRequest$outboundSchema: z.ZodMiniType<SubmitInteractionRequest$Outbound, SubmitInteractionRequest>;
2051
+ export declare function submitInteractionRequestToJSON(submitInteractionRequest: SubmitInteractionRequest): string;
2052
+ /** @internal */
2053
+ export declare const SubmitInteractionError$inboundSchema: z.ZodMiniType<SubmitInteractionError, unknown>;
2054
+ export declare function submitInteractionErrorFromJSON(jsonString: string): SafeParseResult<SubmitInteractionError, SDKValidationError>;
2055
+ /** @internal */
2056
+ export declare const Success$inboundSchema: z.ZodMiniType<Success, unknown>;
2057
+ export declare function successFromJSON(jsonString: string): SafeParseResult<Success, SDKValidationError>;
2058
+ /** @internal */
2059
+ export declare const SubmitInteractionResponse$inboundSchema: z.ZodMiniType<SubmitInteractionResponse, unknown>;
2060
+ export declare function submitInteractionResponseFromJSON(jsonString: string): SafeParseResult<SubmitInteractionResponse, SDKValidationError>;
2061
+ //# sourceMappingURL=submit-interaction.d.ts.map