botframework-webchat-core 4.18.1-main.20260518.2a3d1d3 → 4.18.2

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 (547) hide show
  1. package/dist/botframework-webchat-core.d.mts +662 -267
  2. package/dist/botframework-webchat-core.mjs +2 -1
  3. package/dist/botframework-webchat-core.mjs.LEGAL.txt +0 -0
  4. package/dist/botframework-webchat-core.mjs.map +1 -1
  5. package/dist/metafile-esm.json +1 -1
  6. package/lib/actions/clearSuggestedActions.js +15 -0
  7. package/lib/actions/connect.js +33 -0
  8. package/lib/actions/connectionStatusUpdate.js +20 -0
  9. package/lib/actions/deleteActivity.d.ts +13 -0
  10. package/lib/actions/deleteActivity.d.ts.map +1 -0
  11. package/lib/actions/deleteActivity.js +19 -0
  12. package/lib/actions/disconnect.js +21 -0
  13. package/lib/actions/dismissNotification.d.ts +12 -0
  14. package/lib/actions/dismissNotification.d.ts.map +1 -0
  15. package/lib/actions/dismissNotification.js +19 -0
  16. package/lib/actions/emitTypingIndicator.js +15 -0
  17. package/lib/actions/incomingActivity.d.ts +14 -0
  18. package/lib/actions/incomingActivity.d.ts.map +1 -0
  19. package/lib/actions/incomingActivity.js +19 -0
  20. package/lib/actions/markActivity.d.ts +17 -0
  21. package/lib/actions/markActivity.d.ts.map +1 -0
  22. package/lib/actions/markActivity.js +22 -0
  23. package/lib/actions/postActivity.d.ts +64 -0
  24. package/lib/actions/postActivity.d.ts.map +1 -0
  25. package/lib/actions/postActivity.js +31 -0
  26. package/lib/actions/queueIncomingActivity.js +18 -0
  27. package/lib/actions/reconnect.js +17 -0
  28. package/lib/actions/sagaError.d.ts +8 -0
  29. package/lib/actions/sagaError.d.ts.map +1 -0
  30. package/lib/actions/sagaError.js +15 -0
  31. package/lib/actions/sendEvent.js +19 -0
  32. package/lib/actions/sendFiles.d.ts +19 -0
  33. package/lib/actions/sendFiles.d.ts.map +1 -0
  34. package/lib/actions/sendFiles.js +20 -0
  35. package/lib/actions/sendMessage.d.ts +19 -0
  36. package/lib/actions/sendMessage.d.ts.map +1 -0
  37. package/lib/actions/sendMessage.js +24 -0
  38. package/lib/actions/sendMessageBack.js +20 -0
  39. package/lib/actions/sendPostBack.js +18 -0
  40. package/lib/actions/setClockSkewAdjustment.js +12 -0
  41. package/lib/actions/setDictateInterims.js +18 -0
  42. package/lib/actions/setDictateState.js +18 -0
  43. package/lib/actions/setLanguage.js +18 -0
  44. package/lib/actions/setNotification.d.ts +10 -0
  45. package/lib/actions/setNotification.d.ts.map +1 -0
  46. package/lib/actions/setNotification.js +37 -0
  47. package/lib/actions/setReferenceGrammarID.js +18 -0
  48. package/lib/actions/setSendBox.js +18 -0
  49. package/lib/actions/setSendBoxAttachments.d.ts +13 -0
  50. package/lib/actions/setSendBoxAttachments.d.ts.map +1 -0
  51. package/lib/actions/setSendBoxAttachments.js +18 -0
  52. package/lib/actions/setSendTimeout.js +18 -0
  53. package/lib/actions/setSendTypingIndicator.d.ts +11 -0
  54. package/lib/actions/setSendTypingIndicator.d.ts.map +1 -0
  55. package/lib/actions/setSendTypingIndicator.js +18 -0
  56. package/lib/actions/setSuggestedActions.js +20 -0
  57. package/lib/actions/startDictate.js +15 -0
  58. package/lib/actions/startSpeakingActivity.js +15 -0
  59. package/lib/actions/stopDictate.js +15 -0
  60. package/lib/actions/stopSpeakingActivity.js +15 -0
  61. package/lib/actions/submitSendBox.js +22 -0
  62. package/lib/actions/updateConnectionStatus.js +18 -0
  63. package/lib/constants/ActivityClientState.js +16 -0
  64. package/lib/constants/DictateState.js +17 -0
  65. package/lib/createPromiseQueue.js +30 -0
  66. package/lib/createReducer.d.ts +60 -0
  67. package/lib/createReducer.d.ts.map +1 -0
  68. package/lib/createReducer.js +45 -0
  69. package/lib/createSagas.d.ts +8 -0
  70. package/lib/createSagas.d.ts.map +1 -0
  71. package/lib/createSagas.js +112 -0
  72. package/{dist/createStore-CcvouBrW.d.ts → lib/createStore.d.ts} +7 -29
  73. package/lib/createStore.d.ts.map +1 -0
  74. package/lib/createStore.js +131 -0
  75. package/lib/definitions/activityFromBot.js +11 -0
  76. package/lib/definitions/speakableActivity.js +10 -0
  77. package/lib/definitions/speakingActivity.js +13 -0
  78. package/lib/index.d.ts +76 -0
  79. package/lib/index.d.ts.map +1 -0
  80. package/lib/index.js +309 -0
  81. package/lib/reducers/connectivityStatus.js +49 -0
  82. package/lib/reducers/createActivitiesReducer.d.ts +12 -0
  83. package/lib/reducers/createActivitiesReducer.d.ts.map +1 -0
  84. package/lib/reducers/createActivitiesReducer.js +267 -0
  85. package/lib/reducers/createInternalReducer.d.ts +10 -0
  86. package/lib/reducers/createInternalReducer.d.ts.map +1 -0
  87. package/lib/reducers/createInternalReducer.js +19 -0
  88. package/lib/reducers/createNotificationsReducer.d.ts +11 -0
  89. package/lib/reducers/createNotificationsReducer.d.ts.map +1 -0
  90. package/lib/reducers/createNotificationsReducer.js +55 -0
  91. package/lib/reducers/createTypingReducer.d.ts +14 -0
  92. package/lib/reducers/createTypingReducer.d.ts.map +1 -0
  93. package/lib/reducers/createTypingReducer.js +50 -0
  94. package/lib/reducers/dictateInterims.js +23 -0
  95. package/lib/reducers/dictateState.js +38 -0
  96. package/lib/reducers/language.js +23 -0
  97. package/lib/reducers/private/findBeforeAfter.d.ts +4 -0
  98. package/lib/reducers/private/findBeforeAfter.d.ts.map +1 -0
  99. package/lib/reducers/private/findBeforeAfter.js +24 -0
  100. package/lib/reducers/readyState.js +23 -0
  101. package/lib/reducers/referenceGrammarID.js +23 -0
  102. package/lib/reducers/sendBoxAttachments.d.ts +9 -0
  103. package/lib/reducers/sendBoxAttachments.d.ts.map +1 -0
  104. package/lib/reducers/sendBoxAttachments.js +23 -0
  105. package/lib/reducers/sendBoxValue.js +23 -0
  106. package/lib/reducers/sendTimeout.js +23 -0
  107. package/lib/reducers/sendTypingIndicator.js +23 -0
  108. package/lib/reducers/shouldSpeakIncomingActivity.js +25 -0
  109. package/lib/reducers/suggestedActions.js +32 -0
  110. package/lib/sagas/clearSuggestedActionsOnPostActivitySaga.js +62 -0
  111. package/lib/sagas/connectSaga.js +445 -0
  112. package/lib/sagas/connectionStatusToNotificationSaga.js +107 -0
  113. package/lib/sagas/connectionStatusUpdateSaga.js +63 -0
  114. package/lib/sagas/detectSlowConnectionSaga.d.ts +5 -0
  115. package/lib/sagas/detectSlowConnectionSaga.d.ts.map +1 -0
  116. package/lib/sagas/detectSlowConnectionSaga.js +50 -0
  117. package/lib/sagas/effects/forever.js +19 -0
  118. package/lib/sagas/effects/forkPut.js +51 -0
  119. package/lib/sagas/effects/observeEach.js +45 -0
  120. package/lib/sagas/effects/observeOnce.d.ts +3 -0
  121. package/lib/sagas/effects/observeOnce.d.ts.map +1 -0
  122. package/lib/sagas/effects/observeOnce.js +42 -0
  123. package/lib/sagas/effects/whileConnected.d.ts +7 -0
  124. package/lib/sagas/effects/whileConnected.d.ts.map +1 -0
  125. package/lib/sagas/effects/whileConnected.js +55 -0
  126. package/lib/sagas/emitTypingIndicatorToPostActivitySaga.js +63 -0
  127. package/lib/sagas/markAllAsSpokenOnStopSpeakActivitySaga.js +78 -0
  128. package/lib/sagas/observeActivitySaga.d.ts +2 -0
  129. package/lib/sagas/observeActivitySaga.d.ts.map +1 -0
  130. package/lib/sagas/observeActivitySaga.js +117 -0
  131. package/lib/sagas/postActivitySaga.d.ts +3 -0
  132. package/lib/sagas/postActivitySaga.d.ts.map +1 -0
  133. package/lib/sagas/postActivitySaga.js +264 -0
  134. package/lib/sagas/queueIncomingActivitySaga.d.ts +3 -0
  135. package/lib/sagas/queueIncomingActivitySaga.d.ts.map +1 -0
  136. package/lib/sagas/queueIncomingActivitySaga.js +197 -0
  137. package/lib/sagas/sendEventToPostActivitySaga.js +68 -0
  138. package/lib/sagas/sendFilesToPostActivitySaga.js +85 -0
  139. package/lib/sagas/sendMessageBackToPostActivitySaga.js +70 -0
  140. package/lib/sagas/sendMessageToPostActivitySaga.d.ts +2 -0
  141. package/lib/sagas/sendMessageToPostActivitySaga.d.ts.map +1 -0
  142. package/lib/sagas/sendMessageToPostActivitySaga.js +91 -0
  143. package/lib/sagas/sendPostBackToPostActivitySaga.js +69 -0
  144. package/lib/sagas/sendTypingIndicatorOnSetSendBoxSaga.d.ts +3 -0
  145. package/lib/sagas/sendTypingIndicatorOnSetSendBoxSaga.d.ts.map +1 -0
  146. package/lib/sagas/sendTypingIndicatorOnSetSendBoxSaga.js +145 -0
  147. package/lib/sagas/speakActivityAndStartDictateOnIncomingActivityFromOthersSaga.js +106 -0
  148. package/lib/sagas/startDictateOnSpeakCompleteSaga.js +65 -0
  149. package/lib/sagas/startSpeakActivityOnPostActivitySaga.js +62 -0
  150. package/lib/sagas/stopDictateOnCardActionSaga.js +65 -0
  151. package/lib/sagas/stopSpeakingActivityOnInputSaga.js +68 -0
  152. package/lib/sagas/submitSendBoxSaga.js +84 -0
  153. package/lib/selectors/activities.d.ts +9 -0
  154. package/lib/selectors/activities.d.ts.map +1 -0
  155. package/lib/selectors/activities.js +33 -0
  156. package/lib/selectors/combineSelectors.js +31 -0
  157. package/lib/selectors/dictateState.js +12 -0
  158. package/lib/selectors/language.d.ts +4 -0
  159. package/lib/selectors/language.d.ts.map +1 -0
  160. package/lib/selectors/language.js +12 -0
  161. package/lib/selectors/notifications.js +13 -0
  162. package/lib/selectors/sendBoxAttachments.js +11 -0
  163. package/lib/selectors/sendBoxValue.js +12 -0
  164. package/lib/selectors/sendTimeout.d.ts +4 -0
  165. package/lib/selectors/sendTimeout.d.ts.map +1 -0
  166. package/lib/selectors/sendTimeout.js +12 -0
  167. package/lib/selectors/sendTypingIndicator.d.ts +4 -0
  168. package/lib/selectors/sendTypingIndicator.d.ts.map +1 -0
  169. package/lib/selectors/sendTypingIndicator.js +12 -0
  170. package/lib/selectors/shouldSpeakIncomingActivity.js +12 -0
  171. package/lib/types/AnyAnd.d.ts +2 -0
  172. package/lib/types/AnyAnd.d.ts.map +1 -0
  173. package/lib/types/AnyAnd.js +6 -0
  174. package/lib/types/GlobalScopePonyfill.d.ts +8 -0
  175. package/lib/types/GlobalScopePonyfill.d.ts.map +1 -0
  176. package/lib/types/GlobalScopePonyfill.js +6 -0
  177. package/lib/types/OneOrMany.d.ts +3 -0
  178. package/lib/types/OneOrMany.d.ts.map +1 -0
  179. package/lib/types/OneOrMany.js +6 -0
  180. package/lib/types/SendBoxAttachment.d.ts +5 -0
  181. package/lib/types/SendBoxAttachment.d.ts.map +1 -0
  182. package/lib/types/SendBoxAttachment.js +6 -0
  183. package/lib/types/WebChatActivity.d.ts +128 -0
  184. package/lib/types/WebChatActivity.d.ts.map +1 -0
  185. package/lib/types/WebChatActivity.js +6 -0
  186. package/lib/types/external/DirectLineActivity.d.ts +3 -0
  187. package/lib/types/external/DirectLineActivity.d.ts.map +1 -0
  188. package/lib/types/external/DirectLineActivity.js +6 -0
  189. package/lib/types/external/DirectLineAnimationCard.d.ts +6 -0
  190. package/lib/types/external/DirectLineAnimationCard.d.ts.map +1 -0
  191. package/lib/types/external/DirectLineAnimationCard.js +6 -0
  192. package/lib/types/external/DirectLineAttachment.d.ts +9 -0
  193. package/lib/types/external/DirectLineAttachment.d.ts.map +1 -0
  194. package/lib/types/external/DirectLineAttachment.js +6 -0
  195. package/lib/types/external/DirectLineAudioCard.d.ts +6 -0
  196. package/lib/types/external/DirectLineAudioCard.d.ts.map +1 -0
  197. package/lib/types/external/DirectLineAudioCard.js +6 -0
  198. package/lib/types/external/DirectLineBasicCardEssence.d.ts +12 -0
  199. package/lib/types/external/DirectLineBasicCardEssence.d.ts.map +1 -0
  200. package/lib/types/external/DirectLineBasicCardEssence.js +6 -0
  201. package/lib/types/external/DirectLineCardAction.d.ts +110 -0
  202. package/lib/types/external/DirectLineCardAction.d.ts.map +1 -0
  203. package/lib/types/external/DirectLineCardAction.js +6 -0
  204. package/lib/types/external/DirectLineCardImage.d.ts +8 -0
  205. package/lib/types/external/DirectLineCardImage.d.ts.map +1 -0
  206. package/lib/types/external/DirectLineCardImage.js +6 -0
  207. package/lib/types/external/DirectLineHeroCard.d.ts +6 -0
  208. package/lib/types/external/DirectLineHeroCard.d.ts.map +1 -0
  209. package/lib/types/external/DirectLineHeroCard.js +6 -0
  210. package/lib/types/external/DirectLineJSBotConnection.d.ts +3 -0
  211. package/lib/types/external/DirectLineJSBotConnection.d.ts.map +1 -0
  212. package/lib/types/external/DirectLineJSBotConnection.js +6 -0
  213. package/lib/types/external/DirectLineMediaCardEssence.d.ts +21 -0
  214. package/lib/types/external/DirectLineMediaCardEssence.d.ts.map +1 -0
  215. package/lib/types/external/DirectLineMediaCardEssence.js +6 -0
  216. package/lib/types/external/DirectLineOAuthCard.d.ts +8 -0
  217. package/lib/types/external/DirectLineOAuthCard.d.ts.map +1 -0
  218. package/lib/types/external/DirectLineOAuthCard.js +6 -0
  219. package/lib/types/external/DirectLineReceiptCard.d.ts +28 -0
  220. package/lib/types/external/DirectLineReceiptCard.d.ts.map +1 -0
  221. package/lib/types/external/DirectLineReceiptCard.js +6 -0
  222. package/lib/types/external/DirectLineSignInCard.d.ts +8 -0
  223. package/lib/types/external/DirectLineSignInCard.d.ts.map +1 -0
  224. package/lib/types/external/DirectLineSignInCard.js +6 -0
  225. package/lib/types/external/DirectLineSuggestedAction.d.ts +7 -0
  226. package/lib/types/external/DirectLineSuggestedAction.d.ts.map +1 -0
  227. package/lib/types/external/DirectLineSuggestedAction.js +6 -0
  228. package/lib/types/external/DirectLineThumbnailCard.d.ts +6 -0
  229. package/lib/types/external/DirectLineThumbnailCard.d.ts.map +1 -0
  230. package/lib/types/external/DirectLineThumbnailCard.js +6 -0
  231. package/lib/types/external/DirectLineVideoCard.d.ts +6 -0
  232. package/lib/types/external/DirectLineVideoCard.d.ts.map +1 -0
  233. package/lib/types/external/DirectLineVideoCard.js +6 -0
  234. package/lib/types/external/Observable.d.ts +49 -0
  235. package/lib/types/external/Observable.d.ts.map +1 -0
  236. package/lib/types/external/Observable.js +6 -0
  237. package/lib/types/external/OrgSchema/Action.d.ts +29 -0
  238. package/lib/types/external/OrgSchema/Action.d.ts.map +1 -0
  239. package/lib/types/external/OrgSchema/Action.js +38 -0
  240. package/lib/types/external/OrgSchema/Claim.d.ts +35 -0
  241. package/lib/types/external/OrgSchema/Claim.d.ts.map +1 -0
  242. package/lib/types/external/OrgSchema/Claim.js +41 -0
  243. package/lib/types/external/OrgSchema/CreativeWork.d.ts +57 -0
  244. package/lib/types/external/OrgSchema/CreativeWork.d.ts.map +1 -0
  245. package/lib/types/external/OrgSchema/CreativeWork.js +52 -0
  246. package/lib/types/external/OrgSchema/DefinedTerm.d.ts +26 -0
  247. package/lib/types/external/OrgSchema/DefinedTerm.d.ts.map +1 -0
  248. package/lib/types/external/OrgSchema/DefinedTerm.js +33 -0
  249. package/lib/types/external/OrgSchema/Project.d.ts +20 -0
  250. package/lib/types/external/OrgSchema/Project.d.ts.map +1 -0
  251. package/lib/types/external/OrgSchema/Project.js +32 -0
  252. package/lib/types/external/OrgSchema/Thing.d.ts +53 -0
  253. package/lib/types/external/OrgSchema/Thing.d.ts.map +1 -0
  254. package/lib/types/external/OrgSchema/Thing.js +54 -0
  255. package/lib/types/external/OrgSchema/VoteAction.d.ts +22 -0
  256. package/lib/types/external/OrgSchema/VoteAction.d.ts.map +1 -0
  257. package/lib/types/external/OrgSchema/VoteAction.js +34 -0
  258. package/lib/types/external/OrgSchema/private/orgSchemaProperties.d.ts +3 -0
  259. package/lib/types/external/OrgSchema/private/orgSchemaProperties.d.ts.map +1 -0
  260. package/lib/types/external/OrgSchema/private/orgSchemaProperties.js +22 -0
  261. package/lib/types/external/OrgSchema/private/orgSchemaProperty.d.ts +4 -0
  262. package/lib/types/external/OrgSchema/private/orgSchemaProperty.d.ts.map +1 -0
  263. package/lib/types/external/OrgSchema/private/orgSchemaProperty.js +15 -0
  264. package/lib/types/internal/GlobalScopeClock.d.ts +15 -0
  265. package/lib/types/internal/GlobalScopeClock.d.ts.map +1 -0
  266. package/lib/types/internal/GlobalScopeClock.js +6 -0
  267. package/lib/types/internal/Notification.d.ts +10 -0
  268. package/lib/types/internal/Notification.d.ts.map +1 -0
  269. package/lib/types/internal/Notification.js +6 -0
  270. package/lib/types/internal/ReduxState.d.ts +19 -0
  271. package/lib/types/internal/ReduxState.d.ts.map +1 -0
  272. package/lib/types/internal/ReduxState.js +6 -0
  273. package/lib/types/internal/SendStatus.d.ts +7 -0
  274. package/lib/types/internal/SendStatus.d.ts.map +1 -0
  275. package/lib/types/internal/SendStatus.js +19 -0
  276. package/lib/types/internal/WebChatOutgoingActivity.d.ts +49 -0
  277. package/lib/types/internal/WebChatOutgoingActivity.d.ts.map +1 -0
  278. package/lib/types/internal/WebChatOutgoingActivity.js +6 -0
  279. package/lib/utils/dateToLocaleISOString.d.ts +2 -0
  280. package/lib/utils/dateToLocaleISOString.d.ts.map +1 -0
  281. package/lib/utils/dateToLocaleISOString.js +52 -0
  282. package/lib/utils/deleteKey.d.ts +2 -0
  283. package/lib/utils/deleteKey.d.ts.map +1 -0
  284. package/lib/utils/deleteKey.js +30 -0
  285. package/lib/utils/getOrgSchemaMessage.d.ts +4 -0
  286. package/lib/utils/getOrgSchemaMessage.d.ts.map +1 -0
  287. package/lib/utils/getOrgSchemaMessage.js +21 -0
  288. package/lib/utils/isForbiddenPropertyName.d.ts +2 -0
  289. package/lib/utils/isForbiddenPropertyName.d.ts.map +1 -0
  290. package/lib/utils/isForbiddenPropertyName.js +16 -0
  291. package/lib/utils/onErrorResumeNext.d.ts +3 -0
  292. package/lib/utils/onErrorResumeNext.d.ts.map +1 -0
  293. package/lib/utils/onErrorResumeNext.js +19 -0
  294. package/lib/utils/once.d.ts +2 -0
  295. package/lib/utils/once.d.ts.map +1 -0
  296. package/lib/utils/once.js +16 -0
  297. package/lib/utils/singleToArray.d.ts +2 -0
  298. package/lib/utils/singleToArray.d.ts.map +1 -0
  299. package/lib/utils/singleToArray.js +10 -0
  300. package/lib/utils/sleep.d.ts +3 -0
  301. package/lib/utils/sleep.d.ts.map +1 -0
  302. package/lib/utils/sleep.js +12 -0
  303. package/lib/utils/uniqueID.d.ts +2 -0
  304. package/lib/utils/uniqueID.d.ts.map +1 -0
  305. package/lib/utils/uniqueID.js +14 -0
  306. package/lib/utils/warnOnce.d.ts +2 -0
  307. package/lib/utils/warnOnce.d.ts.map +1 -0
  308. package/lib/utils/warnOnce.js +14 -0
  309. package/package.json +73 -147
  310. package/src/__tests__/activityFromBot.spec.js +0 -2
  311. package/src/__tests__/connectSaga.spec.js +0 -2
  312. package/src/__tests__/deleteKey.spec.js +0 -2
  313. package/src/__tests__/detectSlowConnectionSaga.spec.js +1 -3
  314. package/src/__tests__/observeOnce.spec.js +0 -2
  315. package/src/__tests__/speakableActivity.spec.js +0 -2
  316. package/src/__tests__/uniqueID.spec.js +0 -2
  317. package/src/actions/clearSuggestedActions.js +9 -0
  318. package/src/actions/{connect.ts → connect.js} +1 -9
  319. package/src/actions/{sendEvent.ts → sendEvent.js} +1 -1
  320. package/src/actions/{sendMessageBack.ts → sendMessageBack.js} +1 -1
  321. package/src/actions/{sendPostBack.ts → sendPostBack.js} +1 -1
  322. package/src/actions/{setDictateInterims.ts → setDictateInterims.js} +1 -1
  323. package/src/actions/{setDictateState.ts → setDictateState.js} +1 -1
  324. package/src/actions/{setLanguage.ts → setLanguage.js} +1 -1
  325. package/src/actions/{setSendBox.ts → setSendBox.js} +1 -1
  326. package/src/actions/{setSendTimeout.ts → setSendTimeout.js} +1 -1
  327. package/src/actions/setSendTypingIndicator.ts +1 -1
  328. package/src/actions/setSuggestedActions.js +12 -0
  329. package/src/actions/{submitSendBox.ts → submitSendBox.js} +1 -1
  330. package/src/constants/{ActivityClientState.ts → ActivityClientState.js} +3 -3
  331. package/src/constants/DictateState.js +7 -0
  332. package/src/createPromiseQueue.js +6 -8
  333. package/src/createReducer.ts +20 -28
  334. package/src/createSagas.ts +3 -6
  335. package/src/createStore.ts +10 -26
  336. package/src/index.ts +45 -62
  337. package/src/reducers/createActivitiesReducer.ts +304 -0
  338. package/src/reducers/createNotificationsReducer.ts +4 -4
  339. package/src/reducers/private/findBeforeAfter.spec.ts +90 -0
  340. package/src/reducers/private/findBeforeAfter.ts +30 -0
  341. package/src/reducers/suggestedActions.js +23 -0
  342. package/src/sagas/observeActivitySaga.ts +1 -51
  343. package/src/sagas/postActivitySaga.ts +10 -17
  344. package/src/sagas/queueIncomingActivitySaga.ts +4 -10
  345. package/src/sagas/sendMessageToPostActivitySaga.ts +1 -4
  346. package/src/sagas/speakActivityAndStartDictateOnIncomingActivityFromOthersSaga.js +4 -10
  347. package/src/sagas/startDictateOnSpeakCompleteSaga.js +3 -3
  348. package/src/sagas/startSpeakActivityOnPostActivitySaga.js +5 -15
  349. package/src/sagas/stopDictateOnCardActionSaga.js +3 -11
  350. package/src/sagas/stopSpeakingActivityOnInputSaga.js +4 -22
  351. package/src/selectors/combineSelectors.ts +1 -1
  352. package/src/tsconfig.json +15 -3
  353. package/src/types/OneOrMany.ts +3 -0
  354. package/src/types/WebChatActivity.ts +14 -31
  355. package/src/types/external/DirectLineActivity.ts +1 -1
  356. package/src/types/external/Observable.ts +1 -4
  357. package/src/types/external/OrgSchema/Action.spec.ts +35 -0
  358. package/src/types/external/OrgSchema/Action.ts +52 -0
  359. package/src/types/external/OrgSchema/Claim.spec.ts +45 -0
  360. package/src/types/external/OrgSchema/Claim.ts +48 -0
  361. package/src/types/external/OrgSchema/CreativeWork.parseCreativeWork.spec.ts +51 -0
  362. package/src/types/external/OrgSchema/CreativeWork.ts +83 -0
  363. package/src/types/external/OrgSchema/DefinedTerm.ts +37 -0
  364. package/src/types/external/OrgSchema/Project.parseProject.spec.ts +17 -0
  365. package/src/types/external/OrgSchema/Project.ts +29 -0
  366. package/src/types/external/OrgSchema/Thing.parseThing.spec.ts +54 -0
  367. package/src/types/external/OrgSchema/Thing.ts +94 -0
  368. package/src/types/external/OrgSchema/VoteAction.spec.ts +35 -0
  369. package/src/types/external/OrgSchema/VoteAction.ts +31 -0
  370. package/src/types/external/OrgSchema/private/orgSchemaProperties.spec.ts +41 -0
  371. package/src/types/external/OrgSchema/private/orgSchemaProperties.ts +23 -0
  372. package/src/types/external/OrgSchema/private/orgSchemaProperty.spec.ts +21 -0
  373. package/src/types/external/OrgSchema/private/orgSchemaProperty.ts +6 -0
  374. package/src/types/internal/GlobalScopeClock.ts +10 -10
  375. package/src/types/internal/ReduxState.ts +0 -2
  376. package/src/types/internal/WebChatOutgoingActivity.ts +1 -1
  377. package/src/utils/dateToLocaleISOString.chatham.spec.js +2 -1
  378. package/src/utils/dateToLocaleISOString.japan.spec.js +2 -1
  379. package/src/utils/dateToLocaleISOString.newfoundland.spec.js +2 -1
  380. package/src/utils/dateToLocaleISOString.pacific.spec.js +2 -1
  381. package/src/utils/dateToLocaleISOString.utc.spec.js +3 -1
  382. package/src/utils/deleteKey.ts +1 -1
  383. package/src/utils/getOrgSchemaMessage.spec.ts +1 -4
  384. package/src/utils/getOrgSchemaMessage.ts +16 -16
  385. package/src/utils/isForbiddenPropertyName.spec.js +6 -0
  386. package/src/utils/isForbiddenPropertyName.ts +33 -0
  387. package/src/utils/onErrorResumeNext.ts +1 -1
  388. package/src/utils/singleToArray.ts +3 -0
  389. package/src/utils/warnOnce.ts +5 -0
  390. package/LICENSE +0 -21
  391. package/activity.js +0 -3
  392. package/boot/deprecated/activity.js +0 -7
  393. package/boot/deprecated/activity.mjs +0 -5
  394. package/boot/deprecated/graph.js +0 -7
  395. package/boot/deprecated/graph.mjs +0 -5
  396. package/boot/deprecated/internal.js +0 -7
  397. package/boot/deprecated/internal.mjs +0 -5
  398. package/dist/WebChatActivity-CYqxBG_4.d.mts +0 -271
  399. package/dist/WebChatActivity-CYqxBG_4.d.ts +0 -271
  400. package/dist/_dtsroll-chunks/B7Whm73Q-tagged.d.ts +0 -71
  401. package/dist/_dtsroll-chunks/C-MxR98A-botframework-webchat-core-debug-api.d.ts +0 -135
  402. package/dist/_dtsroll-chunks/CAquHfZK-botframework-webchat-base.utils.d.ts +0 -17
  403. package/dist/_dtsroll-chunks/CDVed0Q--botframework-webchat-core.org-schema.d.ts +0 -601
  404. package/dist/_dtsroll-chunks/vlDgTKWF-botframework-webchat-core-graph.d.ts +0 -239
  405. package/dist/botframework-webchat-core.activity.d.mts +0 -23
  406. package/dist/botframework-webchat-core.activity.d.ts +0 -23
  407. package/dist/botframework-webchat-core.activity.js +0 -2
  408. package/dist/botframework-webchat-core.activity.js.map +0 -1
  409. package/dist/botframework-webchat-core.activity.mjs +0 -2
  410. package/dist/botframework-webchat-core.activity.mjs.map +0 -1
  411. package/dist/botframework-webchat-core.d.ts +0 -556
  412. package/dist/botframework-webchat-core.graph.d.mts +0 -9
  413. package/dist/botframework-webchat-core.graph.d.ts +0 -9
  414. package/dist/botframework-webchat-core.graph.js +0 -2
  415. package/dist/botframework-webchat-core.graph.js.map +0 -1
  416. package/dist/botframework-webchat-core.graph.mjs +0 -2
  417. package/dist/botframework-webchat-core.graph.mjs.map +0 -1
  418. package/dist/botframework-webchat-core.internal.d.mts +0 -61
  419. package/dist/botframework-webchat-core.internal.d.ts +0 -61
  420. package/dist/botframework-webchat-core.internal.js +0 -2
  421. package/dist/botframework-webchat-core.internal.js.map +0 -1
  422. package/dist/botframework-webchat-core.internal.mjs +0 -2
  423. package/dist/botframework-webchat-core.internal.mjs.map +0 -1
  424. package/dist/botframework-webchat-core.js +0 -2
  425. package/dist/botframework-webchat-core.js.map +0 -1
  426. package/dist/botframework-webchat-core.json-ld.d.mts +0 -2
  427. package/dist/botframework-webchat-core.json-ld.d.ts +0 -2
  428. package/dist/botframework-webchat-core.json-ld.js +0 -2
  429. package/dist/botframework-webchat-core.json-ld.js.map +0 -1
  430. package/dist/botframework-webchat-core.json-ld.mjs +0 -2
  431. package/dist/botframework-webchat-core.json-ld.mjs.map +0 -1
  432. package/dist/botframework-webchat-core.org-schema.d.mts +0 -2
  433. package/dist/botframework-webchat-core.org-schema.d.ts +0 -2
  434. package/dist/botframework-webchat-core.org-schema.js +0 -2
  435. package/dist/botframework-webchat-core.org-schema.js.map +0 -1
  436. package/dist/botframework-webchat-core.org-schema.mjs +0 -2
  437. package/dist/botframework-webchat-core.org-schema.mjs.map +0 -1
  438. package/dist/chunk-A4GEFYZJ.mjs +0 -2
  439. package/dist/chunk-A4GEFYZJ.mjs.map +0 -1
  440. package/dist/chunk-HZWWJL43.mjs +0 -2
  441. package/dist/chunk-HZWWJL43.mjs.map +0 -1
  442. package/dist/chunk-ICNZKQJW.mjs +0 -2
  443. package/dist/chunk-ICNZKQJW.mjs.map +0 -1
  444. package/dist/chunk-K6E6QQMQ.js +0 -2
  445. package/dist/chunk-K6E6QQMQ.js.map +0 -1
  446. package/dist/chunk-KPT5FBH2.mjs +0 -2
  447. package/dist/chunk-KPT5FBH2.mjs.map +0 -1
  448. package/dist/chunk-LO5BZSVE.js +0 -2
  449. package/dist/chunk-LO5BZSVE.js.map +0 -1
  450. package/dist/chunk-LP2X2JTR.js +0 -2
  451. package/dist/chunk-LP2X2JTR.js.map +0 -1
  452. package/dist/chunk-RUERYYZO.js +0 -2
  453. package/dist/chunk-RUERYYZO.js.map +0 -1
  454. package/dist/chunk-XOE3AOSM.js +0 -2
  455. package/dist/chunk-XOE3AOSM.js.map +0 -1
  456. package/dist/chunk-Y6ZDNVRT.mjs +0 -2
  457. package/dist/chunk-Y6ZDNVRT.mjs.map +0 -1
  458. package/dist/createStore-CcvouBrW.d.mts +0 -65
  459. package/dist/metafile-cjs.json +0 -1
  460. package/graph.js +0 -3
  461. package/internal.js +0 -3
  462. package/json-ld.js +0 -3
  463. package/org-schema.js +0 -3
  464. package/src/__tests__/addMetaTag.spec.js +0 -8
  465. package/src/__tests__/addMetaTag.spec.mjs +0 -8
  466. package/src/actions/clearSuggestedActions.ts +0 -20
  467. package/src/actions/muteVoiceRecording.ts +0 -17
  468. package/src/actions/postVoiceActivity.ts +0 -21
  469. package/src/actions/registerActionSink.ts +0 -29
  470. package/src/actions/registerVoiceHandler.ts +0 -24
  471. package/src/actions/setSuggestedActions.ts +0 -35
  472. package/src/actions/setVoiceState.ts +0 -21
  473. package/src/actions/startVoiceRecording.ts +0 -17
  474. package/src/actions/stopVoiceRecording.ts +0 -17
  475. package/src/actions/unmuteVoiceRecording.ts +0 -17
  476. package/src/actions/unregisterActionSink.ts +0 -29
  477. package/src/actions/unregisterVoiceHandler.ts +0 -19
  478. package/src/boot/activity.ts +0 -19
  479. package/src/boot/graph.ts +0 -18
  480. package/src/boot/internal.ts +0 -11
  481. package/src/boot/json-ld.ts +0 -6
  482. package/src/boot/org-schema.ts +0 -29
  483. package/src/buildInfo.ts +0 -9
  484. package/src/constants/DictateState.ts +0 -10
  485. package/src/env.d.ts +0 -12
  486. package/src/graph/createGraphFromStore.ts +0 -121
  487. package/src/internal/StoreDebugAPIRegistry.ts +0 -4
  488. package/src/internal/actions/setRawState.ts +0 -48
  489. package/src/internal/types/suggestedActions.ts +0 -11
  490. package/src/internal/types/suggestedActionsOriginActivity.ts +0 -16
  491. package/src/reducers/activities/combineActivitiesReducer.ts +0 -58
  492. package/src/reducers/activities/createGroupedActivitiesReducer.ts +0 -297
  493. package/src/reducers/activities/patchActivity.ts +0 -37
  494. package/src/reducers/activities/sort/deleteActivityByLocalId.activity.spec.ts +0 -144
  495. package/src/reducers/activities/sort/deleteActivityByLocalId.howTo.spec.ts +0 -148
  496. package/src/reducers/activities/sort/deleteActivityByLocalId.howToWithLivestream.spec.ts +0 -248
  497. package/src/reducers/activities/sort/deleteActivityByLocalId.livestream.spec.ts +0 -156
  498. package/src/reducers/activities/sort/deleteActivityByLocalId.ts +0 -177
  499. package/src/reducers/activities/sort/private/computePartListTimestamp.ts +0 -9
  500. package/src/reducers/activities/sort/private/computeSortedActivities.ts +0 -51
  501. package/src/reducers/activities/sort/private/getLogicalTimestamp.spec.ts +0 -49
  502. package/src/reducers/activities/sort/private/getLogicalTimestamp.ts +0 -33
  503. package/src/reducers/activities/sort/private/getPartGroupingMetadataMap.spec.ts +0 -92
  504. package/src/reducers/activities/sort/private/getPartGroupingMetadataMap.ts +0 -37
  505. package/src/reducers/activities/sort/private/insertSorted.spec.ts +0 -106
  506. package/src/reducers/activities/sort/private/insertSorted.ts +0 -18
  507. package/src/reducers/activities/sort/property/LocalId.ts +0 -60
  508. package/src/reducers/activities/sort/property/Position.ts +0 -39
  509. package/src/reducers/activities/sort/property/ReceivedAt.ts +0 -45
  510. package/src/reducers/activities/sort/property/SendStatus.ts +0 -51
  511. package/src/reducers/activities/sort/queryLocalIdByActivityId.ts +0 -6
  512. package/src/reducers/activities/sort/queryLocalIdByClientActivityId.ts +0 -6
  513. package/src/reducers/activities/sort/types.ts +0 -80
  514. package/src/reducers/activities/sort/updateActivityChannelData.ts +0 -101
  515. package/src/reducers/activities/sort/updateSendState.ts +0 -22
  516. package/src/reducers/activities/sort/upsert.activity.spec.ts +0 -500
  517. package/src/reducers/activities/sort/upsert.howTo.spec.ts +0 -368
  518. package/src/reducers/activities/sort/upsert.howToWithLivestream.spec.ts +0 -384
  519. package/src/reducers/activities/sort/upsert.livestream.spec.ts +0 -418
  520. package/src/reducers/activities/sort/upsert.ts +0 -498
  521. package/src/reducers/activities/tsconfig.json +0 -4
  522. package/src/reducers/suggestedActions.ts +0 -21
  523. package/src/reducers/suggestedActionsOriginActivity.ts +0 -24
  524. package/src/reducers/voiceActivity.ts +0 -102
  525. package/src/sagas/actionSinkSaga.ts +0 -39
  526. package/src/sagas/postVoiceActivitySaga.ts +0 -76
  527. package/src/types/StoreDebugAPI.ts +0 -25
  528. package/src/utils/getActivityLivestreamingMetadata.spec.ts +0 -297
  529. package/src/utils/getActivityLivestreamingMetadata.ts +0 -197
  530. package/src/utils/voiceActivity/getVoiceActivityRole.spec.ts +0 -150
  531. package/src/utils/voiceActivity/getVoiceActivityRole.ts +0 -16
  532. package/src/utils/voiceActivity/getVoiceActivityText.spec.ts +0 -100
  533. package/src/utils/voiceActivity/getVoiceActivityText.ts +0 -11
  534. package/src/utils/voiceActivity/isVoiceActivity.spec.ts +0 -202
  535. package/src/utils/voiceActivity/isVoiceActivity.ts +0 -21
  536. package/src/utils/voiceActivity/isVoiceTranscriptActivity.spec.ts +0 -224
  537. package/src/utils/voiceActivity/isVoiceTranscriptActivity.ts +0 -24
  538. /package/src/actions/{connectionStatusUpdate.ts → connectionStatusUpdate.js} +0 -0
  539. /package/src/actions/{disconnect.ts → disconnect.js} +0 -0
  540. /package/src/actions/{emitTypingIndicator.ts → emitTypingIndicator.js} +0 -0
  541. /package/src/actions/{queueIncomingActivity.ts → queueIncomingActivity.js} +0 -0
  542. /package/src/actions/{reconnect.ts → reconnect.js} +0 -0
  543. /package/src/actions/{startDictate.ts → startDictate.js} +0 -0
  544. /package/src/actions/{startSpeakingActivity.ts → startSpeakingActivity.js} +0 -0
  545. /package/src/actions/{stopDictate.ts → stopDictate.js} +0 -0
  546. /package/src/actions/{stopSpeakingActivity.ts → stopSpeakingActivity.js} +0 -0
  547. /package/src/actions/{updateConnectionStatus.ts → updateConnectionStatus.js} +0 -0
@@ -1,29 +1,33 @@
1
- import { D as DirectLineCardAction, W as WebChatActivity } from './WebChatActivity-CYqxBG_4.mjs';
2
- export { b as DirectLineAttachment, c as DirectLineSuggestedAction } from './WebChatActivity-CYqxBG_4.mjs';
3
- export { G as GlobalScopePonyfill, c as createStore, w as createStoreWithDevTools, a as createStoreWithOptions } from './createStore-CcvouBrW.mjs';
4
- import { OrgSchemaCreativeWork as CreativeWorkOutput } from './botframework-webchat-core.org-schema.mjs';
5
- import * as valibot from 'valibot';
6
- import { InferOutput } from 'valibot';
7
- export { O as OneOrMany, P as PromiseWithResolvers, i as isForbiddenPropertyName, s as singleToArray, w as withResolvers } from './_dtsroll-chunks/CAquHfZK-botframework-webchat-base.utils.js';
8
- import './_dtsroll-chunks/B7Whm73Q-tagged.js';
9
- import 'redux';
10
-
11
- declare function connect({ directLine, userID, username }: {
12
- readonly directLine: any;
13
- readonly userID: string;
14
- readonly username: string;
15
- }): {
16
- type: string;
1
+ import { Store } from 'redux';
2
+
3
+ const CLEAR_SUGGESTED_ACTIONS = 'WEB_CHAT/CLEAR_SUGGESTED_ACTIONS';
4
+
5
+ function clearSuggestedActions() {
6
+ return {
7
+ type: CLEAR_SUGGESTED_ACTIONS
8
+ };
9
+ }
10
+
11
+ const CONNECT = 'DIRECT_LINE/CONNECT';
12
+
13
+ function connect({ directLine, userID, username }) {
14
+ return {
15
+ type: CONNECT,
17
16
  payload: {
18
- directLine: any;
19
- userID: string;
20
- username: string;
21
- };
22
- };
17
+ directLine,
18
+ userID,
19
+ username
20
+ }
21
+ };
22
+ }
23
23
 
24
- declare function disconnect(): {
25
- type: string;
26
- };
24
+ const DISCONNECT = 'DIRECT_LINE/DISCONNECT';
25
+
26
+ function disconnect() {
27
+ return {
28
+ type: DISCONNECT
29
+ };
30
+ }
27
31
 
28
32
  declare const DISMISS_NOTIFICATION = "WEB_CHAT/DISMISS_NOTIFICATION";
29
33
  type DismissNotificationAction = {
@@ -34,9 +38,13 @@ type DismissNotificationAction = {
34
38
  };
35
39
  declare function dismissNotification(id: string): DismissNotificationAction;
36
40
 
37
- declare function emitTypingIndicator(): {
38
- type: string;
39
- };
41
+ const EMIT_TYPING_INDICATOR = 'WEB_CHAT/EMIT_TYPING_INDICATOR';
42
+
43
+ function emitTypingIndicator() {
44
+ return {
45
+ type: EMIT_TYPING_INDICATOR
46
+ };
47
+ }
40
48
 
41
49
  type MarkActivityActionType = 'WEB_CHAT/MARK_ACTIVITY';
42
50
  type MarkActivityAction = {
@@ -51,11 +59,253 @@ declare function markActivity({ id: activityID }: {
51
59
  id: string;
52
60
  }, name: string, value: any): MarkActivityAction;
53
61
 
54
- declare const VOICE_MUTE_RECORDING: "WEB_CHAT/VOICE_MUTE_RECORDING";
55
- type VoiceMuteRecordingAction = {
56
- type: typeof VOICE_MUTE_RECORDING;
62
+ type AnyAnd<T> = Omit<any, keyof T> & T;
63
+
64
+ type DirectLineAttachment = {
65
+ content?: any;
66
+ contentType: string;
67
+ contentUrl?: string;
68
+ name?: string;
69
+ thumbnailUrl?: string;
70
+ };
71
+
72
+ type CardActionWithImageAndTitle = {
73
+ image: string;
74
+ } | {
75
+ title: string;
76
+ } | {
77
+ image: string;
78
+ title: string;
79
+ };
80
+ /**
81
+ * A `call` action represents a telephone number that may be called.
82
+ *
83
+ * https://github.com/Microsoft/botframework-sdk/blob/main/specs/botframework-activity/botframework-activity.md#call
84
+ */
85
+ type CallCardAction = CardActionWithImageAndTitle & {
86
+ type: 'call';
87
+ value: string;
88
+ };
89
+ /**
90
+ * A `downloadFile` action represents a hyperlink to be downloaded.
91
+ *
92
+ * https://github.com/Microsoft/botframework-sdk/blob/main/specs/botframework-activity/botframework-activity.md#download-file-actions
93
+ */
94
+ type DownloadFileCardAction = CardActionWithImageAndTitle & {
95
+ type: 'downloadFile';
96
+ value: string;
97
+ };
98
+ /**
99
+ * An `imBack` action represents a text response that is added to the chat feed.
100
+ *
101
+ * https://github.com/Microsoft/botframework-sdk/blob/main/specs/botframework-activity/botframework-activity.md#im-back
102
+ */
103
+ type IMBackCardAction = CardActionWithImageAndTitle & {
104
+ type: 'imBack';
105
+ value: string;
106
+ };
107
+ /**
108
+ * A `messageBack` action represents a text response to be sent via the chat system.
109
+ *
110
+ * https://github.com/Microsoft/botframework-sdk/blob/main/specs/botframework-activity/botframework-activity.md#message-back
111
+ */
112
+ type MessageBackCardAction = CardActionWithImageAndTitle & {
113
+ displayText?: string;
114
+ text?: string;
115
+ type: 'messageBack';
116
+ value?: {
117
+ [key: string]: any;
118
+ };
119
+ };
120
+ /**
121
+ * An `openUrl` action represents a hyperlink to be handled by the client.
122
+ *
123
+ * https://github.com/Microsoft/botframework-sdk/blob/main/specs/botframework-activity/botframework-activity.md#open-url-actions
124
+ */
125
+ type OpenURLCardAction = CardActionWithImageAndTitle & {
126
+ type: 'openUrl';
127
+ value: string;
128
+ };
129
+ /**
130
+ * A `playAudio` action represents audio media that may be played.
131
+ *
132
+ * https://github.com/Microsoft/botframework-sdk/blob/main/specs/botframework-activity/botframework-activity.md#play-audio
133
+ */
134
+ type PlayAudioCardAction = CardActionWithImageAndTitle & {
135
+ type: 'playAudio';
136
+ value: string;
137
+ };
138
+ /**
139
+ * A `playVideo` action represents video media that may be played.
140
+ *
141
+ * https://github.com/Microsoft/botframework-sdk/blob/main/specs/botframework-activity/botframework-activity.md#play-video
142
+ */
143
+ type PlayVideoCardAction = CardActionWithImageAndTitle & {
144
+ type: 'playVideo';
145
+ value: string;
146
+ };
147
+ /**
148
+ * A `postBack` action represents a text response that is not added to the chat feed.
149
+ *
150
+ * https://github.com/Microsoft/botframework-sdk/blob/main/specs/botframework-activity/botframework-activity.md#post-back
151
+ */
152
+ type PostBackCardAction = CardActionWithImageAndTitle & {
153
+ type: 'postBack';
154
+ value: any;
155
+ };
156
+ /**
157
+ * A `showImage` action represents an image that may be displayed.
158
+ *
159
+ * https://github.com/Microsoft/botframework-sdk/blob/main/specs/botframework-activity/botframework-activity.md#show-image-file-actions
160
+ */
161
+ type ShowImageCardAction = CardActionWithImageAndTitle & {
162
+ type: 'showImage';
163
+ value: string;
164
+ };
165
+ /**
166
+ * A `signin` action represents a hyperlink to be handled by the client's signin system.
167
+ *
168
+ * https://github.com/Microsoft/botframework-sdk/blob/main/specs/botframework-activity/botframework-activity.md#signin
169
+ */
170
+ type SignInCardAction = CardActionWithImageAndTitle & {
171
+ type: 'signin';
172
+ value: string;
173
+ };
174
+ /**
175
+ * A card action represents a clickable or interactive button for use within cards or as suggested actions. They are used to solicit input from users. Despite their name, card actions are not limited to use solely on cards.
176
+ *
177
+ * https://github.com/Microsoft/botframework-sdk/blob/main/specs/botframework-activity/botframework-activity.md#card-action
178
+ */
179
+ type DirectLineCardAction = CallCardAction | DownloadFileCardAction | IMBackCardAction | MessageBackCardAction | OpenURLCardAction | PlayAudioCardAction | PlayVideoCardAction | PostBackCardAction | ShowImageCardAction | SignInCardAction;
180
+
181
+ type DirectLineSuggestedAction = {
182
+ actions?: DirectLineCardAction[];
183
+ to?: string[];
184
+ };
185
+
186
+ type SupportedRole = 'bot' | 'channel' | 'user';
187
+ type SupportedSendStatus = 'sending' | 'send failed' | 'sent';
188
+ type ChannelData<SendStatus extends SupportedSendStatus | undefined, Type extends string> = AnyAnd<{
189
+ attachmentSizes?: number[];
190
+ clientActivityID?: string;
191
+ 'webchat:sequence-id': number;
192
+ webChat?: {
193
+ /**
194
+ * Time when the activity appear in chat history.
195
+ *
196
+ * Note: if the activity is updated, this value will also be updated.
197
+ */
198
+ receivedAt?: number;
199
+ /**
200
+ * Per-activity style options.
201
+ *
202
+ * New in 4.18.0.
203
+ */
204
+ styleOptions?: Record<string, boolean | number | null | string>;
205
+ };
206
+ } & (SendStatus extends SupportedSendStatus ? {
207
+ /**
208
+ * @deprecated Since 4.15.3: Please use `channelData['webchat:send-status']` or `useSendStatusByActivityKey()` hook instead.
209
+ * Please refer to https://github.com/microsoft/BotFramework-WebChat/pull/4362 for details. This field will be removed on or after 2024-07-31.
210
+ */
211
+ state?: SendStatus;
212
+ /**
213
+ * The send status of the activity.
214
+ *
215
+ * - `"sending"`, the activity is in-transit and it has not been timed out;
216
+ * - `"send failed"`, the activity cannot be delivered permanently and further processing had been stopped;
217
+ * - `"sent"`, the activity is delivered successfully.
218
+ *
219
+ * Due to network-related race conditions, the activity could be marked as `"send failed"` but delivered by the service.
220
+ * In this case, the activity should continue to mark as `"send failed"`.
221
+ *
222
+ * For further details, please see [#4362](https://github.com/microsoft/BotFramework-WebChat/pull/4362).
223
+ */
224
+ 'webchat:send-status': SendStatus;
225
+ } : {}) & (Type extends 'message' ? {
226
+ messageBack?: {
227
+ displayText: string;
228
+ };
229
+ postBack?: boolean;
230
+ speak?: boolean;
231
+ speechSynthesisUtterance?: SpeechSynthesisUtterance;
232
+ 'webchat:fallback-text'?: string;
233
+ } : {})>;
234
+ type ClientCapabilitiesEntity = {
235
+ requiresBotState?: boolean;
236
+ supportsListening?: boolean;
237
+ supportsTts?: boolean;
238
+ type: 'ClientCapabilities';
239
+ };
240
+ type Entity = ClientCapabilitiesEntity | {
241
+ type: string;
242
+ };
243
+ type ChannelAcount<Role extends SupportedRole> = {
244
+ id: string;
245
+ name?: string;
246
+ role: Role;
57
247
  };
58
- declare function muteVoiceRecording(): VoiceMuteRecordingAction;
248
+ type EventActivityEssence = {
249
+ name: string;
250
+ type: 'event';
251
+ value?: any;
252
+ };
253
+ type MessageActivityEssence = {
254
+ attachmentLayout?: 'carousel' | 'stacked';
255
+ attachments?: DirectLineAttachment[];
256
+ channelData: {
257
+ streamId?: string;
258
+ streamSequence?: number;
259
+ streamType?: 'final';
260
+ };
261
+ inputHint?: 'accepting' | 'expecting' | 'ignoring';
262
+ locale?: string;
263
+ speak?: string;
264
+ suggestedActions?: DirectLineSuggestedAction;
265
+ text: string | undefined;
266
+ textFormat?: 'markdown' | 'plain' | 'xml';
267
+ type: 'message';
268
+ value?: any;
269
+ };
270
+ type TypingActivityEssence = {
271
+ type: 'typing';
272
+ } | {
273
+ channelData: {
274
+ streamId: string;
275
+ streamSequence: number;
276
+ streamType: 'informative' | 'streaming';
277
+ };
278
+ text: string;
279
+ type: 'typing';
280
+ };
281
+ type TimestampFromServerEssence = {
282
+ id: string;
283
+ localTimestamp?: string;
284
+ timestamp: string;
285
+ };
286
+ type TimestampInTransitEssence = {
287
+ id?: string;
288
+ localTimestamp: string;
289
+ timestamp?: string;
290
+ };
291
+ type TimestampEssence<Role extends SupportedRole, SendStatus extends SupportedSendStatus | undefined> = Role extends 'user' ? SendStatus extends 'sending' | 'send failed' ? TimestampInTransitEssence : TimestampFromServerEssence : TimestampFromServerEssence;
292
+ type CoreActivityEssence<Role extends SupportedRole, SendStatus extends SupportedSendStatus | undefined, Type extends string = 'conversationUpdate' | 'event' | 'invoke' | 'message' | 'typing'> = {
293
+ channelData: ChannelData<SendStatus, Type>;
294
+ channelId?: string;
295
+ entities?: Entity[];
296
+ from: ChannelAcount<Role>;
297
+ localTimezone?: string;
298
+ replyToId?: string;
299
+ type: string;
300
+ } & TimestampEssence<Role, SendStatus> & (Type extends 'event' ? EventActivityEssence : Type extends 'message' ? MessageActivityEssence : Type extends 'typing' ? TypingActivityEssence : {
301
+ type: Type;
302
+ });
303
+ type OthersActivity = CoreActivityEssence<'bot' | 'channel', undefined>;
304
+ type SelfActivitySendFailed = CoreActivityEssence<'user', 'send failed'>;
305
+ type SelfActivitySending = CoreActivityEssence<'user', 'sending'>;
306
+ type SelfActivitySent = CoreActivityEssence<'user', 'sent'>;
307
+ type SelfActivity = SelfActivitySendFailed | SelfActivitySending | SelfActivitySent;
308
+ type WebChatActivity = SelfActivity | OthersActivity;
59
309
 
60
310
  type PostActivityActionType = 'DIRECT_LINE/POST_ACTIVITY';
61
311
  type PostActivityAction = {
@@ -69,36 +319,14 @@ type PostActivityAction = {
69
319
  };
70
320
  declare function postActivity(activity: WebChatActivity, method?: string): PostActivityAction;
71
321
 
72
- declare const VOICE_POST_ACTIVITY: "WEB_CHAT/VOICE_POST_ACTIVITY";
73
- type VoicePostActivityAction = {
74
- type: typeof VOICE_POST_ACTIVITY;
75
- payload: {
76
- activity: WebChatActivity;
77
- };
78
- };
79
- declare function postVoiceActivity(activity: WebChatActivity): VoicePostActivityAction;
80
-
81
- declare const VOICE_REGISTER_HANDLER: "WEB_CHAT/VOICE_REGISTER_HANDLER";
82
- type VoiceHandler = {
83
- queueAudio: (base64: string) => void;
84
- stopAllAudio: () => void;
85
- };
86
- type VoiceRegisterHandlerAction = {
87
- type: typeof VOICE_REGISTER_HANDLER;
88
- payload: {
89
- id: string;
90
- voiceHandler: VoiceHandler;
91
- };
92
- };
93
- declare function registerVoiceHandler(id: string, voiceHandler: VoiceHandler): VoiceRegisterHandlerAction;
322
+ const SEND_EVENT = 'WEB_CHAT/SEND_EVENT';
94
323
 
95
- declare function sendEvent(name: string, value: any): {
96
- type: string;
97
- payload: {
98
- name: string;
99
- value: any;
100
- };
101
- };
324
+ function sendEvent(name, value) {
325
+ return {
326
+ type: SEND_EVENT,
327
+ payload: { name, value }
328
+ };
329
+ }
102
330
 
103
331
  declare function sendFiles(files: readonly Readonly<{
104
332
  name: string;
@@ -138,42 +366,50 @@ declare function sendMessage(text: string | undefined, method: string | undefine
138
366
  };
139
367
  };
140
368
 
141
- declare function sendMessageback(value: any, text: string | undefined, displayText: string | undefined): {
142
- type: string;
143
- payload: {
144
- displayText: string;
145
- text: string;
146
- value: any;
147
- };
148
- };
369
+ const SEND_MESSAGE_BACK = 'WEB_CHAT/SEND_MESSAGE_BACK';
149
370
 
150
- declare function sendPostback(value: any): {
151
- type: string;
152
- payload: {
153
- value: any;
154
- };
155
- };
371
+ function sendMessageback(value, text, displayText) {
372
+ return {
373
+ type: SEND_MESSAGE_BACK,
374
+ payload: { displayText, text, value }
375
+ };
376
+ }
156
377
 
157
- declare function setDictateInterims(dictateInterims: readonly string[]): {
158
- type: string;
159
- payload: {
160
- dictateInterims: readonly string[];
161
- };
162
- };
378
+ const SEND_POST_BACK = 'WEB_CHAT/SEND_POST_BACK';
163
379
 
164
- declare function setDictateState(dictateState: number): {
165
- type: string;
166
- payload: {
167
- dictateState: number;
168
- };
169
- };
380
+ function sendPostback(value) {
381
+ return {
382
+ type: SEND_POST_BACK,
383
+ payload: { value }
384
+ };
385
+ }
170
386
 
171
- declare function setLanguage(language: string): {
172
- type: string;
173
- payload: {
174
- language: string;
175
- };
176
- };
387
+ const SET_DICTATE_INTERIMS = 'WEB_CHAT/SET_DICTATE_INTERIMS';
388
+
389
+ function setDictateInterims(dictateInterims) {
390
+ return {
391
+ type: SET_DICTATE_INTERIMS,
392
+ payload: { dictateInterims }
393
+ };
394
+ }
395
+
396
+ const SET_DICTATE_STATE = 'WEB_CHAT/SET_DICTATE_STATE';
397
+
398
+ function setDictateState(dictateState) {
399
+ return {
400
+ type: SET_DICTATE_STATE,
401
+ payload: { dictateState }
402
+ };
403
+ }
404
+
405
+ const SET_LANGUAGE = 'WEB_CHAT/SET_LANGUAGE';
406
+
407
+ function setLanguage(language) {
408
+ return {
409
+ type: SET_LANGUAGE,
410
+ payload: { language }
411
+ };
412
+ }
177
413
 
178
414
  type Notification = {
179
415
  alt: string;
@@ -191,12 +427,14 @@ type SetNotificationAction = {
191
427
  };
192
428
  declare function setNotification({ alt, data, id, level, message }: Omit<Notification, 'timestamp'>): SetNotificationAction;
193
429
 
194
- declare function setSendBox(text: string): {
195
- type: string;
196
- payload: {
197
- text: string;
198
- };
199
- };
430
+ const SET_SEND_BOX = 'WEB_CHAT/SET_SEND_BOX';
431
+
432
+ function setSendBox(text) {
433
+ return {
434
+ type: SET_SEND_BOX,
435
+ payload: { text }
436
+ };
437
+ }
200
438
 
201
439
  declare function setSendBoxAttachments(attachments: readonly SendBoxAttachment[]): {
202
440
  type: string;
@@ -208,12 +446,14 @@ declare function setSendBoxAttachments(attachments: readonly SendBoxAttachment[]
208
446
  };
209
447
  };
210
448
 
211
- declare function setSendTimeout(sendTimeout: number): {
212
- type: string;
213
- payload: {
214
- sendTimeout: number;
215
- };
216
- };
449
+ const SET_SEND_TIMEOUT = 'WEB_CHAT/SET_SEND_TIMEOUT';
450
+
451
+ function setSendTimeout(sendTimeout) {
452
+ return {
453
+ type: SET_SEND_TIMEOUT,
454
+ payload: { sendTimeout }
455
+ };
456
+ }
217
457
 
218
458
  declare const SET_SEND_TYPING_INDICATOR = "WEB_CHAT/SET_SEND_TYPING_INDICATOR";
219
459
  type SetSendTypingIndicatorAction = {
@@ -222,182 +462,338 @@ type SetSendTypingIndicatorAction = {
222
462
  };
223
463
  type: typeof SET_SEND_TYPING_INDICATOR;
224
464
  };
225
- declare function setSendTypingIndicator(value: boolean): SetSendTypingIndicatorAction;
465
+ declare function setSendTypingIndicator(value: any): SetSendTypingIndicatorAction;
226
466
 
227
- declare const VOICE_SET_STATE: "WEB_CHAT/VOICE_SET_STATE";
228
- type VoiceState = 'idle' | 'listening' | 'user_speaking' | 'processing' | 'bot_speaking';
229
- type VoiceSetStateAction = {
230
- type: typeof VOICE_SET_STATE;
231
- payload: {
232
- voiceState: VoiceState;
233
- };
234
- };
235
- declare function setVoiceState(voiceState: VoiceState): VoiceSetStateAction;
467
+ const START_DICTATE = 'WEB_CHAT/START_DICTATE';
236
468
 
237
- declare function startDictate(): {
238
- type: string;
239
- };
469
+ function startDictate() {
470
+ return { type: START_DICTATE };
471
+ }
240
472
 
241
- declare function startSpeakingActivity(): {
242
- type: string;
243
- };
473
+ const START_SPEAKING_ACTIVITY = 'WEB_CHAT/START_SPEAKING';
244
474
 
245
- declare const VOICE_START_RECORDING: "WEB_CHAT/VOICE_START_RECORDING";
246
- type VoiceStartRecordingAction = {
247
- type: typeof VOICE_START_RECORDING;
248
- };
249
- declare function startVoiceRecording(): VoiceStartRecordingAction;
475
+ function startSpeakingActivity() {
476
+ return {
477
+ type: START_SPEAKING_ACTIVITY
478
+ };
479
+ }
250
480
 
251
- declare function stopDictate(): {
252
- type: string;
253
- };
481
+ const STOP_DICTATE = 'WEB_CHAT/STOP_DICTATE';
254
482
 
255
- declare function stopSpeakingActivity(): {
256
- type: string;
257
- };
483
+ function stopDictate() {
484
+ return { type: STOP_DICTATE };
485
+ }
258
486
 
259
- declare const VOICE_STOP_RECORDING: "WEB_CHAT/VOICE_STOP_RECORDING";
260
- type VoiceStopRecordingAction = {
261
- type: typeof VOICE_STOP_RECORDING;
262
- };
263
- declare function stopVoiceRecording(): VoiceStopRecordingAction;
487
+ const STOP_SPEAKING_ACTIVITY = 'WEB_CHAT/STOP_SPEAKING';
264
488
 
265
- declare function submitSendBox(method?: string, { channelData }?: {
266
- channelData: any;
267
- }): {
268
- type: string;
269
- payload: {
270
- channelData: any;
271
- method: string;
272
- };
489
+ function stopSpeakingActivity() {
490
+ return {
491
+ type: STOP_SPEAKING_ACTIVITY
492
+ };
493
+ }
494
+
495
+ const SUBMIT_SEND_BOX = 'WEB_CHAT/SUBMIT_SEND_BOX';
496
+
497
+ function submitSendBox(method = 'keyboard', { channelData } = {}) {
498
+ return {
499
+ type: SUBMIT_SEND_BOX,
500
+ payload: { channelData, method }
501
+ };
502
+ }
503
+
504
+ type GlobalScopeClock = {
505
+ cancelAnimationFrame?: typeof cancelAnimationFrame;
506
+ cancelIdleCallback?: typeof cancelIdleCallback;
507
+ clearImmediate?: typeof clearImmediate;
508
+ clearInterval: typeof clearInterval;
509
+ clearTimeout: typeof clearTimeout;
510
+ Date: typeof Date;
511
+ requestAnimationFrame?: typeof requestAnimationFrame;
512
+ requestIdleCallback?: typeof requestIdleCallback;
513
+ setImmediate?: typeof setImmediate;
514
+ setInterval: typeof setInterval;
515
+ setTimeout: typeof setTimeout;
273
516
  };
274
517
 
275
- declare const VOICE_UNMUTE_RECORDING: "WEB_CHAT/VOICE_UNMUTE_RECORDING";
276
- type VoiceUnmuteRecordingAction = {
277
- type: typeof VOICE_UNMUTE_RECORDING;
518
+ /**
519
+ * Ponyfills that are supported by Web Chat.
520
+ *
521
+ * If ponyfill is passed, Web Chat will use this ponyfill rather than the one from `globalThis` or `window` object.
522
+ */
523
+ type GlobalScopePonyfill = GlobalScopeClock;
524
+
525
+ type CreateStoreOptions = {
526
+ /**
527
+ * True, to enable Redux development tools, otherwise, false.
528
+ *
529
+ * Because Web Chat use sagas for business logics, some store state are keep at JavaScript heaps.
530
+ * Time-travelling and saving/restoring store state are not supported.
531
+ */
532
+ devTools?: boolean;
533
+ /**
534
+ * Ponyfill to overrides specific global scope members.
535
+ *
536
+ * This option is for development use only. Not all features in Web Chat are ponyfilled.
537
+ *
538
+ * To fake timers, `setTimeout` and related functions can be passed to overrides the original global scope members.
539
+ *
540
+ * Please see [#4662](https://github.com/microsoft/BotFramework-WebChat/pull/4662) for details.
541
+ */
542
+ ponyfill?: Partial<GlobalScopePonyfill>;
278
543
  };
279
- declare function unmuteVoiceRecording(): VoiceUnmuteRecordingAction;
544
+ /**
545
+ * Creates a Redux store internally used by Web Chat.
546
+ *
547
+ * This store is critical for Web Chat business logics to operate, please use with cautions.
548
+ */
549
+ declare function withOptions(options: CreateStoreOptions, initialState?: any, ...middlewares: any[]): Store;
550
+ /**
551
+ * Creates a Redux store internally used by Web Chat.
552
+ *
553
+ * This store is critical for Web Chat business logics to operate, please use with cautions.
554
+ */
555
+ declare function createStore(initialState?: any, ...middlewares: any[]): Store;
556
+ /**
557
+ * Creates a Redux store internally used by Web Chat, with Redux development tools.
558
+ *
559
+ * This store is critical for Web Chat business logics to operate, please use with cautions.
560
+ *
561
+ * @deprecated Use `withOptions` instead and pass `{ devTools: true }`
562
+ */
563
+ declare function withDevTools(initialState?: any, ...middlewares: any[]): Store;
280
564
 
281
- declare const VOICE_UNREGISTER_HANDLER: "WEB_CHAT/VOICE_UNREGISTER_HANDLER";
282
- type VoiceUnregisterHandlerAction = {
283
- type: typeof VOICE_UNREGISTER_HANDLER;
284
- payload: {
285
- id: string;
286
- };
565
+ type OneOrMany<T> = T | T[];
566
+
567
+ /**
568
+ * The most generic type of item.
569
+ *
570
+ * This is partial implementation of https://schema.org/Thing.
571
+ *
572
+ * @see https://schema.org/Thing
573
+ */
574
+ type Thing = {
575
+ '@context'?: 'https://schema.org' | undefined;
576
+ '@id'?: string | undefined;
577
+ '@type': string;
578
+ /**
579
+ * An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. Typically the value is a URI-identified RDF class, and in this case corresponds to the use of rdf:type in RDF. Text values can be used sparingly, for cases where useful information can be added without their being an appropriate schema to reference. In the case of text values, the class label should follow the schema.org [style guide](https://schema.org/docs/styleguide.html).
580
+ *
581
+ * @see https://schema.org/additionalType
582
+ */
583
+ additionalType?: string | undefined;
584
+ /**
585
+ * An alias for the item.
586
+ *
587
+ * @see https://schema.org/alternateName
588
+ */
589
+ alternateName?: string | undefined;
590
+ /**
591
+ * A description of the item.
592
+ *
593
+ * @see https://schema.org/description
594
+ */
595
+ description?: string | undefined;
596
+ /**
597
+ * The name of the item.
598
+ *
599
+ * @see https://schema.org/name
600
+ */
601
+ name?: string | undefined;
602
+ /**
603
+ * Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role.
604
+ *
605
+ * @see https://schema.org/potentialAction
606
+ */
607
+ potentialAction?: readonly Action[] | undefined;
608
+ /**
609
+ * URL of the item.
610
+ *
611
+ * @see https://schema.org/url
612
+ */
613
+ url?: string | undefined;
614
+ };
615
+ declare const parseThing: (data: unknown) => Thing;
616
+
617
+ /**
618
+ * An enterprise (potentially individual but typically collaborative), planned to achieve a particular aim. Use properties from [Organization](https://schema.org/Organization), [subOrganization](https://schema.org/subOrganization)/[parentOrganization](https://schema.org/parentOrganization) to indicate project sub-structures.
619
+ *
620
+ * This is partial implementation of https://schema.org/Project.
621
+ *
622
+ * @see https://schema.org/Project
623
+ */
624
+ type Project = Thing & {
625
+ /**
626
+ * A slogan or motto associated with the item.
627
+ *
628
+ * @see https://schema.org/slogan
629
+ */
630
+ slogan?: string | undefined;
287
631
  };
288
- declare function unregisterVoiceHandler(id: string): VoiceUnregisterHandlerAction;
632
+ declare const parseProject: (data: unknown) => Project;
289
633
 
290
- /** @deprecated This constant is being deprecated, please use string literal instead. Will be remove on or after 2024-07-31. */
291
- declare const SEND_FAILED: "send failed";
292
- /** @deprecated This constant is being deprecated, please use string literal instead. Will be remove on or after 2024-07-31. */
293
- declare const SENDING: "sending";
294
- /** @deprecated This constant is being deprecated, please use string literal instead. Will be remove on or after 2024-07-31. */
295
- declare const SENT: "sent";
634
+ /**
635
+ * An action performed by a direct agent and indirect participants upon a direct object. Optionally happens at a location with the help of an inanimate instrument. The execution of the action may produce a result. Specific action sub-type documentation specifies the exact expectation of each argument/role.
636
+ *
637
+ * See also [blog post](http://blog.schema.org/2014/04/announcing-schemaorg-actions.html) and [Actions overview document](https://schema.org/docs/actions.html).
638
+ *
639
+ * This is partial implementation of https://schema.org/Action.
640
+ *
641
+ * @see https://schema.org/Action
642
+ */
643
+ type Action = Thing & {
644
+ /**
645
+ * Indicates the current disposition of the Action.
646
+ *
647
+ * @see https://schema.org/actionStatus
648
+ */
649
+ actionStatus?: 'ActiveActionStatus' | 'CompletedActionStatu' | 'FailedActionStatus' | 'PotentialActionStatus' | undefined;
650
+ /**
651
+ * The service provider, service operator, or service performer; the goods producer. Another party (a seller) may offer those services or goods on behalf of the provider. A provider may also serve as the seller. Supersedes [carrier](https://schema.org/carrier).
652
+ *
653
+ * @see https://schema.org/provider
654
+ */
655
+ provider?: Project | undefined;
656
+ };
657
+ declare const parseAction: (data: unknown) => Action;
296
658
 
297
- declare const ActivityClientState_SENDING: typeof SENDING;
298
- declare const ActivityClientState_SEND_FAILED: typeof SEND_FAILED;
299
- declare const ActivityClientState_SENT: typeof SENT;
300
- declare namespace ActivityClientState {
301
- export { ActivityClientState_SENDING as SENDING, ActivityClientState_SEND_FAILED as SEND_FAILED, ActivityClientState_SENT as SENT };
302
- }
659
+ /**
660
+ * A word, name, acronym, phrase, etc. with a formal definition. Often used in the context of category or subject classification, glossaries or dictionaries, product or creative work types, etc. Use the name property for the term being defined, use termCode if the term has an alpha-numeric code allocated, use description to provide the definition of the term.
661
+ *
662
+ * This is partial implementation of https://schema.org/DefinedTerm.
663
+ *
664
+ * @see https://schema.org/DefinedTerm
665
+ */
666
+ type DefinedTerm = Thing & {
667
+ /**
668
+ * A [DefinedTermSet](https://schema.org/DefinedTermSet) that contains this term.
669
+ *
670
+ * @see https://schema.org/inDefinedTermSet
671
+ */
672
+ inDefinedTermSet?: string | undefined;
673
+ /**
674
+ * A code that identifies this [DefinedTerm](https://schema.org/DefinedTerm) within a [DefinedTermSet](https://schema.org/DefinedTermSet).
675
+ *
676
+ * @see https://schema.org/termCode
677
+ */
678
+ termCode?: string | undefined;
679
+ };
680
+ declare const parseDefinedTerm: (data: unknown) => DefinedTerm;
303
681
 
304
- declare const IDLE: 0;
305
- declare const WILL_START: 1;
306
- declare const STARTING: 2;
307
- declare const DICTATING: 3;
308
- declare const STOPPING: 4;
309
-
310
- declare const DictateState_DICTATING: typeof DICTATING;
311
- declare const DictateState_IDLE: typeof IDLE;
312
- declare const DictateState_STARTING: typeof STARTING;
313
- declare const DictateState_STOPPING: typeof STOPPING;
314
- declare const DictateState_WILL_START: typeof WILL_START;
315
- declare namespace DictateState {
316
- export { DictateState_DICTATING as DICTATING, DictateState_IDLE as IDLE, DictateState_STARTING as STARTING, DictateState_STOPPING as STOPPING, DictateState_WILL_START as WILL_START };
317
- }
682
+ /**
683
+ * The most generic kind of creative work, including books, movies, photographs, software programs, etc.
684
+ *
685
+ * This is partial implementation of https://schema.org/CreativeWork.
686
+ *
687
+ * @see https://schema.org/CreativeWork
688
+ */
689
+ type CreativeWork = Thing & {
690
+ /**
691
+ * An abstract is a short description that summarizes a [CreativeWork](https://schema.org/CreativeWork).
692
+ *
693
+ * @see https://schema.org/abstract
694
+ */
695
+ abstract?: string | undefined;
696
+ /**
697
+ * The author of this content or rating. Please note that author is special in that HTML 5 provides a special mechanism for indicating authorship via the rel tag. That is equivalent to this and may be used interchangeably.
698
+ *
699
+ * @see https://schema.org/author
700
+ */
701
+ author?: string | undefined;
702
+ /**
703
+ * A citation or reference to another creative work, such as another publication, web page, scholarly article, etc.
704
+ *
705
+ * @see https://schema.org/citation
706
+ */
707
+ citation?: readonly CreativeWork[] | undefined;
708
+ /**
709
+ * Keywords or tags used to describe some item. Multiple textual entries in a keywords list are typically delimited by commas, or by repeating the property.
710
+ *
711
+ * @see https://schema.org/keywords
712
+ */
713
+ keywords?: readonly (DefinedTerm | string)[] | undefined;
714
+ /**
715
+ * A pattern that something has, for example 'polka dot', 'striped', 'Canadian flag'. Values are typically expressed as text, although links to controlled value schemes are also supported.
716
+ *
717
+ * @see https://schema.org/pattern
718
+ */
719
+ pattern?: DefinedTerm | undefined;
720
+ /**
721
+ * The textual content of this CreativeWork.
722
+ *
723
+ * @see https://schema.org/text
724
+ */
725
+ text?: string | undefined;
726
+ /**
727
+ * The schema.org [usageInfo](https://schema.org/usageInfo) property indicates further information about a [CreativeWork](https://schema.org/CreativeWork). This property is applicable both to works that are freely available and to those that require payment or other transactions. It can reference additional information, e.g. community expectations on preferred linking and citation conventions, as well as purchasing details. For something that can be commercially licensed, usageInfo can provide detailed, resource-specific information about licensing options.
728
+ *
729
+ * This property can be used alongside the license property which indicates license(s) applicable to some piece of content. The usageInfo property can provide information about other licensing options, e.g. acquiring commercial usage rights for an image that is also available under non-commercial creative commons licenses.
730
+ */
731
+ usageInfo?: CreativeWork | undefined;
732
+ };
733
+ declare const parseCreativeWork: (data: unknown) => CreativeWork;
734
+
735
+ /**
736
+ * A [Claim](https://schema.org/Claim) in Schema.org represents a specific, factually-oriented claim that could be the [itemReviewed](https://schema.org/itemReviewed) in a [ClaimReview](https://schema.org/ClaimReview). The content of a claim can be summarized with the [text](https://schema.org/text) property. Variations on well known claims can have their common identity indicated via [sameAs](https://schema.org/sameAs) links, and summarized with a name. Ideally, a [Claim](https://schema.org/Claim) description includes enough contextual information to minimize the risk of ambiguity or inclarity. In practice, many claims are better understood in the context in which they appear or the interpretations provided by claim reviews.
737
+ *
738
+ * Beyond [ClaimReview](https://schema.org/ClaimReview), the Claim type can be associated with related creative works - for example a [ScholarlyArticle](https://schema.org/ScholarlyArticle) or [Question](https://schema.org/Question) might be about some [Claim](https://schema.org/Claim).
739
+ *
740
+ * This is partial implementation of https://schema.org/Claim.
741
+ *
742
+ * @see https://schema.org/Claim.
743
+ */
744
+ type Claim = CreativeWork & {
745
+ /**
746
+ * Indicates an occurrence of a [Claim](https://schema.org/Claim) in some [CreativeWork](https://schema.org/CreativeWork).
747
+ *
748
+ * @see https://schema.org/appearance.
749
+ */
750
+ appearance?: CreativeWork | undefined;
751
+ /**
752
+ * For a [Claim](https://schema.org/Claim) interpreted from [MediaObject](https://schema.org/MediaObject) content sed to indicate a claim contained, implied or refined from the content of a [MediaObject](https://schema.org/MediaObject).
753
+ *
754
+ * @see https://schema.org/claimInterpreter.
755
+ */
756
+ claimInterpreter?: Project | undefined;
757
+ /**
758
+ * The position of an item in a series or sequence of items.
759
+ *
760
+ * @see https://schema.org/position.
761
+ */
762
+ position?: number | string;
763
+ };
764
+ declare const parseClaim: (data: unknown) => Claim;
318
765
 
319
766
  /**
320
- * Gets the livestreaming metadata of the activity, or `undefined` if the activity is not participating in a livestreaming session.
321
- *
322
- * - `sessionId` - ID of the livestreaming session
323
- * - `sequenceNumber` - sequence number of the activity
324
- * - `type`
325
- * - `"contentless"` - ongoing but no content, should show indicator
326
- * - `"interim activity"` - current response, could be partial-from-start, or complete response.
327
- * More activities are expected. Future interim activities always replace past interim activities, enable erasing or backtracking response.
328
- * - `"informative message"` - optional side-channel informative message describing the current response, e.g. "Searching your document library".
329
- * Always replace past informative messages. May interleave with interim activities.
330
- * - `"final activity"` - complete-and-final response, always replace past interim activities and remove all informative messages.
331
- * This activity indicates end of the session, all future activities must be ignored.
332
- * - `undefined` - not part of a livestream session or the activity is not valid
333
- *
334
- * @returns {object} Livestreaming metadata of the activity, or `undefined` if the activity is not participating in a livestreaming session.
767
+ * An action performed by a direct agent and indirect participants upon a direct object. Optionally happens at a location with the help of an inanimate instrument. The execution of the action may produce a result. Specific action sub-type documentation specifies the exact expectation of each argument/role.
768
+ *
769
+ * See also [blog post](http://blog.schema.org/2014/04/announcing-schemaorg-actions.html) and [Actions overview document](https://schema.org/docs/actions.html).
770
+ *
771
+ * This is partial implementation of https://schema.org/Action.
772
+ *
773
+ * @see https://schema.org/Action
335
774
  */
336
- declare function getActivityLivestreamingMetadata(activity: WebChatActivity): Readonly<{
337
- sessionId: string;
338
- sequenceNumber: number;
339
- type: 'contentless' | 'final activity' | 'informative message' | 'interim activity';
340
- }> | undefined;
775
+ type VoteAction = Action & {
776
+ /**
777
+ * A sub property of object. The options subject to this action. Supersedes [option](https://schema.org/option).
778
+ *
779
+ * @see https://schema.org/VoteAction
780
+ */
781
+ actionOption?: string | undefined;
782
+ };
783
+ declare const parseVoteAction: (data: unknown) => VoteAction;
784
+
785
+ declare function getOrgSchemaMessage(graph: readonly WebChatActivity['entities'][0][]): CreativeWork | undefined;
341
786
 
342
- type EntityType = NonNullable<WebChatActivity['entities']>[number];
343
- declare function getOrgSchemaMessage(graph: readonly EntityType[]): CreativeWorkOutput | undefined;
787
+ declare function isForbiddenPropertyName(propertyName: string): boolean;
344
788
 
345
789
  declare function onErrorResumeNext<T>(fn: () => T): T | undefined;
346
790
  declare function onErrorResumeNext<T, U = T>(fn: () => T, defaultValue: U): T | U;
347
791
 
348
- declare const getVoiceActivityRole: (activity: WebChatActivity) => "bot" | "user" | undefined;
349
-
350
- declare const getVoiceActivityText: (activity: WebChatActivity) => string | undefined;
351
-
352
- declare const VoiceActivitySchema: valibot.ObjectSchema<{
353
- readonly name: valibot.StringSchema<undefined>;
354
- readonly type: valibot.LiteralSchema<"event", undefined>;
355
- readonly value: valibot.LooseObjectSchema<{}, undefined>;
356
- readonly valueType: valibot.SchemaWithPipe<readonly [valibot.StringSchema<undefined>, valibot.CheckAction<string, undefined>]>;
357
- }, undefined>;
358
- declare const isVoiceActivity: (activity: WebChatActivity) => activity is WebChatActivity & InferOutput<typeof VoiceActivitySchema>;
359
-
360
- declare const VoiceTranscriptActivitySchema: valibot.ObjectSchema<{
361
- readonly name: valibot.LiteralSchema<"media.end", undefined>;
362
- readonly type: valibot.LiteralSchema<"event", undefined>;
363
- readonly value: valibot.ObjectSchema<{
364
- readonly origin: valibot.PicklistSchema<["agent", "user"], undefined>;
365
- readonly transcription: valibot.StringSchema<undefined>;
366
- }, undefined>;
367
- readonly valueType: valibot.SchemaWithPipe<readonly [valibot.StringSchema<undefined>, valibot.CheckAction<string, undefined>]>;
368
- }, undefined>;
369
- declare const isVoiceTranscriptActivity: (activity: WebChatActivity) => activity is WebChatActivity & InferOutput<typeof VoiceTranscriptActivitySchema>;
370
-
371
- declare const CLEAR_SUGGESTED_ACTIONS: "WEB_CHAT/CLEAR_SUGGESTED_ACTIONS";
372
- declare const clearSuggestedActionsActionSchema: valibot.SchemaWithPipe<readonly [valibot.ObjectSchema<{
373
- readonly type: valibot.LiteralSchema<"WEB_CHAT/CLEAR_SUGGESTED_ACTIONS", undefined>;
374
- }, undefined>, valibot.ReadonlyAction<{
375
- type: "WEB_CHAT/CLEAR_SUGGESTED_ACTIONS";
376
- }>]>;
377
- type ClearSuggestedActionsAction = InferOutput<typeof clearSuggestedActionsActionSchema>;
378
- declare function clearSuggestedActions(): ClearSuggestedActionsAction;
379
-
380
- declare const SET_SUGGESTED_ACTIONS: "WEB_CHAT/SET_SUGGESTED_ACTIONS";
381
- declare const setSuggestedActionsActionSchema: valibot.SchemaWithPipe<readonly [valibot.ObjectSchema<{
382
- readonly payload: valibot.SchemaWithPipe<readonly [valibot.ObjectSchema<{
383
- readonly originActivity: valibot.OptionalSchema<valibot.CustomSchema<WebChatActivity, undefined>, undefined>;
384
- readonly suggestedActions: valibot.SchemaWithPipe<readonly [valibot.ArraySchema<valibot.CustomSchema<DirectLineCardAction, undefined>, undefined>, valibot.ReadonlyAction<DirectLineCardAction[]>]>;
385
- }, undefined>, valibot.ReadonlyAction<{
386
- originActivity?: WebChatActivity;
387
- readonly suggestedActions: readonly DirectLineCardAction[];
388
- }>]>;
389
- readonly type: valibot.LiteralSchema<"WEB_CHAT/SET_SUGGESTED_ACTIONS", undefined>;
390
- }, undefined>, valibot.ReadonlyAction<{
391
- readonly payload: Readonly<{
392
- originActivity?: WebChatActivity;
393
- readonly suggestedActions: readonly DirectLineCardAction[];
394
- }>;
395
- type: "WEB_CHAT/SET_SUGGESTED_ACTIONS";
396
- }>]>;
397
- type SetSuggestedActionsAction = InferOutput<typeof setSuggestedActionsActionSchema>;
398
- declare function setSuggestedActions(suggestedActions?: readonly DirectLineCardAction[], originActivity?: undefined | WebChatActivity): SetSuggestedActionsAction;
399
-
400
- type DirectLineActivity = Exclude<any, [] | boolean | ((...args: unknown[]) => unknown) | number | string>;
792
+ declare function singleToArray<T>(singleOrArray: T | T[]): T[];
793
+
794
+ declare function warnOnce(message: string): () => void;
795
+
796
+ type DirectLineActivity = Exclude<any, [] | boolean | Function | number | string>;
401
797
 
402
798
  type DirectLineMediaCardEssence = {
403
799
  aspect?: '4:3' | '16:9';
@@ -520,7 +916,7 @@ declare class Subscription {
520
916
  */
521
917
  declare class Observer<T> {
522
918
  /** Receives the subscription object when `subscribe` is called */
523
- start(subscription: Subscription): void;
919
+ start(subscription: Subscription): any;
524
920
  /** Receives the next value in the sequence */
525
921
  next: NextFunction<T>;
526
922
  /** Receives the sequence error */
@@ -541,16 +937,15 @@ declare class SubscriptionObserver<T> {
541
937
  }
542
938
 
543
939
  declare const Constants: {
544
- ActivityClientState: typeof ActivityClientState;
545
- DictateState: typeof DictateState;
546
- };
547
-
548
- declare const buildInfoObject: {
549
- readonly buildTool?: string | undefined;
550
- readonly moduleFormat?: string | undefined;
551
- readonly version?: string | undefined;
940
+ ActivityClientState: any;
941
+ DictateState: any;
552
942
  };
943
+ declare const moduleFormat: string;
553
944
  declare const version: string;
945
+ declare const buildInfo: {
946
+ buildTool: string;
947
+ moduleFormat: string;
948
+ version: string;
949
+ };
554
950
 
555
- export { CLEAR_SUGGESTED_ACTIONS, Constants, DirectLineCardAction, Observable, SET_SUGGESTED_ACTIONS, WebChatActivity, buildInfoObject as buildInfo, clearSuggestedActions, clearSuggestedActionsActionSchema, connect, disconnect, dismissNotification, emitTypingIndicator, getActivityLivestreamingMetadata, getOrgSchemaMessage, getVoiceActivityRole, getVoiceActivityText, isVoiceActivity, isVoiceTranscriptActivity, markActivity, muteVoiceRecording, onErrorResumeNext, postActivity, postVoiceActivity, registerVoiceHandler, sendEvent, sendFiles, sendMessage, sendMessageback as sendMessageBack, sendPostback as sendPostBack, setDictateInterims, setDictateState, setLanguage, setNotification, setSendBox, setSendBoxAttachments, setSendTimeout, setSendTypingIndicator, setSuggestedActions, setSuggestedActionsActionSchema, setVoiceState, startDictate, startSpeakingActivity, startVoiceRecording, stopDictate, stopSpeakingActivity, stopVoiceRecording, submitSendBox, unmuteVoiceRecording, unregisterVoiceHandler, version };
556
- export type { ClearSuggestedActionsAction, DirectLineActivity, DirectLineAnimationCard, DirectLineAudioCard, DirectLineHeroCard, DirectLineJSBotConnection, DirectLineOAuthCard, DirectLineReceiptCard, DirectLineSignInCard, DirectLineThumbnailCard, DirectLineVideoCard, SendBoxAttachment, SetSuggestedActionsAction, VoiceHandler, VoiceState };
951
+ export { Constants, type DirectLineActivity, type DirectLineAnimationCard, type DirectLineAttachment, type DirectLineAudioCard, type DirectLineCardAction, type DirectLineHeroCard, type DirectLineJSBotConnection, type DirectLineOAuthCard, type DirectLineReceiptCard, type DirectLineSignInCard, type DirectLineSuggestedAction, type DirectLineThumbnailCard, type DirectLineVideoCard, type GlobalScopePonyfill, Observable, type OneOrMany, type Action as OrgSchemaAction, type Claim as OrgSchemaClaim, type CreativeWork as OrgSchemaCreativeWork, type DefinedTerm as OrgSchemaDefinedTerm, type Project as OrgSchemaProject, type Thing as OrgSchemaThing, type SendBoxAttachment, type WebChatActivity, buildInfo, clearSuggestedActions, connect, createStore, withDevTools as createStoreWithDevTools, withOptions as createStoreWithOptions, disconnect, dismissNotification, emitTypingIndicator, getOrgSchemaMessage, isForbiddenPropertyName, markActivity, moduleFormat, onErrorResumeNext, parseAction, parseClaim, parseCreativeWork, parseDefinedTerm, parseProject, parseThing, parseVoteAction, postActivity, sendEvent, sendFiles, sendMessage, sendMessageback as sendMessageBack, sendPostback as sendPostBack, setDictateInterims, setDictateState, setLanguage, setNotification, setSendBox, setSendBoxAttachments, setSendTimeout, setSendTypingIndicator, singleToArray, startDictate, startSpeakingActivity, stopDictate, stopSpeakingActivity, submitSendBox, version, warnOnce };