├── .devcontainer └── devcontainer.json ├── .eslintrc.js ├── .github └── workflows │ ├── ci.yml │ ├── publish-npm.yml │ └── release-doctor.yml ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── .release-please-manifest.json ├── .stats.yml ├── Brewfile ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SECURITY.md ├── api.md ├── bin ├── check-release-environment └── publish-npm ├── examples └── .keep ├── jest.config.ts ├── package.json ├── release-please-config.json ├── scripts ├── bootstrap ├── build ├── fast-format ├── format ├── lint ├── mock ├── test └── utils │ ├── check-is-in-git-install.sh │ ├── check-version.cjs │ ├── fix-index-exports.cjs │ ├── git-swap.sh │ ├── make-dist-package-json.cjs │ ├── postprocess-files.cjs │ └── upload-artifact.sh ├── src ├── _shims │ ├── MultipartBody.ts │ ├── README.md │ ├── auto │ │ ├── runtime-bun.ts │ │ ├── runtime-deno.ts │ │ ├── runtime-node.ts │ │ ├── runtime.ts │ │ ├── types-deno.ts │ │ ├── types-node.ts │ │ ├── types.d.ts │ │ ├── types.js │ │ └── types.mjs │ ├── bun-runtime.ts │ ├── index-deno.ts │ ├── index.d.ts │ ├── index.js │ ├── index.mjs │ ├── manual-types.d.ts │ ├── manual-types.js │ ├── manual-types.mjs │ ├── node-runtime.ts │ ├── node-types.d.ts │ ├── node-types.js │ ├── node-types.mjs │ ├── registry.ts │ ├── web-runtime.ts │ ├── web-types.d.ts │ ├── web-types.js │ └── web-types.mjs ├── core.ts ├── error.ts ├── index.ts ├── lib │ ├── .keep │ └── webhook_auth.ts ├── resource.ts ├── resources.ts ├── resources │ ├── agent.ts │ ├── batch-call.ts │ ├── call.ts │ ├── chat-agent.ts │ ├── chat.ts │ ├── concurrency.ts │ ├── conversation-flow-component.ts │ ├── conversation-flow.ts │ ├── index.ts │ ├── knowledge-base.ts │ ├── llm.ts │ ├── mcp-tool.ts │ ├── phone-number.ts │ ├── tests.ts │ └── voice.ts ├── shims │ ├── node.ts │ └── web.ts ├── uploads.ts └── version.ts ├── tests ├── api-resources │ ├── agent.test.ts │ ├── batch-call.test.ts │ ├── call.test.ts │ ├── chat-agent.test.ts │ ├── chat.test.ts │ ├── concurrency.test.ts │ ├── conversation-flow-component.test.ts │ ├── conversation-flow.test.ts │ ├── knowledge-base.test.ts │ ├── llm.test.ts │ ├── mcp-tool.test.ts │ ├── phone-number.test.ts │ ├── tests.test.ts │ └── voice.test.ts ├── form.test.ts ├── index.test.ts ├── responses.test.ts ├── stringifyQuery.test.ts └── uploads.test.ts ├── tsc-multi.json ├── tsconfig.build.json ├── tsconfig.deno.json ├── tsconfig.dist-src.json ├── tsconfig.json └── yarn.lock /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/publish-npm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/.github/workflows/publish-npm.yml -------------------------------------------------------------------------------- /.github/workflows/release-doctor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/.github/workflows/release-doctor.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.release-please-manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | ".": "4.66.0" 3 | } 4 | -------------------------------------------------------------------------------- /.stats.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/.stats.yml -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- 1 | brew "node" 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/SECURITY.md -------------------------------------------------------------------------------- /api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/api.md -------------------------------------------------------------------------------- /bin/check-release-environment: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/bin/check-release-environment -------------------------------------------------------------------------------- /bin/publish-npm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/bin/publish-npm -------------------------------------------------------------------------------- /examples/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/examples/.keep -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/jest.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/package.json -------------------------------------------------------------------------------- /release-please-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/release-please-config.json -------------------------------------------------------------------------------- /scripts/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/scripts/bootstrap -------------------------------------------------------------------------------- /scripts/build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/scripts/build -------------------------------------------------------------------------------- /scripts/fast-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/scripts/fast-format -------------------------------------------------------------------------------- /scripts/format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/scripts/format -------------------------------------------------------------------------------- /scripts/lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/scripts/lint -------------------------------------------------------------------------------- /scripts/mock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/scripts/mock -------------------------------------------------------------------------------- /scripts/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/scripts/test -------------------------------------------------------------------------------- /scripts/utils/check-is-in-git-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/scripts/utils/check-is-in-git-install.sh -------------------------------------------------------------------------------- /scripts/utils/check-version.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/scripts/utils/check-version.cjs -------------------------------------------------------------------------------- /scripts/utils/fix-index-exports.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/scripts/utils/fix-index-exports.cjs -------------------------------------------------------------------------------- /scripts/utils/git-swap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/scripts/utils/git-swap.sh -------------------------------------------------------------------------------- /scripts/utils/make-dist-package-json.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/scripts/utils/make-dist-package-json.cjs -------------------------------------------------------------------------------- /scripts/utils/postprocess-files.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/scripts/utils/postprocess-files.cjs -------------------------------------------------------------------------------- /scripts/utils/upload-artifact.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/scripts/utils/upload-artifact.sh -------------------------------------------------------------------------------- /src/_shims/MultipartBody.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/_shims/MultipartBody.ts -------------------------------------------------------------------------------- /src/_shims/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/_shims/README.md -------------------------------------------------------------------------------- /src/_shims/auto/runtime-bun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/_shims/auto/runtime-bun.ts -------------------------------------------------------------------------------- /src/_shims/auto/runtime-deno.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/_shims/auto/runtime-deno.ts -------------------------------------------------------------------------------- /src/_shims/auto/runtime-node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/_shims/auto/runtime-node.ts -------------------------------------------------------------------------------- /src/_shims/auto/runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/_shims/auto/runtime.ts -------------------------------------------------------------------------------- /src/_shims/auto/types-deno.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/_shims/auto/types-deno.ts -------------------------------------------------------------------------------- /src/_shims/auto/types-node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/_shims/auto/types-node.ts -------------------------------------------------------------------------------- /src/_shims/auto/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/_shims/auto/types.d.ts -------------------------------------------------------------------------------- /src/_shims/auto/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/_shims/auto/types.js -------------------------------------------------------------------------------- /src/_shims/auto/types.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/_shims/auto/types.mjs -------------------------------------------------------------------------------- /src/_shims/bun-runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/_shims/bun-runtime.ts -------------------------------------------------------------------------------- /src/_shims/index-deno.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/_shims/index-deno.ts -------------------------------------------------------------------------------- /src/_shims/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/_shims/index.d.ts -------------------------------------------------------------------------------- /src/_shims/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/_shims/index.js -------------------------------------------------------------------------------- /src/_shims/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/_shims/index.mjs -------------------------------------------------------------------------------- /src/_shims/manual-types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/_shims/manual-types.d.ts -------------------------------------------------------------------------------- /src/_shims/manual-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/_shims/manual-types.js -------------------------------------------------------------------------------- /src/_shims/manual-types.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/_shims/manual-types.mjs -------------------------------------------------------------------------------- /src/_shims/node-runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/_shims/node-runtime.ts -------------------------------------------------------------------------------- /src/_shims/node-types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/_shims/node-types.d.ts -------------------------------------------------------------------------------- /src/_shims/node-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/_shims/node-types.js -------------------------------------------------------------------------------- /src/_shims/node-types.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/_shims/node-types.mjs -------------------------------------------------------------------------------- /src/_shims/registry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/_shims/registry.ts -------------------------------------------------------------------------------- /src/_shims/web-runtime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/_shims/web-runtime.ts -------------------------------------------------------------------------------- /src/_shims/web-types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/_shims/web-types.d.ts -------------------------------------------------------------------------------- /src/_shims/web-types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/_shims/web-types.js -------------------------------------------------------------------------------- /src/_shims/web-types.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/_shims/web-types.mjs -------------------------------------------------------------------------------- /src/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/core.ts -------------------------------------------------------------------------------- /src/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/error.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/lib/.keep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/lib/.keep -------------------------------------------------------------------------------- /src/lib/webhook_auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/lib/webhook_auth.ts -------------------------------------------------------------------------------- /src/resource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/resource.ts -------------------------------------------------------------------------------- /src/resources.ts: -------------------------------------------------------------------------------- 1 | export * from './resources/index'; 2 | -------------------------------------------------------------------------------- /src/resources/agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/resources/agent.ts -------------------------------------------------------------------------------- /src/resources/batch-call.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/resources/batch-call.ts -------------------------------------------------------------------------------- /src/resources/call.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/resources/call.ts -------------------------------------------------------------------------------- /src/resources/chat-agent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/resources/chat-agent.ts -------------------------------------------------------------------------------- /src/resources/chat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/resources/chat.ts -------------------------------------------------------------------------------- /src/resources/concurrency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/resources/concurrency.ts -------------------------------------------------------------------------------- /src/resources/conversation-flow-component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/resources/conversation-flow-component.ts -------------------------------------------------------------------------------- /src/resources/conversation-flow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/resources/conversation-flow.ts -------------------------------------------------------------------------------- /src/resources/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/resources/index.ts -------------------------------------------------------------------------------- /src/resources/knowledge-base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/resources/knowledge-base.ts -------------------------------------------------------------------------------- /src/resources/llm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/resources/llm.ts -------------------------------------------------------------------------------- /src/resources/mcp-tool.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/resources/mcp-tool.ts -------------------------------------------------------------------------------- /src/resources/phone-number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/resources/phone-number.ts -------------------------------------------------------------------------------- /src/resources/tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/resources/tests.ts -------------------------------------------------------------------------------- /src/resources/voice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/resources/voice.ts -------------------------------------------------------------------------------- /src/shims/node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/shims/node.ts -------------------------------------------------------------------------------- /src/shims/web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/shims/web.ts -------------------------------------------------------------------------------- /src/uploads.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/uploads.ts -------------------------------------------------------------------------------- /src/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/src/version.ts -------------------------------------------------------------------------------- /tests/api-resources/agent.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/tests/api-resources/agent.test.ts -------------------------------------------------------------------------------- /tests/api-resources/batch-call.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/tests/api-resources/batch-call.test.ts -------------------------------------------------------------------------------- /tests/api-resources/call.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/tests/api-resources/call.test.ts -------------------------------------------------------------------------------- /tests/api-resources/chat-agent.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/tests/api-resources/chat-agent.test.ts -------------------------------------------------------------------------------- /tests/api-resources/chat.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/tests/api-resources/chat.test.ts -------------------------------------------------------------------------------- /tests/api-resources/concurrency.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/tests/api-resources/concurrency.test.ts -------------------------------------------------------------------------------- /tests/api-resources/conversation-flow-component.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/tests/api-resources/conversation-flow-component.test.ts -------------------------------------------------------------------------------- /tests/api-resources/conversation-flow.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/tests/api-resources/conversation-flow.test.ts -------------------------------------------------------------------------------- /tests/api-resources/knowledge-base.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/tests/api-resources/knowledge-base.test.ts -------------------------------------------------------------------------------- /tests/api-resources/llm.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/tests/api-resources/llm.test.ts -------------------------------------------------------------------------------- /tests/api-resources/mcp-tool.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/tests/api-resources/mcp-tool.test.ts -------------------------------------------------------------------------------- /tests/api-resources/phone-number.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/tests/api-resources/phone-number.test.ts -------------------------------------------------------------------------------- /tests/api-resources/tests.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/tests/api-resources/tests.test.ts -------------------------------------------------------------------------------- /tests/api-resources/voice.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/tests/api-resources/voice.test.ts -------------------------------------------------------------------------------- /tests/form.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/tests/form.test.ts -------------------------------------------------------------------------------- /tests/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/tests/index.test.ts -------------------------------------------------------------------------------- /tests/responses.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/tests/responses.test.ts -------------------------------------------------------------------------------- /tests/stringifyQuery.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/tests/stringifyQuery.test.ts -------------------------------------------------------------------------------- /tests/uploads.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/tests/uploads.test.ts -------------------------------------------------------------------------------- /tsc-multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/tsc-multi.json -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.deno.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/tsconfig.deno.json -------------------------------------------------------------------------------- /tsconfig.dist-src.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/tsconfig.dist-src.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RetellAI/retell-typescript-sdk/HEAD/yarn.lock --------------------------------------------------------------------------------