phonic 0.30.3 → 0.30.4
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/README.md +1 -1
- package/dist/cjs/Client.js +2 -2
- package/dist/cjs/version.d.ts +1 -1
- package/dist/cjs/version.js +1 -1
- package/dist/esm/Client.d.mts +50 -0
- package/dist/esm/Client.mjs +47 -0
- package/dist/esm/api/errors/BadRequestError.d.mts +8 -0
- package/dist/esm/api/errors/BadRequestError.mjs +15 -0
- package/dist/esm/api/errors/ConflictError.d.mts +8 -0
- package/dist/esm/api/errors/ConflictError.mjs +15 -0
- package/dist/esm/api/errors/ForbiddenError.d.mts +8 -0
- package/dist/esm/api/errors/ForbiddenError.mjs +15 -0
- package/dist/esm/api/errors/GatewayTimeoutError.d.mts +9 -0
- package/dist/esm/api/errors/GatewayTimeoutError.mjs +15 -0
- package/dist/esm/api/errors/InternalServerError.d.mts +9 -0
- package/dist/esm/api/errors/InternalServerError.mjs +15 -0
- package/dist/esm/api/errors/NotFoundError.d.mts +8 -0
- package/dist/esm/api/errors/NotFoundError.mjs +15 -0
- package/dist/esm/api/errors/UnauthorizedError.d.mts +9 -0
- package/dist/esm/api/errors/UnauthorizedError.mjs +15 -0
- package/dist/esm/api/errors/index.d.mts +7 -0
- package/dist/esm/api/errors/index.mjs +7 -0
- package/dist/esm/api/index.d.mts +4 -0
- package/dist/esm/api/index.mjs +4 -0
- package/dist/esm/api/resources/agents/client/Client.d.mts +208 -0
- package/dist/esm/api/resources/agents/client/Client.mjs +558 -0
- package/dist/esm/api/resources/agents/client/index.d.mts +2 -0
- package/dist/esm/api/resources/agents/client/index.mjs +1 -0
- package/dist/esm/api/resources/agents/client/requests/AgentsCreateRequest.d.mts +41 -0
- package/dist/esm/api/resources/agents/client/requests/AgentsCreateRequest.mjs +4 -0
- package/dist/esm/api/resources/agents/client/requests/AgentsDeleteRequest.d.mts +13 -0
- package/dist/esm/api/resources/agents/client/requests/AgentsDeleteRequest.mjs +4 -0
- package/dist/esm/api/resources/agents/client/requests/AgentsGetRequest.d.mts +13 -0
- package/dist/esm/api/resources/agents/client/requests/AgentsGetRequest.mjs +4 -0
- package/dist/esm/api/resources/agents/client/requests/AgentsListRequest.d.mts +11 -0
- package/dist/esm/api/resources/agents/client/requests/AgentsListRequest.mjs +4 -0
- package/dist/esm/api/resources/agents/client/requests/UpdateAgentRequest.d.mts +102 -0
- package/dist/esm/api/resources/agents/client/requests/UpdateAgentRequest.mjs +10 -0
- package/dist/esm/api/resources/agents/client/requests/UpsertAgentRequest.d.mts +38 -0
- package/dist/esm/api/resources/agents/client/requests/UpsertAgentRequest.mjs +4 -0
- package/dist/esm/api/resources/agents/client/requests/index.d.mts +6 -0
- package/dist/esm/api/resources/agents/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/agents/index.d.mts +2 -0
- package/dist/esm/api/resources/agents/index.mjs +2 -0
- package/dist/esm/api/resources/agents/types/AgentsCreateResponse.d.mts +9 -0
- package/dist/esm/api/resources/agents/types/AgentsCreateResponse.mjs +4 -0
- package/dist/esm/api/resources/agents/types/AgentsDeleteResponse.d.mts +7 -0
- package/dist/esm/api/resources/agents/types/AgentsDeleteResponse.mjs +4 -0
- package/dist/esm/api/resources/agents/types/AgentsGetResponse.d.mts +7 -0
- package/dist/esm/api/resources/agents/types/AgentsGetResponse.mjs +4 -0
- package/dist/esm/api/resources/agents/types/AgentsListResponse.d.mts +7 -0
- package/dist/esm/api/resources/agents/types/AgentsListResponse.mjs +4 -0
- package/dist/esm/api/resources/agents/types/AgentsUpdateResponse.d.mts +7 -0
- package/dist/esm/api/resources/agents/types/AgentsUpdateResponse.mjs +4 -0
- package/dist/esm/api/resources/agents/types/AgentsUpsertResponse.d.mts +11 -0
- package/dist/esm/api/resources/agents/types/AgentsUpsertResponse.mjs +4 -0
- package/dist/esm/api/resources/agents/types/index.d.mts +6 -0
- package/dist/esm/api/resources/agents/types/index.mjs +6 -0
- package/dist/esm/api/resources/conversations/client/Client.d.mts +236 -0
- package/dist/esm/api/resources/conversations/client/Client.mjs +858 -0
- package/dist/esm/api/resources/conversations/client/Socket.d.mts +64 -0
- package/dist/esm/api/resources/conversations/client/Socket.mjs +159 -0
- package/dist/esm/api/resources/conversations/client/index.d.mts +2 -0
- package/dist/esm/api/resources/conversations/client/index.mjs +1 -0
- package/dist/esm/api/resources/conversations/client/requests/ConversationsListRequest.d.mts +30 -0
- package/dist/esm/api/resources/conversations/client/requests/ConversationsListRequest.mjs +4 -0
- package/dist/esm/api/resources/conversations/client/requests/ConversationsSipOutboundCallRequest.d.mts +29 -0
- package/dist/esm/api/resources/conversations/client/requests/ConversationsSipOutboundCallRequest.mjs +4 -0
- package/dist/esm/api/resources/conversations/client/requests/EvaluateConversationRequest.d.mts +13 -0
- package/dist/esm/api/resources/conversations/client/requests/EvaluateConversationRequest.mjs +4 -0
- package/dist/esm/api/resources/conversations/client/requests/ExtractDataRequest.d.mts +13 -0
- package/dist/esm/api/resources/conversations/client/requests/ExtractDataRequest.mjs +4 -0
- package/dist/esm/api/resources/conversations/client/requests/OutboundCallRequest.d.mts +30 -0
- package/dist/esm/api/resources/conversations/client/requests/OutboundCallRequest.mjs +4 -0
- package/dist/esm/api/resources/conversations/client/requests/index.d.mts +5 -0
- package/dist/esm/api/resources/conversations/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/conversations/index.d.mts +2 -0
- package/dist/esm/api/resources/conversations/index.mjs +2 -0
- package/dist/esm/api/resources/conversations/types/ConversationsCancelResponse.d.mts +7 -0
- package/dist/esm/api/resources/conversations/types/ConversationsCancelResponse.mjs +4 -0
- package/dist/esm/api/resources/conversations/types/ConversationsExtractDataResponse.d.mts +7 -0
- package/dist/esm/api/resources/conversations/types/ConversationsExtractDataResponse.mjs +4 -0
- package/dist/esm/api/resources/conversations/types/ConversationsGetAnalysisResponse.d.mts +7 -0
- package/dist/esm/api/resources/conversations/types/ConversationsGetAnalysisResponse.mjs +4 -0
- package/dist/esm/api/resources/conversations/types/ConversationsGetResponse.d.mts +7 -0
- package/dist/esm/api/resources/conversations/types/ConversationsGetResponse.mjs +4 -0
- package/dist/esm/api/resources/conversations/types/ConversationsListEvaluationsResponse.d.mts +7 -0
- package/dist/esm/api/resources/conversations/types/ConversationsListEvaluationsResponse.mjs +4 -0
- package/dist/esm/api/resources/conversations/types/ConversationsListExtractionsResponse.d.mts +7 -0
- package/dist/esm/api/resources/conversations/types/ConversationsListExtractionsResponse.mjs +4 -0
- package/dist/esm/api/resources/conversations/types/ConversationsListResponse.d.mts +9 -0
- package/dist/esm/api/resources/conversations/types/ConversationsListResponse.mjs +4 -0
- package/dist/esm/api/resources/conversations/types/ConversationsOutboundCallResponse.d.mts +7 -0
- package/dist/esm/api/resources/conversations/types/ConversationsOutboundCallResponse.mjs +4 -0
- package/dist/esm/api/resources/conversations/types/ConversationsSipOutboundCallResponse.d.mts +7 -0
- package/dist/esm/api/resources/conversations/types/ConversationsSipOutboundCallResponse.mjs +4 -0
- package/dist/esm/api/resources/conversations/types/index.d.mts +9 -0
- package/dist/esm/api/resources/conversations/types/index.mjs +9 -0
- package/dist/esm/api/resources/extractionSchemas/client/Client.d.mts +142 -0
- package/dist/esm/api/resources/extractionSchemas/client/Client.mjs +436 -0
- package/dist/esm/api/resources/extractionSchemas/client/index.d.mts +2 -0
- package/dist/esm/api/resources/extractionSchemas/client/index.mjs +1 -0
- package/dist/esm/api/resources/extractionSchemas/client/requests/CreateExtractionSchemaRequest.d.mts +35 -0
- package/dist/esm/api/resources/extractionSchemas/client/requests/CreateExtractionSchemaRequest.mjs +4 -0
- package/dist/esm/api/resources/extractionSchemas/client/requests/ExtractionSchemasDeleteRequest.d.mts +13 -0
- package/dist/esm/api/resources/extractionSchemas/client/requests/ExtractionSchemasDeleteRequest.mjs +4 -0
- package/dist/esm/api/resources/extractionSchemas/client/requests/ExtractionSchemasGetRequest.d.mts +13 -0
- package/dist/esm/api/resources/extractionSchemas/client/requests/ExtractionSchemasGetRequest.mjs +4 -0
- package/dist/esm/api/resources/extractionSchemas/client/requests/ExtractionSchemasListRequest.d.mts +13 -0
- package/dist/esm/api/resources/extractionSchemas/client/requests/ExtractionSchemasListRequest.mjs +4 -0
- package/dist/esm/api/resources/extractionSchemas/client/requests/UpdateExtractionSchemaRequest.d.mts +31 -0
- package/dist/esm/api/resources/extractionSchemas/client/requests/UpdateExtractionSchemaRequest.mjs +4 -0
- package/dist/esm/api/resources/extractionSchemas/client/requests/index.d.mts +5 -0
- package/dist/esm/api/resources/extractionSchemas/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/extractionSchemas/index.d.mts +2 -0
- package/dist/esm/api/resources/extractionSchemas/index.mjs +2 -0
- package/dist/esm/api/resources/extractionSchemas/types/ExtractionSchemasCreateResponse.d.mts +9 -0
- package/dist/esm/api/resources/extractionSchemas/types/ExtractionSchemasCreateResponse.mjs +4 -0
- package/dist/esm/api/resources/extractionSchemas/types/ExtractionSchemasDeleteResponse.d.mts +7 -0
- package/dist/esm/api/resources/extractionSchemas/types/ExtractionSchemasDeleteResponse.mjs +4 -0
- package/dist/esm/api/resources/extractionSchemas/types/ExtractionSchemasGetResponse.d.mts +7 -0
- package/dist/esm/api/resources/extractionSchemas/types/ExtractionSchemasGetResponse.mjs +4 -0
- package/dist/esm/api/resources/extractionSchemas/types/ExtractionSchemasListResponse.d.mts +7 -0
- package/dist/esm/api/resources/extractionSchemas/types/ExtractionSchemasListResponse.mjs +4 -0
- package/dist/esm/api/resources/extractionSchemas/types/ExtractionSchemasUpdateResponse.d.mts +7 -0
- package/dist/esm/api/resources/extractionSchemas/types/ExtractionSchemasUpdateResponse.mjs +4 -0
- package/dist/esm/api/resources/extractionSchemas/types/index.d.mts +5 -0
- package/dist/esm/api/resources/extractionSchemas/types/index.mjs +5 -0
- package/dist/esm/api/resources/index.d.mts +18 -0
- package/dist/esm/api/resources/index.mjs +18 -0
- package/dist/esm/api/resources/projects/client/Client.d.mts +157 -0
- package/dist/esm/api/resources/projects/client/Client.mjs +547 -0
- package/dist/esm/api/resources/projects/client/index.d.mts +2 -0
- package/dist/esm/api/resources/projects/client/index.mjs +1 -0
- package/dist/esm/api/resources/projects/client/requests/CreateConversationEvalPromptRequest.d.mts +16 -0
- package/dist/esm/api/resources/projects/client/requests/CreateConversationEvalPromptRequest.mjs +4 -0
- package/dist/esm/api/resources/projects/client/requests/CreateProjectRequest.d.mts +13 -0
- package/dist/esm/api/resources/projects/client/requests/CreateProjectRequest.mjs +4 -0
- package/dist/esm/api/resources/projects/client/requests/UpdateProjectRequest.d.mts +15 -0
- package/dist/esm/api/resources/projects/client/requests/UpdateProjectRequest.mjs +4 -0
- package/dist/esm/api/resources/projects/client/requests/index.d.mts +3 -0
- package/dist/esm/api/resources/projects/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/projects/index.d.mts +2 -0
- package/dist/esm/api/resources/projects/index.mjs +2 -0
- package/dist/esm/api/resources/projects/types/ProjectsCreateEvalPromptResponse.d.mts +7 -0
- package/dist/esm/api/resources/projects/types/ProjectsCreateEvalPromptResponse.mjs +4 -0
- package/dist/esm/api/resources/projects/types/ProjectsCreateResponse.d.mts +9 -0
- package/dist/esm/api/resources/projects/types/ProjectsCreateResponse.mjs +4 -0
- package/dist/esm/api/resources/projects/types/ProjectsDeleteResponse.d.mts +7 -0
- package/dist/esm/api/resources/projects/types/ProjectsDeleteResponse.mjs +4 -0
- package/dist/esm/api/resources/projects/types/ProjectsGetResponse.d.mts +7 -0
- package/dist/esm/api/resources/projects/types/ProjectsGetResponse.mjs +4 -0
- package/dist/esm/api/resources/projects/types/ProjectsListEvalPromptsResponse.d.mts +7 -0
- package/dist/esm/api/resources/projects/types/ProjectsListEvalPromptsResponse.mjs +4 -0
- package/dist/esm/api/resources/projects/types/ProjectsListResponse.d.mts +7 -0
- package/dist/esm/api/resources/projects/types/ProjectsListResponse.mjs +4 -0
- package/dist/esm/api/resources/projects/types/ProjectsUpdateResponse.d.mts +7 -0
- package/dist/esm/api/resources/projects/types/ProjectsUpdateResponse.mjs +4 -0
- package/dist/esm/api/resources/projects/types/index.d.mts +7 -0
- package/dist/esm/api/resources/projects/types/index.mjs +7 -0
- package/dist/esm/api/resources/tools/client/Client.d.mts +170 -0
- package/dist/esm/api/resources/tools/client/Client.mjs +457 -0
- package/dist/esm/api/resources/tools/client/index.d.mts +2 -0
- package/dist/esm/api/resources/tools/client/index.mjs +1 -0
- package/dist/esm/api/resources/tools/client/requests/CreateToolRequest.d.mts +103 -0
- package/dist/esm/api/resources/tools/client/requests/CreateToolRequest.mjs +15 -0
- package/dist/esm/api/resources/tools/client/requests/ToolsDeleteRequest.d.mts +13 -0
- package/dist/esm/api/resources/tools/client/requests/ToolsDeleteRequest.mjs +4 -0
- package/dist/esm/api/resources/tools/client/requests/ToolsGetRequest.d.mts +23 -0
- package/dist/esm/api/resources/tools/client/requests/ToolsGetRequest.mjs +4 -0
- package/dist/esm/api/resources/tools/client/requests/ToolsListRequest.d.mts +13 -0
- package/dist/esm/api/resources/tools/client/requests/ToolsListRequest.mjs +4 -0
- package/dist/esm/api/resources/tools/client/requests/UpdateToolRequest.d.mts +55 -0
- package/dist/esm/api/resources/tools/client/requests/UpdateToolRequest.mjs +15 -0
- package/dist/esm/api/resources/tools/client/requests/index.d.mts +5 -0
- package/dist/esm/api/resources/tools/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/tools/index.d.mts +2 -0
- package/dist/esm/api/resources/tools/index.mjs +2 -0
- package/dist/esm/api/resources/tools/types/ToolsCreateResponse.d.mts +9 -0
- package/dist/esm/api/resources/tools/types/ToolsCreateResponse.mjs +4 -0
- package/dist/esm/api/resources/tools/types/ToolsDeleteResponse.d.mts +7 -0
- package/dist/esm/api/resources/tools/types/ToolsDeleteResponse.mjs +4 -0
- package/dist/esm/api/resources/tools/types/ToolsGetResponse.d.mts +7 -0
- package/dist/esm/api/resources/tools/types/ToolsGetResponse.mjs +4 -0
- package/dist/esm/api/resources/tools/types/ToolsListResponse.d.mts +7 -0
- package/dist/esm/api/resources/tools/types/ToolsListResponse.mjs +4 -0
- package/dist/esm/api/resources/tools/types/ToolsUpdateResponse.d.mts +7 -0
- package/dist/esm/api/resources/tools/types/ToolsUpdateResponse.mjs +4 -0
- package/dist/esm/api/resources/tools/types/index.d.mts +5 -0
- package/dist/esm/api/resources/tools/types/index.mjs +5 -0
- package/dist/esm/api/resources/voices/client/Client.d.mts +65 -0
- package/dist/esm/api/resources/voices/client/Client.mjs +168 -0
- package/dist/esm/api/resources/voices/client/index.d.mts +2 -0
- package/dist/esm/api/resources/voices/client/index.mjs +1 -0
- package/dist/esm/api/resources/voices/client/requests/VoicesListRequest.d.mts +13 -0
- package/dist/esm/api/resources/voices/client/requests/VoicesListRequest.mjs +4 -0
- package/dist/esm/api/resources/voices/client/requests/index.d.mts +1 -0
- package/dist/esm/api/resources/voices/client/requests/index.mjs +1 -0
- package/dist/esm/api/resources/voices/index.d.mts +2 -0
- package/dist/esm/api/resources/voices/index.mjs +2 -0
- package/dist/esm/api/resources/voices/types/VoicesGetResponse.d.mts +7 -0
- package/dist/esm/api/resources/voices/types/VoicesGetResponse.mjs +4 -0
- package/dist/esm/api/resources/voices/types/VoicesListResponse.d.mts +7 -0
- package/dist/esm/api/resources/voices/types/VoicesListResponse.mjs +4 -0
- package/dist/esm/api/resources/voices/types/index.d.mts +2 -0
- package/dist/esm/api/resources/voices/types/index.mjs +2 -0
- package/dist/esm/api/types/Agent.d.mts +80 -0
- package/dist/esm/api/types/Agent.mjs +10 -0
- package/dist/esm/api/types/AssistantChoseNotToRespondPayload.d.mts +6 -0
- package/dist/esm/api/types/AssistantChoseNotToRespondPayload.mjs +4 -0
- package/dist/esm/api/types/AssistantEndedConversationPayload.d.mts +6 -0
- package/dist/esm/api/types/AssistantEndedConversationPayload.mjs +4 -0
- package/dist/esm/api/types/AudioChunkPayload.d.mts +10 -0
- package/dist/esm/api/types/AudioChunkPayload.mjs +4 -0
- package/dist/esm/api/types/AudioChunkResponsePayload.d.mts +10 -0
- package/dist/esm/api/types/AudioChunkResponsePayload.mjs +4 -0
- package/dist/esm/api/types/AudioFinishedPayload.d.mts +6 -0
- package/dist/esm/api/types/AudioFinishedPayload.mjs +4 -0
- package/dist/esm/api/types/BadRequestErrorBody.d.mts +5 -0
- package/dist/esm/api/types/BadRequestErrorBody.mjs +4 -0
- package/dist/esm/api/types/BasicError.d.mts +14 -0
- package/dist/esm/api/types/BasicError.mjs +4 -0
- package/dist/esm/api/types/ConfigPayload.d.mts +66 -0
- package/dist/esm/api/types/ConfigPayload.mjs +14 -0
- package/dist/esm/api/types/Conversation.d.mts +51 -0
- package/dist/esm/api/types/Conversation.mjs +4 -0
- package/dist/esm/api/types/ConversationAnalysis.d.mts +9 -0
- package/dist/esm/api/types/ConversationAnalysis.mjs +4 -0
- package/dist/esm/api/types/ConversationCreatedPayload.d.mts +8 -0
- package/dist/esm/api/types/ConversationCreatedPayload.mjs +4 -0
- package/dist/esm/api/types/ConversationEval.d.mts +4 -0
- package/dist/esm/api/types/ConversationEval.mjs +4 -0
- package/dist/esm/api/types/ConversationEvalPrompt.d.mts +11 -0
- package/dist/esm/api/types/ConversationEvalPrompt.mjs +4 -0
- package/dist/esm/api/types/ConversationEvaluation.d.mts +8 -0
- package/dist/esm/api/types/ConversationEvaluation.mjs +4 -0
- package/dist/esm/api/types/ConversationEvaluationResult.d.mts +32 -0
- package/dist/esm/api/types/ConversationEvaluationResult.mjs +12 -0
- package/dist/esm/api/types/ConversationExtraction.d.mts +22 -0
- package/dist/esm/api/types/ConversationExtraction.mjs +4 -0
- package/dist/esm/api/types/ConversationItem.d.mts +31 -0
- package/dist/esm/api/types/ConversationItem.mjs +10 -0
- package/dist/esm/api/types/CreateAgentRequest.d.mts +70 -0
- package/dist/esm/api/types/CreateAgentRequest.mjs +10 -0
- package/dist/esm/api/types/DtmfPayload.d.mts +8 -0
- package/dist/esm/api/types/DtmfPayload.mjs +4 -0
- package/dist/esm/api/types/ErrorPayload.d.mts +17 -0
- package/dist/esm/api/types/ErrorPayload.mjs +4 -0
- package/dist/esm/api/types/Error_.d.mts +5 -0
- package/dist/esm/api/types/Error_.mjs +4 -0
- package/dist/esm/api/types/ExtractionField.d.mts +23 -0
- package/dist/esm/api/types/ExtractionField.mjs +12 -0
- package/dist/esm/api/types/ExtractionSchema.d.mts +14 -0
- package/dist/esm/api/types/ExtractionSchema.mjs +4 -0
- package/dist/esm/api/types/InputCancelledPayload.d.mts +6 -0
- package/dist/esm/api/types/InputCancelledPayload.mjs +4 -0
- package/dist/esm/api/types/InputTextPayload.d.mts +8 -0
- package/dist/esm/api/types/InputTextPayload.mjs +4 -0
- package/dist/esm/api/types/InterruptedResponsePayload.d.mts +8 -0
- package/dist/esm/api/types/InterruptedResponsePayload.mjs +4 -0
- package/dist/esm/api/types/IsUserSpeakingPayload.d.mts +8 -0
- package/dist/esm/api/types/IsUserSpeakingPayload.mjs +4 -0
- package/dist/esm/api/types/OutboundCallConfig.d.mts +39 -0
- package/dist/esm/api/types/OutboundCallConfig.mjs +4 -0
- package/dist/esm/api/types/Project.d.mts +22 -0
- package/dist/esm/api/types/Project.mjs +4 -0
- package/dist/esm/api/types/ReadyToStartConversationPayload.d.mts +6 -0
- package/dist/esm/api/types/ReadyToStartConversationPayload.mjs +4 -0
- package/dist/esm/api/types/SetExternalIdPayload.d.mts +8 -0
- package/dist/esm/api/types/SetExternalIdPayload.mjs +4 -0
- package/dist/esm/api/types/SetTwilioCallSidPayload.d.mts +8 -0
- package/dist/esm/api/types/SetTwilioCallSidPayload.mjs +4 -0
- package/dist/esm/api/types/Task.d.mts +9 -0
- package/dist/esm/api/types/Task.mjs +4 -0
- package/dist/esm/api/types/Tool.d.mts +54 -0
- package/dist/esm/api/types/Tool.mjs +15 -0
- package/dist/esm/api/types/ToolCallInterruptedPayload.d.mts +12 -0
- package/dist/esm/api/types/ToolCallInterruptedPayload.mjs +4 -0
- package/dist/esm/api/types/ToolCallOutputPayload.d.mts +9 -0
- package/dist/esm/api/types/ToolCallOutputPayload.mjs +4 -0
- package/dist/esm/api/types/ToolCallOutputProcessedPayload.d.mts +35 -0
- package/dist/esm/api/types/ToolCallOutputProcessedPayload.mjs +4 -0
- package/dist/esm/api/types/ToolCallPayload.d.mts +12 -0
- package/dist/esm/api/types/ToolCallPayload.mjs +4 -0
- package/dist/esm/api/types/ToolParameter.d.mts +38 -0
- package/dist/esm/api/types/ToolParameter.mjs +19 -0
- package/dist/esm/api/types/UpdateSystemPromptPayload.d.mts +8 -0
- package/dist/esm/api/types/UpdateSystemPromptPayload.mjs +4 -0
- package/dist/esm/api/types/UserFinishedSpeakingPayload.d.mts +6 -0
- package/dist/esm/api/types/UserFinishedSpeakingPayload.mjs +4 -0
- package/dist/esm/api/types/UserStartedSpeakingPayload.d.mts +6 -0
- package/dist/esm/api/types/UserStartedSpeakingPayload.mjs +4 -0
- package/dist/esm/api/types/ValidationError.d.mts +14 -0
- package/dist/esm/api/types/ValidationError.mjs +4 -0
- package/dist/esm/api/types/Voice.d.mts +11 -0
- package/dist/esm/api/types/Voice.mjs +4 -0
- package/dist/esm/api/types/index.d.mts +45 -0
- package/dist/esm/api/types/index.mjs +45 -0
- package/dist/esm/api/types/overrides.d.mts +50 -0
- package/dist/esm/api/types/overrides.mjs +1 -0
- package/dist/esm/core/auth/AuthProvider.d.mts +4 -0
- package/dist/esm/core/auth/AuthProvider.mjs +1 -0
- package/dist/esm/core/auth/AuthRequest.d.mts +9 -0
- package/dist/esm/core/auth/AuthRequest.mjs +1 -0
- package/dist/esm/core/auth/BasicAuth.d.mts +8 -0
- package/dist/esm/core/auth/BasicAuth.mjs +23 -0
- package/dist/esm/core/auth/BearerToken.d.mts +5 -0
- package/dist/esm/core/auth/BearerToken.mjs +12 -0
- package/dist/esm/core/auth/index.d.mts +4 -0
- package/dist/esm/core/auth/index.mjs +2 -0
- package/dist/esm/core/base64.d.mts +2 -0
- package/dist/esm/core/base64.mjs +22 -0
- package/dist/esm/core/fetcher/APIResponse.d.mts +20 -0
- package/dist/esm/core/fetcher/APIResponse.mjs +1 -0
- package/dist/esm/core/fetcher/BinaryResponse.d.mts +20 -0
- package/dist/esm/core/fetcher/BinaryResponse.mjs +14 -0
- package/dist/esm/core/fetcher/Fetcher.d.mts +40 -0
- package/dist/esm/core/fetcher/Fetcher.mjs +116 -0
- package/dist/esm/core/fetcher/Headers.d.mts +2 -0
- package/dist/esm/core/fetcher/Headers.mjs +82 -0
- package/dist/esm/core/fetcher/HttpResponsePromise.d.mts +58 -0
- package/dist/esm/core/fetcher/HttpResponsePromise.mjs +99 -0
- package/dist/esm/core/fetcher/RawResponse.d.mts +29 -0
- package/dist/esm/core/fetcher/RawResponse.mjs +40 -0
- package/dist/esm/core/fetcher/ResponseWithBody.d.mts +4 -0
- package/dist/esm/core/fetcher/ResponseWithBody.mjs +3 -0
- package/dist/esm/core/fetcher/Supplier.d.mts +4 -0
- package/dist/esm/core/fetcher/Supplier.mjs +19 -0
- package/dist/esm/core/fetcher/createRequestUrl.d.mts +1 -0
- package/dist/esm/core/fetcher/createRequestUrl.mjs +5 -0
- package/dist/esm/core/fetcher/getErrorResponseBody.d.mts +1 -0
- package/dist/esm/core/fetcher/getErrorResponseBody.mjs +41 -0
- package/dist/esm/core/fetcher/getFetchFn.d.mts +1 -0
- package/dist/esm/core/fetcher/getFetchFn.mjs +14 -0
- package/dist/esm/core/fetcher/getHeader.d.mts +1 -0
- package/dist/esm/core/fetcher/getHeader.mjs +8 -0
- package/dist/esm/core/fetcher/getRequestBody.d.mts +7 -0
- package/dist/esm/core/fetcher/getRequestBody.mjs +20 -0
- package/dist/esm/core/fetcher/getResponseBody.d.mts +1 -0
- package/dist/esm/core/fetcher/getResponseBody.mjs +52 -0
- package/dist/esm/core/fetcher/index.d.mts +9 -0
- package/dist/esm/core/fetcher/index.mjs +5 -0
- package/dist/esm/core/fetcher/makeRequest.d.mts +1 -0
- package/dist/esm/core/fetcher/makeRequest.mjs +38 -0
- package/dist/esm/core/fetcher/requestWithRetries.d.mts +1 -0
- package/dist/esm/core/fetcher/requestWithRetries.mjs +37 -0
- package/dist/esm/core/fetcher/signals.d.mts +11 -0
- package/dist/esm/core/fetcher/signals.mjs +32 -0
- package/dist/esm/core/headers.d.mts +3 -0
- package/dist/esm/core/headers.mjs +25 -0
- package/dist/esm/core/index.d.mts +6 -0
- package/dist/esm/core/index.mjs +6 -0
- package/dist/esm/core/json.d.mts +15 -0
- package/dist/esm/core/json.mjs +19 -0
- package/dist/esm/core/runtime/index.d.mts +1 -0
- package/dist/esm/core/runtime/index.mjs +1 -0
- package/dist/esm/core/runtime/runtime.d.mts +9 -0
- package/dist/esm/core/runtime/runtime.mjs +99 -0
- package/dist/esm/core/url/index.d.mts +2 -0
- package/dist/esm/core/url/index.mjs +2 -0
- package/dist/esm/core/url/join.d.mts +1 -0
- package/dist/esm/core/url/join.mjs +66 -0
- package/dist/esm/core/url/qs.d.mts +6 -0
- package/dist/esm/core/url/qs.mjs +61 -0
- package/dist/esm/core/websocket/events.d.mts +36 -0
- package/dist/esm/core/websocket/events.mjs +21 -0
- package/dist/esm/core/websocket/index.d.mts +1 -0
- package/dist/esm/core/websocket/index.mjs +1 -0
- package/dist/esm/core/websocket/ws.d.mts +147 -0
- package/dist/esm/core/websocket/ws.mjs +423 -0
- package/dist/esm/environments.d.mts +14 -0
- package/dist/esm/environments.mjs +9 -0
- package/dist/esm/errors/PhonicError.d.mts +15 -0
- package/dist/esm/errors/PhonicError.mjs +26 -0
- package/dist/esm/errors/PhonicTimeoutError.d.mts +6 -0
- package/dist/esm/errors/PhonicTimeoutError.mjs +9 -0
- package/dist/esm/errors/index.d.mts +2 -0
- package/dist/esm/errors/index.mjs +2 -0
- package/dist/esm/index.d.mts +4 -0
- package/dist/esm/index.mjs +4 -0
- package/dist/esm/version.d.mts +1 -0
- package/dist/esm/version.mjs +1 -0
- package/package.json +1 -1
- package/dist/index.d.mts +0 -640
- package/dist/index.d.ts +0 -640
- package/dist/index.js +0 -628
- package/dist/index.mjs +0 -591
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
2
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
3
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
4
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
5
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
6
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
7
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
8
|
+
});
|
|
9
|
+
};
|
|
10
|
+
import { fromJson } from "../json.mjs";
|
|
11
|
+
import { getResponseBody } from "./getResponseBody.mjs";
|
|
12
|
+
export function getErrorResponseBody(response) {
|
|
13
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
14
|
+
var _a, _b, _c;
|
|
15
|
+
let contentType = (_a = response.headers.get("Content-Type")) === null || _a === void 0 ? void 0 : _a.toLowerCase();
|
|
16
|
+
if (contentType == null || contentType.length === 0) {
|
|
17
|
+
return getResponseBody(response);
|
|
18
|
+
}
|
|
19
|
+
if (contentType.indexOf(";") !== -1) {
|
|
20
|
+
contentType = (_c = (_b = contentType.split(";")[0]) === null || _b === void 0 ? void 0 : _b.trim()) !== null && _c !== void 0 ? _c : "";
|
|
21
|
+
}
|
|
22
|
+
switch (contentType) {
|
|
23
|
+
case "application/hal+json":
|
|
24
|
+
case "application/json":
|
|
25
|
+
case "application/ld+json":
|
|
26
|
+
case "application/problem+json":
|
|
27
|
+
case "application/vnd.api+json":
|
|
28
|
+
case "text/json":
|
|
29
|
+
const text = yield response.text();
|
|
30
|
+
return text.length > 0 ? fromJson(text) : undefined;
|
|
31
|
+
default:
|
|
32
|
+
if (contentType.startsWith("application/vnd.") && contentType.endsWith("+json")) {
|
|
33
|
+
const text = yield response.text();
|
|
34
|
+
return text.length > 0 ? fromJson(text) : undefined;
|
|
35
|
+
}
|
|
36
|
+
// Fallback to plain text if content type is not recognized
|
|
37
|
+
// Even if no body is present, the response will be an empty string
|
|
38
|
+
return yield response.text();
|
|
39
|
+
}
|
|
40
|
+
});
|
|
41
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function getFetchFn(): Promise<typeof fetch>;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
2
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
3
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
4
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
5
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
6
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
7
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
8
|
+
});
|
|
9
|
+
};
|
|
10
|
+
export function getFetchFn() {
|
|
11
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
12
|
+
return fetch;
|
|
13
|
+
});
|
|
14
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function getHeader(headers: Record<string, any>, header: string): string | undefined;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
2
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
3
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
4
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
5
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
6
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
7
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
8
|
+
});
|
|
9
|
+
};
|
|
10
|
+
import { toJson } from "../json.mjs";
|
|
11
|
+
export function getRequestBody(_a) {
|
|
12
|
+
return __awaiter(this, arguments, void 0, function* ({ body, type }) {
|
|
13
|
+
if (type.includes("json")) {
|
|
14
|
+
return toJson(body);
|
|
15
|
+
}
|
|
16
|
+
else {
|
|
17
|
+
return body;
|
|
18
|
+
}
|
|
19
|
+
});
|
|
20
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function getResponseBody(response: Response, responseType?: string): Promise<unknown>;
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
2
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
3
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
4
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
5
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
6
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
7
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
8
|
+
});
|
|
9
|
+
};
|
|
10
|
+
import { getBinaryResponse } from "./BinaryResponse.mjs";
|
|
11
|
+
import { isResponseWithBody } from "./ResponseWithBody.mjs";
|
|
12
|
+
import { fromJson } from "../json.mjs";
|
|
13
|
+
export function getResponseBody(response, responseType) {
|
|
14
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
15
|
+
if (!isResponseWithBody(response)) {
|
|
16
|
+
return undefined;
|
|
17
|
+
}
|
|
18
|
+
switch (responseType) {
|
|
19
|
+
case "binary-response":
|
|
20
|
+
return getBinaryResponse(response);
|
|
21
|
+
case "blob":
|
|
22
|
+
return yield response.blob();
|
|
23
|
+
case "arrayBuffer":
|
|
24
|
+
return yield response.arrayBuffer();
|
|
25
|
+
case "sse":
|
|
26
|
+
return response.body;
|
|
27
|
+
case "streaming":
|
|
28
|
+
return response.body;
|
|
29
|
+
case "text":
|
|
30
|
+
return yield response.text();
|
|
31
|
+
}
|
|
32
|
+
// if responseType is "json" or not specified, try to parse as JSON
|
|
33
|
+
const text = yield response.text();
|
|
34
|
+
if (text.length > 0) {
|
|
35
|
+
try {
|
|
36
|
+
let responseBody = fromJson(text);
|
|
37
|
+
return responseBody;
|
|
38
|
+
}
|
|
39
|
+
catch (err) {
|
|
40
|
+
return {
|
|
41
|
+
ok: false,
|
|
42
|
+
error: {
|
|
43
|
+
reason: "non-json",
|
|
44
|
+
statusCode: response.status,
|
|
45
|
+
rawBody: text,
|
|
46
|
+
},
|
|
47
|
+
};
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
return undefined;
|
|
51
|
+
});
|
|
52
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export type { APIResponse } from "./APIResponse.mjs";
|
|
2
|
+
export type { BinaryResponse } from "./BinaryResponse.mjs";
|
|
3
|
+
export type { Fetcher, FetchFunction } from "./Fetcher.mjs";
|
|
4
|
+
export { fetcher } from "./Fetcher.mjs";
|
|
5
|
+
export { getHeader } from "./getHeader.mjs";
|
|
6
|
+
export { HttpResponsePromise } from "./HttpResponsePromise.mjs";
|
|
7
|
+
export type { RawResponse, WithRawResponse } from "./RawResponse.mjs";
|
|
8
|
+
export { abortRawResponse, toRawResponse, unknownRawResponse } from "./RawResponse.mjs";
|
|
9
|
+
export { Supplier } from "./Supplier.mjs";
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export { fetcher } from "./Fetcher.mjs";
|
|
2
|
+
export { getHeader } from "./getHeader.mjs";
|
|
3
|
+
export { HttpResponsePromise } from "./HttpResponsePromise.mjs";
|
|
4
|
+
export { abortRawResponse, toRawResponse, unknownRawResponse } from "./RawResponse.mjs";
|
|
5
|
+
export { Supplier } from "./Supplier.mjs";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const makeRequest: (fetchFn: (url: string, init: RequestInit) => Promise<Response>, url: string, method: string, headers: Record<string, string>, requestBody: BodyInit | undefined, timeoutMs?: number, abortSignal?: AbortSignal, withCredentials?: boolean, duplex?: "half") => Promise<Response>;
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
2
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
3
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
4
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
5
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
6
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
7
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
8
|
+
});
|
|
9
|
+
};
|
|
10
|
+
import { anySignal, getTimeoutSignal } from "./signals.mjs";
|
|
11
|
+
export const makeRequest = (fetchFn, url, method, headers, requestBody, timeoutMs, abortSignal, withCredentials, duplex) => __awaiter(void 0, void 0, void 0, function* () {
|
|
12
|
+
const signals = [];
|
|
13
|
+
// Add timeout signal
|
|
14
|
+
let timeoutAbortId = undefined;
|
|
15
|
+
if (timeoutMs != null) {
|
|
16
|
+
const { signal, abortId } = getTimeoutSignal(timeoutMs);
|
|
17
|
+
timeoutAbortId = abortId;
|
|
18
|
+
signals.push(signal);
|
|
19
|
+
}
|
|
20
|
+
// Add arbitrary signal
|
|
21
|
+
if (abortSignal != null) {
|
|
22
|
+
signals.push(abortSignal);
|
|
23
|
+
}
|
|
24
|
+
let newSignals = anySignal(signals);
|
|
25
|
+
const response = yield fetchFn(url, {
|
|
26
|
+
method: method,
|
|
27
|
+
headers,
|
|
28
|
+
body: requestBody,
|
|
29
|
+
signal: newSignals,
|
|
30
|
+
credentials: withCredentials ? "include" : undefined,
|
|
31
|
+
// @ts-ignore
|
|
32
|
+
duplex,
|
|
33
|
+
});
|
|
34
|
+
if (timeoutAbortId != null) {
|
|
35
|
+
clearTimeout(timeoutAbortId);
|
|
36
|
+
}
|
|
37
|
+
return response;
|
|
38
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function requestWithRetries(requestFn: () => Promise<Response>, maxRetries?: number): Promise<Response>;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
2
|
+
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
3
|
+
return new (P || (P = Promise))(function (resolve, reject) {
|
|
4
|
+
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
5
|
+
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
6
|
+
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
7
|
+
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
8
|
+
});
|
|
9
|
+
};
|
|
10
|
+
const INITIAL_RETRY_DELAY = 1000; // in milliseconds
|
|
11
|
+
const MAX_RETRY_DELAY = 60000; // in milliseconds
|
|
12
|
+
const DEFAULT_MAX_RETRIES = 2;
|
|
13
|
+
const JITTER_FACTOR = 0.2; // 20% random jitter
|
|
14
|
+
function addJitter(delay) {
|
|
15
|
+
// Generate a random value between -JITTER_FACTOR and +JITTER_FACTOR
|
|
16
|
+
const jitterMultiplier = 1 + (Math.random() * 2 - 1) * JITTER_FACTOR;
|
|
17
|
+
return delay * jitterMultiplier;
|
|
18
|
+
}
|
|
19
|
+
export function requestWithRetries(requestFn_1) {
|
|
20
|
+
return __awaiter(this, arguments, void 0, function* (requestFn, maxRetries = DEFAULT_MAX_RETRIES) {
|
|
21
|
+
let response = yield requestFn();
|
|
22
|
+
for (let i = 0; i < maxRetries; ++i) {
|
|
23
|
+
if ([408, 429].includes(response.status) || response.status >= 500) {
|
|
24
|
+
// Calculate base delay using exponential backoff (in milliseconds)
|
|
25
|
+
const baseDelay = Math.min(INITIAL_RETRY_DELAY * Math.pow(2, i), MAX_RETRY_DELAY);
|
|
26
|
+
// Add jitter to the delay
|
|
27
|
+
const delayWithJitter = addJitter(baseDelay);
|
|
28
|
+
yield new Promise((resolve) => setTimeout(resolve, delayWithJitter));
|
|
29
|
+
response = yield requestFn();
|
|
30
|
+
}
|
|
31
|
+
else {
|
|
32
|
+
break;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
return response;
|
|
36
|
+
});
|
|
37
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export declare function getTimeoutSignal(timeoutMs: number): {
|
|
2
|
+
signal: AbortSignal;
|
|
3
|
+
abortId: NodeJS.Timeout;
|
|
4
|
+
};
|
|
5
|
+
/**
|
|
6
|
+
* Returns an abort signal that is getting aborted when
|
|
7
|
+
* at least one of the specified abort signals is aborted.
|
|
8
|
+
*
|
|
9
|
+
* Requires at least node.js 18.
|
|
10
|
+
*/
|
|
11
|
+
export declare function anySignal(...args: AbortSignal[] | [AbortSignal[]]): AbortSignal;
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
const TIMEOUT = "timeout";
|
|
2
|
+
export function getTimeoutSignal(timeoutMs) {
|
|
3
|
+
const controller = new AbortController();
|
|
4
|
+
const abortId = setTimeout(() => controller.abort(TIMEOUT), timeoutMs);
|
|
5
|
+
return { signal: controller.signal, abortId };
|
|
6
|
+
}
|
|
7
|
+
/**
|
|
8
|
+
* Returns an abort signal that is getting aborted when
|
|
9
|
+
* at least one of the specified abort signals is aborted.
|
|
10
|
+
*
|
|
11
|
+
* Requires at least node.js 18.
|
|
12
|
+
*/
|
|
13
|
+
export function anySignal(...args) {
|
|
14
|
+
// Allowing signals to be passed either as array
|
|
15
|
+
// of signals or as multiple arguments.
|
|
16
|
+
const signals = (args.length === 1 && Array.isArray(args[0]) ? args[0] : args);
|
|
17
|
+
const controller = new AbortController();
|
|
18
|
+
for (const signal of signals) {
|
|
19
|
+
if (signal.aborted) {
|
|
20
|
+
// Exiting early if one of the signals
|
|
21
|
+
// is already aborted.
|
|
22
|
+
controller.abort(signal === null || signal === void 0 ? void 0 : signal.reason);
|
|
23
|
+
break;
|
|
24
|
+
}
|
|
25
|
+
// Listening for signals and removing the listeners
|
|
26
|
+
// when at least one symbol is aborted.
|
|
27
|
+
signal.addEventListener("abort", () => controller.abort(signal === null || signal === void 0 ? void 0 : signal.reason), {
|
|
28
|
+
signal: controller.signal,
|
|
29
|
+
});
|
|
30
|
+
}
|
|
31
|
+
return controller.signal;
|
|
32
|
+
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import * as core from "./index.mjs";
|
|
2
|
+
export declare function mergeHeaders(...headersArray: (Record<string, string | core.Supplier<string | undefined> | undefined> | undefined)[]): Record<string, string | core.Supplier<string | undefined>>;
|
|
3
|
+
export declare function mergeOnlyDefinedHeaders(...headersArray: (Record<string, string | core.Supplier<string | undefined> | undefined> | undefined)[]): Record<string, string | core.Supplier<string | undefined>>;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export function mergeHeaders(...headersArray) {
|
|
2
|
+
const result = {};
|
|
3
|
+
for (const [key, value] of headersArray
|
|
4
|
+
.filter((headers) => headers != null)
|
|
5
|
+
.flatMap((headers) => Object.entries(headers))) {
|
|
6
|
+
if (value != null) {
|
|
7
|
+
result[key] = value;
|
|
8
|
+
}
|
|
9
|
+
else if (key in result) {
|
|
10
|
+
delete result[key];
|
|
11
|
+
}
|
|
12
|
+
}
|
|
13
|
+
return result;
|
|
14
|
+
}
|
|
15
|
+
export function mergeOnlyDefinedHeaders(...headersArray) {
|
|
16
|
+
const result = {};
|
|
17
|
+
for (const [key, value] of headersArray
|
|
18
|
+
.filter((headers) => headers != null)
|
|
19
|
+
.flatMap((headers) => Object.entries(headers))) {
|
|
20
|
+
if (value != null) {
|
|
21
|
+
result[key] = value;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
return result;
|
|
25
|
+
}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Serialize a value to JSON
|
|
3
|
+
* @param value A JavaScript value, usually an object or array, to be converted.
|
|
4
|
+
* @param replacer A function that transforms the results.
|
|
5
|
+
* @param space Adds indentation, white space, and line break characters to the return-value JSON text to make it easier to read.
|
|
6
|
+
* @returns JSON string
|
|
7
|
+
*/
|
|
8
|
+
export declare const toJson: (value: unknown, replacer?: (this: unknown, key: string, value: unknown) => unknown, space?: string | number) => string;
|
|
9
|
+
/**
|
|
10
|
+
* Parse JSON string to object, array, or other type
|
|
11
|
+
* @param text A valid JSON string.
|
|
12
|
+
* @param reviver A function that transforms the results. This function is called for each member of the object. If a member contains nested objects, the nested objects are transformed before the parent object is.
|
|
13
|
+
* @returns Parsed object, array, or other type
|
|
14
|
+
*/
|
|
15
|
+
export declare function fromJson<T = unknown>(text: string, reviver?: (this: unknown, key: string, value: unknown) => unknown): T;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Serialize a value to JSON
|
|
3
|
+
* @param value A JavaScript value, usually an object or array, to be converted.
|
|
4
|
+
* @param replacer A function that transforms the results.
|
|
5
|
+
* @param space Adds indentation, white space, and line break characters to the return-value JSON text to make it easier to read.
|
|
6
|
+
* @returns JSON string
|
|
7
|
+
*/
|
|
8
|
+
export const toJson = (value, replacer, space) => {
|
|
9
|
+
return JSON.stringify(value, replacer, space);
|
|
10
|
+
};
|
|
11
|
+
/**
|
|
12
|
+
* Parse JSON string to object, array, or other type
|
|
13
|
+
* @param text A valid JSON string.
|
|
14
|
+
* @param reviver A function that transforms the results. This function is called for each member of the object. If a member contains nested objects, the nested objects are transformed before the parent object is.
|
|
15
|
+
* @returns Parsed object, array, or other type
|
|
16
|
+
*/
|
|
17
|
+
export function fromJson(text, reviver) {
|
|
18
|
+
return JSON.parse(text, reviver);
|
|
19
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { RUNTIME } from "./runtime.mjs";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { RUNTIME } from "./runtime.mjs";
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* A constant that indicates which environment and version the SDK is running in.
|
|
3
|
+
*/
|
|
4
|
+
export declare const RUNTIME: Runtime;
|
|
5
|
+
export interface Runtime {
|
|
6
|
+
type: "browser" | "web-worker" | "deno" | "bun" | "node" | "react-native" | "unknown" | "workerd" | "edge-runtime";
|
|
7
|
+
version?: string;
|
|
8
|
+
parsedVersion?: number;
|
|
9
|
+
}
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* A constant that indicates which environment and version the SDK is running in.
|
|
3
|
+
*/
|
|
4
|
+
export const RUNTIME = evaluateRuntime();
|
|
5
|
+
function evaluateRuntime() {
|
|
6
|
+
var _a, _b, _c, _d, _e;
|
|
7
|
+
/**
|
|
8
|
+
* A constant that indicates whether the environment the code is running is a Web Browser.
|
|
9
|
+
*/
|
|
10
|
+
const isBrowser = typeof window !== "undefined" && typeof window.document !== "undefined";
|
|
11
|
+
if (isBrowser) {
|
|
12
|
+
return {
|
|
13
|
+
type: "browser",
|
|
14
|
+
version: window.navigator.userAgent,
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* A constant that indicates whether the environment the code is running is Cloudflare.
|
|
19
|
+
* https://developers.cloudflare.com/workers/runtime-apis/web-standards/#navigatoruseragent
|
|
20
|
+
*/
|
|
21
|
+
const isCloudflare = typeof globalThis !== "undefined" && ((_a = globalThis === null || globalThis === void 0 ? void 0 : globalThis.navigator) === null || _a === void 0 ? void 0 : _a.userAgent) === "Cloudflare-Workers";
|
|
22
|
+
if (isCloudflare) {
|
|
23
|
+
return {
|
|
24
|
+
type: "workerd",
|
|
25
|
+
};
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* A constant that indicates whether the environment the code is running is Edge Runtime.
|
|
29
|
+
* https://vercel.com/docs/functions/runtimes/edge-runtime#check-if-you're-running-on-the-edge-runtime
|
|
30
|
+
*/
|
|
31
|
+
const isEdgeRuntime = typeof EdgeRuntime === "string";
|
|
32
|
+
if (isEdgeRuntime) {
|
|
33
|
+
return {
|
|
34
|
+
type: "edge-runtime",
|
|
35
|
+
};
|
|
36
|
+
}
|
|
37
|
+
/**
|
|
38
|
+
* A constant that indicates whether the environment the code is running is a Web Worker.
|
|
39
|
+
*/
|
|
40
|
+
const isWebWorker = typeof self === "object" &&
|
|
41
|
+
typeof (self === null || self === void 0 ? void 0 : self.importScripts) === "function" &&
|
|
42
|
+
(((_b = self.constructor) === null || _b === void 0 ? void 0 : _b.name) === "DedicatedWorkerGlobalScope" ||
|
|
43
|
+
((_c = self.constructor) === null || _c === void 0 ? void 0 : _c.name) === "ServiceWorkerGlobalScope" ||
|
|
44
|
+
((_d = self.constructor) === null || _d === void 0 ? void 0 : _d.name) === "SharedWorkerGlobalScope");
|
|
45
|
+
if (isWebWorker) {
|
|
46
|
+
return {
|
|
47
|
+
type: "web-worker",
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* A constant that indicates whether the environment the code is running is Deno.
|
|
52
|
+
* FYI Deno spoofs process.versions.node, see https://deno.land/std@0.177.0/node/process.ts?s=versions
|
|
53
|
+
*/
|
|
54
|
+
const isDeno = typeof Deno !== "undefined" && typeof Deno.version !== "undefined" && typeof Deno.version.deno !== "undefined";
|
|
55
|
+
if (isDeno) {
|
|
56
|
+
return {
|
|
57
|
+
type: "deno",
|
|
58
|
+
version: Deno.version.deno,
|
|
59
|
+
};
|
|
60
|
+
}
|
|
61
|
+
/**
|
|
62
|
+
* A constant that indicates whether the environment the code is running is Bun.sh.
|
|
63
|
+
*/
|
|
64
|
+
const isBun = typeof Bun !== "undefined" && typeof Bun.version !== "undefined";
|
|
65
|
+
if (isBun) {
|
|
66
|
+
return {
|
|
67
|
+
type: "bun",
|
|
68
|
+
version: Bun.version,
|
|
69
|
+
};
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
* A constant that indicates whether the environment the code is running is Node.JS.
|
|
73
|
+
*/
|
|
74
|
+
const isNode = typeof process !== "undefined" &&
|
|
75
|
+
"version" in process &&
|
|
76
|
+
!!process.version &&
|
|
77
|
+
"versions" in process &&
|
|
78
|
+
!!((_e = process.versions) === null || _e === void 0 ? void 0 : _e.node);
|
|
79
|
+
if (isNode) {
|
|
80
|
+
return {
|
|
81
|
+
type: "node",
|
|
82
|
+
version: process.versions.node,
|
|
83
|
+
parsedVersion: Number(process.versions.node.split(".")[0]),
|
|
84
|
+
};
|
|
85
|
+
}
|
|
86
|
+
/**
|
|
87
|
+
* A constant that indicates whether the environment the code is running is in React-Native.
|
|
88
|
+
* https://github.com/facebook/react-native/blob/main/packages/react-native/Libraries/Core/setUpNavigator.js
|
|
89
|
+
*/
|
|
90
|
+
const isReactNative = typeof navigator !== "undefined" && (navigator === null || navigator === void 0 ? void 0 : navigator.product) === "ReactNative";
|
|
91
|
+
if (isReactNative) {
|
|
92
|
+
return {
|
|
93
|
+
type: "react-native",
|
|
94
|
+
};
|
|
95
|
+
}
|
|
96
|
+
return {
|
|
97
|
+
type: "unknown",
|
|
98
|
+
};
|
|
99
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare function join(base: string, ...segments: string[]): string;
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
export function join(base, ...segments) {
|
|
2
|
+
if (!base) {
|
|
3
|
+
return "";
|
|
4
|
+
}
|
|
5
|
+
if (segments.length === 0) {
|
|
6
|
+
return base;
|
|
7
|
+
}
|
|
8
|
+
if (base.includes("://")) {
|
|
9
|
+
let url;
|
|
10
|
+
try {
|
|
11
|
+
url = new URL(base);
|
|
12
|
+
}
|
|
13
|
+
catch (_a) {
|
|
14
|
+
// Fallback to path joining if URL is malformed
|
|
15
|
+
return joinPath(base, ...segments);
|
|
16
|
+
}
|
|
17
|
+
const lastSegment = segments[segments.length - 1];
|
|
18
|
+
const shouldPreserveTrailingSlash = lastSegment && lastSegment.endsWith("/");
|
|
19
|
+
for (const segment of segments) {
|
|
20
|
+
const cleanSegment = trimSlashes(segment);
|
|
21
|
+
if (cleanSegment) {
|
|
22
|
+
url.pathname = joinPathSegments(url.pathname, cleanSegment);
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
if (shouldPreserveTrailingSlash && !url.pathname.endsWith("/")) {
|
|
26
|
+
url.pathname += "/";
|
|
27
|
+
}
|
|
28
|
+
return url.toString();
|
|
29
|
+
}
|
|
30
|
+
return joinPath(base, ...segments);
|
|
31
|
+
}
|
|
32
|
+
function joinPath(base, ...segments) {
|
|
33
|
+
if (segments.length === 0) {
|
|
34
|
+
return base;
|
|
35
|
+
}
|
|
36
|
+
let result = base;
|
|
37
|
+
const lastSegment = segments[segments.length - 1];
|
|
38
|
+
const shouldPreserveTrailingSlash = lastSegment && lastSegment.endsWith("/");
|
|
39
|
+
for (const segment of segments) {
|
|
40
|
+
const cleanSegment = trimSlashes(segment);
|
|
41
|
+
if (cleanSegment) {
|
|
42
|
+
result = joinPathSegments(result, cleanSegment);
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
if (shouldPreserveTrailingSlash && !result.endsWith("/")) {
|
|
46
|
+
result += "/";
|
|
47
|
+
}
|
|
48
|
+
return result;
|
|
49
|
+
}
|
|
50
|
+
function joinPathSegments(left, right) {
|
|
51
|
+
if (left.endsWith("/")) {
|
|
52
|
+
return left + right;
|
|
53
|
+
}
|
|
54
|
+
return left + "/" + right;
|
|
55
|
+
}
|
|
56
|
+
function trimSlashes(str) {
|
|
57
|
+
if (!str)
|
|
58
|
+
return str;
|
|
59
|
+
let start = 0;
|
|
60
|
+
let end = str.length;
|
|
61
|
+
if (str.startsWith("/"))
|
|
62
|
+
start = 1;
|
|
63
|
+
if (str.endsWith("/"))
|
|
64
|
+
end = str.length - 1;
|
|
65
|
+
return start === 0 && end === str.length ? str : str.slice(start, end);
|
|
66
|
+
}
|