@human2human/sdk 0.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/README.md +133 -0
- package/dist/client.d.ts +45 -0
- package/dist/client.js +74 -0
- package/dist/environment.d.ts +28 -0
- package/dist/environment.js +39 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.js +51 -0
- package/dist/resources/agent/build/index.d.ts +5 -0
- package/dist/resources/agent/build/index.js +42 -0
- package/dist/resources/agent/build/resource-client.d.ts +10 -0
- package/dist/resources/agent/build/resource-client.js +20 -0
- package/dist/resources/agent/build/workflow/index.d.ts +5 -0
- package/dist/resources/agent/build/workflow/index.js +8 -0
- package/dist/resources/agent/build/workflow/request-types.d.ts +59 -0
- package/dist/resources/agent/build/workflow/request-types.js +112 -0
- package/dist/resources/agent/build/workflow/resource-client.d.ts +21 -0
- package/dist/resources/agent/build/workflow/resource-client.js +110 -0
- package/dist/resources/agent/index.d.ts +5 -0
- package/dist/resources/agent/index.js +42 -0
- package/dist/resources/agent/resource-client.d.ts +10 -0
- package/dist/resources/agent/resource-client.js +20 -0
- package/dist/resources/auth/index.d.ts +6 -0
- package/dist/resources/auth/index.js +43 -0
- package/dist/resources/auth/login/index.d.ts +5 -0
- package/dist/resources/auth/login/index.js +8 -0
- package/dist/resources/auth/login/request-types.d.ts +23 -0
- package/dist/resources/auth/login/request-types.js +71 -0
- package/dist/resources/auth/login/resource-client.d.ts +15 -0
- package/dist/resources/auth/login/resource-client.js +33 -0
- package/dist/resources/auth/refresh/index.d.ts +5 -0
- package/dist/resources/auth/refresh/index.js +8 -0
- package/dist/resources/auth/refresh/request-types.d.ts +23 -0
- package/dist/resources/auth/refresh/request-types.js +71 -0
- package/dist/resources/auth/refresh/resource-client.d.ts +15 -0
- package/dist/resources/auth/refresh/resource-client.js +33 -0
- package/dist/resources/auth/resource-client.d.ts +13 -0
- package/dist/resources/auth/resource-client.js +25 -0
- package/dist/resources/chats/index.d.ts +5 -0
- package/dist/resources/chats/index.js +8 -0
- package/dist/resources/chats/request-types.d.ts +66 -0
- package/dist/resources/chats/request-types.js +142 -0
- package/dist/resources/chats/resource-client.d.ts +33 -0
- package/dist/resources/chats/resource-client.js +116 -0
- package/dist/resources/feeds/index.d.ts +7 -0
- package/dist/resources/feeds/index.js +43 -0
- package/dist/resources/feeds/items/index.d.ts +5 -0
- package/dist/resources/feeds/items/index.js +8 -0
- package/dist/resources/feeds/items/request-types.d.ts +44 -0
- package/dist/resources/feeds/items/request-types.js +100 -0
- package/dist/resources/feeds/items/resource-client.d.ts +21 -0
- package/dist/resources/feeds/items/resource-client.js +48 -0
- package/dist/resources/feeds/request-types.d.ts +44 -0
- package/dist/resources/feeds/request-types.js +100 -0
- package/dist/resources/feeds/resource-client.d.ts +33 -0
- package/dist/resources/feeds/resource-client.js +109 -0
- package/dist/resources/feeds/vector/index.d.ts +5 -0
- package/dist/resources/feeds/vector/index.js +42 -0
- package/dist/resources/feeds/vector/resource-client.d.ts +10 -0
- package/dist/resources/feeds/vector/resource-client.js +20 -0
- package/dist/resources/feeds/vector/search/index.d.ts +5 -0
- package/dist/resources/feeds/vector/search/index.js +8 -0
- package/dist/resources/feeds/vector/search/request-types.d.ts +28 -0
- package/dist/resources/feeds/vector/search/request-types.js +75 -0
- package/dist/resources/feeds/vector/search/resource-client.d.ts +15 -0
- package/dist/resources/feeds/vector/search/resource-client.js +67 -0
- package/dist/resources/index.d.ts +12 -0
- package/dist/resources/index.js +48 -0
- package/dist/resources/integrations/api/index.d.ts +7 -0
- package/dist/resources/integrations/api/index.js +43 -0
- package/dist/resources/integrations/api/operations/index.d.ts +5 -0
- package/dist/resources/integrations/api/operations/index.js +8 -0
- package/dist/resources/integrations/api/operations/request-types.d.ts +88 -0
- package/dist/resources/integrations/api/operations/request-types.js +179 -0
- package/dist/resources/integrations/api/operations/resource-client.d.ts +33 -0
- package/dist/resources/integrations/api/operations/resource-client.js +83 -0
- package/dist/resources/integrations/api/request-types.d.ts +59 -0
- package/dist/resources/integrations/api/request-types.js +129 -0
- package/dist/resources/integrations/api/resource-client.d.ts +33 -0
- package/dist/resources/integrations/api/resource-client.js +75 -0
- package/dist/resources/integrations/api/secrets/index.d.ts +5 -0
- package/dist/resources/integrations/api/secrets/index.js +8 -0
- package/dist/resources/integrations/api/secrets/request-types.d.ts +63 -0
- package/dist/resources/integrations/api/secrets/request-types.js +137 -0
- package/dist/resources/integrations/api/secrets/resource-client.d.ts +27 -0
- package/dist/resources/integrations/api/secrets/resource-client.js +97 -0
- package/dist/resources/integrations/index.d.ts +5 -0
- package/dist/resources/integrations/index.js +42 -0
- package/dist/resources/integrations/resource-client.d.ts +10 -0
- package/dist/resources/integrations/resource-client.js +20 -0
- package/dist/resources/search-groups/index.d.ts +6 -0
- package/dist/resources/search-groups/index.js +42 -0
- package/dist/resources/search-groups/items/index.d.ts +5 -0
- package/dist/resources/search-groups/items/index.js +8 -0
- package/dist/resources/search-groups/items/request-types.d.ts +66 -0
- package/dist/resources/search-groups/items/request-types.js +154 -0
- package/dist/resources/search-groups/items/resource-client.d.ts +27 -0
- package/dist/resources/search-groups/items/resource-client.js +123 -0
- package/dist/resources/search-groups/request-types.d.ts +63 -0
- package/dist/resources/search-groups/request-types.js +137 -0
- package/dist/resources/search-groups/resource-client.d.ts +30 -0
- package/dist/resources/search-groups/resource-client.js +127 -0
- package/dist/resources/tools/code-execution/index.d.ts +5 -0
- package/dist/resources/tools/code-execution/index.js +8 -0
- package/dist/resources/tools/code-execution/request-types.d.ts +57 -0
- package/dist/resources/tools/code-execution/request-types.js +96 -0
- package/dist/resources/tools/code-execution/resource-client.d.ts +15 -0
- package/dist/resources/tools/code-execution/resource-client.js +31 -0
- package/dist/resources/tools/dictionary-search/index.d.ts +5 -0
- package/dist/resources/tools/dictionary-search/index.js +8 -0
- package/dist/resources/tools/dictionary-search/request-types.d.ts +24 -0
- package/dist/resources/tools/dictionary-search/request-types.js +74 -0
- package/dist/resources/tools/dictionary-search/resource-client.d.ts +15 -0
- package/dist/resources/tools/dictionary-search/resource-client.js +65 -0
- package/dist/resources/tools/format/index.d.ts +5 -0
- package/dist/resources/tools/format/index.js +8 -0
- package/dist/resources/tools/format/request-types.d.ts +37 -0
- package/dist/resources/tools/format/request-types.js +80 -0
- package/dist/resources/tools/format/resource-client.d.ts +15 -0
- package/dist/resources/tools/format/resource-client.js +65 -0
- package/dist/resources/tools/index.d.ts +12 -0
- package/dist/resources/tools/index.js +49 -0
- package/dist/resources/tools/internet-search/index.d.ts +5 -0
- package/dist/resources/tools/internet-search/index.js +8 -0
- package/dist/resources/tools/internet-search/request-types.d.ts +30 -0
- package/dist/resources/tools/internet-search/request-types.js +79 -0
- package/dist/resources/tools/internet-search/resource-client.d.ts +15 -0
- package/dist/resources/tools/internet-search/resource-client.js +65 -0
- package/dist/resources/tools/memory-query/index.d.ts +5 -0
- package/dist/resources/tools/memory-query/index.js +8 -0
- package/dist/resources/tools/memory-query/request-types.d.ts +24 -0
- package/dist/resources/tools/memory-query/request-types.js +78 -0
- package/dist/resources/tools/memory-query/resource-client.d.ts +15 -0
- package/dist/resources/tools/memory-query/resource-client.js +71 -0
- package/dist/resources/tools/meta-tagger/index.d.ts +5 -0
- package/dist/resources/tools/meta-tagger/index.js +8 -0
- package/dist/resources/tools/meta-tagger/request-types.d.ts +23 -0
- package/dist/resources/tools/meta-tagger/request-types.js +71 -0
- package/dist/resources/tools/meta-tagger/resource-client.d.ts +15 -0
- package/dist/resources/tools/meta-tagger/resource-client.js +67 -0
- package/dist/resources/tools/resource-client.d.ts +38 -0
- package/dist/resources/tools/resource-client.js +76 -0
- package/dist/resources/tools/standard-llm/index.d.ts +5 -0
- package/dist/resources/tools/standard-llm/index.js +8 -0
- package/dist/resources/tools/standard-llm/request-types.d.ts +27 -0
- package/dist/resources/tools/standard-llm/request-types.js +77 -0
- package/dist/resources/tools/standard-llm/resource-client.d.ts +15 -0
- package/dist/resources/tools/standard-llm/resource-client.js +65 -0
- package/dist/resources/tools/structured-output/index.d.ts +5 -0
- package/dist/resources/tools/structured-output/index.js +8 -0
- package/dist/resources/tools/structured-output/request-types.d.ts +32 -0
- package/dist/resources/tools/structured-output/request-types.js +84 -0
- package/dist/resources/tools/structured-output/resource-client.d.ts +14 -0
- package/dist/resources/tools/structured-output/resource-client.js +67 -0
- package/dist/resources/workflow/index.d.ts +5 -0
- package/dist/resources/workflow/index.js +42 -0
- package/dist/resources/workflow/resource-client.d.ts +10 -0
- package/dist/resources/workflow/resource-client.js +20 -0
- package/dist/resources/workflow/run/index.d.ts +5 -0
- package/dist/resources/workflow/run/index.js +42 -0
- package/dist/resources/workflow/run/resource-client.d.ts +10 -0
- package/dist/resources/workflow/run/resource-client.js +20 -0
- package/dist/resources/workflow/run/trigger/index.d.ts +5 -0
- package/dist/resources/workflow/run/trigger/index.js +8 -0
- package/dist/resources/workflow/run/trigger/request-types.d.ts +23 -0
- package/dist/resources/workflow/run/trigger/request-types.js +71 -0
- package/dist/resources/workflow/run/trigger/resource-client.d.ts +15 -0
- package/dist/resources/workflow/run/trigger/resource-client.js +33 -0
- package/dist/resources/workflows/dispatch/index.d.ts +5 -0
- package/dist/resources/workflows/dispatch/index.js +8 -0
- package/dist/resources/workflows/dispatch/request-types.d.ts +25 -0
- package/dist/resources/workflows/dispatch/request-types.js +75 -0
- package/dist/resources/workflows/dispatch/resource-client.d.ts +15 -0
- package/dist/resources/workflows/dispatch/resource-client.js +33 -0
- package/dist/resources/workflows/index.d.ts +6 -0
- package/dist/resources/workflows/index.js +43 -0
- package/dist/resources/workflows/invoke/index.d.ts +5 -0
- package/dist/resources/workflows/invoke/index.js +8 -0
- package/dist/resources/workflows/invoke/request-types.d.ts +25 -0
- package/dist/resources/workflows/invoke/request-types.js +75 -0
- package/dist/resources/workflows/invoke/resource-client.d.ts +15 -0
- package/dist/resources/workflows/invoke/resource-client.js +33 -0
- package/dist/resources/workflows/resource-client.d.ts +13 -0
- package/dist/resources/workflows/resource-client.js +25 -0
- package/dist/types/agent-build-workflow-create-body.d.ts +26 -0
- package/dist/types/agent-build-workflow-create-body.js +76 -0
- package/dist/types/agent-build-workflow-create-response-response-obj0-content-chat-messages-item-role-enum.d.ts +7 -0
- package/dist/types/agent-build-workflow-create-response-response-obj0-content-chat-messages-item-role-enum.js +5 -0
- package/dist/types/agent-build-workflow-create-response-response-obj0-content-chat-messages-item.d.ts +24 -0
- package/dist/types/agent-build-workflow-create-response-response-obj0-content-chat-messages-item.js +74 -0
- package/dist/types/agent-build-workflow-create-response-response-obj0-content-chat-status-enum.d.ts +7 -0
- package/dist/types/agent-build-workflow-create-response-response-obj0-content-chat-status-enum.js +5 -0
- package/dist/types/agent-build-workflow-create-response-response-obj0-content-chat-type-enum.d.ts +7 -0
- package/dist/types/agent-build-workflow-create-response-response-obj0-content-chat-type-enum.js +5 -0
- package/dist/types/agent-build-workflow-create-response-response-obj0-content-chat.d.ts +35 -0
- package/dist/types/agent-build-workflow-create-response-response-obj0-content-chat.js +95 -0
- package/dist/types/agent-build-workflow-create-response-response-obj0-content-messages-item.d.ts +24 -0
- package/dist/types/agent-build-workflow-create-response-response-obj0-content-messages-item.js +74 -0
- package/dist/types/agent-build-workflow-create-response-response-obj0-content-output-feed-feed-type-enum.d.ts +7 -0
- package/dist/types/agent-build-workflow-create-response-response-obj0-content-output-feed-feed-type-enum.js +5 -0
- package/dist/types/agent-build-workflow-create-response-response-obj0-content-output-feed.d.ts +40 -0
- package/dist/types/agent-build-workflow-create-response-response-obj0-content-output-feed.js +110 -0
- package/dist/types/agent-build-workflow-create-response-response-obj0-content-output-search-groups-item.d.ts +34 -0
- package/dist/types/agent-build-workflow-create-response-response-obj0-content-output-search-groups-item.js +92 -0
- package/dist/types/agent-build-workflow-create-response-response-obj0-content-output-workflow-tasks-item.d.ts +72 -0
- package/dist/types/agent-build-workflow-create-response-response-obj0-content-output-workflow-tasks-item.js +126 -0
- package/dist/types/agent-build-workflow-create-response-response-obj0-content-output-workflow.d.ts +67 -0
- package/dist/types/agent-build-workflow-create-response-response-obj0-content-output-workflow.js +104 -0
- package/dist/types/agent-build-workflow-create-response-response-obj0-content-output.d.ts +32 -0
- package/dist/types/agent-build-workflow-create-response-response-obj0-content-output.js +94 -0
- package/dist/types/agent-build-workflow-create-response-response-obj0-content-status.d.ts +24 -0
- package/dist/types/agent-build-workflow-create-response-response-obj0-content-status.js +74 -0
- package/dist/types/agent-build-workflow-create-response-response-obj0-content.d.ts +32 -0
- package/dist/types/agent-build-workflow-create-response-response-obj0-content.js +86 -0
- package/dist/types/agent-build-workflow-create-response-response-obj0-type-enum.d.ts +7 -0
- package/dist/types/agent-build-workflow-create-response-response-obj0-type-enum.js +5 -0
- package/dist/types/agent-build-workflow-create-response-response-obj0.d.ts +25 -0
- package/dist/types/agent-build-workflow-create-response-response-obj0.js +75 -0
- package/dist/types/agent-build-workflow-create-response-response-obj1-content-chat-messages-item-role-enum.d.ts +7 -0
- package/dist/types/agent-build-workflow-create-response-response-obj1-content-chat-messages-item-role-enum.js +5 -0
- package/dist/types/agent-build-workflow-create-response-response-obj1-content-chat-messages-item.d.ts +24 -0
- package/dist/types/agent-build-workflow-create-response-response-obj1-content-chat-messages-item.js +74 -0
- package/dist/types/agent-build-workflow-create-response-response-obj1-content-chat-status-enum.d.ts +7 -0
- package/dist/types/agent-build-workflow-create-response-response-obj1-content-chat-status-enum.js +5 -0
- package/dist/types/agent-build-workflow-create-response-response-obj1-content-chat-type-enum.d.ts +7 -0
- package/dist/types/agent-build-workflow-create-response-response-obj1-content-chat-type-enum.js +5 -0
- package/dist/types/agent-build-workflow-create-response-response-obj1-content-chat.d.ts +35 -0
- package/dist/types/agent-build-workflow-create-response-response-obj1-content-chat.js +95 -0
- package/dist/types/agent-build-workflow-create-response-response-obj1-content-messages-item.d.ts +24 -0
- package/dist/types/agent-build-workflow-create-response-response-obj1-content-messages-item.js +74 -0
- package/dist/types/agent-build-workflow-create-response-response-obj1-content.d.ts +26 -0
- package/dist/types/agent-build-workflow-create-response-response-obj1-content.js +80 -0
- package/dist/types/agent-build-workflow-create-response-response-obj1-type-enum.d.ts +7 -0
- package/dist/types/agent-build-workflow-create-response-response-obj1-type-enum.js +5 -0
- package/dist/types/agent-build-workflow-create-response-response-obj1.d.ts +25 -0
- package/dist/types/agent-build-workflow-create-response-response-obj1.js +75 -0
- package/dist/types/agent-build-workflow-create-response.d.ts +24 -0
- package/dist/types/agent-build-workflow-create-response.js +82 -0
- package/dist/types/agent-build-workflow-list-response-chat-messages-item-role-enum.d.ts +7 -0
- package/dist/types/agent-build-workflow-list-response-chat-messages-item-role-enum.js +5 -0
- package/dist/types/agent-build-workflow-list-response-chat-messages-item.d.ts +24 -0
- package/dist/types/agent-build-workflow-list-response-chat-messages-item.js +74 -0
- package/dist/types/agent-build-workflow-list-response-chat-status-enum.d.ts +7 -0
- package/dist/types/agent-build-workflow-list-response-chat-status-enum.js +5 -0
- package/dist/types/agent-build-workflow-list-response-chat-type-enum.d.ts +7 -0
- package/dist/types/agent-build-workflow-list-response-chat-type-enum.js +5 -0
- package/dist/types/agent-build-workflow-list-response-chat.d.ts +35 -0
- package/dist/types/agent-build-workflow-list-response-chat.js +95 -0
- package/dist/types/agent-build-workflow-list-response-messages-item.d.ts +24 -0
- package/dist/types/agent-build-workflow-list-response-messages-item.js +74 -0
- package/dist/types/agent-build-workflow-list-response.d.ts +28 -0
- package/dist/types/agent-build-workflow-list-response.js +80 -0
- package/dist/types/auth-login-create-body.d.ts +24 -0
- package/dist/types/auth-login-create-body.js +74 -0
- package/dist/types/auth-login-create-response.d.ts +26 -0
- package/dist/types/auth-login-create-response.js +78 -0
- package/dist/types/auth-refresh-create-body.d.ts +22 -0
- package/dist/types/auth-refresh-create-body.js +70 -0
- package/dist/types/auth-refresh-create-response.d.ts +26 -0
- package/dist/types/auth-refresh-create-response.js +78 -0
- package/dist/types/chats-create-body.d.ts +30 -0
- package/dist/types/chats-create-body.js +86 -0
- package/dist/types/chats-create-response-messages-item-role-enum.d.ts +7 -0
- package/dist/types/chats-create-response-messages-item-role-enum.js +5 -0
- package/dist/types/chats-create-response-messages-item.d.ts +24 -0
- package/dist/types/chats-create-response-messages-item.js +74 -0
- package/dist/types/chats-create-response-status-enum.d.ts +7 -0
- package/dist/types/chats-create-response-status-enum.js +5 -0
- package/dist/types/chats-create-response-type-enum.d.ts +7 -0
- package/dist/types/chats-create-response-type-enum.js +5 -0
- package/dist/types/chats-create-response.d.ts +35 -0
- package/dist/types/chats-create-response.js +95 -0
- package/dist/types/chats-get-response-messages-item-role-enum.d.ts +7 -0
- package/dist/types/chats-get-response-messages-item-role-enum.js +5 -0
- package/dist/types/chats-get-response-messages-item.d.ts +24 -0
- package/dist/types/chats-get-response-messages-item.js +74 -0
- package/dist/types/chats-get-response-status-enum.d.ts +7 -0
- package/dist/types/chats-get-response-status-enum.js +5 -0
- package/dist/types/chats-get-response-type-enum.d.ts +7 -0
- package/dist/types/chats-get-response-type-enum.js +5 -0
- package/dist/types/chats-get-response.d.ts +35 -0
- package/dist/types/chats-get-response.js +95 -0
- package/dist/types/chats-patch-body.d.ts +24 -0
- package/dist/types/chats-patch-body.js +74 -0
- package/dist/types/chats-patch-response-messages-item-role-enum.d.ts +7 -0
- package/dist/types/chats-patch-response-messages-item-role-enum.js +5 -0
- package/dist/types/chats-patch-response-messages-item.d.ts +24 -0
- package/dist/types/chats-patch-response-messages-item.js +74 -0
- package/dist/types/chats-patch-response-status-enum.d.ts +7 -0
- package/dist/types/chats-patch-response-status-enum.js +5 -0
- package/dist/types/chats-patch-response-type-enum.d.ts +7 -0
- package/dist/types/chats-patch-response-type-enum.js +5 -0
- package/dist/types/chats-patch-response.d.ts +35 -0
- package/dist/types/chats-patch-response.js +95 -0
- package/dist/types/feeds-create-body-config-obj0.d.ts +32 -0
- package/dist/types/feeds-create-body-config-obj0.js +76 -0
- package/dist/types/feeds-create-body-config-obj2.d.ts +32 -0
- package/dist/types/feeds-create-body-config-obj2.js +76 -0
- package/dist/types/feeds-create-body-feed-type-enum.d.ts +7 -0
- package/dist/types/feeds-create-body-feed-type-enum.js +5 -0
- package/dist/types/feeds-create-body.d.ts +34 -0
- package/dist/types/feeds-create-body.js +104 -0
- package/dist/types/feeds-create-response-feed-type-enum.d.ts +7 -0
- package/dist/types/feeds-create-response-feed-type-enum.js +5 -0
- package/dist/types/feeds-create-response.d.ts +40 -0
- package/dist/types/feeds-create-response.js +110 -0
- package/dist/types/feeds-get-response-feed-type-enum.d.ts +7 -0
- package/dist/types/feeds-get-response-feed-type-enum.js +5 -0
- package/dist/types/feeds-get-response.d.ts +40 -0
- package/dist/types/feeds-get-response.js +110 -0
- package/dist/types/feeds-items-create-body-options.d.ts +25 -0
- package/dist/types/feeds-items-create-body-options.js +70 -0
- package/dist/types/feeds-items-create-body.d.ts +29 -0
- package/dist/types/feeds-items-create-body.js +83 -0
- package/dist/types/feeds-items-create-response-workflow-runs-item.d.ts +26 -0
- package/dist/types/feeds-items-create-response-workflow-runs-item.js +78 -0
- package/dist/types/feeds-items-create-response.d.ts +33 -0
- package/dist/types/feeds-items-create-response.js +89 -0
- package/dist/types/feeds-items-get-response.d.ts +32 -0
- package/dist/types/feeds-items-get-response.js +88 -0
- package/dist/types/feeds-list-response-item-feed-type-enum.d.ts +7 -0
- package/dist/types/feeds-list-response-item-feed-type-enum.js +5 -0
- package/dist/types/feeds-list-response-item.d.ts +40 -0
- package/dist/types/feeds-list-response-item.js +110 -0
- package/dist/types/feeds-vector-search-create-body.d.ts +44 -0
- package/dist/types/feeds-vector-search-create-body.js +88 -0
- package/dist/types/feeds-vector-search-create-response-item-resource-type-enum.d.ts +7 -0
- package/dist/types/feeds-vector-search-create-response-item-resource-type-enum.js +5 -0
- package/dist/types/feeds-vector-search-create-response-item.d.ts +36 -0
- package/dist/types/feeds-vector-search-create-response-item.js +96 -0
- package/dist/types/index.d.ts +155 -0
- package/dist/types/index.js +5 -0
- package/dist/types/integrations-api-create-body.d.ts +36 -0
- package/dist/types/integrations-api-create-body.js +96 -0
- package/dist/types/integrations-api-create-response.d.ts +36 -0
- package/dist/types/integrations-api-create-response.js +96 -0
- package/dist/types/integrations-api-delete-response.d.ts +22 -0
- package/dist/types/integrations-api-delete-response.js +70 -0
- package/dist/types/integrations-api-get-response.d.ts +36 -0
- package/dist/types/integrations-api-get-response.js +96 -0
- package/dist/types/integrations-api-operations-create-body-method-enum.d.ts +7 -0
- package/dist/types/integrations-api-operations-create-body-method-enum.js +5 -0
- package/dist/types/integrations-api-operations-create-body.d.ts +28 -0
- package/dist/types/integrations-api-operations-create-body.js +104 -0
- package/dist/types/integrations-api-operations-create-response-method-enum.d.ts +7 -0
- package/dist/types/integrations-api-operations-create-response-method-enum.js +5 -0
- package/dist/types/integrations-api-operations-create-response.d.ts +34 -0
- package/dist/types/integrations-api-operations-create-response.js +114 -0
- package/dist/types/integrations-api-operations-delete-response.d.ts +22 -0
- package/dist/types/integrations-api-operations-delete-response.js +70 -0
- package/dist/types/integrations-api-operations-get-response-method-enum.d.ts +7 -0
- package/dist/types/integrations-api-operations-get-response-method-enum.js +5 -0
- package/dist/types/integrations-api-operations-get-response.d.ts +34 -0
- package/dist/types/integrations-api-operations-get-response.js +114 -0
- package/dist/types/integrations-api-operations-patch-body-method-enum.d.ts +7 -0
- package/dist/types/integrations-api-operations-patch-body-method-enum.js +5 -0
- package/dist/types/integrations-api-operations-patch-body.d.ts +26 -0
- package/dist/types/integrations-api-operations-patch-body.js +88 -0
- package/dist/types/integrations-api-operations-patch-response-method-enum.d.ts +7 -0
- package/dist/types/integrations-api-operations-patch-response-method-enum.js +5 -0
- package/dist/types/integrations-api-operations-patch-response.d.ts +34 -0
- package/dist/types/integrations-api-operations-patch-response.js +114 -0
- package/dist/types/integrations-api-secrets-create-body.d.ts +26 -0
- package/dist/types/integrations-api-secrets-create-body.js +78 -0
- package/dist/types/integrations-api-secrets-create-response-type-enum.d.ts +7 -0
- package/dist/types/integrations-api-secrets-create-response-type-enum.js +5 -0
- package/dist/types/integrations-api-secrets-create-response.d.ts +34 -0
- package/dist/types/integrations-api-secrets-create-response.js +92 -0
- package/dist/types/integrations-api-secrets-delete-response.d.ts +22 -0
- package/dist/types/integrations-api-secrets-delete-response.js +70 -0
- package/dist/types/integrations-api-secrets-list-response-item-type-enum.d.ts +7 -0
- package/dist/types/integrations-api-secrets-list-response-item-type-enum.js +5 -0
- package/dist/types/integrations-api-secrets-list-response-item.d.ts +34 -0
- package/dist/types/integrations-api-secrets-list-response-item.js +92 -0
- package/dist/types/search-groups-create-body.d.ts +28 -0
- package/dist/types/search-groups-create-body.js +80 -0
- package/dist/types/search-groups-create-response.d.ts +34 -0
- package/dist/types/search-groups-create-response.js +92 -0
- package/dist/types/search-groups-get-response.d.ts +34 -0
- package/dist/types/search-groups-get-response.js +92 -0
- package/dist/types/search-groups-items-create-body-obj0.d.ts +26 -0
- package/dist/types/search-groups-items-create-body-obj0.js +76 -0
- package/dist/types/search-groups-items-create-body-obj1.d.ts +26 -0
- package/dist/types/search-groups-items-create-body-obj1.js +76 -0
- package/dist/types/search-groups-items-create-response-union0-obj0.d.ts +26 -0
- package/dist/types/search-groups-items-create-response-union0-obj0.js +76 -0
- package/dist/types/search-groups-items-create-response-union0-obj1.d.ts +26 -0
- package/dist/types/search-groups-items-create-response-union0-obj1.js +76 -0
- package/dist/types/search-groups-items-get-response-value-obj0.d.ts +26 -0
- package/dist/types/search-groups-items-get-response-value-obj0.js +76 -0
- package/dist/types/search-groups-items-get-response-value-obj1.d.ts +26 -0
- package/dist/types/search-groups-items-get-response-value-obj1.js +76 -0
- package/dist/types/search-groups-items-get-response.d.ts +32 -0
- package/dist/types/search-groups-items-get-response.js +94 -0
- package/dist/types/search-groups-items-list-response-item-value-obj0.d.ts +26 -0
- package/dist/types/search-groups-items-list-response-item-value-obj0.js +76 -0
- package/dist/types/search-groups-items-list-response-item-value-obj1.d.ts +26 -0
- package/dist/types/search-groups-items-list-response-item-value-obj1.js +76 -0
- package/dist/types/search-groups-items-list-response-item.d.ts +32 -0
- package/dist/types/search-groups-items-list-response-item.js +94 -0
- package/dist/types/search-groups-list-response-item.d.ts +34 -0
- package/dist/types/search-groups-list-response-item.js +92 -0
- package/dist/types/search-groups-list-type-enum.d.ts +7 -0
- package/dist/types/search-groups-list-type-enum.js +5 -0
- package/dist/types/tools-code-execution-create-body-language-enum.d.ts +7 -0
- package/dist/types/tools-code-execution-create-body-language-enum.js +5 -0
- package/dist/types/tools-code-execution-create-body.d.ts +57 -0
- package/dist/types/tools-code-execution-create-body.js +96 -0
- package/dist/types/tools-code-execution-create-response-error.d.ts +37 -0
- package/dist/types/tools-code-execution-create-response-error.js +80 -0
- package/dist/types/tools-code-execution-create-response-logs.d.ts +32 -0
- package/dist/types/tools-code-execution-create-response-logs.js +76 -0
- package/dist/types/tools-code-execution-create-response-result-type-enum.d.ts +7 -0
- package/dist/types/tools-code-execution-create-response-result-type-enum.js +5 -0
- package/dist/types/tools-code-execution-create-response-result.d.ts +29 -0
- package/dist/types/tools-code-execution-create-response-result.js +132 -0
- package/dist/types/tools-code-execution-create-response-results-item.d.ts +77 -0
- package/dist/types/tools-code-execution-create-response-results-item.js +122 -0
- package/dist/types/tools-code-execution-create-response.d.ts +51 -0
- package/dist/types/tools-code-execution-create-response.js +94 -0
- package/dist/types/tools-dictionary-search-create-body.d.ts +24 -0
- package/dist/types/tools-dictionary-search-create-body.js +74 -0
- package/dist/types/tools-dictionary-search-create-response-item.d.ts +32 -0
- package/dist/types/tools-dictionary-search-create-response-item.js +76 -0
- package/dist/types/tools-format-create-body-format-enum.d.ts +7 -0
- package/dist/types/tools-format-create-body-format-enum.js +5 -0
- package/dist/types/tools-format-create-body.d.ts +37 -0
- package/dist/types/tools-format-create-body.js +80 -0
- package/dist/types/tools-format-create-response-item.d.ts +24 -0
- package/dist/types/tools-format-create-response-item.js +74 -0
- package/dist/types/tools-internet-search-create-body-messages-item-role-enum.d.ts +7 -0
- package/dist/types/tools-internet-search-create-body-messages-item-role-enum.js +5 -0
- package/dist/types/tools-internet-search-create-body-messages-item.d.ts +24 -0
- package/dist/types/tools-internet-search-create-body-messages-item.js +74 -0
- package/dist/types/tools-internet-search-create-body.d.ts +30 -0
- package/dist/types/tools-internet-search-create-body.js +79 -0
- package/dist/types/tools-internet-search-create-response-item.d.ts +26 -0
- package/dist/types/tools-internet-search-create-response-item.js +78 -0
- package/dist/types/tools-list-response.d.ts +22 -0
- package/dist/types/tools-list-response.js +70 -0
- package/dist/types/tools-memory-query-create-body-obj0-input.d.ts +37 -0
- package/dist/types/tools-memory-query-create-body-obj0-input.js +80 -0
- package/dist/types/tools-memory-query-create-body-obj0-type-enum.d.ts +7 -0
- package/dist/types/tools-memory-query-create-body-obj0-type-enum.js +5 -0
- package/dist/types/tools-memory-query-create-body-obj0.d.ts +35 -0
- package/dist/types/tools-memory-query-create-body-obj0.js +81 -0
- package/dist/types/tools-memory-query-create-body-obj1-input-type-enum.d.ts +7 -0
- package/dist/types/tools-memory-query-create-body-obj1-input-type-enum.js +5 -0
- package/dist/types/tools-memory-query-create-body-obj1-input.d.ts +42 -0
- package/dist/types/tools-memory-query-create-body-obj1-input.js +84 -0
- package/dist/types/tools-memory-query-create-body-obj1-type-enum.d.ts +7 -0
- package/dist/types/tools-memory-query-create-body-obj1-type-enum.js +5 -0
- package/dist/types/tools-memory-query-create-body-obj1.d.ts +38 -0
- package/dist/types/tools-memory-query-create-body-obj1.js +81 -0
- package/dist/types/tools-memory-query-create-response-row.d.ts +29 -0
- package/dist/types/tools-memory-query-create-response-row.js +76 -0
- package/dist/types/tools-memory-query-create-response-rows-item.d.ts +29 -0
- package/dist/types/tools-memory-query-create-response-rows-item.js +76 -0
- package/dist/types/tools-memory-query-create-response.d.ts +36 -0
- package/dist/types/tools-memory-query-create-response.js +84 -0
- package/dist/types/tools-meta-tagger-create-body.d.ts +30 -0
- package/dist/types/tools-meta-tagger-create-body.js +74 -0
- package/dist/types/tools-meta-tagger-create-response-item.d.ts +30 -0
- package/dist/types/tools-meta-tagger-create-response-item.js +74 -0
- package/dist/types/tools-standard-llm-create-body-messages-item-role-enum.d.ts +7 -0
- package/dist/types/tools-standard-llm-create-body-messages-item-role-enum.js +5 -0
- package/dist/types/tools-standard-llm-create-body-messages-item.d.ts +24 -0
- package/dist/types/tools-standard-llm-create-body-messages-item.js +74 -0
- package/dist/types/tools-standard-llm-create-body.d.ts +27 -0
- package/dist/types/tools-standard-llm-create-body.js +77 -0
- package/dist/types/tools-standard-llm-create-response-item.d.ts +24 -0
- package/dist/types/tools-standard-llm-create-response-item.js +74 -0
- package/dist/types/tools-structured-output-create-body.d.ts +32 -0
- package/dist/types/tools-structured-output-create-body.js +84 -0
- package/dist/types/workflow-run-trigger-create-body.d.ts +25 -0
- package/dist/types/workflow-run-trigger-create-body.js +70 -0
- package/dist/types/workflow-run-trigger-create-response-status-enum.d.ts +7 -0
- package/dist/types/workflow-run-trigger-create-response-status-enum.js +5 -0
- package/dist/types/workflow-run-trigger-create-response.d.ts +28 -0
- package/dist/types/workflow-run-trigger-create-response.js +86 -0
- package/dist/types/workflows-dispatch-create-body.d.ts +22 -0
- package/dist/types/workflows-dispatch-create-body.js +70 -0
- package/dist/types/workflows-dispatch-create-response.d.ts +22 -0
- package/dist/types/workflows-dispatch-create-response.js +70 -0
- package/dist/types/workflows-invoke-create-body.d.ts +22 -0
- package/dist/types/workflows-invoke-create-body.js +70 -0
- package/dist/types/workflows-invoke-create-response-workflow.d.ts +24 -0
- package/dist/types/workflows-invoke-create-response-workflow.js +74 -0
- package/dist/types/workflows-invoke-create-response.d.ts +29 -0
- package/dist/types/workflows-invoke-create-response.js +89 -0
- package/package.json +43 -0
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Generated by Sideko (sideko.dev)
|
|
4
|
+
**/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
22
|
+
var ownKeys = function(o) {
|
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
24
|
+
var ar = [];
|
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
26
|
+
return ar;
|
|
27
|
+
};
|
|
28
|
+
return ownKeys(o);
|
|
29
|
+
};
|
|
30
|
+
return function (mod) {
|
|
31
|
+
if (mod && mod.__esModule) return mod;
|
|
32
|
+
var result = {};
|
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
})();
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.Schemas$ToolsCodeExecutionCreateResponseResultsItem = void 0;
|
|
40
|
+
const make_api_request_js_1 = require("make-api-request-js");
|
|
41
|
+
const z = __importStar(require("zod"));
|
|
42
|
+
/**
|
|
43
|
+
* Takes network data, validates it, and transforms keys to match typescript object ToolsCodeExecutionCreateResponseResultsItem
|
|
44
|
+
*/
|
|
45
|
+
const SchemaIn$ToolsCodeExecutionCreateResponseResultsItem = z
|
|
46
|
+
.object({
|
|
47
|
+
chart: z.record(z.string(), make_api_request_js_1.zodRequiredAny.optional()).optional(),
|
|
48
|
+
data: z.record(z.string(), make_api_request_js_1.zodRequiredAny.optional()).optional(),
|
|
49
|
+
html: z.string().optional(),
|
|
50
|
+
javascript: z.string().optional(),
|
|
51
|
+
jpeg: z.string().optional(),
|
|
52
|
+
json: z
|
|
53
|
+
.union([
|
|
54
|
+
z.record(z.string(), make_api_request_js_1.zodRequiredAny.optional()),
|
|
55
|
+
z.array(make_api_request_js_1.zodRequiredAny),
|
|
56
|
+
])
|
|
57
|
+
.optional(),
|
|
58
|
+
latex: z.string().optional(),
|
|
59
|
+
markdown: z.string().optional(),
|
|
60
|
+
png: z.string().optional(),
|
|
61
|
+
svg: z.string().optional(),
|
|
62
|
+
text: z.string().optional(),
|
|
63
|
+
})
|
|
64
|
+
.catchall(make_api_request_js_1.zodRequiredAny)
|
|
65
|
+
.transform((obj) => {
|
|
66
|
+
return (0, make_api_request_js_1.zodTransform)(obj, {
|
|
67
|
+
chart: "chart",
|
|
68
|
+
data: "data",
|
|
69
|
+
html: "html",
|
|
70
|
+
javascript: "javascript",
|
|
71
|
+
jpeg: "jpeg",
|
|
72
|
+
json: "json",
|
|
73
|
+
latex: "latex",
|
|
74
|
+
markdown: "markdown",
|
|
75
|
+
png: "png",
|
|
76
|
+
svg: "svg",
|
|
77
|
+
text: "text",
|
|
78
|
+
});
|
|
79
|
+
});
|
|
80
|
+
/**
|
|
81
|
+
* @internal
|
|
82
|
+
* Takes typescript data, validates it, and maps keys to match the expected external object External$ToolsCodeExecutionCreateResponseResultsItem
|
|
83
|
+
*/
|
|
84
|
+
const SchemaOut$ToolsCodeExecutionCreateResponseResultsItem = z
|
|
85
|
+
.object({
|
|
86
|
+
chart: z.record(z.string(), make_api_request_js_1.zodRequiredAny.optional()).optional(),
|
|
87
|
+
data: z.record(z.string(), make_api_request_js_1.zodRequiredAny.optional()).optional(),
|
|
88
|
+
html: z.string().optional(),
|
|
89
|
+
javascript: z.string().optional(),
|
|
90
|
+
jpeg: z.string().optional(),
|
|
91
|
+
json: z
|
|
92
|
+
.union([
|
|
93
|
+
z.record(z.string(), make_api_request_js_1.zodRequiredAny.optional()),
|
|
94
|
+
z.array(make_api_request_js_1.zodRequiredAny),
|
|
95
|
+
])
|
|
96
|
+
.optional(),
|
|
97
|
+
latex: z.string().optional(),
|
|
98
|
+
markdown: z.string().optional(),
|
|
99
|
+
png: z.string().optional(),
|
|
100
|
+
svg: z.string().optional(),
|
|
101
|
+
text: z.string().optional(),
|
|
102
|
+
})
|
|
103
|
+
.catchall(make_api_request_js_1.zodRequiredAny)
|
|
104
|
+
.transform((obj) => {
|
|
105
|
+
return (0, make_api_request_js_1.zodTransform)(obj, {
|
|
106
|
+
chart: "chart",
|
|
107
|
+
data: "data",
|
|
108
|
+
html: "html",
|
|
109
|
+
javascript: "javascript",
|
|
110
|
+
jpeg: "jpeg",
|
|
111
|
+
json: "json",
|
|
112
|
+
latex: "latex",
|
|
113
|
+
markdown: "markdown",
|
|
114
|
+
png: "png",
|
|
115
|
+
svg: "svg",
|
|
116
|
+
text: "text",
|
|
117
|
+
});
|
|
118
|
+
});
|
|
119
|
+
exports.Schemas$ToolsCodeExecutionCreateResponseResultsItem = {
|
|
120
|
+
in: SchemaIn$ToolsCodeExecutionCreateResponseResultsItem,
|
|
121
|
+
out: SchemaOut$ToolsCodeExecutionCreateResponseResultsItem,
|
|
122
|
+
};
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by Sideko (sideko.dev)
|
|
3
|
+
**/
|
|
4
|
+
import * as z from "zod";
|
|
5
|
+
import { External$ToolsCodeExecutionCreateResponseError, ToolsCodeExecutionCreateResponseError } from "./tools-code-execution-create-response-error";
|
|
6
|
+
import { External$ToolsCodeExecutionCreateResponseLogs, ToolsCodeExecutionCreateResponseLogs } from "./tools-code-execution-create-response-logs";
|
|
7
|
+
import { External$ToolsCodeExecutionCreateResponseResult, ToolsCodeExecutionCreateResponseResult } from "./tools-code-execution-create-response-result";
|
|
8
|
+
import { External$ToolsCodeExecutionCreateResponseResultsItem, ToolsCodeExecutionCreateResponseResultsItem } from "./tools-code-execution-create-response-results-item";
|
|
9
|
+
/**
|
|
10
|
+
* ToolsCodeExecutionCreateResponse
|
|
11
|
+
*/
|
|
12
|
+
export type ToolsCodeExecutionCreateResponse = {
|
|
13
|
+
/**
|
|
14
|
+
* The source code that was executed.
|
|
15
|
+
*/
|
|
16
|
+
code: string;
|
|
17
|
+
/**
|
|
18
|
+
* Optional structure to report a runtime or execution error (ExecutionError type).
|
|
19
|
+
*/
|
|
20
|
+
error?: ToolsCodeExecutionCreateResponseError | undefined;
|
|
21
|
+
/**
|
|
22
|
+
* An optional counter for the execution sequence.
|
|
23
|
+
*/
|
|
24
|
+
executionCount?: number | undefined;
|
|
25
|
+
/**
|
|
26
|
+
* Output captured from standard output and standard error during execution.
|
|
27
|
+
*/
|
|
28
|
+
logs: ToolsCodeExecutionCreateResponseLogs;
|
|
29
|
+
result: ToolsCodeExecutionCreateResponseResult;
|
|
30
|
+
/**
|
|
31
|
+
* An array of rich output objects generated by the code (e.g., data, plots, rich text).
|
|
32
|
+
*/
|
|
33
|
+
results: ToolsCodeExecutionCreateResponseResultsItem[];
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* @internal
|
|
37
|
+
* ToolsCodeExecutionCreateResponse without any key transformation, this is what
|
|
38
|
+
* we expect to come in as network data
|
|
39
|
+
*/
|
|
40
|
+
export type External$ToolsCodeExecutionCreateResponse = {
|
|
41
|
+
code: string;
|
|
42
|
+
error?: External$ToolsCodeExecutionCreateResponseError | undefined;
|
|
43
|
+
executionCount?: number | undefined;
|
|
44
|
+
logs: External$ToolsCodeExecutionCreateResponseLogs;
|
|
45
|
+
result: External$ToolsCodeExecutionCreateResponseResult;
|
|
46
|
+
results: External$ToolsCodeExecutionCreateResponseResultsItem[];
|
|
47
|
+
};
|
|
48
|
+
export declare const Schemas$ToolsCodeExecutionCreateResponse: {
|
|
49
|
+
in: z.ZodType<ToolsCodeExecutionCreateResponse, z.ZodTypeDef, unknown>;
|
|
50
|
+
out: z.ZodType<External$ToolsCodeExecutionCreateResponse, z.ZodTypeDef, ToolsCodeExecutionCreateResponse>;
|
|
51
|
+
};
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Generated by Sideko (sideko.dev)
|
|
4
|
+
**/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
22
|
+
var ownKeys = function(o) {
|
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
24
|
+
var ar = [];
|
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
26
|
+
return ar;
|
|
27
|
+
};
|
|
28
|
+
return ownKeys(o);
|
|
29
|
+
};
|
|
30
|
+
return function (mod) {
|
|
31
|
+
if (mod && mod.__esModule) return mod;
|
|
32
|
+
var result = {};
|
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
})();
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.Schemas$ToolsCodeExecutionCreateResponse = void 0;
|
|
40
|
+
const make_api_request_js_1 = require("make-api-request-js");
|
|
41
|
+
const z = __importStar(require("zod"));
|
|
42
|
+
const tools_code_execution_create_response_error_1 = require("./tools-code-execution-create-response-error");
|
|
43
|
+
const tools_code_execution_create_response_logs_1 = require("./tools-code-execution-create-response-logs");
|
|
44
|
+
const tools_code_execution_create_response_result_1 = require("./tools-code-execution-create-response-result");
|
|
45
|
+
const tools_code_execution_create_response_results_item_1 = require("./tools-code-execution-create-response-results-item");
|
|
46
|
+
/**
|
|
47
|
+
* Takes network data, validates it, and transforms keys to match typescript object ToolsCodeExecutionCreateResponse
|
|
48
|
+
*/
|
|
49
|
+
const SchemaIn$ToolsCodeExecutionCreateResponse = z
|
|
50
|
+
.object({
|
|
51
|
+
code: z.string(),
|
|
52
|
+
error: tools_code_execution_create_response_error_1.Schemas$ToolsCodeExecutionCreateResponseError.in.optional(),
|
|
53
|
+
executionCount: z.number().int().optional(),
|
|
54
|
+
logs: tools_code_execution_create_response_logs_1.Schemas$ToolsCodeExecutionCreateResponseLogs.in,
|
|
55
|
+
result: tools_code_execution_create_response_result_1.Schemas$ToolsCodeExecutionCreateResponseResult.in,
|
|
56
|
+
results: z.array(tools_code_execution_create_response_results_item_1.Schemas$ToolsCodeExecutionCreateResponseResultsItem.in),
|
|
57
|
+
})
|
|
58
|
+
.transform((obj) => {
|
|
59
|
+
return (0, make_api_request_js_1.zodTransform)(obj, {
|
|
60
|
+
code: "code",
|
|
61
|
+
error: "error",
|
|
62
|
+
executionCount: "executionCount",
|
|
63
|
+
logs: "logs",
|
|
64
|
+
result: "result",
|
|
65
|
+
results: "results",
|
|
66
|
+
});
|
|
67
|
+
});
|
|
68
|
+
/**
|
|
69
|
+
* @internal
|
|
70
|
+
* Takes typescript data, validates it, and maps keys to match the expected external object External$ToolsCodeExecutionCreateResponse
|
|
71
|
+
*/
|
|
72
|
+
const SchemaOut$ToolsCodeExecutionCreateResponse = z
|
|
73
|
+
.object({
|
|
74
|
+
code: z.string(),
|
|
75
|
+
error: tools_code_execution_create_response_error_1.Schemas$ToolsCodeExecutionCreateResponseError.out.optional(),
|
|
76
|
+
executionCount: z.number().int().optional(),
|
|
77
|
+
logs: tools_code_execution_create_response_logs_1.Schemas$ToolsCodeExecutionCreateResponseLogs.out,
|
|
78
|
+
result: tools_code_execution_create_response_result_1.Schemas$ToolsCodeExecutionCreateResponseResult.out,
|
|
79
|
+
results: z.array(tools_code_execution_create_response_results_item_1.Schemas$ToolsCodeExecutionCreateResponseResultsItem.out),
|
|
80
|
+
})
|
|
81
|
+
.transform((obj) => {
|
|
82
|
+
return (0, make_api_request_js_1.zodTransform)(obj, {
|
|
83
|
+
code: "code",
|
|
84
|
+
error: "error",
|
|
85
|
+
executionCount: "executionCount",
|
|
86
|
+
logs: "logs",
|
|
87
|
+
result: "result",
|
|
88
|
+
results: "results",
|
|
89
|
+
});
|
|
90
|
+
});
|
|
91
|
+
exports.Schemas$ToolsCodeExecutionCreateResponse = {
|
|
92
|
+
in: SchemaIn$ToolsCodeExecutionCreateResponse,
|
|
93
|
+
out: SchemaOut$ToolsCodeExecutionCreateResponse,
|
|
94
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by Sideko (sideko.dev)
|
|
3
|
+
**/
|
|
4
|
+
import * as z from "zod";
|
|
5
|
+
/**
|
|
6
|
+
* ToolsDictionarySearchCreateBody
|
|
7
|
+
*/
|
|
8
|
+
export type ToolsDictionarySearchCreateBody = {
|
|
9
|
+
data: string;
|
|
10
|
+
searchGroups: string[];
|
|
11
|
+
};
|
|
12
|
+
/**
|
|
13
|
+
* @internal
|
|
14
|
+
* ToolsDictionarySearchCreateBody without any key transformation, this is what
|
|
15
|
+
* we expect to come in as network data
|
|
16
|
+
*/
|
|
17
|
+
export type External$ToolsDictionarySearchCreateBody = {
|
|
18
|
+
data: string;
|
|
19
|
+
search_groups: string[];
|
|
20
|
+
};
|
|
21
|
+
export declare const Schemas$ToolsDictionarySearchCreateBody: {
|
|
22
|
+
in: z.ZodType<ToolsDictionarySearchCreateBody, z.ZodTypeDef, unknown>;
|
|
23
|
+
out: z.ZodType<External$ToolsDictionarySearchCreateBody, z.ZodTypeDef, ToolsDictionarySearchCreateBody>;
|
|
24
|
+
};
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Generated by Sideko (sideko.dev)
|
|
4
|
+
**/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
22
|
+
var ownKeys = function(o) {
|
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
24
|
+
var ar = [];
|
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
26
|
+
return ar;
|
|
27
|
+
};
|
|
28
|
+
return ownKeys(o);
|
|
29
|
+
};
|
|
30
|
+
return function (mod) {
|
|
31
|
+
if (mod && mod.__esModule) return mod;
|
|
32
|
+
var result = {};
|
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
})();
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.Schemas$ToolsDictionarySearchCreateBody = void 0;
|
|
40
|
+
const make_api_request_js_1 = require("make-api-request-js");
|
|
41
|
+
const z = __importStar(require("zod"));
|
|
42
|
+
/**
|
|
43
|
+
* Takes network data, validates it, and transforms keys to match typescript object ToolsDictionarySearchCreateBody
|
|
44
|
+
*/
|
|
45
|
+
const SchemaIn$ToolsDictionarySearchCreateBody = z
|
|
46
|
+
.object({
|
|
47
|
+
data: z.string(),
|
|
48
|
+
search_groups: z.array(z.string()),
|
|
49
|
+
})
|
|
50
|
+
.transform((obj) => {
|
|
51
|
+
return (0, make_api_request_js_1.zodTransform)(obj, {
|
|
52
|
+
data: "data",
|
|
53
|
+
search_groups: "searchGroups",
|
|
54
|
+
});
|
|
55
|
+
});
|
|
56
|
+
/**
|
|
57
|
+
* @internal
|
|
58
|
+
* Takes typescript data, validates it, and maps keys to match the expected external object External$ToolsDictionarySearchCreateBody
|
|
59
|
+
*/
|
|
60
|
+
const SchemaOut$ToolsDictionarySearchCreateBody = z
|
|
61
|
+
.object({
|
|
62
|
+
data: z.string(),
|
|
63
|
+
searchGroups: z.array(z.string()),
|
|
64
|
+
})
|
|
65
|
+
.transform((obj) => {
|
|
66
|
+
return (0, make_api_request_js_1.zodTransform)(obj, {
|
|
67
|
+
data: "data",
|
|
68
|
+
searchGroups: "search_groups",
|
|
69
|
+
});
|
|
70
|
+
});
|
|
71
|
+
exports.Schemas$ToolsDictionarySearchCreateBody = {
|
|
72
|
+
in: SchemaIn$ToolsDictionarySearchCreateBody,
|
|
73
|
+
out: SchemaOut$ToolsDictionarySearchCreateBody,
|
|
74
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by Sideko (sideko.dev)
|
|
3
|
+
**/
|
|
4
|
+
import * as z from "zod";
|
|
5
|
+
/**
|
|
6
|
+
* ToolsDictionarySearchCreateResponseItem
|
|
7
|
+
*/
|
|
8
|
+
export type ToolsDictionarySearchCreateResponseItem = {
|
|
9
|
+
/**
|
|
10
|
+
* The id of the dictionary definition that was found
|
|
11
|
+
*/
|
|
12
|
+
id: string;
|
|
13
|
+
/**
|
|
14
|
+
* The name of the dictionary definition that was found
|
|
15
|
+
*/
|
|
16
|
+
value: string;
|
|
17
|
+
[additionalProperty: string]: string | string | any | null | undefined;
|
|
18
|
+
};
|
|
19
|
+
/**
|
|
20
|
+
* @internal
|
|
21
|
+
* ToolsDictionarySearchCreateResponseItem without any key transformation, this is what
|
|
22
|
+
* we expect to come in as network data
|
|
23
|
+
*/
|
|
24
|
+
export type External$ToolsDictionarySearchCreateResponseItem = {
|
|
25
|
+
id: string;
|
|
26
|
+
value: string;
|
|
27
|
+
[additionalProperty: string]: string | string | External$ToolsDictionarySearchCreateResponseItem | null | undefined;
|
|
28
|
+
};
|
|
29
|
+
export declare const Schemas$ToolsDictionarySearchCreateResponseItem: {
|
|
30
|
+
in: z.ZodType<ToolsDictionarySearchCreateResponseItem, z.ZodTypeDef, unknown>;
|
|
31
|
+
out: z.ZodType<External$ToolsDictionarySearchCreateResponseItem, z.ZodTypeDef, ToolsDictionarySearchCreateResponseItem>;
|
|
32
|
+
};
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Generated by Sideko (sideko.dev)
|
|
4
|
+
**/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
22
|
+
var ownKeys = function(o) {
|
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
24
|
+
var ar = [];
|
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
26
|
+
return ar;
|
|
27
|
+
};
|
|
28
|
+
return ownKeys(o);
|
|
29
|
+
};
|
|
30
|
+
return function (mod) {
|
|
31
|
+
if (mod && mod.__esModule) return mod;
|
|
32
|
+
var result = {};
|
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
})();
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.Schemas$ToolsDictionarySearchCreateResponseItem = void 0;
|
|
40
|
+
const make_api_request_js_1 = require("make-api-request-js");
|
|
41
|
+
const z = __importStar(require("zod"));
|
|
42
|
+
/**
|
|
43
|
+
* Takes network data, validates it, and transforms keys to match typescript object ToolsDictionarySearchCreateResponseItem
|
|
44
|
+
*/
|
|
45
|
+
const SchemaIn$ToolsDictionarySearchCreateResponseItem = z
|
|
46
|
+
.object({
|
|
47
|
+
id: z.string(),
|
|
48
|
+
value: z.string(),
|
|
49
|
+
})
|
|
50
|
+
.catchall(make_api_request_js_1.zodRequiredAny)
|
|
51
|
+
.transform((obj) => {
|
|
52
|
+
return (0, make_api_request_js_1.zodTransform)(obj, {
|
|
53
|
+
id: "id",
|
|
54
|
+
value: "value",
|
|
55
|
+
});
|
|
56
|
+
});
|
|
57
|
+
/**
|
|
58
|
+
* @internal
|
|
59
|
+
* Takes typescript data, validates it, and maps keys to match the expected external object External$ToolsDictionarySearchCreateResponseItem
|
|
60
|
+
*/
|
|
61
|
+
const SchemaOut$ToolsDictionarySearchCreateResponseItem = z
|
|
62
|
+
.object({
|
|
63
|
+
id: z.string(),
|
|
64
|
+
value: z.string(),
|
|
65
|
+
})
|
|
66
|
+
.catchall(make_api_request_js_1.zodRequiredAny)
|
|
67
|
+
.transform((obj) => {
|
|
68
|
+
return (0, make_api_request_js_1.zodTransform)(obj, {
|
|
69
|
+
id: "id",
|
|
70
|
+
value: "value",
|
|
71
|
+
});
|
|
72
|
+
});
|
|
73
|
+
exports.Schemas$ToolsDictionarySearchCreateResponseItem = {
|
|
74
|
+
in: SchemaIn$ToolsDictionarySearchCreateResponseItem,
|
|
75
|
+
out: SchemaOut$ToolsDictionarySearchCreateResponseItem,
|
|
76
|
+
};
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by Sideko (sideko.dev)
|
|
3
|
+
**/
|
|
4
|
+
import * as z from "zod";
|
|
5
|
+
/**
|
|
6
|
+
* ToolsFormatCreateBody
|
|
7
|
+
*/
|
|
8
|
+
export type ToolsFormatCreateBody = {
|
|
9
|
+
/**
|
|
10
|
+
* Desired output format
|
|
11
|
+
*/
|
|
12
|
+
format: "html" | "markdown";
|
|
13
|
+
/**
|
|
14
|
+
* Input to format
|
|
15
|
+
*/
|
|
16
|
+
input: string;
|
|
17
|
+
/**
|
|
18
|
+
* Instructions for the formatter
|
|
19
|
+
*/
|
|
20
|
+
instructions: string;
|
|
21
|
+
[additionalProperty: string]: ("html" | "markdown") | string | string | any | null | undefined;
|
|
22
|
+
};
|
|
23
|
+
/**
|
|
24
|
+
* @internal
|
|
25
|
+
* ToolsFormatCreateBody without any key transformation, this is what
|
|
26
|
+
* we expect to come in as network data
|
|
27
|
+
*/
|
|
28
|
+
export type External$ToolsFormatCreateBody = {
|
|
29
|
+
format: "html" | "markdown";
|
|
30
|
+
input: string;
|
|
31
|
+
instructions: string;
|
|
32
|
+
[additionalProperty: string]: ("html" | "markdown") | string | string | External$ToolsFormatCreateBody | null | undefined;
|
|
33
|
+
};
|
|
34
|
+
export declare const Schemas$ToolsFormatCreateBody: {
|
|
35
|
+
in: z.ZodType<ToolsFormatCreateBody, z.ZodTypeDef, unknown>;
|
|
36
|
+
out: z.ZodType<External$ToolsFormatCreateBody, z.ZodTypeDef, ToolsFormatCreateBody>;
|
|
37
|
+
};
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Generated by Sideko (sideko.dev)
|
|
4
|
+
**/
|
|
5
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
8
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
9
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
10
|
+
}
|
|
11
|
+
Object.defineProperty(o, k2, desc);
|
|
12
|
+
}) : (function(o, m, k, k2) {
|
|
13
|
+
if (k2 === undefined) k2 = k;
|
|
14
|
+
o[k2] = m[k];
|
|
15
|
+
}));
|
|
16
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
17
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
18
|
+
}) : function(o, v) {
|
|
19
|
+
o["default"] = v;
|
|
20
|
+
});
|
|
21
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
22
|
+
var ownKeys = function(o) {
|
|
23
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
24
|
+
var ar = [];
|
|
25
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
26
|
+
return ar;
|
|
27
|
+
};
|
|
28
|
+
return ownKeys(o);
|
|
29
|
+
};
|
|
30
|
+
return function (mod) {
|
|
31
|
+
if (mod && mod.__esModule) return mod;
|
|
32
|
+
var result = {};
|
|
33
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
34
|
+
__setModuleDefault(result, mod);
|
|
35
|
+
return result;
|
|
36
|
+
};
|
|
37
|
+
})();
|
|
38
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
+
exports.Schemas$ToolsFormatCreateBody = void 0;
|
|
40
|
+
const make_api_request_js_1 = require("make-api-request-js");
|
|
41
|
+
const z = __importStar(require("zod"));
|
|
42
|
+
/**
|
|
43
|
+
* Takes network data, validates it, and transforms keys to match typescript object ToolsFormatCreateBody
|
|
44
|
+
*/
|
|
45
|
+
const SchemaIn$ToolsFormatCreateBody = z
|
|
46
|
+
.object({
|
|
47
|
+
format: z.enum(["html", "markdown"]),
|
|
48
|
+
input: z.string(),
|
|
49
|
+
instructions: z.string(),
|
|
50
|
+
})
|
|
51
|
+
.catchall(make_api_request_js_1.zodRequiredAny)
|
|
52
|
+
.transform((obj) => {
|
|
53
|
+
return (0, make_api_request_js_1.zodTransform)(obj, {
|
|
54
|
+
format: "format",
|
|
55
|
+
input: "input",
|
|
56
|
+
instructions: "instructions",
|
|
57
|
+
});
|
|
58
|
+
});
|
|
59
|
+
/**
|
|
60
|
+
* @internal
|
|
61
|
+
* Takes typescript data, validates it, and maps keys to match the expected external object External$ToolsFormatCreateBody
|
|
62
|
+
*/
|
|
63
|
+
const SchemaOut$ToolsFormatCreateBody = z
|
|
64
|
+
.object({
|
|
65
|
+
format: z.enum(["html", "markdown"]),
|
|
66
|
+
input: z.string(),
|
|
67
|
+
instructions: z.string(),
|
|
68
|
+
})
|
|
69
|
+
.catchall(make_api_request_js_1.zodRequiredAny)
|
|
70
|
+
.transform((obj) => {
|
|
71
|
+
return (0, make_api_request_js_1.zodTransform)(obj, {
|
|
72
|
+
format: "format",
|
|
73
|
+
input: "input",
|
|
74
|
+
instructions: "instructions",
|
|
75
|
+
});
|
|
76
|
+
});
|
|
77
|
+
exports.Schemas$ToolsFormatCreateBody = {
|
|
78
|
+
in: SchemaIn$ToolsFormatCreateBody,
|
|
79
|
+
out: SchemaOut$ToolsFormatCreateBody,
|
|
80
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Generated by Sideko (sideko.dev)
|
|
3
|
+
**/
|
|
4
|
+
import * as z from "zod";
|
|
5
|
+
/**
|
|
6
|
+
* ToolsFormatCreateResponseItem
|
|
7
|
+
*/
|
|
8
|
+
export type ToolsFormatCreateResponseItem = {
|
|
9
|
+
text?: string | undefined;
|
|
10
|
+
type?: string | undefined;
|
|
11
|
+
};
|
|
12
|
+
/**
|
|
13
|
+
* @internal
|
|
14
|
+
* ToolsFormatCreateResponseItem without any key transformation, this is what
|
|
15
|
+
* we expect to come in as network data
|
|
16
|
+
*/
|
|
17
|
+
export type External$ToolsFormatCreateResponseItem = {
|
|
18
|
+
text?: string | undefined;
|
|
19
|
+
type?: string | undefined;
|
|
20
|
+
};
|
|
21
|
+
export declare const Schemas$ToolsFormatCreateResponseItem: {
|
|
22
|
+
in: z.ZodType<ToolsFormatCreateResponseItem, z.ZodTypeDef, unknown>;
|
|
23
|
+
out: z.ZodType<External$ToolsFormatCreateResponseItem, z.ZodTypeDef, ToolsFormatCreateResponseItem>;
|
|
24
|
+
};
|