@corti/sdk 0.0.0-alpha.10

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 (860) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +231 -0
  3. package/dist/cjs/api/errors/BadRequestError.d.ts +8 -0
  4. package/dist/cjs/api/errors/BadRequestError.js +52 -0
  5. package/dist/cjs/api/errors/ForbiddenError.d.ts +9 -0
  6. package/dist/cjs/api/errors/ForbiddenError.js +52 -0
  7. package/dist/cjs/api/errors/GatewayTimeoutError.d.ts +9 -0
  8. package/dist/cjs/api/errors/GatewayTimeoutError.js +52 -0
  9. package/dist/cjs/api/errors/InternalServerError.d.ts +8 -0
  10. package/dist/cjs/api/errors/InternalServerError.js +52 -0
  11. package/dist/cjs/api/errors/NotFoundError.d.ts +9 -0
  12. package/dist/cjs/api/errors/NotFoundError.js +52 -0
  13. package/dist/cjs/api/errors/UnauthorizedError.d.ts +8 -0
  14. package/dist/cjs/api/errors/UnauthorizedError.js +52 -0
  15. package/dist/cjs/api/errors/index.d.ts +6 -0
  16. package/dist/cjs/api/errors/index.js +22 -0
  17. package/dist/cjs/api/index.d.ts +3 -0
  18. package/dist/cjs/api/index.js +19 -0
  19. package/dist/cjs/api/resources/auth/client/Client.d.ts +49 -0
  20. package/dist/cjs/api/resources/auth/client/Client.js +129 -0
  21. package/dist/cjs/api/resources/auth/client/index.d.ts +2 -0
  22. package/dist/cjs/api/resources/auth/client/index.js +17 -0
  23. package/dist/cjs/api/resources/auth/client/requests/AuthGetTokenRequest.d.ts +14 -0
  24. package/dist/cjs/api/resources/auth/client/requests/AuthGetTokenRequest.js +5 -0
  25. package/dist/cjs/api/resources/auth/client/requests/index.d.ts +1 -0
  26. package/dist/cjs/api/resources/auth/client/requests/index.js +2 -0
  27. package/dist/cjs/api/resources/auth/index.d.ts +2 -0
  28. package/dist/cjs/api/resources/auth/index.js +18 -0
  29. package/dist/cjs/api/resources/auth/types/GetTokenResponse.d.ts +10 -0
  30. package/dist/cjs/api/resources/auth/types/GetTokenResponse.js +5 -0
  31. package/dist/cjs/api/resources/auth/types/index.d.ts +1 -0
  32. package/dist/cjs/api/resources/auth/types/index.js +17 -0
  33. package/dist/cjs/api/resources/documents/client/Client.d.ts +127 -0
  34. package/dist/cjs/api/resources/documents/client/Client.js +440 -0
  35. package/dist/cjs/api/resources/documents/client/index.d.ts +2 -0
  36. package/dist/cjs/api/resources/documents/client/index.js +17 -0
  37. package/dist/cjs/api/resources/documents/client/requests/DocumentsGetRequest.d.ts +13 -0
  38. package/dist/cjs/api/resources/documents/client/requests/DocumentsGetRequest.js +5 -0
  39. package/dist/cjs/api/resources/documents/client/requests/RequestDocumentCreate.d.ts +31 -0
  40. package/dist/cjs/api/resources/documents/client/requests/RequestDocumentCreate.js +5 -0
  41. package/dist/cjs/api/resources/documents/client/requests/RequestDocumentUpdate.d.ts +13 -0
  42. package/dist/cjs/api/resources/documents/client/requests/RequestDocumentUpdate.js +5 -0
  43. package/dist/cjs/api/resources/documents/client/requests/index.d.ts +3 -0
  44. package/dist/cjs/api/resources/documents/client/requests/index.js +2 -0
  45. package/dist/cjs/api/resources/documents/index.d.ts +2 -0
  46. package/dist/cjs/api/resources/documents/index.js +18 -0
  47. package/dist/cjs/api/resources/documents/types/RequestDocumentCreateContextItem.d.ts +10 -0
  48. package/dist/cjs/api/resources/documents/types/RequestDocumentCreateContextItem.js +5 -0
  49. package/dist/cjs/api/resources/documents/types/RequestDocumentUpdateSectionsItem.d.ts +9 -0
  50. package/dist/cjs/api/resources/documents/types/RequestDocumentUpdateSectionsItem.js +5 -0
  51. package/dist/cjs/api/resources/documents/types/index.d.ts +2 -0
  52. package/dist/cjs/api/resources/documents/types/index.js +18 -0
  53. package/dist/cjs/api/resources/facts/client/Client.d.ts +113 -0
  54. package/dist/cjs/api/resources/facts/client/Client.js +393 -0
  55. package/dist/cjs/api/resources/facts/client/index.d.ts +2 -0
  56. package/dist/cjs/api/resources/facts/client/index.js +17 -0
  57. package/dist/cjs/api/resources/facts/client/requests/RequestFactUpdate.d.ts +21 -0
  58. package/dist/cjs/api/resources/facts/client/requests/RequestFactUpdate.js +5 -0
  59. package/dist/cjs/api/resources/facts/client/requests/RequestFactsCreate.d.ts +17 -0
  60. package/dist/cjs/api/resources/facts/client/requests/RequestFactsCreate.js +5 -0
  61. package/dist/cjs/api/resources/facts/client/requests/RequestFactsUpdate.d.ts +16 -0
  62. package/dist/cjs/api/resources/facts/client/requests/RequestFactsUpdate.js +5 -0
  63. package/dist/cjs/api/resources/facts/client/requests/index.d.ts +3 -0
  64. package/dist/cjs/api/resources/facts/client/requests/index.js +2 -0
  65. package/dist/cjs/api/resources/facts/index.d.ts +2 -0
  66. package/dist/cjs/api/resources/facts/index.js +18 -0
  67. package/dist/cjs/api/resources/facts/types/RequestFactsCreateFactsItem.d.ts +12 -0
  68. package/dist/cjs/api/resources/facts/types/RequestFactsCreateFactsItem.js +5 -0
  69. package/dist/cjs/api/resources/facts/types/RequestFactsUpdateFactsItem.d.ts +14 -0
  70. package/dist/cjs/api/resources/facts/types/RequestFactsUpdateFactsItem.js +5 -0
  71. package/dist/cjs/api/resources/facts/types/index.d.ts +2 -0
  72. package/dist/cjs/api/resources/facts/types/index.js +18 -0
  73. package/dist/cjs/api/resources/index.d.ts +20 -0
  74. package/dist/cjs/api/resources/index.js +59 -0
  75. package/dist/cjs/api/resources/interactions/client/Client.d.ts +113 -0
  76. package/dist/cjs/api/resources/interactions/client/Client.js +442 -0
  77. package/dist/cjs/api/resources/interactions/client/index.d.ts +2 -0
  78. package/dist/cjs/api/resources/interactions/client/index.js +17 -0
  79. package/dist/cjs/api/resources/interactions/client/requests/InteractionsListRequest.d.ts +34 -0
  80. package/dist/cjs/api/resources/interactions/client/requests/InteractionsListRequest.js +5 -0
  81. package/dist/cjs/api/resources/interactions/client/requests/RequestInteractionCreate.d.ts +22 -0
  82. package/dist/cjs/api/resources/interactions/client/requests/RequestInteractionCreate.js +5 -0
  83. package/dist/cjs/api/resources/interactions/client/requests/RequestInteractionUpdate.d.ts +16 -0
  84. package/dist/cjs/api/resources/interactions/client/requests/RequestInteractionUpdate.js +5 -0
  85. package/dist/cjs/api/resources/interactions/client/requests/index.d.ts +3 -0
  86. package/dist/cjs/api/resources/interactions/client/requests/index.js +2 -0
  87. package/dist/cjs/api/resources/interactions/index.d.ts +2 -0
  88. package/dist/cjs/api/resources/interactions/index.js +18 -0
  89. package/dist/cjs/api/resources/interactions/types/InteractionsListRequestDirection.d.ts +11 -0
  90. package/dist/cjs/api/resources/interactions/types/InteractionsListRequestDirection.js +10 -0
  91. package/dist/cjs/api/resources/interactions/types/InteractionsListRequestSort.d.ts +12 -0
  92. package/dist/cjs/api/resources/interactions/types/InteractionsListRequestSort.js +11 -0
  93. package/dist/cjs/api/resources/interactions/types/index.d.ts +2 -0
  94. package/dist/cjs/api/resources/interactions/types/index.js +18 -0
  95. package/dist/cjs/api/resources/recordings/client/Client.d.ts +94 -0
  96. package/dist/cjs/api/resources/recordings/client/Client.js +347 -0
  97. package/dist/cjs/api/resources/recordings/client/index.d.ts +1 -0
  98. package/dist/cjs/api/resources/recordings/client/index.js +2 -0
  99. package/dist/cjs/api/resources/recordings/index.d.ts +1 -0
  100. package/dist/cjs/api/resources/recordings/index.js +17 -0
  101. package/dist/cjs/api/resources/stream/client/Client.d.ts +35 -0
  102. package/dist/cjs/api/resources/stream/client/Client.js +82 -0
  103. package/dist/cjs/api/resources/stream/client/Socket.d.ts +54 -0
  104. package/dist/cjs/api/resources/stream/client/Socket.js +160 -0
  105. package/dist/cjs/api/resources/stream/client/index.d.ts +1 -0
  106. package/dist/cjs/api/resources/stream/client/index.js +17 -0
  107. package/dist/cjs/api/resources/stream/index.d.ts +1 -0
  108. package/dist/cjs/api/resources/stream/index.js +17 -0
  109. package/dist/cjs/api/resources/templates/client/Client.d.ts +77 -0
  110. package/dist/cjs/api/resources/templates/client/Client.js +281 -0
  111. package/dist/cjs/api/resources/templates/client/index.d.ts +2 -0
  112. package/dist/cjs/api/resources/templates/client/index.js +17 -0
  113. package/dist/cjs/api/resources/templates/client/requests/TemplatesListRequest.d.ts +21 -0
  114. package/dist/cjs/api/resources/templates/client/requests/TemplatesListRequest.js +5 -0
  115. package/dist/cjs/api/resources/templates/client/requests/TemplatesSectionsListRequest.d.ts +17 -0
  116. package/dist/cjs/api/resources/templates/client/requests/TemplatesSectionsListRequest.js +5 -0
  117. package/dist/cjs/api/resources/templates/client/requests/index.d.ts +2 -0
  118. package/dist/cjs/api/resources/templates/client/requests/index.js +2 -0
  119. package/dist/cjs/api/resources/templates/index.d.ts +1 -0
  120. package/dist/cjs/api/resources/templates/index.js +17 -0
  121. package/dist/cjs/api/resources/transcribe/client/Client.d.ts +34 -0
  122. package/dist/cjs/api/resources/transcribe/client/Client.js +82 -0
  123. package/dist/cjs/api/resources/transcribe/client/Socket.d.ts +54 -0
  124. package/dist/cjs/api/resources/transcribe/client/Socket.js +160 -0
  125. package/dist/cjs/api/resources/transcribe/client/index.d.ts +1 -0
  126. package/dist/cjs/api/resources/transcribe/client/index.js +17 -0
  127. package/dist/cjs/api/resources/transcribe/index.d.ts +1 -0
  128. package/dist/cjs/api/resources/transcribe/index.js +17 -0
  129. package/dist/cjs/api/resources/transcripts/client/Client.d.ts +110 -0
  130. package/dist/cjs/api/resources/transcripts/client/Client.js +402 -0
  131. package/dist/cjs/api/resources/transcripts/client/index.d.ts +2 -0
  132. package/dist/cjs/api/resources/transcripts/client/index.js +17 -0
  133. package/dist/cjs/api/resources/transcripts/client/requests/TranscriptCreate.d.ts +28 -0
  134. package/dist/cjs/api/resources/transcripts/client/requests/TranscriptCreate.js +5 -0
  135. package/dist/cjs/api/resources/transcripts/client/requests/TranscriptsListRequest.d.ts +30 -0
  136. package/dist/cjs/api/resources/transcripts/client/requests/TranscriptsListRequest.js +5 -0
  137. package/dist/cjs/api/resources/transcripts/client/requests/index.d.ts +2 -0
  138. package/dist/cjs/api/resources/transcripts/client/requests/index.js +2 -0
  139. package/dist/cjs/api/resources/transcripts/index.d.ts +2 -0
  140. package/dist/cjs/api/resources/transcripts/index.js +18 -0
  141. package/dist/cjs/api/resources/transcripts/types/RequestTranscriptCreateModelName.d.ts +12 -0
  142. package/dist/cjs/api/resources/transcripts/types/RequestTranscriptCreateModelName.js +11 -0
  143. package/dist/cjs/api/resources/transcripts/types/RequestTranscriptCreateParticipantsItem.d.ts +10 -0
  144. package/dist/cjs/api/resources/transcripts/types/RequestTranscriptCreateParticipantsItem.js +5 -0
  145. package/dist/cjs/api/resources/transcripts/types/RequestTranscriptCreatePrimaryLanguage.d.ts +21 -0
  146. package/dist/cjs/api/resources/transcripts/types/RequestTranscriptCreatePrimaryLanguage.js +20 -0
  147. package/dist/cjs/api/resources/transcripts/types/TranscriptsListRequestDirection.d.ts +11 -0
  148. package/dist/cjs/api/resources/transcripts/types/TranscriptsListRequestDirection.js +10 -0
  149. package/dist/cjs/api/resources/transcripts/types/TranscriptsListRequestSort.d.ts +11 -0
  150. package/dist/cjs/api/resources/transcripts/types/TranscriptsListRequestSort.js +10 -0
  151. package/dist/cjs/api/resources/transcripts/types/index.d.ts +5 -0
  152. package/dist/cjs/api/resources/transcripts/types/index.js +21 -0
  153. package/dist/cjs/api/types/DocumentContextData.d.ts +14 -0
  154. package/dist/cjs/api/types/DocumentContextData.js +5 -0
  155. package/dist/cjs/api/types/DocumentTemplate.d.ts +14 -0
  156. package/dist/cjs/api/types/DocumentTemplate.js +5 -0
  157. package/dist/cjs/api/types/Encounter.d.ts +16 -0
  158. package/dist/cjs/api/types/Encounter.js +5 -0
  159. package/dist/cjs/api/types/EncounterPeriod.d.ts +9 -0
  160. package/dist/cjs/api/types/EncounterPeriod.js +5 -0
  161. package/dist/cjs/api/types/EncounterStatus.d.ts +12 -0
  162. package/dist/cjs/api/types/EncounterStatus.js +14 -0
  163. package/dist/cjs/api/types/EncounterType.d.ts +11 -0
  164. package/dist/cjs/api/types/EncounterType.js +13 -0
  165. package/dist/cjs/api/types/EncounterUpdate.d.ts +16 -0
  166. package/dist/cjs/api/types/EncounterUpdate.js +5 -0
  167. package/dist/cjs/api/types/ErrorResponse.d.ts +11 -0
  168. package/dist/cjs/api/types/ErrorResponse.js +5 -0
  169. package/dist/cjs/api/types/FactContext.d.ts +12 -0
  170. package/dist/cjs/api/types/FactContext.js +5 -0
  171. package/dist/cjs/api/types/GenderEnum.d.ts +10 -0
  172. package/dist/cjs/api/types/GenderEnum.js +12 -0
  173. package/dist/cjs/api/types/ParticipantRoleEnum.d.ts +9 -0
  174. package/dist/cjs/api/types/ParticipantRoleEnum.js +11 -0
  175. package/dist/cjs/api/types/Patient.d.ts +16 -0
  176. package/dist/cjs/api/types/Patient.js +5 -0
  177. package/dist/cjs/api/types/PatientUpdate.d.ts +16 -0
  178. package/dist/cjs/api/types/PatientUpdate.js +5 -0
  179. package/dist/cjs/api/types/ResponseAllTemplateSections.d.ts +8 -0
  180. package/dist/cjs/api/types/ResponseAllTemplateSections.js +5 -0
  181. package/dist/cjs/api/types/ResponseAllTemplates.d.ts +8 -0
  182. package/dist/cjs/api/types/ResponseAllTemplates.js +5 -0
  183. package/dist/cjs/api/types/ResponseAllTemplatesDataItem.d.ts +20 -0
  184. package/dist/cjs/api/types/ResponseAllTemplatesDataItem.js +5 -0
  185. package/dist/cjs/api/types/ResponseAllTemplatesDataItemTemplateSectionsItem.d.ts +10 -0
  186. package/dist/cjs/api/types/ResponseAllTemplatesDataItemTemplateSectionsItem.js +5 -0
  187. package/dist/cjs/api/types/ResponseAllTemplatesDataItemTranslationsItem.d.ts +11 -0
  188. package/dist/cjs/api/types/ResponseAllTemplatesDataItemTranslationsItem.js +5 -0
  189. package/dist/cjs/api/types/ResponseDocumentList.d.ts +7 -0
  190. package/dist/cjs/api/types/ResponseDocumentList.js +5 -0
  191. package/dist/cjs/api/types/ResponseDocumentRead.d.ts +22 -0
  192. package/dist/cjs/api/types/ResponseDocumentRead.js +5 -0
  193. package/dist/cjs/api/types/ResponseDocumentReadSectionsItem.d.ts +17 -0
  194. package/dist/cjs/api/types/ResponseDocumentReadSectionsItem.js +5 -0
  195. package/dist/cjs/api/types/ResponseFactGroupsFiltered.d.ts +7 -0
  196. package/dist/cjs/api/types/ResponseFactGroupsFiltered.js +5 -0
  197. package/dist/cjs/api/types/ResponseFactGroupsFilteredDataItem.d.ts +9 -0
  198. package/dist/cjs/api/types/ResponseFactGroupsFilteredDataItem.js +5 -0
  199. package/dist/cjs/api/types/ResponseFactGroupsFilteredDataItemTranslationsItem.d.ts +8 -0
  200. package/dist/cjs/api/types/ResponseFactGroupsFilteredDataItemTranslationsItem.js +5 -0
  201. package/dist/cjs/api/types/ResponseFactUpdate.d.ts +22 -0
  202. package/dist/cjs/api/types/ResponseFactUpdate.js +5 -0
  203. package/dist/cjs/api/types/ResponseFactsCreate.d.ts +8 -0
  204. package/dist/cjs/api/types/ResponseFactsCreate.js +5 -0
  205. package/dist/cjs/api/types/ResponseFactsCreateFactsItem.d.ts +20 -0
  206. package/dist/cjs/api/types/ResponseFactsCreateFactsItem.js +5 -0
  207. package/dist/cjs/api/types/ResponseFactsList.d.ts +8 -0
  208. package/dist/cjs/api/types/ResponseFactsList.js +5 -0
  209. package/dist/cjs/api/types/ResponseFactsListFactsItem.d.ts +23 -0
  210. package/dist/cjs/api/types/ResponseFactsListFactsItem.js +5 -0
  211. package/dist/cjs/api/types/ResponseFactsListFactsItemEvidenceItem.d.ts +11 -0
  212. package/dist/cjs/api/types/ResponseFactsListFactsItemEvidenceItem.js +5 -0
  213. package/dist/cjs/api/types/ResponseFactsUpdate.d.ts +8 -0
  214. package/dist/cjs/api/types/ResponseFactsUpdate.js +5 -0
  215. package/dist/cjs/api/types/ResponseFactsUpdateFactsItem.d.ts +22 -0
  216. package/dist/cjs/api/types/ResponseFactsUpdateFactsItem.js +5 -0
  217. package/dist/cjs/api/types/ResponseInteraction.d.ts +24 -0
  218. package/dist/cjs/api/types/ResponseInteraction.js +5 -0
  219. package/dist/cjs/api/types/ResponseInteractionCreate.d.ts +10 -0
  220. package/dist/cjs/api/types/ResponseInteractionCreate.js +5 -0
  221. package/dist/cjs/api/types/ResponseInteractions.d.ts +7 -0
  222. package/dist/cjs/api/types/ResponseInteractions.js +5 -0
  223. package/dist/cjs/api/types/ResponseMetadataCreate.d.ts +7 -0
  224. package/dist/cjs/api/types/ResponseMetadataCreate.js +5 -0
  225. package/dist/cjs/api/types/ResponseMetadataCreateParticipantsRolesItem.d.ts +10 -0
  226. package/dist/cjs/api/types/ResponseMetadataCreateParticipantsRolesItem.js +5 -0
  227. package/dist/cjs/api/types/ResponseRecordingCreate.d.ts +8 -0
  228. package/dist/cjs/api/types/ResponseRecordingCreate.js +5 -0
  229. package/dist/cjs/api/types/ResponseRecordingList.d.ts +8 -0
  230. package/dist/cjs/api/types/ResponseRecordingList.js +5 -0
  231. package/dist/cjs/api/types/ResponseTranscriptCreate.d.ts +13 -0
  232. package/dist/cjs/api/types/ResponseTranscriptCreate.js +5 -0
  233. package/dist/cjs/api/types/ResponseTranscriptCreateTranscriptsItem.d.ts +17 -0
  234. package/dist/cjs/api/types/ResponseTranscriptCreateTranscriptsItem.js +5 -0
  235. package/dist/cjs/api/types/ResponseTranscriptListAll.d.ts +7 -0
  236. package/dist/cjs/api/types/ResponseTranscriptListAll.js +5 -0
  237. package/dist/cjs/api/types/ResponseTranscriptListAllTranscriptsItem.d.ts +9 -0
  238. package/dist/cjs/api/types/ResponseTranscriptListAllTranscriptsItem.js +5 -0
  239. package/dist/cjs/api/types/Section.d.ts +22 -0
  240. package/dist/cjs/api/types/Section.js +5 -0
  241. package/dist/cjs/api/types/SectionTranslationsItem.d.ts +11 -0
  242. package/dist/cjs/api/types/SectionTranslationsItem.js +5 -0
  243. package/dist/cjs/api/types/StreamConfigData.d.ts +8 -0
  244. package/dist/cjs/api/types/StreamConfigData.js +5 -0
  245. package/dist/cjs/api/types/StreamConfigMode.d.ts +10 -0
  246. package/dist/cjs/api/types/StreamConfigMode.js +5 -0
  247. package/dist/cjs/api/types/StreamConfigModeOutputLocale.d.ts +21 -0
  248. package/dist/cjs/api/types/StreamConfigModeOutputLocale.js +20 -0
  249. package/dist/cjs/api/types/StreamConfigModeType.d.ts +11 -0
  250. package/dist/cjs/api/types/StreamConfigModeType.js +10 -0
  251. package/dist/cjs/api/types/StreamConfigStatusMessage.d.ts +12 -0
  252. package/dist/cjs/api/types/StreamConfigStatusMessage.js +5 -0
  253. package/dist/cjs/api/types/StreamConfigStatusMessageType.d.ts +15 -0
  254. package/dist/cjs/api/types/StreamConfigStatusMessageType.js +14 -0
  255. package/dist/cjs/api/types/StreamConfigTranscription.d.ts +14 -0
  256. package/dist/cjs/api/types/StreamConfigTranscription.js +5 -0
  257. package/dist/cjs/api/types/StreamConfigTranscriptionPrimaryLanguage.d.ts +21 -0
  258. package/dist/cjs/api/types/StreamConfigTranscriptionPrimaryLanguage.js +20 -0
  259. package/dist/cjs/api/types/StreamConfigurationMessage.d.ts +8 -0
  260. package/dist/cjs/api/types/StreamConfigurationMessage.js +5 -0
  261. package/dist/cjs/api/types/StreamEndMessage.d.ts +6 -0
  262. package/dist/cjs/api/types/StreamEndMessage.js +5 -0
  263. package/dist/cjs/api/types/StreamEndedMessage.d.ts +6 -0
  264. package/dist/cjs/api/types/StreamEndedMessage.js +5 -0
  265. package/dist/cjs/api/types/StreamErrorDetail.d.ts +15 -0
  266. package/dist/cjs/api/types/StreamErrorDetail.js +5 -0
  267. package/dist/cjs/api/types/StreamErrorMessage.d.ts +8 -0
  268. package/dist/cjs/api/types/StreamErrorMessage.js +5 -0
  269. package/dist/cjs/api/types/StreamFact.d.ts +21 -0
  270. package/dist/cjs/api/types/StreamFact.js +5 -0
  271. package/dist/cjs/api/types/StreamFactsMessage.d.ts +8 -0
  272. package/dist/cjs/api/types/StreamFactsMessage.js +5 -0
  273. package/dist/cjs/api/types/StreamParticipant.d.ts +10 -0
  274. package/dist/cjs/api/types/StreamParticipant.js +5 -0
  275. package/dist/cjs/api/types/StreamParticipantRole.d.ts +12 -0
  276. package/dist/cjs/api/types/StreamParticipantRole.js +11 -0
  277. package/dist/cjs/api/types/StreamTranscript.d.ts +16 -0
  278. package/dist/cjs/api/types/StreamTranscript.js +5 -0
  279. package/dist/cjs/api/types/StreamTranscriptMessage.d.ts +8 -0
  280. package/dist/cjs/api/types/StreamTranscriptMessage.js +5 -0
  281. package/dist/cjs/api/types/StreamTranscriptTime.d.ts +9 -0
  282. package/dist/cjs/api/types/StreamTranscriptTime.js +5 -0
  283. package/dist/cjs/api/types/StreamUsageMessage.d.ts +8 -0
  284. package/dist/cjs/api/types/StreamUsageMessage.js +5 -0
  285. package/dist/cjs/api/types/TemplateFiltered.d.ts +20 -0
  286. package/dist/cjs/api/types/TemplateFiltered.js +5 -0
  287. package/dist/cjs/api/types/TemplateFilteredTemplateSectionsItem.d.ts +10 -0
  288. package/dist/cjs/api/types/TemplateFilteredTemplateSectionsItem.js +5 -0
  289. package/dist/cjs/api/types/TemplateFilteredTranslationsItem.d.ts +11 -0
  290. package/dist/cjs/api/types/TemplateFilteredTranslationsItem.js +5 -0
  291. package/dist/cjs/api/types/TranscribeCommand.d.ts +12 -0
  292. package/dist/cjs/api/types/TranscribeCommand.js +5 -0
  293. package/dist/cjs/api/types/TranscribeCommandData.d.ts +15 -0
  294. package/dist/cjs/api/types/TranscribeCommandData.js +5 -0
  295. package/dist/cjs/api/types/TranscribeCommandMessage.d.ts +8 -0
  296. package/dist/cjs/api/types/TranscribeCommandMessage.js +5 -0
  297. package/dist/cjs/api/types/TranscribeCommandVariable.d.ts +11 -0
  298. package/dist/cjs/api/types/TranscribeCommandVariable.js +5 -0
  299. package/dist/cjs/api/types/TranscribeConfigStatusMessage.d.ts +12 -0
  300. package/dist/cjs/api/types/TranscribeConfigStatusMessage.js +5 -0
  301. package/dist/cjs/api/types/TranscribeConfigStatusMessageType.d.ts +12 -0
  302. package/dist/cjs/api/types/TranscribeConfigStatusMessageType.js +11 -0
  303. package/dist/cjs/api/types/TranscribeConfigurationMessage.d.ts +8 -0
  304. package/dist/cjs/api/types/TranscribeConfigurationMessage.js +5 -0
  305. package/dist/cjs/api/types/TranscribeConfigurationMessageConfiguration.d.ts +16 -0
  306. package/dist/cjs/api/types/TranscribeConfigurationMessageConfiguration.js +5 -0
  307. package/dist/cjs/api/types/TranscribeConfigurationMessageConfigurationPrimaryLanguage.d.ts +21 -0
  308. package/dist/cjs/api/types/TranscribeConfigurationMessageConfigurationPrimaryLanguage.js +20 -0
  309. package/dist/cjs/api/types/TranscribeEndMessage.d.ts +6 -0
  310. package/dist/cjs/api/types/TranscribeEndMessage.js +5 -0
  311. package/dist/cjs/api/types/TranscribeEndedMessage.d.ts +6 -0
  312. package/dist/cjs/api/types/TranscribeEndedMessage.js +5 -0
  313. package/dist/cjs/api/types/TranscribeErrorMessage.d.ts +8 -0
  314. package/dist/cjs/api/types/TranscribeErrorMessage.js +5 -0
  315. package/dist/cjs/api/types/TranscribeErrorMessageError.d.ts +15 -0
  316. package/dist/cjs/api/types/TranscribeErrorMessageError.js +5 -0
  317. package/dist/cjs/api/types/TranscribeTranscriptData.d.ts +15 -0
  318. package/dist/cjs/api/types/TranscribeTranscriptData.js +5 -0
  319. package/dist/cjs/api/types/TranscribeTranscriptMessage.d.ts +8 -0
  320. package/dist/cjs/api/types/TranscribeTranscriptMessage.js +5 -0
  321. package/dist/cjs/api/types/TranscribeUsageMessage.d.ts +8 -0
  322. package/dist/cjs/api/types/TranscribeUsageMessage.js +5 -0
  323. package/dist/cjs/api/types/Transcript.d.ts +17 -0
  324. package/dist/cjs/api/types/Transcript.js +5 -0
  325. package/dist/cjs/api/types/UsageInfo.d.ts +6 -0
  326. package/dist/cjs/api/types/UsageInfo.js +5 -0
  327. package/dist/cjs/api/types/Uuid.d.ts +4 -0
  328. package/dist/cjs/api/types/Uuid.js +5 -0
  329. package/dist/cjs/api/types/V2DocumentContextTypeEnum.d.ts +9 -0
  330. package/dist/cjs/api/types/V2DocumentContextTypeEnum.js +11 -0
  331. package/dist/cjs/api/types/V2SourceEnum.d.ts +9 -0
  332. package/dist/cjs/api/types/V2SourceEnum.js +11 -0
  333. package/dist/cjs/api/types/WritingStyle.d.ts +7 -0
  334. package/dist/cjs/api/types/WritingStyle.js +5 -0
  335. package/dist/cjs/api/types/index.d.ts +91 -0
  336. package/dist/cjs/api/types/index.js +107 -0
  337. package/dist/cjs/core/auth/BasicAuth.d.ts +8 -0
  338. package/dist/cjs/core/auth/BasicAuth.js +26 -0
  339. package/dist/cjs/core/auth/BearerToken.d.ts +5 -0
  340. package/dist/cjs/core/auth/BearerToken.js +15 -0
  341. package/dist/cjs/core/auth/OAuthTokenProvider.d.ts +25 -0
  342. package/dist/cjs/core/auth/OAuthTokenProvider.js +86 -0
  343. package/dist/cjs/core/auth/index.d.ts +3 -0
  344. package/dist/cjs/core/auth/index.js +9 -0
  345. package/dist/cjs/core/fetcher/APIResponse.d.ts +20 -0
  346. package/dist/cjs/core/fetcher/APIResponse.js +2 -0
  347. package/dist/cjs/core/fetcher/BinaryResponse.d.ts +17 -0
  348. package/dist/cjs/core/fetcher/BinaryResponse.js +14 -0
  349. package/dist/cjs/core/fetcher/Fetcher.d.ts +40 -0
  350. package/dist/cjs/core/fetcher/Fetcher.js +120 -0
  351. package/dist/cjs/core/fetcher/Headers.d.ts +2 -0
  352. package/dist/cjs/core/fetcher/Headers.js +84 -0
  353. package/dist/cjs/core/fetcher/HttpResponsePromise.d.ts +58 -0
  354. package/dist/cjs/core/fetcher/HttpResponsePromise.js +103 -0
  355. package/dist/cjs/core/fetcher/RawResponse.d.ts +29 -0
  356. package/dist/cjs/core/fetcher/RawResponse.js +44 -0
  357. package/dist/cjs/core/fetcher/ResponseWithBody.d.ts +4 -0
  358. package/dist/cjs/core/fetcher/ResponseWithBody.js +6 -0
  359. package/dist/cjs/core/fetcher/Supplier.d.ts +4 -0
  360. package/dist/cjs/core/fetcher/Supplier.js +22 -0
  361. package/dist/cjs/core/fetcher/createRequestUrl.d.ts +1 -0
  362. package/dist/cjs/core/fetcher/createRequestUrl.js +12 -0
  363. package/dist/cjs/core/fetcher/getFetchFn.d.ts +4 -0
  364. package/dist/cjs/core/fetcher/getFetchFn.js +68 -0
  365. package/dist/cjs/core/fetcher/getHeader.d.ts +1 -0
  366. package/dist/cjs/core/fetcher/getHeader.js +11 -0
  367. package/dist/cjs/core/fetcher/getRequestBody.d.ts +7 -0
  368. package/dist/cjs/core/fetcher/getRequestBody.js +23 -0
  369. package/dist/cjs/core/fetcher/getResponseBody.d.ts +1 -0
  370. package/dist/cjs/core/fetcher/getResponseBody.js +54 -0
  371. package/dist/cjs/core/fetcher/index.d.ts +9 -0
  372. package/dist/cjs/core/fetcher/index.js +15 -0
  373. package/dist/cjs/core/fetcher/makeRequest.d.ts +1 -0
  374. package/dist/cjs/core/fetcher/makeRequest.js +42 -0
  375. package/dist/cjs/core/fetcher/requestWithRetries.d.ts +1 -0
  376. package/dist/cjs/core/fetcher/requestWithRetries.js +40 -0
  377. package/dist/cjs/core/fetcher/signals.d.ts +11 -0
  378. package/dist/cjs/core/fetcher/signals.js +36 -0
  379. package/dist/cjs/core/headers.d.ts +3 -0
  380. package/dist/cjs/core/headers.js +29 -0
  381. package/dist/cjs/core/index.d.ts +6 -0
  382. package/dist/cjs/core/index.js +22 -0
  383. package/dist/cjs/core/json.d.ts +15 -0
  384. package/dist/cjs/core/json.js +24 -0
  385. package/dist/cjs/core/pagination/Page.d.ts +32 -0
  386. package/dist/cjs/core/pagination/Page.js +100 -0
  387. package/dist/cjs/core/pagination/Pageable.d.ts +14 -0
  388. package/dist/cjs/core/pagination/Pageable.js +10 -0
  389. package/dist/cjs/core/pagination/index.d.ts +2 -0
  390. package/dist/cjs/core/pagination/index.js +7 -0
  391. package/dist/cjs/core/runtime/index.d.ts +1 -0
  392. package/dist/cjs/core/runtime/index.js +5 -0
  393. package/dist/cjs/core/runtime/runtime.d.ts +9 -0
  394. package/dist/cjs/core/runtime/runtime.js +102 -0
  395. package/dist/cjs/core/utils/index.d.ts +1 -0
  396. package/dist/cjs/core/utils/index.js +5 -0
  397. package/dist/cjs/core/utils/setObjectProperty.d.ts +11 -0
  398. package/dist/cjs/core/utils/setObjectProperty.js +42 -0
  399. package/dist/cjs/core/websocket/events.d.ts +36 -0
  400. package/dist/cjs/core/websocket/events.js +27 -0
  401. package/dist/cjs/core/websocket/index.d.ts +1 -0
  402. package/dist/cjs/core/websocket/index.js +17 -0
  403. package/dist/cjs/core/websocket/ws.d.ts +137 -0
  404. package/dist/cjs/core/websocket/ws.js +452 -0
  405. package/dist/cjs/custom/CortiAuth.d.ts +57 -0
  406. package/dist/cjs/custom/CortiAuth.js +185 -0
  407. package/dist/cjs/custom/CortiClient.d.ts +113 -0
  408. package/dist/cjs/custom/CortiClient.js +148 -0
  409. package/dist/cjs/custom/CustomStream.d.ts +15 -0
  410. package/dist/cjs/custom/CustomStream.js +82 -0
  411. package/dist/cjs/custom/CustomStreamSocket.d.ts +11 -0
  412. package/dist/cjs/custom/CustomStreamSocket.js +62 -0
  413. package/dist/cjs/custom/CustomTranscribe.d.ts +15 -0
  414. package/dist/cjs/custom/CustomTranscribe.js +82 -0
  415. package/dist/cjs/custom/CustomTranscribeSocket.d.ts +11 -0
  416. package/dist/cjs/custom/CustomTranscribeSocket.js +62 -0
  417. package/dist/cjs/custom/RefreshBearerProvider.d.ts +23 -0
  418. package/dist/cjs/custom/RefreshBearerProvider.js +85 -0
  419. package/dist/cjs/environments.d.ts +26 -0
  420. package/dist/cjs/environments.js +23 -0
  421. package/dist/cjs/errors/CortiError.d.ts +15 -0
  422. package/dist/cjs/errors/CortiError.js +30 -0
  423. package/dist/cjs/errors/CortiTimeoutError.d.ts +6 -0
  424. package/dist/cjs/errors/CortiTimeoutError.js +13 -0
  425. package/dist/cjs/errors/index.d.ts +2 -0
  426. package/dist/cjs/errors/index.js +7 -0
  427. package/dist/cjs/index.d.ts +14 -0
  428. package/dist/cjs/index.js +56 -0
  429. package/dist/cjs/version.d.ts +1 -0
  430. package/dist/cjs/version.js +4 -0
  431. package/dist/esm/api/errors/BadRequestError.d.mts +8 -0
  432. package/dist/esm/api/errors/BadRequestError.mjs +15 -0
  433. package/dist/esm/api/errors/ForbiddenError.d.mts +9 -0
  434. package/dist/esm/api/errors/ForbiddenError.mjs +15 -0
  435. package/dist/esm/api/errors/GatewayTimeoutError.d.mts +9 -0
  436. package/dist/esm/api/errors/GatewayTimeoutError.mjs +15 -0
  437. package/dist/esm/api/errors/InternalServerError.d.mts +8 -0
  438. package/dist/esm/api/errors/InternalServerError.mjs +15 -0
  439. package/dist/esm/api/errors/NotFoundError.d.mts +9 -0
  440. package/dist/esm/api/errors/NotFoundError.mjs +15 -0
  441. package/dist/esm/api/errors/UnauthorizedError.d.mts +8 -0
  442. package/dist/esm/api/errors/UnauthorizedError.mjs +15 -0
  443. package/dist/esm/api/errors/index.d.mts +6 -0
  444. package/dist/esm/api/errors/index.mjs +6 -0
  445. package/dist/esm/api/index.d.mts +3 -0
  446. package/dist/esm/api/index.mjs +3 -0
  447. package/dist/esm/api/resources/auth/client/Client.d.mts +49 -0
  448. package/dist/esm/api/resources/auth/client/Client.mjs +89 -0
  449. package/dist/esm/api/resources/auth/client/index.d.mts +2 -0
  450. package/dist/esm/api/resources/auth/client/index.mjs +1 -0
  451. package/dist/esm/api/resources/auth/client/requests/AuthGetTokenRequest.d.mts +14 -0
  452. package/dist/esm/api/resources/auth/client/requests/AuthGetTokenRequest.mjs +4 -0
  453. package/dist/esm/api/resources/auth/client/requests/index.d.mts +1 -0
  454. package/dist/esm/api/resources/auth/client/requests/index.mjs +1 -0
  455. package/dist/esm/api/resources/auth/index.d.mts +2 -0
  456. package/dist/esm/api/resources/auth/index.mjs +2 -0
  457. package/dist/esm/api/resources/auth/types/GetTokenResponse.d.mts +10 -0
  458. package/dist/esm/api/resources/auth/types/GetTokenResponse.mjs +4 -0
  459. package/dist/esm/api/resources/auth/types/index.d.mts +1 -0
  460. package/dist/esm/api/resources/auth/types/index.mjs +1 -0
  461. package/dist/esm/api/resources/documents/client/Client.d.mts +127 -0
  462. package/dist/esm/api/resources/documents/client/Client.mjs +400 -0
  463. package/dist/esm/api/resources/documents/client/index.d.mts +2 -0
  464. package/dist/esm/api/resources/documents/client/index.mjs +1 -0
  465. package/dist/esm/api/resources/documents/client/requests/DocumentsGetRequest.d.mts +13 -0
  466. package/dist/esm/api/resources/documents/client/requests/DocumentsGetRequest.mjs +4 -0
  467. package/dist/esm/api/resources/documents/client/requests/RequestDocumentCreate.d.mts +31 -0
  468. package/dist/esm/api/resources/documents/client/requests/RequestDocumentCreate.mjs +4 -0
  469. package/dist/esm/api/resources/documents/client/requests/RequestDocumentUpdate.d.mts +13 -0
  470. package/dist/esm/api/resources/documents/client/requests/RequestDocumentUpdate.mjs +4 -0
  471. package/dist/esm/api/resources/documents/client/requests/index.d.mts +3 -0
  472. package/dist/esm/api/resources/documents/client/requests/index.mjs +1 -0
  473. package/dist/esm/api/resources/documents/index.d.mts +2 -0
  474. package/dist/esm/api/resources/documents/index.mjs +2 -0
  475. package/dist/esm/api/resources/documents/types/RequestDocumentCreateContextItem.d.mts +10 -0
  476. package/dist/esm/api/resources/documents/types/RequestDocumentCreateContextItem.mjs +4 -0
  477. package/dist/esm/api/resources/documents/types/RequestDocumentUpdateSectionsItem.d.mts +9 -0
  478. package/dist/esm/api/resources/documents/types/RequestDocumentUpdateSectionsItem.mjs +4 -0
  479. package/dist/esm/api/resources/documents/types/index.d.mts +2 -0
  480. package/dist/esm/api/resources/documents/types/index.mjs +2 -0
  481. package/dist/esm/api/resources/facts/client/Client.d.mts +113 -0
  482. package/dist/esm/api/resources/facts/client/Client.mjs +353 -0
  483. package/dist/esm/api/resources/facts/client/index.d.mts +2 -0
  484. package/dist/esm/api/resources/facts/client/index.mjs +1 -0
  485. package/dist/esm/api/resources/facts/client/requests/RequestFactUpdate.d.mts +21 -0
  486. package/dist/esm/api/resources/facts/client/requests/RequestFactUpdate.mjs +4 -0
  487. package/dist/esm/api/resources/facts/client/requests/RequestFactsCreate.d.mts +17 -0
  488. package/dist/esm/api/resources/facts/client/requests/RequestFactsCreate.mjs +4 -0
  489. package/dist/esm/api/resources/facts/client/requests/RequestFactsUpdate.d.mts +16 -0
  490. package/dist/esm/api/resources/facts/client/requests/RequestFactsUpdate.mjs +4 -0
  491. package/dist/esm/api/resources/facts/client/requests/index.d.mts +3 -0
  492. package/dist/esm/api/resources/facts/client/requests/index.mjs +1 -0
  493. package/dist/esm/api/resources/facts/index.d.mts +2 -0
  494. package/dist/esm/api/resources/facts/index.mjs +2 -0
  495. package/dist/esm/api/resources/facts/types/RequestFactsCreateFactsItem.d.mts +12 -0
  496. package/dist/esm/api/resources/facts/types/RequestFactsCreateFactsItem.mjs +4 -0
  497. package/dist/esm/api/resources/facts/types/RequestFactsUpdateFactsItem.d.mts +14 -0
  498. package/dist/esm/api/resources/facts/types/RequestFactsUpdateFactsItem.mjs +4 -0
  499. package/dist/esm/api/resources/facts/types/index.d.mts +2 -0
  500. package/dist/esm/api/resources/facts/types/index.mjs +2 -0
  501. package/dist/esm/api/resources/index.d.mts +20 -0
  502. package/dist/esm/api/resources/index.mjs +20 -0
  503. package/dist/esm/api/resources/interactions/client/Client.d.mts +113 -0
  504. package/dist/esm/api/resources/interactions/client/Client.mjs +402 -0
  505. package/dist/esm/api/resources/interactions/client/index.d.mts +2 -0
  506. package/dist/esm/api/resources/interactions/client/index.mjs +1 -0
  507. package/dist/esm/api/resources/interactions/client/requests/InteractionsListRequest.d.mts +34 -0
  508. package/dist/esm/api/resources/interactions/client/requests/InteractionsListRequest.mjs +4 -0
  509. package/dist/esm/api/resources/interactions/client/requests/RequestInteractionCreate.d.mts +22 -0
  510. package/dist/esm/api/resources/interactions/client/requests/RequestInteractionCreate.mjs +4 -0
  511. package/dist/esm/api/resources/interactions/client/requests/RequestInteractionUpdate.d.mts +16 -0
  512. package/dist/esm/api/resources/interactions/client/requests/RequestInteractionUpdate.mjs +4 -0
  513. package/dist/esm/api/resources/interactions/client/requests/index.d.mts +3 -0
  514. package/dist/esm/api/resources/interactions/client/requests/index.mjs +1 -0
  515. package/dist/esm/api/resources/interactions/index.d.mts +2 -0
  516. package/dist/esm/api/resources/interactions/index.mjs +2 -0
  517. package/dist/esm/api/resources/interactions/types/InteractionsListRequestDirection.d.mts +11 -0
  518. package/dist/esm/api/resources/interactions/types/InteractionsListRequestDirection.mjs +7 -0
  519. package/dist/esm/api/resources/interactions/types/InteractionsListRequestSort.d.mts +12 -0
  520. package/dist/esm/api/resources/interactions/types/InteractionsListRequestSort.mjs +8 -0
  521. package/dist/esm/api/resources/interactions/types/index.d.mts +2 -0
  522. package/dist/esm/api/resources/interactions/types/index.mjs +2 -0
  523. package/dist/esm/api/resources/recordings/client/Client.d.mts +94 -0
  524. package/dist/esm/api/resources/recordings/client/Client.mjs +307 -0
  525. package/dist/esm/api/resources/recordings/client/index.d.mts +1 -0
  526. package/dist/esm/api/resources/recordings/client/index.mjs +1 -0
  527. package/dist/esm/api/resources/recordings/index.d.mts +1 -0
  528. package/dist/esm/api/resources/recordings/index.mjs +1 -0
  529. package/dist/esm/api/resources/stream/client/Client.d.mts +35 -0
  530. package/dist/esm/api/resources/stream/client/Client.mjs +45 -0
  531. package/dist/esm/api/resources/stream/client/Socket.d.mts +54 -0
  532. package/dist/esm/api/resources/stream/client/Socket.mjs +123 -0
  533. package/dist/esm/api/resources/stream/client/index.d.mts +1 -0
  534. package/dist/esm/api/resources/stream/client/index.mjs +1 -0
  535. package/dist/esm/api/resources/stream/index.d.mts +1 -0
  536. package/dist/esm/api/resources/stream/index.mjs +1 -0
  537. package/dist/esm/api/resources/templates/client/Client.d.mts +77 -0
  538. package/dist/esm/api/resources/templates/client/Client.mjs +241 -0
  539. package/dist/esm/api/resources/templates/client/index.d.mts +2 -0
  540. package/dist/esm/api/resources/templates/client/index.mjs +1 -0
  541. package/dist/esm/api/resources/templates/client/requests/TemplatesListRequest.d.mts +21 -0
  542. package/dist/esm/api/resources/templates/client/requests/TemplatesListRequest.mjs +4 -0
  543. package/dist/esm/api/resources/templates/client/requests/TemplatesSectionsListRequest.d.mts +17 -0
  544. package/dist/esm/api/resources/templates/client/requests/TemplatesSectionsListRequest.mjs +4 -0
  545. package/dist/esm/api/resources/templates/client/requests/index.d.mts +2 -0
  546. package/dist/esm/api/resources/templates/client/requests/index.mjs +1 -0
  547. package/dist/esm/api/resources/templates/index.d.mts +1 -0
  548. package/dist/esm/api/resources/templates/index.mjs +1 -0
  549. package/dist/esm/api/resources/transcribe/client/Client.d.mts +34 -0
  550. package/dist/esm/api/resources/transcribe/client/Client.mjs +45 -0
  551. package/dist/esm/api/resources/transcribe/client/Socket.d.mts +54 -0
  552. package/dist/esm/api/resources/transcribe/client/Socket.mjs +123 -0
  553. package/dist/esm/api/resources/transcribe/client/index.d.mts +1 -0
  554. package/dist/esm/api/resources/transcribe/client/index.mjs +1 -0
  555. package/dist/esm/api/resources/transcribe/index.d.mts +1 -0
  556. package/dist/esm/api/resources/transcribe/index.mjs +1 -0
  557. package/dist/esm/api/resources/transcripts/client/Client.d.mts +110 -0
  558. package/dist/esm/api/resources/transcripts/client/Client.mjs +362 -0
  559. package/dist/esm/api/resources/transcripts/client/index.d.mts +2 -0
  560. package/dist/esm/api/resources/transcripts/client/index.mjs +1 -0
  561. package/dist/esm/api/resources/transcripts/client/requests/TranscriptCreate.d.mts +28 -0
  562. package/dist/esm/api/resources/transcripts/client/requests/TranscriptCreate.mjs +4 -0
  563. package/dist/esm/api/resources/transcripts/client/requests/TranscriptsListRequest.d.mts +30 -0
  564. package/dist/esm/api/resources/transcripts/client/requests/TranscriptsListRequest.mjs +4 -0
  565. package/dist/esm/api/resources/transcripts/client/requests/index.d.mts +2 -0
  566. package/dist/esm/api/resources/transcripts/client/requests/index.mjs +1 -0
  567. package/dist/esm/api/resources/transcripts/index.d.mts +2 -0
  568. package/dist/esm/api/resources/transcripts/index.mjs +2 -0
  569. package/dist/esm/api/resources/transcripts/types/RequestTranscriptCreateModelName.d.mts +12 -0
  570. package/dist/esm/api/resources/transcripts/types/RequestTranscriptCreateModelName.mjs +8 -0
  571. package/dist/esm/api/resources/transcripts/types/RequestTranscriptCreateParticipantsItem.d.mts +10 -0
  572. package/dist/esm/api/resources/transcripts/types/RequestTranscriptCreateParticipantsItem.mjs +4 -0
  573. package/dist/esm/api/resources/transcripts/types/RequestTranscriptCreatePrimaryLanguage.d.mts +21 -0
  574. package/dist/esm/api/resources/transcripts/types/RequestTranscriptCreatePrimaryLanguage.mjs +17 -0
  575. package/dist/esm/api/resources/transcripts/types/TranscriptsListRequestDirection.d.mts +11 -0
  576. package/dist/esm/api/resources/transcripts/types/TranscriptsListRequestDirection.mjs +7 -0
  577. package/dist/esm/api/resources/transcripts/types/TranscriptsListRequestSort.d.mts +11 -0
  578. package/dist/esm/api/resources/transcripts/types/TranscriptsListRequestSort.mjs +7 -0
  579. package/dist/esm/api/resources/transcripts/types/index.d.mts +5 -0
  580. package/dist/esm/api/resources/transcripts/types/index.mjs +5 -0
  581. package/dist/esm/api/types/DocumentContextData.d.mts +14 -0
  582. package/dist/esm/api/types/DocumentContextData.mjs +4 -0
  583. package/dist/esm/api/types/DocumentTemplate.d.mts +14 -0
  584. package/dist/esm/api/types/DocumentTemplate.mjs +4 -0
  585. package/dist/esm/api/types/Encounter.d.mts +16 -0
  586. package/dist/esm/api/types/Encounter.mjs +4 -0
  587. package/dist/esm/api/types/EncounterPeriod.d.mts +9 -0
  588. package/dist/esm/api/types/EncounterPeriod.mjs +4 -0
  589. package/dist/esm/api/types/EncounterStatus.d.mts +12 -0
  590. package/dist/esm/api/types/EncounterStatus.mjs +11 -0
  591. package/dist/esm/api/types/EncounterType.d.mts +11 -0
  592. package/dist/esm/api/types/EncounterType.mjs +10 -0
  593. package/dist/esm/api/types/EncounterUpdate.d.mts +16 -0
  594. package/dist/esm/api/types/EncounterUpdate.mjs +4 -0
  595. package/dist/esm/api/types/ErrorResponse.d.mts +11 -0
  596. package/dist/esm/api/types/ErrorResponse.mjs +4 -0
  597. package/dist/esm/api/types/FactContext.d.mts +12 -0
  598. package/dist/esm/api/types/FactContext.mjs +4 -0
  599. package/dist/esm/api/types/GenderEnum.d.mts +10 -0
  600. package/dist/esm/api/types/GenderEnum.mjs +9 -0
  601. package/dist/esm/api/types/ParticipantRoleEnum.d.mts +9 -0
  602. package/dist/esm/api/types/ParticipantRoleEnum.mjs +8 -0
  603. package/dist/esm/api/types/Patient.d.mts +16 -0
  604. package/dist/esm/api/types/Patient.mjs +4 -0
  605. package/dist/esm/api/types/PatientUpdate.d.mts +16 -0
  606. package/dist/esm/api/types/PatientUpdate.mjs +4 -0
  607. package/dist/esm/api/types/ResponseAllTemplateSections.d.mts +8 -0
  608. package/dist/esm/api/types/ResponseAllTemplateSections.mjs +4 -0
  609. package/dist/esm/api/types/ResponseAllTemplates.d.mts +8 -0
  610. package/dist/esm/api/types/ResponseAllTemplates.mjs +4 -0
  611. package/dist/esm/api/types/ResponseAllTemplatesDataItem.d.mts +20 -0
  612. package/dist/esm/api/types/ResponseAllTemplatesDataItem.mjs +4 -0
  613. package/dist/esm/api/types/ResponseAllTemplatesDataItemTemplateSectionsItem.d.mts +10 -0
  614. package/dist/esm/api/types/ResponseAllTemplatesDataItemTemplateSectionsItem.mjs +4 -0
  615. package/dist/esm/api/types/ResponseAllTemplatesDataItemTranslationsItem.d.mts +11 -0
  616. package/dist/esm/api/types/ResponseAllTemplatesDataItemTranslationsItem.mjs +4 -0
  617. package/dist/esm/api/types/ResponseDocumentList.d.mts +7 -0
  618. package/dist/esm/api/types/ResponseDocumentList.mjs +4 -0
  619. package/dist/esm/api/types/ResponseDocumentRead.d.mts +22 -0
  620. package/dist/esm/api/types/ResponseDocumentRead.mjs +4 -0
  621. package/dist/esm/api/types/ResponseDocumentReadSectionsItem.d.mts +17 -0
  622. package/dist/esm/api/types/ResponseDocumentReadSectionsItem.mjs +4 -0
  623. package/dist/esm/api/types/ResponseFactGroupsFiltered.d.mts +7 -0
  624. package/dist/esm/api/types/ResponseFactGroupsFiltered.mjs +4 -0
  625. package/dist/esm/api/types/ResponseFactGroupsFilteredDataItem.d.mts +9 -0
  626. package/dist/esm/api/types/ResponseFactGroupsFilteredDataItem.mjs +4 -0
  627. package/dist/esm/api/types/ResponseFactGroupsFilteredDataItemTranslationsItem.d.mts +8 -0
  628. package/dist/esm/api/types/ResponseFactGroupsFilteredDataItemTranslationsItem.mjs +4 -0
  629. package/dist/esm/api/types/ResponseFactUpdate.d.mts +22 -0
  630. package/dist/esm/api/types/ResponseFactUpdate.mjs +4 -0
  631. package/dist/esm/api/types/ResponseFactsCreate.d.mts +8 -0
  632. package/dist/esm/api/types/ResponseFactsCreate.mjs +4 -0
  633. package/dist/esm/api/types/ResponseFactsCreateFactsItem.d.mts +20 -0
  634. package/dist/esm/api/types/ResponseFactsCreateFactsItem.mjs +4 -0
  635. package/dist/esm/api/types/ResponseFactsList.d.mts +8 -0
  636. package/dist/esm/api/types/ResponseFactsList.mjs +4 -0
  637. package/dist/esm/api/types/ResponseFactsListFactsItem.d.mts +23 -0
  638. package/dist/esm/api/types/ResponseFactsListFactsItem.mjs +4 -0
  639. package/dist/esm/api/types/ResponseFactsListFactsItemEvidenceItem.d.mts +11 -0
  640. package/dist/esm/api/types/ResponseFactsListFactsItemEvidenceItem.mjs +4 -0
  641. package/dist/esm/api/types/ResponseFactsUpdate.d.mts +8 -0
  642. package/dist/esm/api/types/ResponseFactsUpdate.mjs +4 -0
  643. package/dist/esm/api/types/ResponseFactsUpdateFactsItem.d.mts +22 -0
  644. package/dist/esm/api/types/ResponseFactsUpdateFactsItem.mjs +4 -0
  645. package/dist/esm/api/types/ResponseInteraction.d.mts +24 -0
  646. package/dist/esm/api/types/ResponseInteraction.mjs +4 -0
  647. package/dist/esm/api/types/ResponseInteractionCreate.d.mts +10 -0
  648. package/dist/esm/api/types/ResponseInteractionCreate.mjs +4 -0
  649. package/dist/esm/api/types/ResponseInteractions.d.mts +7 -0
  650. package/dist/esm/api/types/ResponseInteractions.mjs +4 -0
  651. package/dist/esm/api/types/ResponseMetadataCreate.d.mts +7 -0
  652. package/dist/esm/api/types/ResponseMetadataCreate.mjs +4 -0
  653. package/dist/esm/api/types/ResponseMetadataCreateParticipantsRolesItem.d.mts +10 -0
  654. package/dist/esm/api/types/ResponseMetadataCreateParticipantsRolesItem.mjs +4 -0
  655. package/dist/esm/api/types/ResponseRecordingCreate.d.mts +8 -0
  656. package/dist/esm/api/types/ResponseRecordingCreate.mjs +4 -0
  657. package/dist/esm/api/types/ResponseRecordingList.d.mts +8 -0
  658. package/dist/esm/api/types/ResponseRecordingList.mjs +4 -0
  659. package/dist/esm/api/types/ResponseTranscriptCreate.d.mts +13 -0
  660. package/dist/esm/api/types/ResponseTranscriptCreate.mjs +4 -0
  661. package/dist/esm/api/types/ResponseTranscriptCreateTranscriptsItem.d.mts +17 -0
  662. package/dist/esm/api/types/ResponseTranscriptCreateTranscriptsItem.mjs +4 -0
  663. package/dist/esm/api/types/ResponseTranscriptListAll.d.mts +7 -0
  664. package/dist/esm/api/types/ResponseTranscriptListAll.mjs +4 -0
  665. package/dist/esm/api/types/ResponseTranscriptListAllTranscriptsItem.d.mts +9 -0
  666. package/dist/esm/api/types/ResponseTranscriptListAllTranscriptsItem.mjs +4 -0
  667. package/dist/esm/api/types/Section.d.mts +22 -0
  668. package/dist/esm/api/types/Section.mjs +4 -0
  669. package/dist/esm/api/types/SectionTranslationsItem.d.mts +11 -0
  670. package/dist/esm/api/types/SectionTranslationsItem.mjs +4 -0
  671. package/dist/esm/api/types/StreamConfigData.d.mts +8 -0
  672. package/dist/esm/api/types/StreamConfigData.mjs +4 -0
  673. package/dist/esm/api/types/StreamConfigMode.d.mts +10 -0
  674. package/dist/esm/api/types/StreamConfigMode.mjs +4 -0
  675. package/dist/esm/api/types/StreamConfigModeOutputLocale.d.mts +21 -0
  676. package/dist/esm/api/types/StreamConfigModeOutputLocale.mjs +17 -0
  677. package/dist/esm/api/types/StreamConfigModeType.d.mts +11 -0
  678. package/dist/esm/api/types/StreamConfigModeType.mjs +7 -0
  679. package/dist/esm/api/types/StreamConfigStatusMessage.d.mts +12 -0
  680. package/dist/esm/api/types/StreamConfigStatusMessage.mjs +4 -0
  681. package/dist/esm/api/types/StreamConfigStatusMessageType.d.mts +15 -0
  682. package/dist/esm/api/types/StreamConfigStatusMessageType.mjs +11 -0
  683. package/dist/esm/api/types/StreamConfigTranscription.d.mts +14 -0
  684. package/dist/esm/api/types/StreamConfigTranscription.mjs +4 -0
  685. package/dist/esm/api/types/StreamConfigTranscriptionPrimaryLanguage.d.mts +21 -0
  686. package/dist/esm/api/types/StreamConfigTranscriptionPrimaryLanguage.mjs +17 -0
  687. package/dist/esm/api/types/StreamConfigurationMessage.d.mts +8 -0
  688. package/dist/esm/api/types/StreamConfigurationMessage.mjs +4 -0
  689. package/dist/esm/api/types/StreamEndMessage.d.mts +6 -0
  690. package/dist/esm/api/types/StreamEndMessage.mjs +4 -0
  691. package/dist/esm/api/types/StreamEndedMessage.d.mts +6 -0
  692. package/dist/esm/api/types/StreamEndedMessage.mjs +4 -0
  693. package/dist/esm/api/types/StreamErrorDetail.d.mts +15 -0
  694. package/dist/esm/api/types/StreamErrorDetail.mjs +4 -0
  695. package/dist/esm/api/types/StreamErrorMessage.d.mts +8 -0
  696. package/dist/esm/api/types/StreamErrorMessage.mjs +4 -0
  697. package/dist/esm/api/types/StreamFact.d.mts +21 -0
  698. package/dist/esm/api/types/StreamFact.mjs +4 -0
  699. package/dist/esm/api/types/StreamFactsMessage.d.mts +8 -0
  700. package/dist/esm/api/types/StreamFactsMessage.mjs +4 -0
  701. package/dist/esm/api/types/StreamParticipant.d.mts +10 -0
  702. package/dist/esm/api/types/StreamParticipant.mjs +4 -0
  703. package/dist/esm/api/types/StreamParticipantRole.d.mts +12 -0
  704. package/dist/esm/api/types/StreamParticipantRole.mjs +8 -0
  705. package/dist/esm/api/types/StreamTranscript.d.mts +16 -0
  706. package/dist/esm/api/types/StreamTranscript.mjs +4 -0
  707. package/dist/esm/api/types/StreamTranscriptMessage.d.mts +8 -0
  708. package/dist/esm/api/types/StreamTranscriptMessage.mjs +4 -0
  709. package/dist/esm/api/types/StreamTranscriptTime.d.mts +9 -0
  710. package/dist/esm/api/types/StreamTranscriptTime.mjs +4 -0
  711. package/dist/esm/api/types/StreamUsageMessage.d.mts +8 -0
  712. package/dist/esm/api/types/StreamUsageMessage.mjs +4 -0
  713. package/dist/esm/api/types/TemplateFiltered.d.mts +20 -0
  714. package/dist/esm/api/types/TemplateFiltered.mjs +4 -0
  715. package/dist/esm/api/types/TemplateFilteredTemplateSectionsItem.d.mts +10 -0
  716. package/dist/esm/api/types/TemplateFilteredTemplateSectionsItem.mjs +4 -0
  717. package/dist/esm/api/types/TemplateFilteredTranslationsItem.d.mts +11 -0
  718. package/dist/esm/api/types/TemplateFilteredTranslationsItem.mjs +4 -0
  719. package/dist/esm/api/types/TranscribeCommand.d.mts +12 -0
  720. package/dist/esm/api/types/TranscribeCommand.mjs +4 -0
  721. package/dist/esm/api/types/TranscribeCommandData.d.mts +15 -0
  722. package/dist/esm/api/types/TranscribeCommandData.mjs +4 -0
  723. package/dist/esm/api/types/TranscribeCommandMessage.d.mts +8 -0
  724. package/dist/esm/api/types/TranscribeCommandMessage.mjs +4 -0
  725. package/dist/esm/api/types/TranscribeCommandVariable.d.mts +11 -0
  726. package/dist/esm/api/types/TranscribeCommandVariable.mjs +4 -0
  727. package/dist/esm/api/types/TranscribeConfigStatusMessage.d.mts +12 -0
  728. package/dist/esm/api/types/TranscribeConfigStatusMessage.mjs +4 -0
  729. package/dist/esm/api/types/TranscribeConfigStatusMessageType.d.mts +12 -0
  730. package/dist/esm/api/types/TranscribeConfigStatusMessageType.mjs +8 -0
  731. package/dist/esm/api/types/TranscribeConfigurationMessage.d.mts +8 -0
  732. package/dist/esm/api/types/TranscribeConfigurationMessage.mjs +4 -0
  733. package/dist/esm/api/types/TranscribeConfigurationMessageConfiguration.d.mts +16 -0
  734. package/dist/esm/api/types/TranscribeConfigurationMessageConfiguration.mjs +4 -0
  735. package/dist/esm/api/types/TranscribeConfigurationMessageConfigurationPrimaryLanguage.d.mts +21 -0
  736. package/dist/esm/api/types/TranscribeConfigurationMessageConfigurationPrimaryLanguage.mjs +17 -0
  737. package/dist/esm/api/types/TranscribeEndMessage.d.mts +6 -0
  738. package/dist/esm/api/types/TranscribeEndMessage.mjs +4 -0
  739. package/dist/esm/api/types/TranscribeEndedMessage.d.mts +6 -0
  740. package/dist/esm/api/types/TranscribeEndedMessage.mjs +4 -0
  741. package/dist/esm/api/types/TranscribeErrorMessage.d.mts +8 -0
  742. package/dist/esm/api/types/TranscribeErrorMessage.mjs +4 -0
  743. package/dist/esm/api/types/TranscribeErrorMessageError.d.mts +15 -0
  744. package/dist/esm/api/types/TranscribeErrorMessageError.mjs +4 -0
  745. package/dist/esm/api/types/TranscribeTranscriptData.d.mts +15 -0
  746. package/dist/esm/api/types/TranscribeTranscriptData.mjs +4 -0
  747. package/dist/esm/api/types/TranscribeTranscriptMessage.d.mts +8 -0
  748. package/dist/esm/api/types/TranscribeTranscriptMessage.mjs +4 -0
  749. package/dist/esm/api/types/TranscribeUsageMessage.d.mts +8 -0
  750. package/dist/esm/api/types/TranscribeUsageMessage.mjs +4 -0
  751. package/dist/esm/api/types/Transcript.d.mts +17 -0
  752. package/dist/esm/api/types/Transcript.mjs +4 -0
  753. package/dist/esm/api/types/UsageInfo.d.mts +6 -0
  754. package/dist/esm/api/types/UsageInfo.mjs +4 -0
  755. package/dist/esm/api/types/Uuid.d.mts +4 -0
  756. package/dist/esm/api/types/Uuid.mjs +4 -0
  757. package/dist/esm/api/types/V2DocumentContextTypeEnum.d.mts +9 -0
  758. package/dist/esm/api/types/V2DocumentContextTypeEnum.mjs +8 -0
  759. package/dist/esm/api/types/V2SourceEnum.d.mts +9 -0
  760. package/dist/esm/api/types/V2SourceEnum.mjs +8 -0
  761. package/dist/esm/api/types/WritingStyle.d.mts +7 -0
  762. package/dist/esm/api/types/WritingStyle.mjs +4 -0
  763. package/dist/esm/api/types/index.d.mts +91 -0
  764. package/dist/esm/api/types/index.mjs +91 -0
  765. package/dist/esm/core/auth/BasicAuth.d.mts +8 -0
  766. package/dist/esm/core/auth/BasicAuth.mjs +23 -0
  767. package/dist/esm/core/auth/BearerToken.d.mts +5 -0
  768. package/dist/esm/core/auth/BearerToken.mjs +12 -0
  769. package/dist/esm/core/auth/OAuthTokenProvider.d.mts +25 -0
  770. package/dist/esm/core/auth/OAuthTokenProvider.mjs +49 -0
  771. package/dist/esm/core/auth/index.d.mts +3 -0
  772. package/dist/esm/core/auth/index.mjs +3 -0
  773. package/dist/esm/core/fetcher/APIResponse.d.mts +20 -0
  774. package/dist/esm/core/fetcher/APIResponse.mjs +1 -0
  775. package/dist/esm/core/fetcher/BinaryResponse.d.mts +17 -0
  776. package/dist/esm/core/fetcher/BinaryResponse.mjs +11 -0
  777. package/dist/esm/core/fetcher/Fetcher.d.mts +40 -0
  778. package/dist/esm/core/fetcher/Fetcher.mjs +116 -0
  779. package/dist/esm/core/fetcher/Headers.d.mts +2 -0
  780. package/dist/esm/core/fetcher/Headers.mjs +82 -0
  781. package/dist/esm/core/fetcher/HttpResponsePromise.d.mts +58 -0
  782. package/dist/esm/core/fetcher/HttpResponsePromise.mjs +99 -0
  783. package/dist/esm/core/fetcher/RawResponse.d.mts +29 -0
  784. package/dist/esm/core/fetcher/RawResponse.mjs +40 -0
  785. package/dist/esm/core/fetcher/ResponseWithBody.d.mts +4 -0
  786. package/dist/esm/core/fetcher/ResponseWithBody.mjs +3 -0
  787. package/dist/esm/core/fetcher/Supplier.d.mts +4 -0
  788. package/dist/esm/core/fetcher/Supplier.mjs +19 -0
  789. package/dist/esm/core/fetcher/createRequestUrl.d.mts +1 -0
  790. package/dist/esm/core/fetcher/createRequestUrl.mjs +6 -0
  791. package/dist/esm/core/fetcher/getFetchFn.d.mts +4 -0
  792. package/dist/esm/core/fetcher/getFetchFn.mjs +32 -0
  793. package/dist/esm/core/fetcher/getHeader.d.mts +1 -0
  794. package/dist/esm/core/fetcher/getHeader.mjs +8 -0
  795. package/dist/esm/core/fetcher/getRequestBody.d.mts +7 -0
  796. package/dist/esm/core/fetcher/getRequestBody.mjs +20 -0
  797. package/dist/esm/core/fetcher/getResponseBody.d.mts +1 -0
  798. package/dist/esm/core/fetcher/getResponseBody.mjs +51 -0
  799. package/dist/esm/core/fetcher/index.d.mts +9 -0
  800. package/dist/esm/core/fetcher/index.mjs +5 -0
  801. package/dist/esm/core/fetcher/makeRequest.d.mts +1 -0
  802. package/dist/esm/core/fetcher/makeRequest.mjs +38 -0
  803. package/dist/esm/core/fetcher/requestWithRetries.d.mts +1 -0
  804. package/dist/esm/core/fetcher/requestWithRetries.mjs +37 -0
  805. package/dist/esm/core/fetcher/signals.d.mts +11 -0
  806. package/dist/esm/core/fetcher/signals.mjs +32 -0
  807. package/dist/esm/core/headers.d.mts +3 -0
  808. package/dist/esm/core/headers.mjs +25 -0
  809. package/dist/esm/core/index.d.mts +6 -0
  810. package/dist/esm/core/index.mjs +6 -0
  811. package/dist/esm/core/json.d.mts +15 -0
  812. package/dist/esm/core/json.mjs +19 -0
  813. package/dist/esm/core/pagination/Page.d.mts +32 -0
  814. package/dist/esm/core/pagination/Page.mjs +96 -0
  815. package/dist/esm/core/pagination/Pageable.d.mts +14 -0
  816. package/dist/esm/core/pagination/Pageable.mjs +6 -0
  817. package/dist/esm/core/pagination/index.d.mts +2 -0
  818. package/dist/esm/core/pagination/index.mjs +2 -0
  819. package/dist/esm/core/runtime/index.d.mts +1 -0
  820. package/dist/esm/core/runtime/index.mjs +1 -0
  821. package/dist/esm/core/runtime/runtime.d.mts +9 -0
  822. package/dist/esm/core/runtime/runtime.mjs +99 -0
  823. package/dist/esm/core/utils/index.d.mts +1 -0
  824. package/dist/esm/core/utils/index.mjs +1 -0
  825. package/dist/esm/core/utils/setObjectProperty.d.mts +11 -0
  826. package/dist/esm/core/utils/setObjectProperty.mjs +39 -0
  827. package/dist/esm/core/websocket/events.d.mts +36 -0
  828. package/dist/esm/core/websocket/events.mjs +21 -0
  829. package/dist/esm/core/websocket/index.d.mts +1 -0
  830. package/dist/esm/core/websocket/index.mjs +1 -0
  831. package/dist/esm/core/websocket/ws.d.mts +137 -0
  832. package/dist/esm/core/websocket/ws.mjs +415 -0
  833. package/dist/esm/custom/CortiAuth.d.mts +57 -0
  834. package/dist/esm/custom/CortiAuth.mjs +145 -0
  835. package/dist/esm/custom/CortiClient.d.mts +113 -0
  836. package/dist/esm/custom/CortiClient.mjs +111 -0
  837. package/dist/esm/custom/CustomStream.d.mts +15 -0
  838. package/dist/esm/custom/CustomStream.mjs +45 -0
  839. package/dist/esm/custom/CustomStreamSocket.d.mts +11 -0
  840. package/dist/esm/custom/CustomStreamSocket.mjs +25 -0
  841. package/dist/esm/custom/CustomTranscribe.d.mts +15 -0
  842. package/dist/esm/custom/CustomTranscribe.mjs +45 -0
  843. package/dist/esm/custom/CustomTranscribeSocket.d.mts +11 -0
  844. package/dist/esm/custom/CustomTranscribeSocket.mjs +25 -0
  845. package/dist/esm/custom/RefreshBearerProvider.d.mts +23 -0
  846. package/dist/esm/custom/RefreshBearerProvider.mjs +48 -0
  847. package/dist/esm/environments.d.mts +26 -0
  848. package/dist/esm/environments.mjs +20 -0
  849. package/dist/esm/errors/CortiError.d.mts +15 -0
  850. package/dist/esm/errors/CortiError.mjs +26 -0
  851. package/dist/esm/errors/CortiTimeoutError.d.mts +6 -0
  852. package/dist/esm/errors/CortiTimeoutError.mjs +9 -0
  853. package/dist/esm/errors/index.d.mts +2 -0
  854. package/dist/esm/errors/index.mjs +2 -0
  855. package/dist/esm/index.d.mts +14 -0
  856. package/dist/esm/index.mjs +15 -0
  857. package/dist/esm/version.d.mts +1 -0
  858. package/dist/esm/version.mjs +1 -0
  859. package/package.json +71 -0
  860. package/reference.md +1726 -0
@@ -0,0 +1,4 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export {};
@@ -0,0 +1,3 @@
1
+ export { type InteractionsListRequest } from "./InteractionsListRequest.mjs";
2
+ export { type RequestInteractionCreate } from "./RequestInteractionCreate.mjs";
3
+ export { type RequestInteractionUpdate } from "./RequestInteractionUpdate.mjs";
@@ -0,0 +1,2 @@
1
+ export * from "./types/index.mjs";
2
+ export * from "./client/index.mjs";
@@ -0,0 +1,2 @@
1
+ export * from "./types/index.mjs";
2
+ export * from "./client/index.mjs";
@@ -0,0 +1,11 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * Sorting order. Allowed values: [asc, desc]. Default is desc.
6
+ */
7
+ export type InteractionsListRequestDirection = "asc" | "desc";
8
+ export declare const InteractionsListRequestDirection: {
9
+ readonly Asc: "asc";
10
+ readonly Desc: "desc";
11
+ };
@@ -0,0 +1,7 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export const InteractionsListRequestDirection = {
5
+ Asc: "asc",
6
+ Desc: "desc",
7
+ };
@@ -0,0 +1,12 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ /**
5
+ * Field used to sort interactions. Allowed values: [startedAt, endedAt, updatedAt, lastUpdated]. Default is startedAt.
6
+ */
7
+ export type InteractionsListRequestSort = "createdAt" | "endedAt" | "updatedAt";
8
+ export declare const InteractionsListRequestSort: {
9
+ readonly CreatedAt: "createdAt";
10
+ readonly EndedAt: "endedAt";
11
+ readonly UpdatedAt: "updatedAt";
12
+ };
@@ -0,0 +1,8 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ export const InteractionsListRequestSort = {
5
+ CreatedAt: "createdAt",
6
+ EndedAt: "endedAt",
7
+ UpdatedAt: "updatedAt",
8
+ };
@@ -0,0 +1,2 @@
1
+ export * from "./InteractionsListRequestSort.mjs";
2
+ export * from "./InteractionsListRequestDirection.mjs";
@@ -0,0 +1,2 @@
1
+ export * from "./InteractionsListRequestSort.mjs";
2
+ export * from "./InteractionsListRequestDirection.mjs";
@@ -0,0 +1,94 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as environments from "../../../../environments.mjs";
5
+ import * as core from "../../../../core/index.mjs";
6
+ import * as Corti from "../../../index.mjs";
7
+ import * as fs from "fs";
8
+ import { Blob } from "buffer";
9
+ export declare namespace Recordings {
10
+ interface Options {
11
+ environment: core.Supplier<environments.CortiEnvironment | environments.CortiEnvironmentUrls>;
12
+ /** Specify a custom URL to connect the client to. */
13
+ baseUrl?: core.Supplier<string>;
14
+ token?: core.Supplier<core.BearerToken | undefined>;
15
+ /** Override the Tenant-Name header */
16
+ tenantName: core.Supplier<string>;
17
+ /** Additional headers to include in requests. */
18
+ headers?: Record<string, string | core.Supplier<string | undefined> | undefined>;
19
+ }
20
+ interface RequestOptions {
21
+ /** The maximum time to wait for a response in seconds. */
22
+ timeoutInSeconds?: number;
23
+ /** The number of times to retry the request. Defaults to 2. */
24
+ maxRetries?: number;
25
+ /** A hook to abort the request. */
26
+ abortSignal?: AbortSignal;
27
+ /** Override the Tenant-Name header */
28
+ tenantName?: string;
29
+ /** Additional headers to include in the request. */
30
+ headers?: Record<string, string | core.Supplier<string | undefined> | undefined>;
31
+ }
32
+ }
33
+ export declare class Recordings {
34
+ protected readonly _options: Recordings.Options;
35
+ constructor(_options: Recordings.Options);
36
+ /**
37
+ * Retrieve a list of recordings for a given interaction.
38
+ *
39
+ * @param {Corti.Uuid} id - The unique identifier of the interaction for which recordings should be retrieved. Must be a valid UUID.
40
+ * @param {Recordings.RequestOptions} requestOptions - Request-specific configuration.
41
+ *
42
+ * @throws {@link Corti.BadRequestError}
43
+ * @throws {@link Corti.ForbiddenError}
44
+ * @throws {@link Corti.InternalServerError}
45
+ * @throws {@link Corti.GatewayTimeoutError}
46
+ *
47
+ * @example
48
+ * await client.recordings.list("f47ac10b-58cc-4372-a567-0e02b2c3d479")
49
+ */
50
+ list(id: Corti.Uuid, requestOptions?: Recordings.RequestOptions): core.HttpResponsePromise<Corti.ResponseRecordingList>;
51
+ private __list;
52
+ /**
53
+ * Upload a recording for a given interaction. There is a maximum limit of 60 minutes in length and 150MB in size for recordings.
54
+ *
55
+ * @param {File | fs.ReadStream | Blob} bytes
56
+ * @param {Corti.Uuid} id
57
+ * @param {Recordings.RequestOptions} requestOptions - Request-specific configuration.
58
+ *
59
+ * @throws {@link Corti.BadRequestError}
60
+ * @throws {@link Corti.ForbiddenError}
61
+ * @throws {@link Corti.InternalServerError}
62
+ * @throws {@link Corti.GatewayTimeoutError}
63
+ */
64
+ upload(bytes: File | fs.ReadStream | Blob, id: Corti.Uuid, requestOptions?: Recordings.RequestOptions): core.HttpResponsePromise<Corti.ResponseRecordingCreate>;
65
+ private __upload;
66
+ /**
67
+ * Retrieve a specific recording for a given interaction.
68
+ * @throws {@link Corti.BadRequestError}
69
+ * @throws {@link Corti.ForbiddenError}
70
+ * @throws {@link Corti.NotFoundError}
71
+ * @throws {@link Corti.InternalServerError}
72
+ * @throws {@link Corti.GatewayTimeoutError}
73
+ */
74
+ get(id: Corti.Uuid, recordingId: Corti.Uuid, requestOptions?: Recordings.RequestOptions): core.HttpResponsePromise<ReadableStream<Uint8Array>>;
75
+ private __get;
76
+ /**
77
+ * Delete a specific recording for a given interaction.
78
+ *
79
+ * @param {Corti.Uuid} id - The unique identifier of the interaction for which the recording should be deleted from. Must be a valid UUID.
80
+ * @param {Corti.Uuid} recordingId - The unique identifier of the recording to be deleted. Must be a valid UUID.
81
+ * @param {Recordings.RequestOptions} requestOptions - Request-specific configuration.
82
+ *
83
+ * @throws {@link Corti.ForbiddenError}
84
+ * @throws {@link Corti.NotFoundError}
85
+ * @throws {@link Corti.InternalServerError}
86
+ * @throws {@link Corti.GatewayTimeoutError}
87
+ *
88
+ * @example
89
+ * await client.recordings.delete("f47ac10b-58cc-4372-a567-0e02b2c3d479", "f47ac10b-58cc-4372-a567-0e02b2c3d479")
90
+ */
91
+ delete(id: Corti.Uuid, recordingId: Corti.Uuid, requestOptions?: Recordings.RequestOptions): core.HttpResponsePromise<void>;
92
+ private __delete;
93
+ protected _getAuthorizationHeader(): Promise<string | undefined>;
94
+ }
@@ -0,0 +1,307 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
5
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
6
+ return new (P || (P = Promise))(function (resolve, reject) {
7
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
8
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
9
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
10
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
11
+ });
12
+ };
13
+ import * as core from "../../../../core/index.mjs";
14
+ import * as Corti from "../../../index.mjs";
15
+ import { mergeHeaders, mergeOnlyDefinedHeaders } from "../../../../core/headers.mjs";
16
+ import urlJoin from "url-join";
17
+ import * as errors from "../../../../errors/index.mjs";
18
+ export class Recordings {
19
+ constructor(_options) {
20
+ this._options = _options;
21
+ }
22
+ /**
23
+ * Retrieve a list of recordings for a given interaction.
24
+ *
25
+ * @param {Corti.Uuid} id - The unique identifier of the interaction for which recordings should be retrieved. Must be a valid UUID.
26
+ * @param {Recordings.RequestOptions} requestOptions - Request-specific configuration.
27
+ *
28
+ * @throws {@link Corti.BadRequestError}
29
+ * @throws {@link Corti.ForbiddenError}
30
+ * @throws {@link Corti.InternalServerError}
31
+ * @throws {@link Corti.GatewayTimeoutError}
32
+ *
33
+ * @example
34
+ * await client.recordings.list("f47ac10b-58cc-4372-a567-0e02b2c3d479")
35
+ */
36
+ list(id, requestOptions) {
37
+ return core.HttpResponsePromise.fromPromise(this.__list(id, requestOptions));
38
+ }
39
+ __list(id, requestOptions) {
40
+ return __awaiter(this, void 0, void 0, function* () {
41
+ var _a, _b;
42
+ const _response = yield core.fetcher({
43
+ url: urlJoin((_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : (yield core.Supplier.get(this._options.environment)).base, `interactions/${encodeURIComponent(id)}/recordings/`),
44
+ method: "GET",
45
+ headers: mergeHeaders((_b = this._options) === null || _b === void 0 ? void 0 : _b.headers, mergeOnlyDefinedHeaders({
46
+ Authorization: yield this._getAuthorizationHeader(),
47
+ "Tenant-Name": requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.tenantName,
48
+ }), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
49
+ timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
50
+ maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
51
+ abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
52
+ });
53
+ if (_response.ok) {
54
+ return { data: _response.body, rawResponse: _response.rawResponse };
55
+ }
56
+ if (_response.error.reason === "status-code") {
57
+ switch (_response.error.statusCode) {
58
+ case 400:
59
+ throw new Corti.BadRequestError(_response.error.body, _response.rawResponse);
60
+ case 403:
61
+ throw new Corti.ForbiddenError(_response.error.body, _response.rawResponse);
62
+ case 500:
63
+ throw new Corti.InternalServerError(_response.error.body, _response.rawResponse);
64
+ case 504:
65
+ throw new Corti.GatewayTimeoutError(_response.error.body, _response.rawResponse);
66
+ default:
67
+ throw new errors.CortiError({
68
+ statusCode: _response.error.statusCode,
69
+ body: _response.error.body,
70
+ rawResponse: _response.rawResponse,
71
+ });
72
+ }
73
+ }
74
+ switch (_response.error.reason) {
75
+ case "non-json":
76
+ throw new errors.CortiError({
77
+ statusCode: _response.error.statusCode,
78
+ body: _response.error.rawBody,
79
+ rawResponse: _response.rawResponse,
80
+ });
81
+ case "timeout":
82
+ throw new errors.CortiTimeoutError("Timeout exceeded when calling GET /interactions/{id}/recordings/.");
83
+ case "unknown":
84
+ throw new errors.CortiError({
85
+ message: _response.error.errorMessage,
86
+ rawResponse: _response.rawResponse,
87
+ });
88
+ }
89
+ });
90
+ }
91
+ /**
92
+ * Upload a recording for a given interaction. There is a maximum limit of 60 minutes in length and 150MB in size for recordings.
93
+ *
94
+ * @param {File | fs.ReadStream | Blob} bytes
95
+ * @param {Corti.Uuid} id
96
+ * @param {Recordings.RequestOptions} requestOptions - Request-specific configuration.
97
+ *
98
+ * @throws {@link Corti.BadRequestError}
99
+ * @throws {@link Corti.ForbiddenError}
100
+ * @throws {@link Corti.InternalServerError}
101
+ * @throws {@link Corti.GatewayTimeoutError}
102
+ */
103
+ upload(bytes, id, requestOptions) {
104
+ return core.HttpResponsePromise.fromPromise(this.__upload(bytes, id, requestOptions));
105
+ }
106
+ __upload(bytes, id, requestOptions) {
107
+ return __awaiter(this, void 0, void 0, function* () {
108
+ var _a, _b;
109
+ const _response = yield core.fetcher({
110
+ url: urlJoin((_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : (yield core.Supplier.get(this._options.environment)).base, `interactions/${encodeURIComponent(id)}/recordings/`),
111
+ method: "POST",
112
+ headers: mergeHeaders((_b = this._options) === null || _b === void 0 ? void 0 : _b.headers, mergeOnlyDefinedHeaders({
113
+ Authorization: yield this._getAuthorizationHeader(),
114
+ "Tenant-Name": requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.tenantName,
115
+ }), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
116
+ contentType: "application/octet-stream",
117
+ requestType: "bytes",
118
+ duplex: "half",
119
+ body: bytes,
120
+ timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
121
+ maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
122
+ abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
123
+ });
124
+ if (_response.ok) {
125
+ return { data: _response.body, rawResponse: _response.rawResponse };
126
+ }
127
+ if (_response.error.reason === "status-code") {
128
+ switch (_response.error.statusCode) {
129
+ case 400:
130
+ throw new Corti.BadRequestError(_response.error.body, _response.rawResponse);
131
+ case 403:
132
+ throw new Corti.ForbiddenError(_response.error.body, _response.rawResponse);
133
+ case 500:
134
+ throw new Corti.InternalServerError(_response.error.body, _response.rawResponse);
135
+ case 504:
136
+ throw new Corti.GatewayTimeoutError(_response.error.body, _response.rawResponse);
137
+ default:
138
+ throw new errors.CortiError({
139
+ statusCode: _response.error.statusCode,
140
+ body: _response.error.body,
141
+ rawResponse: _response.rawResponse,
142
+ });
143
+ }
144
+ }
145
+ switch (_response.error.reason) {
146
+ case "non-json":
147
+ throw new errors.CortiError({
148
+ statusCode: _response.error.statusCode,
149
+ body: _response.error.rawBody,
150
+ rawResponse: _response.rawResponse,
151
+ });
152
+ case "timeout":
153
+ throw new errors.CortiTimeoutError("Timeout exceeded when calling POST /interactions/{id}/recordings/.");
154
+ case "unknown":
155
+ throw new errors.CortiError({
156
+ message: _response.error.errorMessage,
157
+ rawResponse: _response.rawResponse,
158
+ });
159
+ }
160
+ });
161
+ }
162
+ /**
163
+ * Retrieve a specific recording for a given interaction.
164
+ * @throws {@link Corti.BadRequestError}
165
+ * @throws {@link Corti.ForbiddenError}
166
+ * @throws {@link Corti.NotFoundError}
167
+ * @throws {@link Corti.InternalServerError}
168
+ * @throws {@link Corti.GatewayTimeoutError}
169
+ */
170
+ get(id, recordingId, requestOptions) {
171
+ return core.HttpResponsePromise.fromPromise(this.__get(id, recordingId, requestOptions));
172
+ }
173
+ __get(id, recordingId, requestOptions) {
174
+ return __awaiter(this, void 0, void 0, function* () {
175
+ var _a, _b;
176
+ const _response = yield core.fetcher({
177
+ url: urlJoin((_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : (yield core.Supplier.get(this._options.environment)).base, `interactions/${encodeURIComponent(id)}/recordings/${encodeURIComponent(recordingId)}`),
178
+ method: "GET",
179
+ headers: mergeHeaders((_b = this._options) === null || _b === void 0 ? void 0 : _b.headers, mergeOnlyDefinedHeaders({
180
+ Authorization: yield this._getAuthorizationHeader(),
181
+ "Tenant-Name": requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.tenantName,
182
+ }), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
183
+ responseType: "streaming",
184
+ timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
185
+ maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
186
+ abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
187
+ });
188
+ if (_response.ok) {
189
+ return { data: _response.body, rawResponse: _response.rawResponse };
190
+ }
191
+ if (_response.error.reason === "status-code") {
192
+ switch (_response.error.statusCode) {
193
+ case 400:
194
+ throw new Corti.BadRequestError(_response.error.body, _response.rawResponse);
195
+ case 403:
196
+ throw new Corti.ForbiddenError(_response.error.body, _response.rawResponse);
197
+ case 404:
198
+ throw new Corti.NotFoundError(_response.error.body, _response.rawResponse);
199
+ case 500:
200
+ throw new Corti.InternalServerError(_response.error.body, _response.rawResponse);
201
+ case 504:
202
+ throw new Corti.GatewayTimeoutError(_response.error.body, _response.rawResponse);
203
+ default:
204
+ throw new errors.CortiError({
205
+ statusCode: _response.error.statusCode,
206
+ body: _response.error.body,
207
+ rawResponse: _response.rawResponse,
208
+ });
209
+ }
210
+ }
211
+ switch (_response.error.reason) {
212
+ case "non-json":
213
+ throw new errors.CortiError({
214
+ statusCode: _response.error.statusCode,
215
+ body: _response.error.rawBody,
216
+ rawResponse: _response.rawResponse,
217
+ });
218
+ case "timeout":
219
+ throw new errors.CortiTimeoutError("Timeout exceeded when calling GET /interactions/{id}/recordings/{recordingId}.");
220
+ case "unknown":
221
+ throw new errors.CortiError({
222
+ message: _response.error.errorMessage,
223
+ rawResponse: _response.rawResponse,
224
+ });
225
+ }
226
+ });
227
+ }
228
+ /**
229
+ * Delete a specific recording for a given interaction.
230
+ *
231
+ * @param {Corti.Uuid} id - The unique identifier of the interaction for which the recording should be deleted from. Must be a valid UUID.
232
+ * @param {Corti.Uuid} recordingId - The unique identifier of the recording to be deleted. Must be a valid UUID.
233
+ * @param {Recordings.RequestOptions} requestOptions - Request-specific configuration.
234
+ *
235
+ * @throws {@link Corti.ForbiddenError}
236
+ * @throws {@link Corti.NotFoundError}
237
+ * @throws {@link Corti.InternalServerError}
238
+ * @throws {@link Corti.GatewayTimeoutError}
239
+ *
240
+ * @example
241
+ * await client.recordings.delete("f47ac10b-58cc-4372-a567-0e02b2c3d479", "f47ac10b-58cc-4372-a567-0e02b2c3d479")
242
+ */
243
+ delete(id, recordingId, requestOptions) {
244
+ return core.HttpResponsePromise.fromPromise(this.__delete(id, recordingId, requestOptions));
245
+ }
246
+ __delete(id, recordingId, requestOptions) {
247
+ return __awaiter(this, void 0, void 0, function* () {
248
+ var _a, _b;
249
+ const _response = yield core.fetcher({
250
+ url: urlJoin((_a = (yield core.Supplier.get(this._options.baseUrl))) !== null && _a !== void 0 ? _a : (yield core.Supplier.get(this._options.environment)).base, `interactions/${encodeURIComponent(id)}/recordings/${encodeURIComponent(recordingId)}`),
251
+ method: "DELETE",
252
+ headers: mergeHeaders((_b = this._options) === null || _b === void 0 ? void 0 : _b.headers, mergeOnlyDefinedHeaders({
253
+ Authorization: yield this._getAuthorizationHeader(),
254
+ "Tenant-Name": requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.tenantName,
255
+ }), requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.headers),
256
+ timeoutMs: (requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.timeoutInSeconds) != null ? requestOptions.timeoutInSeconds * 1000 : 60000,
257
+ maxRetries: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.maxRetries,
258
+ abortSignal: requestOptions === null || requestOptions === void 0 ? void 0 : requestOptions.abortSignal,
259
+ });
260
+ if (_response.ok) {
261
+ return { data: undefined, rawResponse: _response.rawResponse };
262
+ }
263
+ if (_response.error.reason === "status-code") {
264
+ switch (_response.error.statusCode) {
265
+ case 403:
266
+ throw new Corti.ForbiddenError(_response.error.body, _response.rawResponse);
267
+ case 404:
268
+ throw new Corti.NotFoundError(_response.error.body, _response.rawResponse);
269
+ case 500:
270
+ throw new Corti.InternalServerError(_response.error.body, _response.rawResponse);
271
+ case 504:
272
+ throw new Corti.GatewayTimeoutError(_response.error.body, _response.rawResponse);
273
+ default:
274
+ throw new errors.CortiError({
275
+ statusCode: _response.error.statusCode,
276
+ body: _response.error.body,
277
+ rawResponse: _response.rawResponse,
278
+ });
279
+ }
280
+ }
281
+ switch (_response.error.reason) {
282
+ case "non-json":
283
+ throw new errors.CortiError({
284
+ statusCode: _response.error.statusCode,
285
+ body: _response.error.rawBody,
286
+ rawResponse: _response.rawResponse,
287
+ });
288
+ case "timeout":
289
+ throw new errors.CortiTimeoutError("Timeout exceeded when calling DELETE /interactions/{id}/recordings/{recordingId}.");
290
+ case "unknown":
291
+ throw new errors.CortiError({
292
+ message: _response.error.errorMessage,
293
+ rawResponse: _response.rawResponse,
294
+ });
295
+ }
296
+ });
297
+ }
298
+ _getAuthorizationHeader() {
299
+ return __awaiter(this, void 0, void 0, function* () {
300
+ const bearer = yield core.Supplier.get(this._options.token);
301
+ if (bearer != null) {
302
+ return `Bearer ${bearer}`;
303
+ }
304
+ return undefined;
305
+ });
306
+ }
307
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1 @@
1
+ export * from "./client/index.mjs";
@@ -0,0 +1 @@
1
+ export * from "./client/index.mjs";
@@ -0,0 +1,35 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as environments from "../../../../environments.mjs";
5
+ import * as core from "../../../../core/index.mjs";
6
+ import { StreamSocket } from "./Socket.mjs";
7
+ export declare namespace Stream {
8
+ interface Options {
9
+ environment: core.Supplier<environments.CortiEnvironment | environments.CortiEnvironmentUrls>;
10
+ /** Specify a custom URL to connect the client to. */
11
+ baseUrl?: core.Supplier<string>;
12
+ token?: core.Supplier<core.BearerToken | undefined>;
13
+ /** Override the Tenant-Name header */
14
+ tenantName: core.Supplier<string>;
15
+ /** Additional headers to include in requests. */
16
+ headers?: Record<string, string | core.Supplier<string | undefined> | undefined>;
17
+ }
18
+ interface ConnectArgs {
19
+ id: string;
20
+ "tenant-name"?: string;
21
+ token?: string;
22
+ /** Arbitrary headers to send with the websocket connect request. */
23
+ headers?: Record<string, unknown>;
24
+ /** Enable debug mode on the websocket. Defaults to false. */
25
+ debug?: boolean;
26
+ /** Number of reconnect attempts. Defaults to 30. */
27
+ reconnectAttempts?: number;
28
+ }
29
+ }
30
+ export declare class Stream {
31
+ protected readonly _options: Stream.Options;
32
+ constructor(_options: Stream.Options);
33
+ connect(args: Stream.ConnectArgs): Promise<StreamSocket>;
34
+ protected _getAuthorizationHeader(): Promise<string | undefined>;
35
+ }
@@ -0,0 +1,45 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
5
+ function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
6
+ return new (P || (P = Promise))(function (resolve, reject) {
7
+ function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
8
+ function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
9
+ function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
10
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
11
+ });
12
+ };
13
+ import * as core from "../../../../core/index.mjs";
14
+ import * as qs from "qs";
15
+ import { StreamSocket } from "./Socket.mjs";
16
+ export class Stream {
17
+ constructor(_options) {
18
+ this._options = _options;
19
+ }
20
+ connect(args) {
21
+ return __awaiter(this, void 0, void 0, function* () {
22
+ var _a, _b, _c;
23
+ const queryParams = {};
24
+ if (args["tenant-name"] != null) {
25
+ queryParams["tenant-name"] = args["tenant-name"];
26
+ }
27
+ if (args["token"] != null) {
28
+ queryParams["token"] = args["token"];
29
+ }
30
+ let websocketHeaders = {};
31
+ websocketHeaders = Object.assign(Object.assign({}, websocketHeaders), args["headers"]);
32
+ const socket = new core.ReconnectingWebSocket(`${(_a = (yield core.Supplier.get(this._options["baseUrl"]))) !== null && _a !== void 0 ? _a : (yield core.Supplier.get(this._options["environment"])).wss}/audio-bridge/v2/interactions/?${encodeURIComponent(args["id"])}/streams${qs.stringify(queryParams, { arrayFormat: "repeat" })}`, [], { debug: (_b = args["debug"]) !== null && _b !== void 0 ? _b : false, maxRetries: (_c = args["reconnectAttempts"]) !== null && _c !== void 0 ? _c : 30 }, websocketHeaders);
33
+ return new StreamSocket({ socket });
34
+ });
35
+ }
36
+ _getAuthorizationHeader() {
37
+ return __awaiter(this, void 0, void 0, function* () {
38
+ const bearer = yield core.Supplier.get(this._options.token);
39
+ if (bearer != null) {
40
+ return `Bearer ${bearer}`;
41
+ }
42
+ return undefined;
43
+ });
44
+ }
45
+ }
@@ -0,0 +1,54 @@
1
+ /**
2
+ * This file was auto-generated by Fern from our API Definition.
3
+ */
4
+ import * as core from "../../../../core/index.mjs";
5
+ import * as Corti from "../../../index.mjs";
6
+ export declare namespace StreamSocket {
7
+ interface Args {
8
+ socket: core.ReconnectingWebSocket;
9
+ }
10
+ type Response = Corti.StreamConfigStatusMessage | Corti.StreamTranscriptMessage | Corti.StreamFactsMessage | Corti.StreamEndedMessage | Corti.StreamUsageMessage | Corti.StreamErrorMessage;
11
+ type EventHandlers = {
12
+ open?: () => void;
13
+ message?: (message: Response) => void;
14
+ close?: (event: core.CloseEvent) => void;
15
+ error?: (error: Error) => void;
16
+ };
17
+ }
18
+ export declare class StreamSocket {
19
+ readonly socket: core.ReconnectingWebSocket;
20
+ protected readonly eventHandlers: StreamSocket.EventHandlers;
21
+ private handleOpen;
22
+ private handleMessage;
23
+ private handleClose;
24
+ private handleError;
25
+ constructor(args: StreamSocket.Args);
26
+ /** The current state of the connection; this is one of the readyState constants. */
27
+ get readyState(): number;
28
+ /**
29
+ * @param event - The event to attach to.
30
+ * @param callback - The callback to run when the event is triggered.
31
+ * Usage:
32
+ * ```typescript
33
+ * this.on('open', () => {
34
+ * console.log('The websocket is open');
35
+ * });
36
+ * ```
37
+ */
38
+ on<T extends keyof StreamSocket.EventHandlers>(event: T, callback: StreamSocket.EventHandlers[T]): void;
39
+ sendConfiguration(message: Corti.StreamConfigurationMessage): void;
40
+ sendAudio(message: string): void;
41
+ sendEnd(message: Corti.StreamEndMessage): void;
42
+ /** Connect to the websocket and register event handlers. */
43
+ connect(): StreamSocket;
44
+ /** Close the websocket and unregister event handlers. */
45
+ close(): void;
46
+ /** Returns a promise that resolves when the websocket is open. */
47
+ waitForOpen(): Promise<core.ReconnectingWebSocket>;
48
+ /** Asserts that the websocket is open. */
49
+ private assertSocketIsOpen;
50
+ /** Send a binary payload to the websocket. */
51
+ private sendBinary;
52
+ /** Send a JSON payload to the websocket. */
53
+ private sendJson;
54
+ }