mavenagi 1.0.15 → 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Client.d.ts +3 -4
- package/Client.js +51 -12
- package/README.md +14 -1
- package/api/resources/actions/client/Client.d.ts +9 -4
- package/api/resources/actions/client/Client.js +68 -39
- package/api/resources/agents/client/Client.d.ts +9 -4
- package/api/resources/agents/client/Client.js +76 -44
- package/api/resources/analytics/client/Client.d.ts +9 -4
- package/api/resources/analytics/client/Client.js +76 -40
- package/api/resources/analytics/types/ConversationTableResponse.d.ts +3 -3
- package/api/resources/appSettings/client/Client.d.ts +9 -4
- package/api/resources/appSettings/client/Client.js +76 -44
- package/api/resources/appSettings/client/index.d.ts +1 -0
- package/api/resources/commons/errors/BadRequestError.d.ts +2 -1
- package/api/resources/commons/errors/BadRequestError.js +2 -1
- package/api/resources/commons/errors/NotFoundError.d.ts +2 -1
- package/api/resources/commons/errors/NotFoundError.js +2 -1
- package/api/resources/commons/errors/ServerError.d.ts +2 -1
- package/api/resources/commons/errors/ServerError.js +2 -1
- package/api/resources/commons/types/AppUserRequest.d.ts +2 -2
- package/api/resources/commons/types/AppUserResponse.d.ts +2 -2
- package/api/resources/commons/types/ConversationResponse.d.ts +2 -1
- package/api/resources/commons/types/InboxItemFixType.d.ts +14 -0
- package/{dist/api/resources/realtime/types/AudioFormat.js → api/resources/commons/types/InboxItemFixType.js} +4 -4
- package/api/resources/commons/types/UserMessageAttachment.d.ts +16 -0
- package/api/resources/commons/types/index.d.ts +1 -0
- package/api/resources/commons/types/index.js +1 -0
- package/api/resources/conversation/client/Client.d.ts +43 -58
- package/api/resources/conversation/client/Client.js +342 -281
- package/api/resources/conversation/client/index.d.ts +1 -0
- package/api/resources/conversation/types/Attachment.d.ts +18 -1
- package/api/resources/conversation/types/ConversationMessageRequest.d.ts +2 -0
- package/api/resources/conversation/types/index.d.ts +0 -1
- package/api/resources/conversation/types/index.js +0 -1
- package/api/resources/events/client/Client.d.ts +5 -2
- package/api/resources/events/client/Client.js +26 -16
- package/api/resources/inbox/client/Client.d.ts +21 -10
- package/api/resources/inbox/client/Client.js +126 -67
- package/api/resources/inbox/client/index.d.ts +1 -0
- package/api/resources/inbox/client/requests/InboxItemFixRequest.d.ts +7 -1
- package/api/resources/inbox/client/requests/InboxItemIgnoreRequest.d.ts +7 -1
- package/api/resources/inbox/client/requests/InboxItemRequest.d.ts +7 -1
- package/api/resources/inbox/types/ApplyInboxItemFixRequest.d.ts +2 -0
- package/api/resources/inbox/types/InboxSearchRequest.d.ts +4 -0
- package/api/resources/index.d.ts +0 -2
- package/api/resources/index.js +1 -3
- package/api/resources/knowledge/client/Client.d.ts +17 -8
- package/api/resources/knowledge/client/Client.js +168 -87
- package/api/resources/organizations/client/Client.d.ts +7 -3
- package/api/resources/organizations/client/Client.js +51 -28
- package/api/resources/translations/client/Client.d.ts +5 -2
- package/api/resources/translations/client/Client.js +26 -16
- package/api/resources/triggers/client/Client.d.ts +13 -6
- package/api/resources/triggers/client/Client.js +118 -63
- package/api/resources/triggers/client/index.d.ts +1 -0
- package/api/resources/users/client/Client.d.ts +11 -6
- package/api/resources/users/client/Client.js +72 -43
- package/api/resources/users/client/index.d.ts +1 -0
- package/core/auth/BasicAuth.js +3 -3
- package/core/base64.d.ts +2 -0
- package/core/base64.js +26 -0
- package/core/fetcher/APIResponse.d.ts +10 -0
- package/core/fetcher/BinaryResponse.d.ts +20 -0
- package/core/fetcher/BinaryResponse.js +17 -0
- package/core/fetcher/Fetcher.d.ts +3 -2
- package/core/fetcher/Fetcher.js +32 -12
- package/core/fetcher/Headers.d.ts +2 -0
- package/core/fetcher/Headers.js +84 -0
- package/core/fetcher/HttpResponsePromise.d.ts +58 -0
- package/core/fetcher/HttpResponsePromise.js +103 -0
- package/core/fetcher/RawResponse.d.ts +29 -0
- package/core/fetcher/RawResponse.js +44 -0
- package/core/fetcher/ResponseWithBody.d.ts +4 -0
- package/core/fetcher/ResponseWithBody.js +6 -0
- package/core/fetcher/createRequestUrl.d.ts +1 -1
- package/core/fetcher/createRequestUrl.js +3 -7
- package/core/fetcher/getErrorResponseBody.d.ts +1 -0
- package/core/fetcher/getErrorResponseBody.js +44 -0
- package/core/fetcher/getFetchFn.d.ts +1 -4
- package/core/fetcher/getFetchFn.js +1 -52
- package/core/fetcher/getResponseBody.js +34 -33
- package/core/fetcher/index.d.ts +4 -0
- package/core/fetcher/index.js +7 -1
- package/core/headers.d.ts +3 -0
- package/core/headers.js +29 -0
- package/core/index.d.ts +3 -2
- package/core/index.js +4 -3
- package/core/runtime/runtime.js +0 -1
- package/core/{streaming-fetcher → stream}/Stream.d.ts +1 -2
- package/core/url/index.d.ts +2 -0
- package/core/url/index.js +7 -0
- package/core/url/join.d.ts +1 -0
- package/core/url/join.js +49 -0
- package/core/url/qs.d.ts +6 -0
- package/core/url/qs.js +64 -0
- package/dist/Client.d.ts +3 -4
- package/dist/Client.js +51 -12
- package/dist/api/resources/actions/client/Client.d.ts +9 -4
- package/dist/api/resources/actions/client/Client.js +68 -39
- package/dist/api/resources/agents/client/Client.d.ts +9 -4
- package/dist/api/resources/agents/client/Client.js +76 -44
- package/dist/api/resources/analytics/client/Client.d.ts +9 -4
- package/dist/api/resources/analytics/client/Client.js +76 -40
- package/dist/api/resources/analytics/types/ConversationTableResponse.d.ts +3 -3
- package/dist/api/resources/appSettings/client/Client.d.ts +9 -4
- package/dist/api/resources/appSettings/client/Client.js +76 -44
- package/dist/api/resources/appSettings/client/index.d.ts +1 -0
- package/dist/api/resources/commons/errors/BadRequestError.d.ts +2 -1
- package/dist/api/resources/commons/errors/BadRequestError.js +2 -1
- package/dist/api/resources/commons/errors/NotFoundError.d.ts +2 -1
- package/dist/api/resources/commons/errors/NotFoundError.js +2 -1
- package/dist/api/resources/commons/errors/ServerError.d.ts +2 -1
- package/dist/api/resources/commons/errors/ServerError.js +2 -1
- package/dist/api/resources/commons/types/AppUserRequest.d.ts +2 -2
- package/dist/api/resources/commons/types/AppUserResponse.d.ts +2 -2
- package/dist/api/resources/commons/types/ConversationResponse.d.ts +2 -1
- package/dist/api/resources/commons/types/InboxItemFixType.d.ts +14 -0
- package/{api/resources/realtime/types/AudioFormat.js → dist/api/resources/commons/types/InboxItemFixType.js} +4 -4
- package/dist/api/resources/commons/types/UserMessageAttachment.d.ts +16 -0
- package/dist/api/resources/commons/types/index.d.ts +1 -0
- package/dist/api/resources/commons/types/index.js +1 -0
- package/dist/api/resources/conversation/client/Client.d.ts +43 -58
- package/dist/api/resources/conversation/client/Client.js +342 -281
- package/dist/api/resources/conversation/client/index.d.ts +1 -0
- package/dist/api/resources/conversation/types/Attachment.d.ts +18 -1
- package/dist/api/resources/conversation/types/ConversationMessageRequest.d.ts +2 -0
- package/dist/api/resources/conversation/types/index.d.ts +0 -1
- package/dist/api/resources/conversation/types/index.js +0 -1
- package/dist/api/resources/events/client/Client.d.ts +5 -2
- package/dist/api/resources/events/client/Client.js +26 -16
- package/dist/api/resources/inbox/client/Client.d.ts +21 -10
- package/dist/api/resources/inbox/client/Client.js +126 -67
- package/dist/api/resources/inbox/client/index.d.ts +1 -0
- package/dist/api/resources/inbox/client/requests/InboxItemFixRequest.d.ts +7 -1
- package/dist/api/resources/inbox/client/requests/InboxItemIgnoreRequest.d.ts +7 -1
- package/dist/api/resources/inbox/client/requests/InboxItemRequest.d.ts +7 -1
- package/dist/api/resources/inbox/types/ApplyInboxItemFixRequest.d.ts +2 -0
- package/dist/api/resources/inbox/types/InboxSearchRequest.d.ts +4 -0
- package/dist/api/resources/index.d.ts +0 -2
- package/dist/api/resources/index.js +1 -3
- package/dist/api/resources/knowledge/client/Client.d.ts +17 -8
- package/dist/api/resources/knowledge/client/Client.js +168 -87
- package/dist/api/resources/organizations/client/Client.d.ts +7 -3
- package/dist/api/resources/organizations/client/Client.js +51 -28
- package/dist/api/resources/translations/client/Client.d.ts +5 -2
- package/dist/api/resources/translations/client/Client.js +26 -16
- package/dist/api/resources/triggers/client/Client.d.ts +13 -6
- package/dist/api/resources/triggers/client/Client.js +118 -63
- package/dist/api/resources/triggers/client/index.d.ts +1 -0
- package/dist/api/resources/users/client/Client.d.ts +11 -6
- package/dist/api/resources/users/client/Client.js +72 -43
- package/dist/api/resources/users/client/index.d.ts +1 -0
- package/dist/core/auth/BasicAuth.js +3 -3
- package/dist/core/base64.d.ts +2 -0
- package/dist/core/base64.js +26 -0
- package/dist/core/fetcher/APIResponse.d.ts +10 -0
- package/dist/core/fetcher/BinaryResponse.d.ts +20 -0
- package/dist/core/fetcher/BinaryResponse.js +17 -0
- package/dist/core/fetcher/Fetcher.d.ts +3 -2
- package/dist/core/fetcher/Fetcher.js +32 -12
- package/dist/core/fetcher/Headers.d.ts +2 -0
- package/dist/core/fetcher/Headers.js +84 -0
- package/dist/core/fetcher/HttpResponsePromise.d.ts +58 -0
- package/dist/core/fetcher/HttpResponsePromise.js +103 -0
- package/dist/core/fetcher/RawResponse.d.ts +29 -0
- package/dist/core/fetcher/RawResponse.js +44 -0
- package/dist/core/fetcher/ResponseWithBody.d.ts +4 -0
- package/dist/core/fetcher/ResponseWithBody.js +6 -0
- package/dist/core/fetcher/createRequestUrl.d.ts +1 -1
- package/dist/core/fetcher/createRequestUrl.js +3 -7
- package/dist/core/fetcher/getErrorResponseBody.d.ts +1 -0
- package/dist/core/fetcher/getErrorResponseBody.js +44 -0
- package/dist/core/fetcher/getFetchFn.d.ts +1 -4
- package/dist/core/fetcher/getFetchFn.js +1 -52
- package/dist/core/fetcher/getResponseBody.js +34 -33
- package/dist/core/fetcher/index.d.ts +4 -0
- package/dist/core/fetcher/index.js +7 -1
- package/dist/core/headers.d.ts +3 -0
- package/dist/core/headers.js +29 -0
- package/dist/core/index.d.ts +3 -2
- package/dist/core/index.js +4 -3
- package/dist/core/runtime/runtime.js +0 -1
- package/dist/core/{streaming-fetcher → stream}/Stream.d.ts +1 -2
- package/dist/core/url/index.d.ts +2 -0
- package/dist/core/url/index.js +7 -0
- package/dist/core/url/join.d.ts +1 -0
- package/dist/core/url/join.js +49 -0
- package/dist/core/url/qs.d.ts +6 -0
- package/dist/core/url/qs.js +64 -0
- package/dist/errors/MavenAGIError.d.ts +4 -1
- package/dist/errors/MavenAGIError.js +4 -7
- package/dist/index.d.ts +2 -2
- package/dist/index.js +5 -5
- package/dist/serialization/resources/commons/types/InboxItemFixType.d.ts +10 -0
- package/{serialization/resources/realtime/types/AudioFormat.js → dist/serialization/resources/commons/types/InboxItemFixType.js} +2 -2
- package/dist/serialization/resources/commons/types/UserMessageAttachment.d.ts +2 -0
- package/dist/serialization/resources/commons/types/UserMessageAttachment.js +2 -0
- package/dist/serialization/resources/commons/types/index.d.ts +1 -0
- package/dist/serialization/resources/commons/types/index.js +1 -0
- package/dist/serialization/resources/conversation/types/Attachment.d.ts +1 -0
- package/dist/serialization/resources/conversation/types/Attachment.js +1 -0
- package/dist/serialization/resources/conversation/types/ConversationMessageRequest.d.ts +2 -0
- package/dist/serialization/resources/conversation/types/ConversationMessageRequest.js +2 -0
- package/dist/serialization/resources/conversation/types/index.d.ts +0 -1
- package/dist/serialization/resources/conversation/types/index.js +0 -1
- package/dist/serialization/resources/inbox/types/ApplyInboxItemFixRequest.d.ts +2 -0
- package/dist/serialization/resources/inbox/types/ApplyInboxItemFixRequest.js +2 -0
- package/dist/serialization/resources/inbox/types/InboxSearchRequest.d.ts +2 -0
- package/dist/serialization/resources/inbox/types/InboxSearchRequest.js +2 -0
- package/dist/serialization/resources/index.d.ts +0 -2
- package/dist/serialization/resources/index.js +1 -3
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/errors/MavenAGIError.d.ts +4 -1
- package/errors/MavenAGIError.js +4 -7
- package/index.d.ts +2 -2
- package/index.js +5 -5
- package/jest.config.mjs +6 -1
- package/package.json +13 -21
- package/reference.md +16 -98
- package/scripts/rename-to-esm-files.js +10 -2
- package/serialization/resources/commons/types/InboxItemFixType.d.ts +10 -0
- package/{dist/serialization/resources/realtime/types/AudioFormat.js → serialization/resources/commons/types/InboxItemFixType.js} +2 -2
- package/serialization/resources/commons/types/UserMessageAttachment.d.ts +2 -0
- package/serialization/resources/commons/types/UserMessageAttachment.js +2 -0
- package/serialization/resources/commons/types/index.d.ts +1 -0
- package/serialization/resources/commons/types/index.js +1 -0
- package/serialization/resources/conversation/types/Attachment.d.ts +1 -0
- package/serialization/resources/conversation/types/Attachment.js +1 -0
- package/serialization/resources/conversation/types/ConversationMessageRequest.d.ts +2 -0
- package/serialization/resources/conversation/types/ConversationMessageRequest.js +2 -0
- package/serialization/resources/conversation/types/index.d.ts +0 -1
- package/serialization/resources/conversation/types/index.js +0 -1
- package/serialization/resources/inbox/types/ApplyInboxItemFixRequest.d.ts +2 -0
- package/serialization/resources/inbox/types/ApplyInboxItemFixRequest.js +2 -0
- package/serialization/resources/inbox/types/InboxSearchRequest.d.ts +2 -0
- package/serialization/resources/inbox/types/InboxSearchRequest.js +2 -0
- package/serialization/resources/index.d.ts +0 -2
- package/serialization/resources/index.js +1 -3
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/api/resources/conversation/types/GenerateObjectRequest.d.ts +0 -8
- package/api/resources/conversation/types/GenerateObjectRequest.js +0 -5
- package/api/resources/realtime/client/Client.d.ts +0 -36
- package/api/resources/realtime/client/Client.js +0 -90
- package/api/resources/realtime/client/Socket.d.ts +0 -41
- package/api/resources/realtime/client/Socket.js +0 -155
- package/api/resources/realtime/client/index.d.ts +0 -1
- package/api/resources/realtime/client/index.js +0 -2
- package/api/resources/realtime/index.d.ts +0 -2
- package/api/resources/realtime/index.js +0 -18
- package/api/resources/realtime/types/AudioFormat.d.ts +0 -8
- package/api/resources/realtime/types/AudioPublishEvent.d.ts +0 -6
- package/api/resources/realtime/types/AudioPublishEvent.js +0 -5
- package/api/resources/realtime/types/AudioSubscribeEvent.d.ts +0 -6
- package/api/resources/realtime/types/AudioSubscribeEvent.js +0 -5
- package/api/resources/realtime/types/ControlEvent.d.ts +0 -9
- package/api/resources/realtime/types/ControlEvent.js +0 -5
- package/api/resources/realtime/types/HangUpPublishEvent.d.ts +0 -6
- package/api/resources/realtime/types/HangUpPublishEvent.js +0 -5
- package/api/resources/realtime/types/MessageBase.d.ts +0 -6
- package/api/resources/realtime/types/MessageBase.js +0 -5
- package/api/resources/realtime/types/PublishEvent.d.ts +0 -16
- package/api/resources/realtime/types/PublishEvent.js +0 -5
- package/api/resources/realtime/types/SubscribeEvent.d.ts +0 -25
- package/api/resources/realtime/types/SubscribeEvent.js +0 -5
- package/api/resources/realtime/types/index.d.ts +0 -8
- package/api/resources/realtime/types/index.js +0 -24
- package/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.d.ts +0 -30
- package/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.js +0 -247
- package/core/fetcher/stream-wrappers/NodePre18StreamWrapper.d.ts +0 -21
- package/core/fetcher/stream-wrappers/NodePre18StreamWrapper.js +0 -126
- package/core/fetcher/stream-wrappers/UndiciStreamWrapper.d.ts +0 -31
- package/core/fetcher/stream-wrappers/UndiciStreamWrapper.js +0 -229
- package/core/fetcher/stream-wrappers/chooseStreamWrapper.d.ts +0 -18
- package/core/fetcher/stream-wrappers/chooseStreamWrapper.js +0 -59
- package/core/websocket/events.d.ts +0 -36
- package/core/websocket/events.js +0 -27
- package/core/websocket/index.d.ts +0 -1
- package/core/websocket/index.js +0 -17
- package/core/websocket/ws.d.ts +0 -137
- package/core/websocket/ws.js +0 -452
- package/dist/api/resources/conversation/types/GenerateObjectRequest.d.ts +0 -8
- package/dist/api/resources/conversation/types/GenerateObjectRequest.js +0 -5
- package/dist/api/resources/realtime/client/Client.d.ts +0 -36
- package/dist/api/resources/realtime/client/Client.js +0 -90
- package/dist/api/resources/realtime/client/Socket.d.ts +0 -41
- package/dist/api/resources/realtime/client/Socket.js +0 -155
- package/dist/api/resources/realtime/client/index.d.ts +0 -1
- package/dist/api/resources/realtime/client/index.js +0 -2
- package/dist/api/resources/realtime/index.d.ts +0 -2
- package/dist/api/resources/realtime/index.js +0 -18
- package/dist/api/resources/realtime/types/AudioFormat.d.ts +0 -8
- package/dist/api/resources/realtime/types/AudioPublishEvent.d.ts +0 -6
- package/dist/api/resources/realtime/types/AudioPublishEvent.js +0 -5
- package/dist/api/resources/realtime/types/AudioSubscribeEvent.d.ts +0 -6
- package/dist/api/resources/realtime/types/AudioSubscribeEvent.js +0 -5
- package/dist/api/resources/realtime/types/ControlEvent.d.ts +0 -9
- package/dist/api/resources/realtime/types/ControlEvent.js +0 -5
- package/dist/api/resources/realtime/types/HangUpPublishEvent.d.ts +0 -6
- package/dist/api/resources/realtime/types/HangUpPublishEvent.js +0 -5
- package/dist/api/resources/realtime/types/MessageBase.d.ts +0 -6
- package/dist/api/resources/realtime/types/MessageBase.js +0 -5
- package/dist/api/resources/realtime/types/PublishEvent.d.ts +0 -16
- package/dist/api/resources/realtime/types/PublishEvent.js +0 -5
- package/dist/api/resources/realtime/types/SubscribeEvent.d.ts +0 -25
- package/dist/api/resources/realtime/types/SubscribeEvent.js +0 -5
- package/dist/api/resources/realtime/types/index.d.ts +0 -8
- package/dist/api/resources/realtime/types/index.js +0 -24
- package/dist/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.d.ts +0 -30
- package/dist/core/fetcher/stream-wrappers/Node18UniversalStreamWrapper.js +0 -247
- package/dist/core/fetcher/stream-wrappers/NodePre18StreamWrapper.d.ts +0 -21
- package/dist/core/fetcher/stream-wrappers/NodePre18StreamWrapper.js +0 -126
- package/dist/core/fetcher/stream-wrappers/UndiciStreamWrapper.d.ts +0 -31
- package/dist/core/fetcher/stream-wrappers/UndiciStreamWrapper.js +0 -229
- package/dist/core/fetcher/stream-wrappers/chooseStreamWrapper.d.ts +0 -18
- package/dist/core/fetcher/stream-wrappers/chooseStreamWrapper.js +0 -59
- package/dist/core/websocket/events.d.ts +0 -36
- package/dist/core/websocket/events.js +0 -27
- package/dist/core/websocket/index.d.ts +0 -1
- package/dist/core/websocket/index.js +0 -17
- package/dist/core/websocket/ws.d.ts +0 -137
- package/dist/core/websocket/ws.js +0 -452
- package/dist/serialization/resources/conversation/types/GenerateObjectRequest.d.ts +0 -13
- package/dist/serialization/resources/conversation/types/GenerateObjectRequest.js +0 -46
- package/dist/serialization/resources/realtime/index.d.ts +0 -1
- package/dist/serialization/resources/realtime/index.js +0 -17
- package/dist/serialization/resources/realtime/types/AudioFormat.d.ts +0 -10
- package/dist/serialization/resources/realtime/types/AudioPublishEvent.d.ts +0 -12
- package/dist/serialization/resources/realtime/types/AudioPublishEvent.js +0 -43
- package/dist/serialization/resources/realtime/types/AudioSubscribeEvent.d.ts +0 -12
- package/dist/serialization/resources/realtime/types/AudioSubscribeEvent.js +0 -43
- package/dist/serialization/resources/realtime/types/ControlEvent.d.ts +0 -15
- package/dist/serialization/resources/realtime/types/ControlEvent.js +0 -48
- package/dist/serialization/resources/realtime/types/HangUpPublishEvent.d.ts +0 -12
- package/dist/serialization/resources/realtime/types/HangUpPublishEvent.js +0 -43
- package/dist/serialization/resources/realtime/types/MessageBase.d.ts +0 -12
- package/dist/serialization/resources/realtime/types/MessageBase.js +0 -43
- package/dist/serialization/resources/realtime/types/PublishEvent.d.ts +0 -18
- package/dist/serialization/resources/realtime/types/PublishEvent.js +0 -51
- package/dist/serialization/resources/realtime/types/SubscribeEvent.d.ts +0 -27
- package/dist/serialization/resources/realtime/types/SubscribeEvent.js +0 -54
- package/dist/serialization/resources/realtime/types/index.d.ts +0 -8
- package/dist/serialization/resources/realtime/types/index.js +0 -24
- package/serialization/resources/conversation/types/GenerateObjectRequest.d.ts +0 -13
- package/serialization/resources/conversation/types/GenerateObjectRequest.js +0 -46
- package/serialization/resources/realtime/index.d.ts +0 -1
- package/serialization/resources/realtime/index.js +0 -17
- package/serialization/resources/realtime/types/AudioFormat.d.ts +0 -10
- package/serialization/resources/realtime/types/AudioPublishEvent.d.ts +0 -12
- package/serialization/resources/realtime/types/AudioPublishEvent.js +0 -43
- package/serialization/resources/realtime/types/AudioSubscribeEvent.d.ts +0 -12
- package/serialization/resources/realtime/types/AudioSubscribeEvent.js +0 -43
- package/serialization/resources/realtime/types/ControlEvent.d.ts +0 -15
- package/serialization/resources/realtime/types/ControlEvent.js +0 -48
- package/serialization/resources/realtime/types/HangUpPublishEvent.d.ts +0 -12
- package/serialization/resources/realtime/types/HangUpPublishEvent.js +0 -43
- package/serialization/resources/realtime/types/MessageBase.d.ts +0 -12
- package/serialization/resources/realtime/types/MessageBase.js +0 -43
- package/serialization/resources/realtime/types/PublishEvent.d.ts +0 -18
- package/serialization/resources/realtime/types/PublishEvent.js +0 -51
- package/serialization/resources/realtime/types/SubscribeEvent.d.ts +0 -27
- package/serialization/resources/realtime/types/SubscribeEvent.js +0 -54
- package/serialization/resources/realtime/types/index.d.ts +0 -8
- package/serialization/resources/realtime/types/index.js +0 -24
- /package/core/{streaming-fetcher → stream}/Stream.js +0 -0
- /package/core/{streaming-fetcher → stream}/index.d.ts +0 -0
- /package/core/{streaming-fetcher → stream}/index.js +0 -0
- /package/dist/core/{streaming-fetcher → stream}/Stream.js +0 -0
- /package/dist/core/{streaming-fetcher → stream}/index.d.ts +0 -0
- /package/dist/core/{streaming-fetcher → stream}/index.js +0 -0
|
@@ -1,126 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
-
});
|
|
10
|
-
};
|
|
11
|
-
var __asyncValues = (this && this.__asyncValues) || function (o) {
|
|
12
|
-
if (!Symbol.asyncIterator) throw new TypeError("Symbol.asyncIterator is not defined.");
|
|
13
|
-
var m = o[Symbol.asyncIterator], i;
|
|
14
|
-
return m ? m.call(o) : (o = typeof __values === "function" ? __values(o) : o[Symbol.iterator](), i = {}, verb("next"), verb("throw"), verb("return"), i[Symbol.asyncIterator] = function () { return this; }, i);
|
|
15
|
-
function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }
|
|
16
|
-
function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }
|
|
17
|
-
};
|
|
18
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
|
-
exports.NodePre18StreamWrapper = void 0;
|
|
20
|
-
class NodePre18StreamWrapper {
|
|
21
|
-
constructor(readableStream) {
|
|
22
|
-
this.readableStream = readableStream;
|
|
23
|
-
}
|
|
24
|
-
on(event, callback) {
|
|
25
|
-
this.readableStream.on(event, callback);
|
|
26
|
-
}
|
|
27
|
-
off(event, callback) {
|
|
28
|
-
this.readableStream.off(event, callback);
|
|
29
|
-
}
|
|
30
|
-
pipe(dest) {
|
|
31
|
-
this.readableStream.pipe(dest);
|
|
32
|
-
return dest;
|
|
33
|
-
}
|
|
34
|
-
pipeTo(dest) {
|
|
35
|
-
return this.pipe(dest);
|
|
36
|
-
}
|
|
37
|
-
unpipe(dest) {
|
|
38
|
-
if (dest) {
|
|
39
|
-
this.readableStream.unpipe(dest);
|
|
40
|
-
}
|
|
41
|
-
else {
|
|
42
|
-
this.readableStream.unpipe();
|
|
43
|
-
}
|
|
44
|
-
}
|
|
45
|
-
destroy(error) {
|
|
46
|
-
this.readableStream.destroy(error);
|
|
47
|
-
}
|
|
48
|
-
pause() {
|
|
49
|
-
this.readableStream.pause();
|
|
50
|
-
}
|
|
51
|
-
resume() {
|
|
52
|
-
this.readableStream.resume();
|
|
53
|
-
}
|
|
54
|
-
get isPaused() {
|
|
55
|
-
return this.readableStream.isPaused();
|
|
56
|
-
}
|
|
57
|
-
read() {
|
|
58
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
59
|
-
return new Promise((resolve, reject) => {
|
|
60
|
-
const chunk = this.readableStream.read();
|
|
61
|
-
if (chunk) {
|
|
62
|
-
resolve(chunk);
|
|
63
|
-
}
|
|
64
|
-
else {
|
|
65
|
-
this.readableStream.once("readable", () => {
|
|
66
|
-
const chunk = this.readableStream.read();
|
|
67
|
-
resolve(chunk);
|
|
68
|
-
});
|
|
69
|
-
this.readableStream.once("error", reject);
|
|
70
|
-
}
|
|
71
|
-
});
|
|
72
|
-
});
|
|
73
|
-
}
|
|
74
|
-
setEncoding(encoding) {
|
|
75
|
-
this.readableStream.setEncoding(encoding);
|
|
76
|
-
this.encoding = encoding;
|
|
77
|
-
}
|
|
78
|
-
text() {
|
|
79
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
80
|
-
var _a, e_1, _b, _c;
|
|
81
|
-
const chunks = [];
|
|
82
|
-
const encoder = new TextEncoder();
|
|
83
|
-
this.readableStream.setEncoding((this.encoding || "utf-8"));
|
|
84
|
-
try {
|
|
85
|
-
for (var _d = true, _e = __asyncValues(this.readableStream), _f; _f = yield _e.next(), _a = _f.done, !_a; _d = true) {
|
|
86
|
-
_c = _f.value;
|
|
87
|
-
_d = false;
|
|
88
|
-
const chunk = _c;
|
|
89
|
-
chunks.push(encoder.encode(chunk));
|
|
90
|
-
}
|
|
91
|
-
}
|
|
92
|
-
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
|
93
|
-
finally {
|
|
94
|
-
try {
|
|
95
|
-
if (!_d && !_a && (_b = _e.return)) yield _b.call(_e);
|
|
96
|
-
}
|
|
97
|
-
finally { if (e_1) throw e_1.error; }
|
|
98
|
-
}
|
|
99
|
-
const decoder = new TextDecoder(this.encoding || "utf-8");
|
|
100
|
-
return decoder.decode(Buffer.concat(chunks));
|
|
101
|
-
});
|
|
102
|
-
}
|
|
103
|
-
json() {
|
|
104
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
105
|
-
const text = yield this.text();
|
|
106
|
-
return JSON.parse(text);
|
|
107
|
-
});
|
|
108
|
-
}
|
|
109
|
-
[Symbol.asyncIterator]() {
|
|
110
|
-
const readableStream = this.readableStream;
|
|
111
|
-
const iterator = readableStream[Symbol.asyncIterator]();
|
|
112
|
-
// Create and return an async iterator that yields buffers
|
|
113
|
-
return {
|
|
114
|
-
next() {
|
|
115
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
116
|
-
const { value, done } = yield iterator.next();
|
|
117
|
-
return { value: value, done };
|
|
118
|
-
});
|
|
119
|
-
},
|
|
120
|
-
[Symbol.asyncIterator]() {
|
|
121
|
-
return this;
|
|
122
|
-
},
|
|
123
|
-
};
|
|
124
|
-
}
|
|
125
|
-
}
|
|
126
|
-
exports.NodePre18StreamWrapper = NodePre18StreamWrapper;
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
import { StreamWrapper } from "./chooseStreamWrapper";
|
|
2
|
-
type EventCallback = (data?: any) => void;
|
|
3
|
-
export declare class UndiciStreamWrapper<ReadFormat extends Uint8Array | Uint16Array | Uint32Array> implements StreamWrapper<UndiciStreamWrapper<ReadFormat> | WritableStream<ReadFormat>, ReadFormat> {
|
|
4
|
-
private readableStream;
|
|
5
|
-
private reader;
|
|
6
|
-
private events;
|
|
7
|
-
private paused;
|
|
8
|
-
private resumeCallback;
|
|
9
|
-
private encoding;
|
|
10
|
-
constructor(readableStream: ReadableStream<ReadFormat>);
|
|
11
|
-
on(event: string, callback: EventCallback): void;
|
|
12
|
-
off(event: string, callback: EventCallback): void;
|
|
13
|
-
pipe(dest: UndiciStreamWrapper<ReadFormat> | WritableStream<ReadFormat>): UndiciStreamWrapper<ReadFormat> | WritableStream<ReadFormat>;
|
|
14
|
-
pipeTo(dest: UndiciStreamWrapper<ReadFormat> | WritableStream<ReadFormat>): UndiciStreamWrapper<ReadFormat> | WritableStream<ReadFormat>;
|
|
15
|
-
unpipe(dest: UndiciStreamWrapper<ReadFormat> | WritableStream): void;
|
|
16
|
-
destroy(error?: Error): void;
|
|
17
|
-
pause(): void;
|
|
18
|
-
resume(): void;
|
|
19
|
-
get isPaused(): boolean;
|
|
20
|
-
read(): Promise<ReadFormat | undefined>;
|
|
21
|
-
setEncoding(encoding: string): void;
|
|
22
|
-
text(): Promise<string>;
|
|
23
|
-
json<T>(): Promise<T>;
|
|
24
|
-
private _write;
|
|
25
|
-
private _end;
|
|
26
|
-
private _error;
|
|
27
|
-
private _emit;
|
|
28
|
-
private _startReading;
|
|
29
|
-
[Symbol.asyncIterator](): AsyncIterableIterator<ReadFormat>;
|
|
30
|
-
}
|
|
31
|
-
export {};
|
|
@@ -1,229 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
-
});
|
|
10
|
-
};
|
|
11
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
12
|
-
exports.UndiciStreamWrapper = void 0;
|
|
13
|
-
class UndiciStreamWrapper {
|
|
14
|
-
constructor(readableStream) {
|
|
15
|
-
this.readableStream = readableStream;
|
|
16
|
-
this.reader = this.readableStream.getReader();
|
|
17
|
-
this.events = {
|
|
18
|
-
data: [],
|
|
19
|
-
end: [],
|
|
20
|
-
error: [],
|
|
21
|
-
readable: [],
|
|
22
|
-
close: [],
|
|
23
|
-
pause: [],
|
|
24
|
-
resume: [],
|
|
25
|
-
};
|
|
26
|
-
this.paused = false;
|
|
27
|
-
this.resumeCallback = null;
|
|
28
|
-
this.encoding = null;
|
|
29
|
-
}
|
|
30
|
-
on(event, callback) {
|
|
31
|
-
var _a;
|
|
32
|
-
(_a = this.events[event]) === null || _a === void 0 ? void 0 : _a.push(callback);
|
|
33
|
-
}
|
|
34
|
-
off(event, callback) {
|
|
35
|
-
var _a;
|
|
36
|
-
this.events[event] = (_a = this.events[event]) === null || _a === void 0 ? void 0 : _a.filter((cb) => cb !== callback);
|
|
37
|
-
}
|
|
38
|
-
pipe(dest) {
|
|
39
|
-
this.on("data", (chunk) => {
|
|
40
|
-
if (dest instanceof UndiciStreamWrapper) {
|
|
41
|
-
dest._write(chunk);
|
|
42
|
-
}
|
|
43
|
-
else {
|
|
44
|
-
const writer = dest.getWriter();
|
|
45
|
-
writer.write(chunk).then(() => writer.releaseLock());
|
|
46
|
-
}
|
|
47
|
-
});
|
|
48
|
-
this.on("end", () => {
|
|
49
|
-
if (dest instanceof UndiciStreamWrapper) {
|
|
50
|
-
dest._end();
|
|
51
|
-
}
|
|
52
|
-
else {
|
|
53
|
-
const writer = dest.getWriter();
|
|
54
|
-
writer.close();
|
|
55
|
-
}
|
|
56
|
-
});
|
|
57
|
-
this.on("error", (error) => {
|
|
58
|
-
if (dest instanceof UndiciStreamWrapper) {
|
|
59
|
-
dest._error(error);
|
|
60
|
-
}
|
|
61
|
-
else {
|
|
62
|
-
const writer = dest.getWriter();
|
|
63
|
-
writer.abort(error);
|
|
64
|
-
}
|
|
65
|
-
});
|
|
66
|
-
this._startReading();
|
|
67
|
-
return dest;
|
|
68
|
-
}
|
|
69
|
-
pipeTo(dest) {
|
|
70
|
-
return this.pipe(dest);
|
|
71
|
-
}
|
|
72
|
-
unpipe(dest) {
|
|
73
|
-
this.off("data", (chunk) => {
|
|
74
|
-
if (dest instanceof UndiciStreamWrapper) {
|
|
75
|
-
dest._write(chunk);
|
|
76
|
-
}
|
|
77
|
-
else {
|
|
78
|
-
const writer = dest.getWriter();
|
|
79
|
-
writer.write(chunk).then(() => writer.releaseLock());
|
|
80
|
-
}
|
|
81
|
-
});
|
|
82
|
-
this.off("end", () => {
|
|
83
|
-
if (dest instanceof UndiciStreamWrapper) {
|
|
84
|
-
dest._end();
|
|
85
|
-
}
|
|
86
|
-
else {
|
|
87
|
-
const writer = dest.getWriter();
|
|
88
|
-
writer.close();
|
|
89
|
-
}
|
|
90
|
-
});
|
|
91
|
-
this.off("error", (error) => {
|
|
92
|
-
if (dest instanceof UndiciStreamWrapper) {
|
|
93
|
-
dest._error(error);
|
|
94
|
-
}
|
|
95
|
-
else {
|
|
96
|
-
const writer = dest.getWriter();
|
|
97
|
-
writer.abort(error);
|
|
98
|
-
}
|
|
99
|
-
});
|
|
100
|
-
}
|
|
101
|
-
destroy(error) {
|
|
102
|
-
this.reader
|
|
103
|
-
.cancel(error)
|
|
104
|
-
.then(() => {
|
|
105
|
-
this._emit("close");
|
|
106
|
-
})
|
|
107
|
-
.catch((err) => {
|
|
108
|
-
this._emit("error", err);
|
|
109
|
-
});
|
|
110
|
-
}
|
|
111
|
-
pause() {
|
|
112
|
-
this.paused = true;
|
|
113
|
-
this._emit("pause");
|
|
114
|
-
}
|
|
115
|
-
resume() {
|
|
116
|
-
if (this.paused) {
|
|
117
|
-
this.paused = false;
|
|
118
|
-
this._emit("resume");
|
|
119
|
-
if (this.resumeCallback) {
|
|
120
|
-
this.resumeCallback();
|
|
121
|
-
this.resumeCallback = null;
|
|
122
|
-
}
|
|
123
|
-
}
|
|
124
|
-
}
|
|
125
|
-
get isPaused() {
|
|
126
|
-
return this.paused;
|
|
127
|
-
}
|
|
128
|
-
read() {
|
|
129
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
130
|
-
if (this.paused) {
|
|
131
|
-
yield new Promise((resolve) => {
|
|
132
|
-
this.resumeCallback = resolve;
|
|
133
|
-
});
|
|
134
|
-
}
|
|
135
|
-
const { done, value } = yield this.reader.read();
|
|
136
|
-
if (done) {
|
|
137
|
-
return undefined;
|
|
138
|
-
}
|
|
139
|
-
return value;
|
|
140
|
-
});
|
|
141
|
-
}
|
|
142
|
-
setEncoding(encoding) {
|
|
143
|
-
this.encoding = encoding;
|
|
144
|
-
}
|
|
145
|
-
text() {
|
|
146
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
147
|
-
const chunks = [];
|
|
148
|
-
while (true) {
|
|
149
|
-
const { done, value } = yield this.reader.read();
|
|
150
|
-
if (done) {
|
|
151
|
-
break;
|
|
152
|
-
}
|
|
153
|
-
if (value) {
|
|
154
|
-
chunks.push(value);
|
|
155
|
-
}
|
|
156
|
-
}
|
|
157
|
-
const decoder = new TextDecoder(this.encoding || "utf-8");
|
|
158
|
-
return decoder.decode(yield new Blob(chunks).arrayBuffer());
|
|
159
|
-
});
|
|
160
|
-
}
|
|
161
|
-
json() {
|
|
162
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
163
|
-
const text = yield this.text();
|
|
164
|
-
return JSON.parse(text);
|
|
165
|
-
});
|
|
166
|
-
}
|
|
167
|
-
_write(chunk) {
|
|
168
|
-
this._emit("data", chunk);
|
|
169
|
-
}
|
|
170
|
-
_end() {
|
|
171
|
-
this._emit("end");
|
|
172
|
-
}
|
|
173
|
-
_error(error) {
|
|
174
|
-
this._emit("error", error);
|
|
175
|
-
}
|
|
176
|
-
_emit(event, data) {
|
|
177
|
-
if (this.events[event]) {
|
|
178
|
-
for (const callback of this.events[event] || []) {
|
|
179
|
-
callback(data);
|
|
180
|
-
}
|
|
181
|
-
}
|
|
182
|
-
}
|
|
183
|
-
_startReading() {
|
|
184
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
185
|
-
try {
|
|
186
|
-
this._emit("readable");
|
|
187
|
-
while (true) {
|
|
188
|
-
if (this.paused) {
|
|
189
|
-
yield new Promise((resolve) => {
|
|
190
|
-
this.resumeCallback = resolve;
|
|
191
|
-
});
|
|
192
|
-
}
|
|
193
|
-
const { done, value } = yield this.reader.read();
|
|
194
|
-
if (done) {
|
|
195
|
-
this._emit("end");
|
|
196
|
-
this._emit("close");
|
|
197
|
-
break;
|
|
198
|
-
}
|
|
199
|
-
if (value) {
|
|
200
|
-
this._emit("data", value);
|
|
201
|
-
}
|
|
202
|
-
}
|
|
203
|
-
}
|
|
204
|
-
catch (error) {
|
|
205
|
-
this._emit("error", error);
|
|
206
|
-
}
|
|
207
|
-
});
|
|
208
|
-
}
|
|
209
|
-
[Symbol.asyncIterator]() {
|
|
210
|
-
return {
|
|
211
|
-
next: () => __awaiter(this, void 0, void 0, function* () {
|
|
212
|
-
if (this.paused) {
|
|
213
|
-
yield new Promise((resolve) => {
|
|
214
|
-
this.resumeCallback = resolve;
|
|
215
|
-
});
|
|
216
|
-
}
|
|
217
|
-
const { done, value } = yield this.reader.read();
|
|
218
|
-
if (done) {
|
|
219
|
-
return { done: true, value: undefined };
|
|
220
|
-
}
|
|
221
|
-
return { done: false, value };
|
|
222
|
-
}),
|
|
223
|
-
[Symbol.asyncIterator]() {
|
|
224
|
-
return this;
|
|
225
|
-
},
|
|
226
|
-
};
|
|
227
|
-
}
|
|
228
|
-
}
|
|
229
|
-
exports.UndiciStreamWrapper = UndiciStreamWrapper;
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
export type EventCallback = (data?: any) => void;
|
|
2
|
-
export interface StreamWrapper<WritableStream, ReadFormat> {
|
|
3
|
-
setEncoding(encoding?: string): void;
|
|
4
|
-
on(event: string, callback: EventCallback): void;
|
|
5
|
-
off(event: string, callback: EventCallback): void;
|
|
6
|
-
pipe(dest: WritableStream): WritableStream;
|
|
7
|
-
pipeTo(dest: WritableStream): WritableStream;
|
|
8
|
-
unpipe(dest?: WritableStream): void;
|
|
9
|
-
destroy(error?: Error): void;
|
|
10
|
-
pause(): void;
|
|
11
|
-
resume(): void;
|
|
12
|
-
get isPaused(): boolean;
|
|
13
|
-
read(): Promise<ReadFormat | undefined>;
|
|
14
|
-
text(): Promise<string>;
|
|
15
|
-
json<T>(): Promise<T>;
|
|
16
|
-
[Symbol.asyncIterator](): AsyncIterableIterator<ReadFormat>;
|
|
17
|
-
}
|
|
18
|
-
export declare function chooseStreamWrapper(responseBody: any): Promise<Promise<StreamWrapper<any, any>>>;
|
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
-
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
-
}) : function(o, v) {
|
|
16
|
-
o["default"] = v;
|
|
17
|
-
});
|
|
18
|
-
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
-
var ownKeys = function(o) {
|
|
20
|
-
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
-
var ar = [];
|
|
22
|
-
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
-
return ar;
|
|
24
|
-
};
|
|
25
|
-
return ownKeys(o);
|
|
26
|
-
};
|
|
27
|
-
return function (mod) {
|
|
28
|
-
if (mod && mod.__esModule) return mod;
|
|
29
|
-
var result = {};
|
|
30
|
-
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
-
__setModuleDefault(result, mod);
|
|
32
|
-
return result;
|
|
33
|
-
};
|
|
34
|
-
})();
|
|
35
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
36
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
37
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
38
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
39
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
40
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
41
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
42
|
-
});
|
|
43
|
-
};
|
|
44
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
45
|
-
exports.chooseStreamWrapper = chooseStreamWrapper;
|
|
46
|
-
const runtime_1 = require("../../runtime");
|
|
47
|
-
function chooseStreamWrapper(responseBody) {
|
|
48
|
-
return __awaiter(this, void 0, void 0, function* () {
|
|
49
|
-
if (runtime_1.RUNTIME.type === "node" && runtime_1.RUNTIME.parsedVersion != null && runtime_1.RUNTIME.parsedVersion >= 18) {
|
|
50
|
-
return new (yield Promise.resolve().then(() => __importStar(require("./Node18UniversalStreamWrapper")))).Node18UniversalStreamWrapper(responseBody);
|
|
51
|
-
}
|
|
52
|
-
else if (runtime_1.RUNTIME.type !== "node" && typeof fetch === "function") {
|
|
53
|
-
return new (yield Promise.resolve().then(() => __importStar(require("./UndiciStreamWrapper")))).UndiciStreamWrapper(responseBody);
|
|
54
|
-
}
|
|
55
|
-
else {
|
|
56
|
-
return new (yield Promise.resolve().then(() => __importStar(require("./NodePre18StreamWrapper")))).NodePre18StreamWrapper(responseBody);
|
|
57
|
-
}
|
|
58
|
-
});
|
|
59
|
-
}
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
export declare class Event {
|
|
2
|
-
target: any;
|
|
3
|
-
type: string;
|
|
4
|
-
constructor(type: string, target: any);
|
|
5
|
-
}
|
|
6
|
-
export declare class ErrorEvent extends Event {
|
|
7
|
-
message: string;
|
|
8
|
-
error: Error;
|
|
9
|
-
constructor(error: Error, target: any);
|
|
10
|
-
}
|
|
11
|
-
export declare class CloseEvent extends Event {
|
|
12
|
-
code: number;
|
|
13
|
-
reason: string;
|
|
14
|
-
wasClean: boolean;
|
|
15
|
-
constructor(code: number | undefined, reason: string | undefined, target: any);
|
|
16
|
-
}
|
|
17
|
-
export interface WebSocketEventMap {
|
|
18
|
-
close: CloseEvent;
|
|
19
|
-
error: ErrorEvent;
|
|
20
|
-
message: MessageEvent;
|
|
21
|
-
open: Event;
|
|
22
|
-
}
|
|
23
|
-
export interface WebSocketEventListenerMap {
|
|
24
|
-
close: (event: CloseEvent) => void | {
|
|
25
|
-
handleEvent: (event: CloseEvent) => void;
|
|
26
|
-
};
|
|
27
|
-
error: (event: ErrorEvent) => void | {
|
|
28
|
-
handleEvent: (event: ErrorEvent) => void;
|
|
29
|
-
};
|
|
30
|
-
message: (event: MessageEvent) => void | {
|
|
31
|
-
handleEvent: (event: MessageEvent) => void;
|
|
32
|
-
};
|
|
33
|
-
open: (event: Event) => void | {
|
|
34
|
-
handleEvent: (event: Event) => void;
|
|
35
|
-
};
|
|
36
|
-
}
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CloseEvent = exports.ErrorEvent = exports.Event = void 0;
|
|
4
|
-
class Event {
|
|
5
|
-
constructor(type, target) {
|
|
6
|
-
this.target = target;
|
|
7
|
-
this.type = type;
|
|
8
|
-
}
|
|
9
|
-
}
|
|
10
|
-
exports.Event = Event;
|
|
11
|
-
class ErrorEvent extends Event {
|
|
12
|
-
constructor(error, target) {
|
|
13
|
-
super("error", target);
|
|
14
|
-
this.message = error.message;
|
|
15
|
-
this.error = error;
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
exports.ErrorEvent = ErrorEvent;
|
|
19
|
-
class CloseEvent extends Event {
|
|
20
|
-
constructor(code = 1000, reason = "", target) {
|
|
21
|
-
super("close", target);
|
|
22
|
-
this.wasClean = true;
|
|
23
|
-
this.code = code;
|
|
24
|
-
this.reason = reason;
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
exports.CloseEvent = CloseEvent;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./ws";
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
-
if (k2 === undefined) k2 = k;
|
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
-
}
|
|
8
|
-
Object.defineProperty(o, k2, desc);
|
|
9
|
-
}) : (function(o, m, k, k2) {
|
|
10
|
-
if (k2 === undefined) k2 = k;
|
|
11
|
-
o[k2] = m[k];
|
|
12
|
-
}));
|
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
|
-
};
|
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
__exportStar(require("./ws"), exports);
|
|
@@ -1,137 +0,0 @@
|
|
|
1
|
-
import * as Events from "./events";
|
|
2
|
-
export type Event = Events.Event;
|
|
3
|
-
export type ErrorEvent = Events.ErrorEvent;
|
|
4
|
-
export type CloseEvent = Events.CloseEvent;
|
|
5
|
-
export type Options = {
|
|
6
|
-
WebSocket?: any;
|
|
7
|
-
maxReconnectionDelay?: number;
|
|
8
|
-
minReconnectionDelay?: number;
|
|
9
|
-
reconnectionDelayGrowFactor?: number;
|
|
10
|
-
minUptime?: number;
|
|
11
|
-
connectionTimeout?: number;
|
|
12
|
-
maxRetries?: number;
|
|
13
|
-
maxEnqueuedMessages?: number;
|
|
14
|
-
startClosed?: boolean;
|
|
15
|
-
debug?: boolean;
|
|
16
|
-
};
|
|
17
|
-
export type UrlProvider = string | (() => string) | (() => Promise<string>);
|
|
18
|
-
export type Message = string | ArrayBuffer | Blob | ArrayBufferView;
|
|
19
|
-
export type ListenersMap = {
|
|
20
|
-
error: Array<Events.WebSocketEventListenerMap["error"]>;
|
|
21
|
-
message: Array<Events.WebSocketEventListenerMap["message"]>;
|
|
22
|
-
open: Array<Events.WebSocketEventListenerMap["open"]>;
|
|
23
|
-
close: Array<Events.WebSocketEventListenerMap["close"]>;
|
|
24
|
-
};
|
|
25
|
-
export declare class ReconnectingWebSocket {
|
|
26
|
-
private _ws?;
|
|
27
|
-
private _listeners;
|
|
28
|
-
private _retryCount;
|
|
29
|
-
private _uptimeTimeout;
|
|
30
|
-
private _connectTimeout;
|
|
31
|
-
private _shouldReconnect;
|
|
32
|
-
private _connectLock;
|
|
33
|
-
private _binaryType;
|
|
34
|
-
private _closeCalled;
|
|
35
|
-
private _messageQueue;
|
|
36
|
-
private readonly _url;
|
|
37
|
-
private readonly _protocols?;
|
|
38
|
-
private readonly _options;
|
|
39
|
-
private readonly _headers?;
|
|
40
|
-
constructor(url: UrlProvider, protocols?: string | string[], options?: Options, headers?: Record<string, any>);
|
|
41
|
-
static get CONNECTING(): number;
|
|
42
|
-
static get OPEN(): number;
|
|
43
|
-
static get CLOSING(): number;
|
|
44
|
-
static get CLOSED(): number;
|
|
45
|
-
get CONNECTING(): number;
|
|
46
|
-
get OPEN(): number;
|
|
47
|
-
get CLOSING(): number;
|
|
48
|
-
get CLOSED(): number;
|
|
49
|
-
get binaryType(): BinaryType;
|
|
50
|
-
set binaryType(value: BinaryType);
|
|
51
|
-
/**
|
|
52
|
-
* Returns the number or connection retries
|
|
53
|
-
*/
|
|
54
|
-
get retryCount(): number;
|
|
55
|
-
/**
|
|
56
|
-
* The number of bytes of data that have been queued using calls to send() but not yet
|
|
57
|
-
* transmitted to the network. This value resets to zero once all queued data has been sent.
|
|
58
|
-
* This value does not reset to zero when the connection is closed; if you keep calling send(),
|
|
59
|
-
* this will continue to climb. Read only
|
|
60
|
-
*/
|
|
61
|
-
get bufferedAmount(): number;
|
|
62
|
-
/**
|
|
63
|
-
* The extensions selected by the server. This is currently only the empty string or a list of
|
|
64
|
-
* extensions as negotiated by the connection
|
|
65
|
-
*/
|
|
66
|
-
get extensions(): string;
|
|
67
|
-
/**
|
|
68
|
-
* A string indicating the name of the sub-protocol the server selected;
|
|
69
|
-
* this will be one of the strings specified in the protocols parameter when creating the
|
|
70
|
-
* WebSocket object
|
|
71
|
-
*/
|
|
72
|
-
get protocol(): string;
|
|
73
|
-
/**
|
|
74
|
-
* The current state of the connection; this is one of the Ready state constants
|
|
75
|
-
*/
|
|
76
|
-
get readyState(): number;
|
|
77
|
-
/**
|
|
78
|
-
* The URL as resolved by the constructor
|
|
79
|
-
*/
|
|
80
|
-
get url(): string;
|
|
81
|
-
/**
|
|
82
|
-
* An event listener to be called when the WebSocket connection's readyState changes to CLOSED
|
|
83
|
-
*/
|
|
84
|
-
onclose: ((event: Events.CloseEvent) => void) | null;
|
|
85
|
-
/**
|
|
86
|
-
* An event listener to be called when an error occurs
|
|
87
|
-
*/
|
|
88
|
-
onerror: ((event: Events.ErrorEvent) => void) | null;
|
|
89
|
-
/**
|
|
90
|
-
* An event listener to be called when a message is received from the server
|
|
91
|
-
*/
|
|
92
|
-
onmessage: ((event: MessageEvent) => void) | null;
|
|
93
|
-
/**
|
|
94
|
-
* An event listener to be called when the WebSocket connection's readyState changes to OPEN;
|
|
95
|
-
* this indicates that the connection is ready to send and receive data
|
|
96
|
-
*/
|
|
97
|
-
onopen: ((event: Event) => void) | null;
|
|
98
|
-
/**
|
|
99
|
-
* Closes the WebSocket connection or connection attempt, if any. If the connection is already
|
|
100
|
-
* CLOSED, this method does nothing
|
|
101
|
-
*/
|
|
102
|
-
close(code?: number, reason?: string): void;
|
|
103
|
-
/**
|
|
104
|
-
* Closes the WebSocket connection or connection attempt and connects again.
|
|
105
|
-
* Resets retry counter;
|
|
106
|
-
*/
|
|
107
|
-
reconnect(code?: number, reason?: string): void;
|
|
108
|
-
/**
|
|
109
|
-
* Enqueue specified data to be transmitted to the server over the WebSocket connection
|
|
110
|
-
*/
|
|
111
|
-
send(data: Message): void;
|
|
112
|
-
/**
|
|
113
|
-
* Register an event handler of a specific event type
|
|
114
|
-
*/
|
|
115
|
-
addEventListener<T extends keyof Events.WebSocketEventListenerMap>(type: T, listener: Events.WebSocketEventListenerMap[T]): void;
|
|
116
|
-
dispatchEvent(event: Event): boolean;
|
|
117
|
-
/**
|
|
118
|
-
* Removes an event listener
|
|
119
|
-
*/
|
|
120
|
-
removeEventListener<T extends keyof Events.WebSocketEventListenerMap>(type: T, listener: Events.WebSocketEventListenerMap[T]): void;
|
|
121
|
-
private _debug;
|
|
122
|
-
private _getNextDelay;
|
|
123
|
-
private _wait;
|
|
124
|
-
private _getNextUrl;
|
|
125
|
-
private _connect;
|
|
126
|
-
private _handleTimeout;
|
|
127
|
-
private _disconnect;
|
|
128
|
-
private _acceptOpen;
|
|
129
|
-
private _callEventListener;
|
|
130
|
-
private _handleOpen;
|
|
131
|
-
private _handleMessage;
|
|
132
|
-
private _handleError;
|
|
133
|
-
private _handleClose;
|
|
134
|
-
private _removeListeners;
|
|
135
|
-
private _addListeners;
|
|
136
|
-
private _clearTimeouts;
|
|
137
|
-
}
|