jeopi-ai 16.2.13
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/CHANGELOG.md +4347 -0
- package/README.md +1193 -0
- package/dist/types/api-registry.d.ts +30 -0
- package/dist/types/auth-broker/client.d.ts +73 -0
- package/dist/types/auth-broker/discover.d.ts +35 -0
- package/dist/types/auth-broker/index.d.ts +7 -0
- package/dist/types/auth-broker/refresher.d.ts +25 -0
- package/dist/types/auth-broker/remote-store.d.ts +102 -0
- package/dist/types/auth-broker/server.d.ts +43 -0
- package/dist/types/auth-broker/snapshot-cache.d.ts +17 -0
- package/dist/types/auth-broker/types.d.ts +107 -0
- package/dist/types/auth-broker/wire-schemas.d.ts +411 -0
- package/dist/types/auth-gateway/http.d.ts +39 -0
- package/dist/types/auth-gateway/index.d.ts +3 -0
- package/dist/types/auth-gateway/server.d.ts +36 -0
- package/dist/types/auth-gateway/types.d.ts +123 -0
- package/dist/types/auth-retry.d.ts +124 -0
- package/dist/types/auth-storage.d.ts +1026 -0
- package/dist/types/dialect/anthropic.d.ts +15 -0
- package/dist/types/dialect/catalog.d.ts +3 -0
- package/dist/types/dialect/coercion.d.ts +23 -0
- package/dist/types/dialect/deepseek.d.ts +14 -0
- package/dist/types/dialect/demotion.d.ts +23 -0
- package/dist/types/dialect/examples.d.ts +2 -0
- package/dist/types/dialect/factory.d.ts +3 -0
- package/dist/types/dialect/fenced-thinking.d.ts +53 -0
- package/dist/types/dialect/gemini.d.ts +17 -0
- package/dist/types/dialect/gemma.d.ts +15 -0
- package/dist/types/dialect/glm.d.ts +9 -0
- package/dist/types/dialect/harmony.d.ts +8 -0
- package/dist/types/dialect/hermes.d.ts +9 -0
- package/dist/types/dialect/history.d.ts +3 -0
- package/dist/types/dialect/index.d.ts +11 -0
- package/dist/types/dialect/inventory.d.ts +12 -0
- package/dist/types/dialect/kimi.d.ts +14 -0
- package/dist/types/dialect/minimax.d.ts +3 -0
- package/dist/types/dialect/owned-stream.d.ts +4 -0
- package/dist/types/dialect/qwen3.d.ts +9 -0
- package/dist/types/dialect/rendering.d.ts +45 -0
- package/dist/types/dialect/thinking.d.ts +6 -0
- package/dist/types/dialect/types.d.ts +69 -0
- package/dist/types/dialect/xml.d.ts +9 -0
- package/dist/types/error/abort.d.ts +14 -0
- package/dist/types/error/auth-classify.d.ts +16 -0
- package/dist/types/error/auth.d.ts +27 -0
- package/dist/types/error/aws.d.ts +23 -0
- package/dist/types/error/classes.d.ts +102 -0
- package/dist/types/error/finalize.d.ts +39 -0
- package/dist/types/error/flags.d.ts +79 -0
- package/dist/types/error/format.d.ts +20 -0
- package/dist/types/error/gateway.d.ts +20 -0
- package/dist/types/error/index.d.ts +13 -0
- package/dist/types/error/oauth.d.ts +43 -0
- package/dist/types/error/provider.d.ts +42 -0
- package/dist/types/error/rate-limit.d.ts +59 -0
- package/dist/types/error/retryable.d.ts +27 -0
- package/dist/types/error/validation.d.ts +32 -0
- package/dist/types/index.d.ts +49 -0
- package/dist/types/provider-details.d.ts +24 -0
- package/dist/types/providers/__tests__/google-auth.test.d.ts +1 -0
- package/dist/types/providers/__tests__/kimi-code-thinking.test.d.ts +1 -0
- package/dist/types/providers/__tests__/openai-codex-error.test.d.ts +1 -0
- package/dist/types/providers/amazon-bedrock.d.ts +39 -0
- package/dist/types/providers/anthropic-client.d.ts +94 -0
- package/dist/types/providers/anthropic-messages-server-schema.d.ts +497 -0
- package/dist/types/providers/anthropic-messages-server.d.ts +17 -0
- package/dist/types/providers/anthropic-wire.d.ts +318 -0
- package/dist/types/providers/anthropic.d.ts +248 -0
- package/dist/types/providers/aws-credentials.d.ts +53 -0
- package/dist/types/providers/aws-eventstream.d.ts +39 -0
- package/dist/types/providers/aws-sigv4.d.ts +55 -0
- package/dist/types/providers/azure-openai-responses.d.ts +16 -0
- package/dist/types/providers/cursor.d.ts +91 -0
- package/dist/types/providers/devin.d.ts +12 -0
- package/dist/types/providers/error-message.d.ts +27 -0
- package/dist/types/providers/github-copilot-headers.d.ts +40 -0
- package/dist/types/providers/gitlab-duo-workflow.d.ts +254 -0
- package/dist/types/providers/gitlab-duo.d.ts +27 -0
- package/dist/types/providers/google-auth.d.ts +32 -0
- package/dist/types/providers/google-gemini-cli.d.ts +118 -0
- package/dist/types/providers/google-interactions.d.ts +65 -0
- package/dist/types/providers/google-shared.d.ts +203 -0
- package/dist/types/providers/google-types.d.ts +155 -0
- package/dist/types/providers/google-vertex.d.ts +7 -0
- package/dist/types/providers/google.d.ts +4 -0
- package/dist/types/providers/grammar.d.ts +1 -0
- package/dist/types/providers/kimi.d.ts +27 -0
- package/dist/types/providers/mock.d.ts +178 -0
- package/dist/types/providers/ollama.d.ts +7 -0
- package/dist/types/providers/openai-anthropic-shim.d.ts +31 -0
- package/dist/types/providers/openai-chat-server-schema.d.ts +695 -0
- package/dist/types/providers/openai-chat-server.d.ts +16 -0
- package/dist/types/providers/openai-chat-wire.d.ts +644 -0
- package/dist/types/providers/openai-codex/request-transformer.d.ts +54 -0
- package/dist/types/providers/openai-codex/response-handler.d.ts +26 -0
- package/dist/types/providers/openai-codex-responses.d.ts +108 -0
- package/dist/types/providers/openai-completions.d.ts +45 -0
- package/dist/types/providers/openai-reasoning-fallback.d.ts +25 -0
- package/dist/types/providers/openai-responses-server-schema.d.ts +349 -0
- package/dist/types/providers/openai-responses-server.d.ts +17 -0
- package/dist/types/providers/openai-responses-wire.d.ts +6065 -0
- package/dist/types/providers/openai-responses.d.ts +126 -0
- package/dist/types/providers/openai-shared.d.ts +506 -0
- package/dist/types/providers/pi-native-client.d.ts +13 -0
- package/dist/types/providers/pi-native-server.d.ts +69 -0
- package/dist/types/providers/register-builtins.d.ts +32 -0
- package/dist/types/providers/synthetic.d.ts +26 -0
- package/dist/types/providers/transform-messages.d.ts +11 -0
- package/dist/types/providers/vision-guard.d.ts +20 -0
- package/dist/types/registry/aimlapi.d.ts +4 -0
- package/dist/types/registry/alibaba-coding-plan.d.ts +8 -0
- package/dist/types/registry/amazon-bedrock.d.ts +5 -0
- package/dist/types/registry/anthropic.d.ts +10 -0
- package/dist/types/registry/api-key-login.d.ts +42 -0
- package/dist/types/registry/api-key-validation.d.ts +43 -0
- package/dist/types/registry/azure.d.ts +4 -0
- package/dist/types/registry/cerebras.d.ts +7 -0
- package/dist/types/registry/cloudflare-ai-gateway.d.ts +13 -0
- package/dist/types/registry/coreweave.d.ts +7 -0
- package/dist/types/registry/cursor.d.ts +7 -0
- package/dist/types/registry/deepseek.d.ts +8 -0
- package/dist/types/registry/derived.d.ts +5 -0
- package/dist/types/registry/devin.d.ts +8 -0
- package/dist/types/registry/firepass.d.ts +16 -0
- package/dist/types/registry/fireworks.d.ts +7 -0
- package/dist/types/registry/github-copilot.d.ts +7 -0
- package/dist/types/registry/gitlab-duo-workflow.d.ts +10 -0
- package/dist/types/registry/gitlab-duo.d.ts +9 -0
- package/dist/types/registry/google-antigravity.d.ts +9 -0
- package/dist/types/registry/google-gemini-cli.d.ts +9 -0
- package/dist/types/registry/google-vertex.d.ts +5 -0
- package/dist/types/registry/google.d.ts +4 -0
- package/dist/types/registry/groq.d.ts +4 -0
- package/dist/types/registry/huggingface.d.ts +7 -0
- package/dist/types/registry/index.d.ts +4 -0
- package/dist/types/registry/kagi.d.ts +14 -0
- package/dist/types/registry/kilo.d.ts +7 -0
- package/dist/types/registry/kimi-code.d.ts +7 -0
- package/dist/types/registry/litellm.d.ts +13 -0
- package/dist/types/registry/llama-cpp.d.ts +8 -0
- package/dist/types/registry/lm-studio.d.ts +8 -0
- package/dist/types/registry/minimax-code-cn.d.ts +6 -0
- package/dist/types/registry/minimax-code.d.ts +6 -0
- package/dist/types/registry/minimax.d.ts +4 -0
- package/dist/types/registry/mistral.d.ts +4 -0
- package/dist/types/registry/moonshot.d.ts +7 -0
- package/dist/types/registry/nanogpt.d.ts +7 -0
- package/dist/types/registry/nvidia.d.ts +7 -0
- package/dist/types/registry/oauth/__tests__/xai-oauth.test.d.ts +1 -0
- package/dist/types/registry/oauth/anthropic.d.ts +23 -0
- package/dist/types/registry/oauth/callback-server.d.ts +72 -0
- package/dist/types/registry/oauth/cursor.d.ts +15 -0
- package/dist/types/registry/oauth/devin.d.ts +5 -0
- package/dist/types/registry/oauth/github-copilot.d.ts +30 -0
- package/dist/types/registry/oauth/gitlab-duo-workflow.d.ts +6 -0
- package/dist/types/registry/oauth/gitlab-duo.d.ts +3 -0
- package/dist/types/registry/oauth/google-antigravity.d.ts +11 -0
- package/dist/types/registry/oauth/google-gemini-cli.d.ts +10 -0
- package/dist/types/registry/oauth/google-oauth-shared.d.ts +22 -0
- package/dist/types/registry/oauth/index.d.ts +64 -0
- package/dist/types/registry/oauth/kimi.d.ts +21 -0
- package/dist/types/registry/oauth/minimax-code.d.ts +27 -0
- package/dist/types/registry/oauth/openai-codex.d.ts +33 -0
- package/dist/types/registry/oauth/opencode.d.ts +18 -0
- package/dist/types/registry/oauth/perplexity.d.ts +9 -0
- package/dist/types/registry/oauth/pkce.d.ts +8 -0
- package/dist/types/registry/oauth/types.d.ts +56 -0
- package/dist/types/registry/oauth/wafer.d.ts +1 -0
- package/dist/types/registry/oauth/xai-oauth.d.ts +52 -0
- package/dist/types/registry/oauth/xiaomi.d.ts +25 -0
- package/dist/types/registry/ollama-cloud.d.ts +7 -0
- package/dist/types/registry/ollama.d.ts +12 -0
- package/dist/types/registry/openai-codex-device.d.ts +8 -0
- package/dist/types/registry/openai-codex.d.ts +9 -0
- package/dist/types/registry/openai.d.ts +4 -0
- package/dist/types/registry/opencode-go.d.ts +6 -0
- package/dist/types/registry/opencode-zen.d.ts +6 -0
- package/dist/types/registry/openrouter.d.ts +13 -0
- package/dist/types/registry/parallel.d.ts +14 -0
- package/dist/types/registry/perplexity.d.ts +7 -0
- package/dist/types/registry/qianfan.d.ts +7 -0
- package/dist/types/registry/qwen-portal.d.ts +7 -0
- package/dist/types/registry/registry.d.ts +303 -0
- package/dist/types/registry/sakana.d.ts +7 -0
- package/dist/types/registry/synthetic.d.ts +6 -0
- package/dist/types/registry/tavily.d.ts +14 -0
- package/dist/types/registry/together.d.ts +6 -0
- package/dist/types/registry/types.d.ts +51 -0
- package/dist/types/registry/umans.d.ts +7 -0
- package/dist/types/registry/venice.d.ts +13 -0
- package/dist/types/registry/vercel-ai-gateway.d.ts +7 -0
- package/dist/types/registry/vllm.d.ts +7 -0
- package/dist/types/registry/wafer-serverless.d.ts +6 -0
- package/dist/types/registry/xai-oauth.d.ts +7 -0
- package/dist/types/registry/xai.d.ts +4 -0
- package/dist/types/registry/xiaomi-token-plan-ams.d.ts +6 -0
- package/dist/types/registry/xiaomi-token-plan-cn.d.ts +6 -0
- package/dist/types/registry/xiaomi-token-plan-sgp.d.ts +6 -0
- package/dist/types/registry/xiaomi.d.ts +6 -0
- package/dist/types/registry/zai.d.ts +7 -0
- package/dist/types/registry/zenmux.d.ts +7 -0
- package/dist/types/registry/zhipu-coding-plan.d.ts +7 -0
- package/dist/types/stream.d.ts +44 -0
- package/dist/types/types.d.ts +715 -0
- package/dist/types/usage/claude.d.ts +4 -0
- package/dist/types/usage/gemini.d.ts +2 -0
- package/dist/types/usage/github-copilot.d.ts +7 -0
- package/dist/types/usage/google-antigravity.d.ts +15 -0
- package/dist/types/usage/kimi.d.ts +2 -0
- package/dist/types/usage/minimax-code.d.ts +2 -0
- package/dist/types/usage/ollama.d.ts +5 -0
- package/dist/types/usage/openai-codex-base-url.d.ts +18 -0
- package/dist/types/usage/openai-codex-reset.d.ts +79 -0
- package/dist/types/usage/openai-codex.d.ts +3 -0
- package/dist/types/usage/opencode-go.d.ts +2 -0
- package/dist/types/usage/shared.d.ts +1 -0
- package/dist/types/usage/zai.d.ts +2 -0
- package/dist/types/usage.d.ts +346 -0
- package/dist/types/utils/abort.d.ts +25 -0
- package/dist/types/utils/anthropic-auth.d.ts +35 -0
- package/dist/types/utils/block-symbols.d.ts +20 -0
- package/dist/types/utils/deterministic-id.d.ts +16 -0
- package/dist/types/utils/empty-completion-retry.d.ts +21 -0
- package/dist/types/utils/event-stream.d.ts +30 -0
- package/dist/types/utils/foundry.d.ts +1 -0
- package/dist/types/utils/google-validation.d.ts +2 -0
- package/dist/types/utils/harmony-leak.d.ts +118 -0
- package/dist/types/utils/http-inspector.d.ts +30 -0
- package/dist/types/utils/idle-iterator.d.ts +137 -0
- package/dist/types/utils/leaked-thinking-stream.d.ts +29 -0
- package/dist/types/utils/openai-http.d.ts +54 -0
- package/dist/types/utils/openrouter-headers.d.ts +1 -0
- package/dist/types/utils/parse-bind.d.ts +23 -0
- package/dist/types/utils/provider-response.d.ts +3 -0
- package/dist/types/utils/proxy.d.ts +29 -0
- package/dist/types/utils/request-debug.d.ts +29 -0
- package/dist/types/utils/retry-after.d.ts +4 -0
- package/dist/types/utils/retry.d.ts +14 -0
- package/dist/types/utils/schema/adapt.d.ts +24 -0
- package/dist/types/utils/schema/compatibility.d.ts +30 -0
- package/dist/types/utils/schema/dereference.d.ts +11 -0
- package/dist/types/utils/schema/draft.d.ts +10 -0
- package/dist/types/utils/schema/equality.d.ts +4 -0
- package/dist/types/utils/schema/fields.d.ts +54 -0
- package/dist/types/utils/schema/index.d.ts +15 -0
- package/dist/types/utils/schema/json-schema-validator.d.ts +20 -0
- package/dist/types/utils/schema/meta-validator.d.ts +2 -0
- package/dist/types/utils/schema/normalize.d.ts +124 -0
- package/dist/types/utils/schema/spill.d.ts +8 -0
- package/dist/types/utils/schema/stamps.d.ts +17 -0
- package/dist/types/utils/schema/strict-tool-validation.d.ts +16 -0
- package/dist/types/utils/schema/types.d.ts +4 -0
- package/dist/types/utils/schema/typescript.d.ts +18 -0
- package/dist/types/utils/schema/wire.d.ts +92 -0
- package/dist/types/utils/schema/zod-decontaminate.d.ts +31 -0
- package/dist/types/utils/sdk-stream-timeout.d.ts +33 -0
- package/dist/types/utils/sse-debug.d.ts +5 -0
- package/dist/types/utils/stream-markup-healing.d.ts +87 -0
- package/dist/types/utils/thinking-loop.d.ts +102 -0
- package/dist/types/utils/tool-call-loop-guard.d.ts +26 -0
- package/dist/types/utils/tool-choice.d.ts +50 -0
- package/dist/types/utils/validation.d.ts +42 -0
- package/dist/types/utils.d.ts +24 -0
- package/package.json +139 -0
- package/src/api-registry.ts +109 -0
- package/src/auth-broker/client.ts +359 -0
- package/src/auth-broker/discover.ts +222 -0
- package/src/auth-broker/index.ts +7 -0
- package/src/auth-broker/refresher.ts +117 -0
- package/src/auth-broker/remote-store.ts +657 -0
- package/src/auth-broker/server.ts +646 -0
- package/src/auth-broker/snapshot-cache.ts +191 -0
- package/src/auth-broker/types.ts +130 -0
- package/src/auth-broker/wire-schemas.ts +249 -0
- package/src/auth-gateway/http.ts +194 -0
- package/src/auth-gateway/index.ts +3 -0
- package/src/auth-gateway/server.ts +802 -0
- package/src/auth-gateway/types.ts +151 -0
- package/src/auth-retry.ts +250 -0
- package/src/auth-storage.ts +5576 -0
- package/src/dialect/anthropic.md +31 -0
- package/src/dialect/anthropic.ts +608 -0
- package/src/dialect/catalog.ts +29 -0
- package/src/dialect/coercion.ts +136 -0
- package/src/dialect/deepseek.md +24 -0
- package/src/dialect/deepseek.ts +609 -0
- package/src/dialect/demotion.ts +36 -0
- package/src/dialect/examples.ts +33 -0
- package/src/dialect/factory.ts +34 -0
- package/src/dialect/fenced-thinking.ts +184 -0
- package/src/dialect/gemini.md +44 -0
- package/src/dialect/gemini.ts +597 -0
- package/src/dialect/gemma.md +33 -0
- package/src/dialect/gemma.ts +387 -0
- package/src/dialect/glm.md +32 -0
- package/src/dialect/glm.ts +456 -0
- package/src/dialect/harmony.md +31 -0
- package/src/dialect/harmony.ts +346 -0
- package/src/dialect/hermes.md +25 -0
- package/src/dialect/hermes.ts +206 -0
- package/src/dialect/history.ts +81 -0
- package/src/dialect/index.ts +15 -0
- package/src/dialect/inventory.ts +73 -0
- package/src/dialect/kimi.md +24 -0
- package/src/dialect/kimi.ts +340 -0
- package/src/dialect/minimax.md +31 -0
- package/src/dialect/minimax.ts +95 -0
- package/src/dialect/owned-stream.ts +470 -0
- package/src/dialect/prompt-template.md +12 -0
- package/src/dialect/qwen3.md +28 -0
- package/src/dialect/qwen3.ts +240 -0
- package/src/dialect/rendering.ts +249 -0
- package/src/dialect/thinking.ts +122 -0
- package/src/dialect/types.ts +57 -0
- package/src/dialect/xml.md +22 -0
- package/src/dialect/xml.ts +90 -0
- package/src/error/abort.ts +18 -0
- package/src/error/auth-classify.ts +30 -0
- package/src/error/auth.ts +48 -0
- package/src/error/aws.ts +31 -0
- package/src/error/classes.ts +186 -0
- package/src/error/finalize.ts +69 -0
- package/src/error/flags.ts +506 -0
- package/src/error/format.ts +45 -0
- package/src/error/gateway.ts +96 -0
- package/src/error/index.ts +13 -0
- package/src/error/oauth.ts +58 -0
- package/src/error/provider.ts +62 -0
- package/src/error/rate-limit.ts +161 -0
- package/src/error/retryable.ts +70 -0
- package/src/error/validation.ts +44 -0
- package/src/index.ts +49 -0
- package/src/provider-details.ts +90 -0
- package/src/providers/__tests__/google-auth.test.ts +144 -0
- package/src/providers/__tests__/kimi-code-thinking.test.ts +112 -0
- package/src/providers/__tests__/openai-codex-error.test.ts +84 -0
- package/src/providers/amazon-bedrock.ts +1042 -0
- package/src/providers/anthropic-client.ts +295 -0
- package/src/providers/anthropic-messages-server-schema.ts +252 -0
- package/src/providers/anthropic-messages-server.ts +756 -0
- package/src/providers/anthropic-wire.ts +318 -0
- package/src/providers/anthropic.ts +4078 -0
- package/src/providers/aws-credentials.ts +586 -0
- package/src/providers/aws-eventstream.ts +181 -0
- package/src/providers/aws-sigv4.ts +218 -0
- package/src/providers/azure-openai-responses.ts +382 -0
- package/src/providers/cursor/proto/agent.proto +3526 -0
- package/src/providers/cursor/proto/buf.gen.yaml +6 -0
- package/src/providers/cursor/proto/buf.yaml +17 -0
- package/src/providers/cursor.ts +2695 -0
- package/src/providers/devin/proto/buf/validate/validate.proto +468 -0
- package/src/providers/devin/proto/buf.gen.yaml +33 -0
- package/src/providers/devin/proto/buf.yaml +17 -0
- package/src/providers/devin/proto/cel/expr/checked.proto +103 -0
- package/src/providers/devin/proto/cel/expr/eval.proto +38 -0
- package/src/providers/devin/proto/cel/expr/explain.proto +15 -0
- package/src/providers/devin/proto/cel/expr/syntax.proto +113 -0
- package/src/providers/devin/proto/cel/expr/value.proto +41 -0
- package/src/providers/devin/proto/connectext/grpc/status/v1/status.proto +11 -0
- package/src/providers/devin/proto/errorspb/errors.proto +56 -0
- package/src/providers/devin/proto/errorspb/hintdetail.proto +7 -0
- package/src/providers/devin/proto/errorspb/markers.proto +10 -0
- package/src/providers/devin/proto/errorspb/tags.proto +12 -0
- package/src/providers/devin/proto/errorspb/testing.proto +6 -0
- package/src/providers/devin/proto/exa/analytics_pb/analytics.proto +188 -0
- package/src/providers/devin/proto/exa/api_server_pb/api_server.proto +2461 -0
- package/src/providers/devin/proto/exa/auth_pb/auth.proto +19 -0
- package/src/providers/devin/proto/exa/auto_cascade_common_pb/auto_cascade_common.proto +79 -0
- package/src/providers/devin/proto/exa/browser_preview_pb/browser_preview.proto +32 -0
- package/src/providers/devin/proto/exa/bug_checker_pb/bug_checker.proto +22 -0
- package/src/providers/devin/proto/exa/cascade_plugins_pb/cascade_plugins.proto +262 -0
- package/src/providers/devin/proto/exa/chat_client_server_pb/chat_client_server.proto +57 -0
- package/src/providers/devin/proto/exa/chat_pb/chat.proto +449 -0
- package/src/providers/devin/proto/exa/code_edit/code_edit_pb/code_edit.proto +186 -0
- package/src/providers/devin/proto/exa/codeium_common_pb/codeium_common.proto +4157 -0
- package/src/providers/devin/proto/exa/context_module_pb/context_module.proto +175 -0
- package/src/providers/devin/proto/exa/cortex_pb/cortex.proto +3268 -0
- package/src/providers/devin/proto/exa/dev_pb/dev.proto +26 -0
- package/src/providers/devin/proto/exa/diff_action_pb/diff_action.proto +75 -0
- package/src/providers/devin/proto/exa/eval/pr_eval/datasets_pb/datasets.proto +103 -0
- package/src/providers/devin/proto/exa/eval_pb/eval.proto +1315 -0
- package/src/providers/devin/proto/exa/extension_server_pb/extension_server.proto +556 -0
- package/src/providers/devin/proto/exa/file_system_provider_pb/file_system_provider.proto +75 -0
- package/src/providers/devin/proto/exa/index_pb/index.proto +461 -0
- package/src/providers/devin/proto/exa/knowledge_base_pb/knowledge_base.proto +144 -0
- package/src/providers/devin/proto/exa/language_server_pb/language_server.proto +2385 -0
- package/src/providers/devin/proto/exa/model_management_pb/model_management.proto +186 -0
- package/src/providers/devin/proto/exa/opensearch_clients_pb/opensearch_clients.proto +503 -0
- package/src/providers/devin/proto/exa/product_analytics_pb/product_analytics.proto +37 -0
- package/src/providers/devin/proto/exa/prompt_pb/prompt.proto +92 -0
- package/src/providers/devin/proto/exa/reactive_component_pb/reactive_component.proto +96 -0
- package/src/providers/devin/proto/exa/seat_management_pb/seat_management.proto +2680 -0
- package/src/providers/devin/proto/exa/tokenizer_pb/tokenizer.proto +37 -0
- package/src/providers/devin/proto/exa/trainer_pb/config.proto +647 -0
- package/src/providers/devin/proto/exa/tree_sitter/language_data_pb/language_data.proto +14 -0
- package/src/providers/devin/proto/exa/trust_pb/trust.proto +157 -0
- package/src/providers/devin/proto/exa/user_analytics_pb/user_analytics.proto +519 -0
- package/src/providers/devin/proto/google.golang.org/appengine/internal/base/api_base.proto +28 -0
- package/src/providers/devin/proto/google.golang.org/appengine/internal/datastore/datastore_v3.proto +484 -0
- package/src/providers/devin/proto/google.golang.org/appengine/internal/log/log_service.proto +136 -0
- package/src/providers/devin/proto/google.golang.org/appengine/internal/remote_api/remote_api.proto +42 -0
- package/src/providers/devin/proto/google.golang.org/appengine/internal/urlfetch/urlfetch_service.proto +61 -0
- package/src/providers/devin/proto/grpc/binlog/v1/binarylog.proto +84 -0
- package/src/providers/devin/proto/io/prometheus/client/metrics.proto +98 -0
- package/src/providers/devin.ts +577 -0
- package/src/providers/error-message.ts +21 -0
- package/src/providers/github-copilot-headers.ts +141 -0
- package/src/providers/gitlab-duo-workflow-chatml-note.md +1 -0
- package/src/providers/gitlab-duo-workflow.ts +3058 -0
- package/src/providers/gitlab-duo.ts +395 -0
- package/src/providers/google-auth.ts +350 -0
- package/src/providers/google-gemini-cli.ts +1362 -0
- package/src/providers/google-interactions.ts +753 -0
- package/src/providers/google-shared.ts +1103 -0
- package/src/providers/google-types.ts +180 -0
- package/src/providers/google-vertex.ts +183 -0
- package/src/providers/google.ts +87 -0
- package/src/providers/grammar.ts +70 -0
- package/src/providers/kimi.ts +52 -0
- package/src/providers/mock.ts +507 -0
- package/src/providers/ollama.ts +773 -0
- package/src/providers/openai-anthropic-shim.ts +152 -0
- package/src/providers/openai-chat-server-schema.ts +242 -0
- package/src/providers/openai-chat-server.ts +715 -0
- package/src/providers/openai-chat-wire.ts +847 -0
- package/src/providers/openai-codex/request-transformer.ts +295 -0
- package/src/providers/openai-codex/response-handler.ts +102 -0
- package/src/providers/openai-codex-responses.ts +3468 -0
- package/src/providers/openai-completions.ts +2173 -0
- package/src/providers/openai-reasoning-fallback.ts +269 -0
- package/src/providers/openai-responses-reasoning-suppression.md +1 -0
- package/src/providers/openai-responses-server-schema.ts +282 -0
- package/src/providers/openai-responses-server.ts +1280 -0
- package/src/providers/openai-responses-wire.ts +6391 -0
- package/src/providers/openai-responses.ts +1022 -0
- package/src/providers/openai-shared.ts +2648 -0
- package/src/providers/pi-native-client.ts +266 -0
- package/src/providers/pi-native-server.ts +242 -0
- package/src/providers/register-builtins.ts +475 -0
- package/src/providers/synthetic.ts +50 -0
- package/src/providers/transform-messages.ts +787 -0
- package/src/providers/vision-guard.ts +54 -0
- package/src/registry/aimlapi.ts +6 -0
- package/src/registry/alibaba-coding-plan.ts +95 -0
- package/src/registry/amazon-bedrock.ts +22 -0
- package/src/registry/anthropic.ts +26 -0
- package/src/registry/api-key-login.ts +112 -0
- package/src/registry/api-key-validation.ts +161 -0
- package/src/registry/azure.ts +6 -0
- package/src/registry/cerebras.ts +23 -0
- package/src/registry/cloudflare-ai-gateway.ts +45 -0
- package/src/registry/coreweave.ts +40 -0
- package/src/registry/cursor.ts +20 -0
- package/src/registry/deepseek.ts +46 -0
- package/src/registry/derived.ts +9 -0
- package/src/registry/devin.ts +15 -0
- package/src/registry/firepass.ts +32 -0
- package/src/registry/fireworks.ts +28 -0
- package/src/registry/github-copilot.ts +22 -0
- package/src/registry/gitlab-duo-workflow.ts +20 -0
- package/src/registry/gitlab-duo.ts +19 -0
- package/src/registry/google-antigravity.ts +22 -0
- package/src/registry/google-gemini-cli.ts +22 -0
- package/src/registry/google-vertex.ts +38 -0
- package/src/registry/google.ts +6 -0
- package/src/registry/groq.ts +6 -0
- package/src/registry/huggingface.ts +29 -0
- package/src/registry/index.ts +4 -0
- package/src/registry/kagi.ts +46 -0
- package/src/registry/kilo.ts +114 -0
- package/src/registry/kimi-code.ts +17 -0
- package/src/registry/litellm.ts +45 -0
- package/src/registry/llama-cpp.ts +35 -0
- package/src/registry/lm-studio.ts +31 -0
- package/src/registry/minimax-code-cn.ts +12 -0
- package/src/registry/minimax-code.ts +12 -0
- package/src/registry/minimax.ts +6 -0
- package/src/registry/mistral.ts +6 -0
- package/src/registry/moonshot.ts +22 -0
- package/src/registry/nanogpt.ts +22 -0
- package/src/registry/nvidia.ts +61 -0
- package/src/registry/oauth/__tests__/xai-oauth.test.ts +104 -0
- package/src/registry/oauth/anthropic.ts +311 -0
- package/src/registry/oauth/callback-server.ts +315 -0
- package/src/registry/oauth/cursor.ts +171 -0
- package/src/registry/oauth/devin.ts +124 -0
- package/src/registry/oauth/github-copilot.ts +369 -0
- package/src/registry/oauth/gitlab-duo-workflow.ts +146 -0
- package/src/registry/oauth/gitlab-duo.ts +222 -0
- package/src/registry/oauth/google-antigravity.ts +209 -0
- package/src/registry/oauth/google-gemini-cli.ts +273 -0
- package/src/registry/oauth/google-oauth-shared.ts +125 -0
- package/src/registry/oauth/index.ts +269 -0
- package/src/registry/oauth/kimi.ts +289 -0
- package/src/registry/oauth/minimax-code.ts +53 -0
- package/src/registry/oauth/oauth.html +311 -0
- package/src/registry/oauth/openai-codex.ts +364 -0
- package/src/registry/oauth/opencode.ts +50 -0
- package/src/registry/oauth/perplexity.ts +228 -0
- package/src/registry/oauth/pkce.ts +18 -0
- package/src/registry/oauth/types.ts +65 -0
- package/src/registry/oauth/wafer.ts +24 -0
- package/src/registry/oauth/xai-oauth.ts +394 -0
- package/src/registry/oauth/xiaomi.ts +211 -0
- package/src/registry/ollama-cloud.ts +36 -0
- package/src/registry/ollama.ts +43 -0
- package/src/registry/openai-codex-device.ts +18 -0
- package/src/registry/openai-codex.ts +19 -0
- package/src/registry/openai.ts +6 -0
- package/src/registry/opencode-go.ts +12 -0
- package/src/registry/opencode-zen.ts +12 -0
- package/src/registry/openrouter.ts +28 -0
- package/src/registry/parallel.ts +45 -0
- package/src/registry/perplexity.ts +13 -0
- package/src/registry/qianfan.ts +27 -0
- package/src/registry/qwen-portal.ts +50 -0
- package/src/registry/registry.ts +161 -0
- package/src/registry/sakana.ts +22 -0
- package/src/registry/synthetic.ts +21 -0
- package/src/registry/tavily.ts +45 -0
- package/src/registry/together.ts +22 -0
- package/src/registry/types.ts +56 -0
- package/src/registry/umans.ts +23 -0
- package/src/registry/venice.ts +33 -0
- package/src/registry/vercel-ai-gateway.ts +38 -0
- package/src/registry/vllm.ts +34 -0
- package/src/registry/wafer-serverless.ts +12 -0
- package/src/registry/xai-oauth.ts +17 -0
- package/src/registry/xai.ts +6 -0
- package/src/registry/xiaomi-token-plan-ams.ts +12 -0
- package/src/registry/xiaomi-token-plan-cn.ts +12 -0
- package/src/registry/xiaomi-token-plan-sgp.ts +12 -0
- package/src/registry/xiaomi.ts +12 -0
- package/src/registry/zai.ts +27 -0
- package/src/registry/zenmux.ts +22 -0
- package/src/registry/zhipu-coding-plan.ts +27 -0
- package/src/stream.ts +1778 -0
- package/src/types.ts +856 -0
- package/src/usage/claude.ts +485 -0
- package/src/usage/gemini.ts +258 -0
- package/src/usage/github-copilot.ts +424 -0
- package/src/usage/google-antigravity.ts +497 -0
- package/src/usage/kimi.ts +271 -0
- package/src/usage/minimax-code.ts +30 -0
- package/src/usage/ollama.ts +41 -0
- package/src/usage/openai-codex-base-url.ts +35 -0
- package/src/usage/openai-codex-reset.ts +174 -0
- package/src/usage/openai-codex.ts +535 -0
- package/src/usage/opencode-go.ts +89 -0
- package/src/usage/shared.ts +10 -0
- package/src/usage/zai.ts +321 -0
- package/src/usage.ts +333 -0
- package/src/utils/abort.ts +67 -0
- package/src/utils/anthropic-auth.ts +93 -0
- package/src/utils/block-symbols.ts +32 -0
- package/src/utils/deterministic-id.ts +20 -0
- package/src/utils/empty-completion-retry.ts +159 -0
- package/src/utils/event-stream.ts +171 -0
- package/src/utils/foundry.ts +8 -0
- package/src/utils/google-validation.ts +25 -0
- package/src/utils/harmony-leak.ts +456 -0
- package/src/utils/http-inspector.ts +168 -0
- package/src/utils/idle-iterator.ts +473 -0
- package/src/utils/leaked-thinking-stream.ts +294 -0
- package/src/utils/openai-http.ts +122 -0
- package/src/utils/openrouter-headers.ts +12 -0
- package/src/utils/parse-bind.ts +56 -0
- package/src/utils/provider-response.ts +30 -0
- package/src/utils/proxy.ts +240 -0
- package/src/utils/request-debug.ts +351 -0
- package/src/utils/retry-after.ts +110 -0
- package/src/utils/retry.ts +59 -0
- package/src/utils/schema/CONSTRAINTS.md +166 -0
- package/src/utils/schema/adapt.ts +36 -0
- package/src/utils/schema/compatibility.ts +435 -0
- package/src/utils/schema/dereference.ts +98 -0
- package/src/utils/schema/draft.ts +341 -0
- package/src/utils/schema/equality.ts +97 -0
- package/src/utils/schema/fields.ts +207 -0
- package/src/utils/schema/index.ts +15 -0
- package/src/utils/schema/json-schema-validator.ts +595 -0
- package/src/utils/schema/meta-validator.ts +167 -0
- package/src/utils/schema/normalize.ts +1901 -0
- package/src/utils/schema/spill.ts +43 -0
- package/src/utils/schema/stamps.ts +109 -0
- package/src/utils/schema/strict-tool-validation.ts +117 -0
- package/src/utils/schema/types.ts +10 -0
- package/src/utils/schema/typescript.ts +198 -0
- package/src/utils/schema/wire.ts +789 -0
- package/src/utils/schema/zod-decontaminate.ts +331 -0
- package/src/utils/sdk-stream-timeout.ts +43 -0
- package/src/utils/sse-debug.ts +18 -0
- package/src/utils/stream-markup-healing.ts +247 -0
- package/src/utils/thinking-loop.ts +552 -0
- package/src/utils/tool-call-loop-guard.ts +107 -0
- package/src/utils/tool-choice.ts +99 -0
- package/src/utils/validation.ts +1507 -0
- package/src/utils.ts +171 -0
|
@@ -0,0 +1,2680 @@
|
|
|
1
|
+
syntax = "proto3";
|
|
2
|
+
|
|
3
|
+
package exa.seat_management_pb;
|
|
4
|
+
|
|
5
|
+
import "buf/validate/validate.proto";
|
|
6
|
+
import "exa/codeium_common_pb/codeium_common.proto";
|
|
7
|
+
import "google/protobuf/timestamp.proto";
|
|
8
|
+
|
|
9
|
+
enum PaymentPeriod {
|
|
10
|
+
PAYMENT_PERIOD_UNSPECIFIED = 0;
|
|
11
|
+
PAYMENT_PERIOD_MONTH = 1;
|
|
12
|
+
PAYMENT_PERIOD_YEAR = 2;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
enum RecentTopUpStatus {
|
|
16
|
+
RECENT_TOP_UP_STATUS_UNSPECIFIED = 0;
|
|
17
|
+
RECENT_TOP_UP_STATUS_PENDING = 1;
|
|
18
|
+
RECENT_TOP_UP_STATUS_COMPLETED = 2;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
enum SubInterval {
|
|
22
|
+
SUB_INTERVAL_UNSPECIFIED = 0;
|
|
23
|
+
SUB_INTERVAL_MONTH = 1;
|
|
24
|
+
SUB_INTERVAL_YEAR = 2;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
enum StripePrice {
|
|
28
|
+
STRIPE_PRICE_UNSPECIFIED = 0;
|
|
29
|
+
STRIPE_PRICE_TEAMS_MONTHLY = 1;
|
|
30
|
+
STRIPE_PRICE_TEAMS_YEARLY = 2;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
enum CascadeSeatType {
|
|
34
|
+
CASCADE_SEAT_TYPE_UNSPECIFIED = 0;
|
|
35
|
+
CASCADE_SEAT_TYPE_ENTRY = 1;
|
|
36
|
+
CASCADE_SEAT_TYPE_STANDARD = 2;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
enum UserTeamDetailsType {
|
|
40
|
+
USER_TEAM_DETAILS_TYPE_UNSPECIFIED = 0;
|
|
41
|
+
USER_TEAM_DETAILS_TYPE_CASCADE_SEAT = 1;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
enum PendingTransactionType {
|
|
45
|
+
PENDING_TRANSACTION_TYPE_UNSPECIFIED = 0;
|
|
46
|
+
PENDING_TRANSACTION_TYPE_TOP_UP = 1;
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
enum FlexCreditChronicleType {
|
|
50
|
+
FLEX_CREDIT_CHRONICLE_TYPE_UNSPECIFIED = 0;
|
|
51
|
+
FLEX_CREDIT_CHRONICLE_TYPE_PURCHASE = 1;
|
|
52
|
+
FLEX_CREDIT_CHRONICLE_TYPE_REFERRER = 2;
|
|
53
|
+
FLEX_CREDIT_CHRONICLE_TYPE_AVERY = 3;
|
|
54
|
+
FLEX_CREDIT_CHRONICLE_TYPE_TOP_UP = 4;
|
|
55
|
+
FLEX_CREDIT_CHRONICLE_TYPE_SUPPORT = 5;
|
|
56
|
+
FLEX_CREDIT_CHRONICLE_TYPE_GTM = 6;
|
|
57
|
+
FLEX_CREDIT_CHRONICLE_TYPE_FREE_CREDITS = 7;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
enum PurchaseReasonType {
|
|
61
|
+
PURCHASE_REASON_TYPE_UNSPECIFIED = 0;
|
|
62
|
+
PURCHASE_REASON_TYPE_MANUAL = 1;
|
|
63
|
+
PURCHASE_REASON_TYPE_TOP_UP = 2;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
message User {
|
|
67
|
+
reserved 31;
|
|
68
|
+
|
|
69
|
+
string api_key = 1;
|
|
70
|
+
string name = 2;
|
|
71
|
+
string email = 3;
|
|
72
|
+
.google.protobuf.Timestamp signup_time = 4;
|
|
73
|
+
.google.protobuf.Timestamp last_update_time = 5;
|
|
74
|
+
string id = 6;
|
|
75
|
+
string team_id = 7;
|
|
76
|
+
.exa.codeium_common_pb.UserTeamStatus team_status = 8;
|
|
77
|
+
string username = 9;
|
|
78
|
+
string preferred_time_zone = 10;
|
|
79
|
+
bool public_profile_enabled = 11;
|
|
80
|
+
string bio = 12;
|
|
81
|
+
bool pro = 13;
|
|
82
|
+
string profile_picture_uri = 14;
|
|
83
|
+
bool disable_codeium = 16;
|
|
84
|
+
.exa.codeium_common_pb.CliAccessOverride cli_access_override = 32;
|
|
85
|
+
string profile_picture_presigned_url = 15;
|
|
86
|
+
string occupation_company = 17;
|
|
87
|
+
string occupation_role = 18;
|
|
88
|
+
uint32 years_of_experience_min = 23;
|
|
89
|
+
uint32 years_of_experience_max = 24;
|
|
90
|
+
bool newsletter = 19;
|
|
91
|
+
bool disabled_telemetry = 20;
|
|
92
|
+
string inbound_source = 21;
|
|
93
|
+
string signup_stage = 22;
|
|
94
|
+
bool used_trial = 25;
|
|
95
|
+
.google.protobuf.Timestamp first_windsurf_use_time = 26;
|
|
96
|
+
.google.protobuf.Timestamp windsurf_pro_trial_end_time = 27;
|
|
97
|
+
int64 used_prompt_credits = 28 [deprecated = true];
|
|
98
|
+
int64 used_flow_credits = 29 [deprecated = true];
|
|
99
|
+
string referral_code = 30;
|
|
100
|
+
string devin_user_id = 33;
|
|
101
|
+
string devin_account_id = 34;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
message Team {
|
|
105
|
+
reserved 30;
|
|
106
|
+
reserved 35;
|
|
107
|
+
reserved "allowed_ip_ranges";
|
|
108
|
+
|
|
109
|
+
string id = 1;
|
|
110
|
+
string name = 2;
|
|
111
|
+
.google.protobuf.Timestamp signup_time = 3;
|
|
112
|
+
string invite_id = 4;
|
|
113
|
+
bool used_trial = 5;
|
|
114
|
+
string stripe_subscription_id = 6;
|
|
115
|
+
bool subscription_active = 7;
|
|
116
|
+
string stripe_customer_id = 8;
|
|
117
|
+
.google.protobuf.Timestamp current_billing_period_start = 9;
|
|
118
|
+
.google.protobuf.Timestamp current_billing_period_end = 18;
|
|
119
|
+
int64 num_seats_current_billing_period = 10;
|
|
120
|
+
bool attribution_enabled = 11;
|
|
121
|
+
string sso_provider_id = 12;
|
|
122
|
+
bool offers_enabled = 13;
|
|
123
|
+
.exa.codeium_common_pb.TeamsTier teams_tier = 14;
|
|
124
|
+
int64 flex_credit_quota = 15;
|
|
125
|
+
int64 used_flow_credits = 16;
|
|
126
|
+
int64 used_prompt_credits = 17;
|
|
127
|
+
int64 num_cascade_seats = 19;
|
|
128
|
+
.google.protobuf.Timestamp cascade_usage_month_start = 20;
|
|
129
|
+
.google.protobuf.Timestamp cascade_usage_month_end = 21;
|
|
130
|
+
.exa.seat_management_pb.CascadeSeatType cascade_seat_type = 22;
|
|
131
|
+
bool top_up_enabled = 23;
|
|
132
|
+
int64 monthly_top_up_amount = 24;
|
|
133
|
+
int64 top_up_spent = 25;
|
|
134
|
+
int64 top_up_increment = 26;
|
|
135
|
+
int64 used_flex_credits = 27;
|
|
136
|
+
bool is_pooled = 29;
|
|
137
|
+
int64 prepurchased_credits = 28;
|
|
138
|
+
int64 orphaned_credit_usage = 31;
|
|
139
|
+
.google.protobuf.Timestamp grace_period_end = 32;
|
|
140
|
+
.exa.codeium_common_pb.GracePeriodStatus grace_period_status = 33;
|
|
141
|
+
optional int32 max_session_duration_seconds = 34;
|
|
142
|
+
string devin_account_id = 36;
|
|
143
|
+
optional int32 api_key_expiration_days = 37;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
message PreapprovedUser {
|
|
147
|
+
string id = 1;
|
|
148
|
+
string name = 2;
|
|
149
|
+
string email = 3;
|
|
150
|
+
string team_id = 4;
|
|
151
|
+
string issued_by_api_key = 5;
|
|
152
|
+
.google.protobuf.Timestamp created_at = 6;
|
|
153
|
+
.google.protobuf.Timestamp updated_at = 7;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
message ReadOnlyPreapprovedUser {
|
|
157
|
+
reserved 1;
|
|
158
|
+
reserved "id";
|
|
159
|
+
|
|
160
|
+
string name = 2;
|
|
161
|
+
string email = 3;
|
|
162
|
+
string team_id = 4;
|
|
163
|
+
string issued_by_api_key = 5;
|
|
164
|
+
.google.protobuf.Timestamp created_at = 6;
|
|
165
|
+
.google.protobuf.Timestamp updated_at = 7;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
message UserSettings {
|
|
169
|
+
bool exists = 1;
|
|
170
|
+
bool newsletter = 2;
|
|
171
|
+
bool disabled_telemetry = 3;
|
|
172
|
+
string inbound_source = 4;
|
|
173
|
+
string signup_stage = 5;
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
message UserRole {
|
|
177
|
+
string api_key = 1;
|
|
178
|
+
repeated string roles = 2;
|
|
179
|
+
string role_id = 3;
|
|
180
|
+
string role_name = 4;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
message GetUserStatusRequest {
|
|
184
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
message GetUserStatusResponse {
|
|
188
|
+
.exa.codeium_common_pb.UserStatus user_status = 1;
|
|
189
|
+
.exa.codeium_common_pb.PlanInfo plan_info = 2;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
message GetCurrentUserRequest {
|
|
193
|
+
reserved 1;
|
|
194
|
+
reserved "auth_token";
|
|
195
|
+
|
|
196
|
+
bool generate_profile_picture_url = 2;
|
|
197
|
+
bool create_if_not_exist = 3;
|
|
198
|
+
bool include_subscription = 4;
|
|
199
|
+
string sso_token = 5 [deprecated = true];
|
|
200
|
+
string saml_provider_id = 6 [deprecated = true];
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
message ReferralInfo {
|
|
204
|
+
string referrer_name = 1;
|
|
205
|
+
string referrer_email = 2;
|
|
206
|
+
.google.protobuf.Timestamp referral_accepted_time = 3;
|
|
207
|
+
.google.protobuf.Timestamp granted_time = 4;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
message GetCurrentUserResponse {
|
|
211
|
+
reserved 3;
|
|
212
|
+
reserved "license";
|
|
213
|
+
|
|
214
|
+
.exa.seat_management_pb.User user = 1;
|
|
215
|
+
repeated string roles = 2;
|
|
216
|
+
.exa.seat_management_pb.Team team = 4;
|
|
217
|
+
.exa.seat_management_pb.UserSettings subscription = 5;
|
|
218
|
+
repeated .exa.codeium_common_pb.Permission permissions = 8;
|
|
219
|
+
.exa.seat_management_pb.UserRole role = 7;
|
|
220
|
+
.exa.codeium_common_pb.PlanInfo plan_info = 6;
|
|
221
|
+
.exa.seat_management_pb.UserTeamDetails user_team_details = 9;
|
|
222
|
+
.exa.seat_management_pb.ReferralInfo referral = 10;
|
|
223
|
+
map<int32, .exa.codeium_common_pb.TeamsFeaturesMetadata> team_features = 11;
|
|
224
|
+
repeated string group_ids = 12;
|
|
225
|
+
string redirect_url = 13 [deprecated = true];
|
|
226
|
+
repeated .exa.seat_management_pb.SSOTeamOption team_options = 14;
|
|
227
|
+
bool show_disable_cli_setting = 15;
|
|
228
|
+
bool show_self_serve_purchase_for_enterprise = 16;
|
|
229
|
+
bool is_effective_super_admin = 17;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
message GetUsersRequest {
|
|
233
|
+
reserved 1;
|
|
234
|
+
reserved "auth_token";
|
|
235
|
+
|
|
236
|
+
string group_id = 2;
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
message GetUsersResponse {
|
|
240
|
+
repeated .exa.seat_management_pb.User users = 1;
|
|
241
|
+
repeated .exa.seat_management_pb.UserRole user_roles = 2;
|
|
242
|
+
repeated .exa.seat_management_pb.UserTeamDetails user_team_details = 3;
|
|
243
|
+
repeated .exa.seat_management_pb.UserCascadeDetails user_cascade_details = 4;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
message GetRolesForUserRequest {
|
|
247
|
+
reserved 1;
|
|
248
|
+
reserved "auth_token";
|
|
249
|
+
|
|
250
|
+
string api_key = 2;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
message GetRolesForUserResponse {
|
|
254
|
+
repeated string roles = 1;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
message GetPrimaryApiKeyForDevsOnlyRequest {
|
|
258
|
+
string session_token = 1;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
message GetPrimaryApiKeyForDevsOnlyResponse {
|
|
262
|
+
string api_key = 1;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
message AddUserRoleRequest {
|
|
266
|
+
reserved 1;
|
|
267
|
+
reserved "auth_token";
|
|
268
|
+
|
|
269
|
+
string api_key_to_add = 2;
|
|
270
|
+
string role = 3;
|
|
271
|
+
string group_id = 4;
|
|
272
|
+
string service_key = 5;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
message AddUserRoleResponse {
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
message RemoveUserRoleRequest {
|
|
279
|
+
reserved 1;
|
|
280
|
+
reserved "auth_token";
|
|
281
|
+
|
|
282
|
+
string api_key_to_remove = 2;
|
|
283
|
+
string role = 3;
|
|
284
|
+
string group_id = 4;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
message RemoveUserRoleResponse {
|
|
288
|
+
}
|
|
289
|
+
|
|
290
|
+
message RegisterUserRequest {
|
|
291
|
+
string firebase_id_token = 1;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
message RegisterUserResponse {
|
|
295
|
+
string api_key = 1;
|
|
296
|
+
string name = 2;
|
|
297
|
+
string api_server_url = 3;
|
|
298
|
+
string redirect_url = 4 [deprecated = true];
|
|
299
|
+
repeated .exa.seat_management_pb.SSOTeamOption team_options = 5;
|
|
300
|
+
}
|
|
301
|
+
|
|
302
|
+
message MigrateApiKeyRequest {
|
|
303
|
+
string api_key = 1;
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
message MigrateApiKeyResponse {
|
|
307
|
+
string session_token = 1;
|
|
308
|
+
}
|
|
309
|
+
|
|
310
|
+
message CreateFbUserRequest {
|
|
311
|
+
string email = 1;
|
|
312
|
+
string password = 2;
|
|
313
|
+
string turnstile_token = 3;
|
|
314
|
+
string phone_number = 4;
|
|
315
|
+
string otp_code = 5;
|
|
316
|
+
string first_name = 6;
|
|
317
|
+
string last_name = 7;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
message CreateFbUserResponse {
|
|
321
|
+
string uid = 1;
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
message UpdateNameRequest {
|
|
325
|
+
reserved 1;
|
|
326
|
+
reserved "auth_token";
|
|
327
|
+
|
|
328
|
+
string full_name = 2;
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
message UpdateNameResponse {
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
message GetProfilePicturePresignedUploadUrlRequest {
|
|
335
|
+
reserved 1;
|
|
336
|
+
reserved "auth_token";
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
message GetProfilePicturePresignedUploadUrlResponse {
|
|
340
|
+
string url = 1;
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
message ProfilePictureUploadCompleteRequest {
|
|
344
|
+
reserved 1;
|
|
345
|
+
reserved "auth_token";
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
message ProfilePictureUploadCompleteResponse {
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
message GetProfileDataRequest {
|
|
352
|
+
string api_key = 1;
|
|
353
|
+
}
|
|
354
|
+
|
|
355
|
+
message GetProfileDataResponse {
|
|
356
|
+
string profile_picture_url = 1;
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
message DeleteProfilePictureRequest {
|
|
360
|
+
reserved 1;
|
|
361
|
+
reserved "auth_token";
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
message DeleteProfilePictureResponse {
|
|
365
|
+
}
|
|
366
|
+
|
|
367
|
+
message UpdateInboundSourceRequest {
|
|
368
|
+
reserved 1;
|
|
369
|
+
reserved "auth_token";
|
|
370
|
+
|
|
371
|
+
string inbound_source = 2;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
message UpdateInboundSourceResponse {
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
message DeleteUserRequest {
|
|
378
|
+
reserved 1;
|
|
379
|
+
reserved "auth_token";
|
|
380
|
+
|
|
381
|
+
string api_key_to_delete = 3;
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
message DeleteUserResponse {
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
message GetLicenseRequest {
|
|
388
|
+
reserved 1;
|
|
389
|
+
reserved "auth_token";
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
message GetLicenseResponse {
|
|
393
|
+
.exa.seat_management_pb.EnterpriseLicenseConfig license = 1;
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
message RequestTeamAccessRequest {
|
|
397
|
+
reserved 1;
|
|
398
|
+
reserved "api_key";
|
|
399
|
+
|
|
400
|
+
string invite_id = 2;
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
message RequestTeamAccessResponse {
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
message UpdateUserTeamStatusRequest {
|
|
407
|
+
reserved 1;
|
|
408
|
+
reserved "auth_token";
|
|
409
|
+
|
|
410
|
+
message UserTeamStatusUpdateItem {
|
|
411
|
+
string api_key = 1;
|
|
412
|
+
.exa.codeium_common_pb.UserTeamStatus status = 2;
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
repeated .exa.seat_management_pb.UpdateUserTeamStatusRequest.UserTeamStatusUpdateItem updates = 2;
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
message UpdateUserTeamStatusResponse {
|
|
419
|
+
repeated .exa.seat_management_pb.User users = 1;
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
message GetTeamMetadataRequest {
|
|
423
|
+
string invite_id = 1;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
message GetTeamMetadataResponse {
|
|
427
|
+
.exa.seat_management_pb.Team team = 1;
|
|
428
|
+
}
|
|
429
|
+
|
|
430
|
+
message RemoveUserFromTeamRequest {
|
|
431
|
+
reserved 1;
|
|
432
|
+
reserved "auth_token";
|
|
433
|
+
|
|
434
|
+
string api_key_to_remove = 2;
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
message RemoveUserFromTeamResponse {
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
message RefreshTeamInviteIdRequest {
|
|
441
|
+
reserved 1;
|
|
442
|
+
reserved "auth_token";
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
message RefreshTeamInviteIdResponse {
|
|
446
|
+
.exa.seat_management_pb.Team team = 1;
|
|
447
|
+
}
|
|
448
|
+
|
|
449
|
+
message GrantPreapprovalRequest {
|
|
450
|
+
reserved 1;
|
|
451
|
+
reserved "auth_token";
|
|
452
|
+
|
|
453
|
+
message PreapprovalUserItem {
|
|
454
|
+
string name = 1;
|
|
455
|
+
string email = 2;
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
repeated .exa.seat_management_pb.GrantPreapprovalRequest.PreapprovalUserItem preapprovals = 2;
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
message GrantPreapprovalResponse {
|
|
462
|
+
repeated .exa.seat_management_pb.ReadOnlyPreapprovedUser preapprovals = 1;
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
message GetPreapprovalsRequest {
|
|
466
|
+
reserved 1;
|
|
467
|
+
reserved "auth_token";
|
|
468
|
+
}
|
|
469
|
+
|
|
470
|
+
message GetPreapprovalsResponse {
|
|
471
|
+
repeated .exa.seat_management_pb.ReadOnlyPreapprovedUser preapprovals = 1;
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
message GetPreapprovalMetadataRequest {
|
|
475
|
+
string approval_id = 1;
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
message GetPreapprovalMetadataResponse {
|
|
479
|
+
string name = 1;
|
|
480
|
+
string email = 2;
|
|
481
|
+
string team_name = 3;
|
|
482
|
+
}
|
|
483
|
+
|
|
484
|
+
message AcceptPreapprovalRequest {
|
|
485
|
+
reserved 1;
|
|
486
|
+
reserved "auth_token";
|
|
487
|
+
|
|
488
|
+
string approval_id = 2;
|
|
489
|
+
}
|
|
490
|
+
|
|
491
|
+
message AcceptPreapprovalResponse {
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
message RejectPreapprovalRequest {
|
|
495
|
+
reserved 1;
|
|
496
|
+
reserved "auth_token";
|
|
497
|
+
|
|
498
|
+
string approval_id = 2;
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
message RejectPreapprovalResponse {
|
|
502
|
+
}
|
|
503
|
+
|
|
504
|
+
message GetPreapprovalForUserRequest {
|
|
505
|
+
reserved 1;
|
|
506
|
+
reserved "auth_token";
|
|
507
|
+
}
|
|
508
|
+
|
|
509
|
+
message GetPreapprovalForUserResponse {
|
|
510
|
+
.exa.seat_management_pb.PreapprovedUser preapproval = 1;
|
|
511
|
+
string admin_name = 2;
|
|
512
|
+
string team_name = 3;
|
|
513
|
+
bool can_accept_directly = 4;
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
message RevokePreapprovalRequest {
|
|
517
|
+
reserved 1;
|
|
518
|
+
reserved 2;
|
|
519
|
+
reserved "auth_token", "approval_id";
|
|
520
|
+
|
|
521
|
+
string email = 3;
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
message RevokePreapprovalResponse {
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
message SubscribeToPlanRequest {
|
|
528
|
+
reserved 1;
|
|
529
|
+
reserved "auth_token";
|
|
530
|
+
|
|
531
|
+
string stripe_price_id = 2 [deprecated = true];
|
|
532
|
+
bool start_trial = 3;
|
|
533
|
+
string success_url = 4;
|
|
534
|
+
string cancel_url = 5;
|
|
535
|
+
.exa.codeium_common_pb.TeamsTier teams_tier = 8;
|
|
536
|
+
.exa.seat_management_pb.PaymentPeriod payment_period = 9;
|
|
537
|
+
string team_name = 7;
|
|
538
|
+
int64 seats = 6;
|
|
539
|
+
string turnstile_token = 10;
|
|
540
|
+
}
|
|
541
|
+
|
|
542
|
+
message SubscribeToPlanResponse {
|
|
543
|
+
string checkout_url = 1;
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
message PurchaseCascadeCreditsRequest {
|
|
547
|
+
reserved 1;
|
|
548
|
+
reserved "auth_token";
|
|
549
|
+
|
|
550
|
+
string success_url = 4;
|
|
551
|
+
string cancel_url = 5;
|
|
552
|
+
optional int32 overage_amount = 6;
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
message PurchaseCascadeCreditsResponse {
|
|
556
|
+
string checkout_url = 1;
|
|
557
|
+
int64 add_on_credits_available = 2;
|
|
558
|
+
int64 add_on_credits_used = 3;
|
|
559
|
+
.exa.seat_management_pb.RecentTopUpStatus recent_top_up_status = 4;
|
|
560
|
+
}
|
|
561
|
+
|
|
562
|
+
message UpdateCreditTopUpSettingsRequest {
|
|
563
|
+
reserved 1;
|
|
564
|
+
reserved "auth_token";
|
|
565
|
+
|
|
566
|
+
bool enabled = 2;
|
|
567
|
+
int32 monthly_top_up_amount = 3;
|
|
568
|
+
int32 top_up_increment = 4;
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
message UpdateCreditTopUpSettingsResponse {
|
|
572
|
+
}
|
|
573
|
+
|
|
574
|
+
message GetTeamBillingRequest {
|
|
575
|
+
reserved 1;
|
|
576
|
+
reserved "auth_token";
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
message GetTeamBillingResponse {
|
|
580
|
+
reserved 13;
|
|
581
|
+
|
|
582
|
+
message Invoice {
|
|
583
|
+
float amount = 1;
|
|
584
|
+
string currency = 2;
|
|
585
|
+
bool paid = 3;
|
|
586
|
+
.google.protobuf.Timestamp created = 4;
|
|
587
|
+
string invoice_pdf_url = 5;
|
|
588
|
+
}
|
|
589
|
+
|
|
590
|
+
message PaymentMethod {
|
|
591
|
+
message CardType {
|
|
592
|
+
string brand = 1;
|
|
593
|
+
int64 exp_month = 2;
|
|
594
|
+
int64 exp_year = 3;
|
|
595
|
+
string last4 = 4;
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
string type = 1;
|
|
599
|
+
oneof payment_type {
|
|
600
|
+
.exa.seat_management_pb.GetTeamBillingResponse.PaymentMethod.CardType card = 2;
|
|
601
|
+
}
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
message FailedSubscriptionPayment {
|
|
605
|
+
string invoice_link = 1;
|
|
606
|
+
string decline_code = 2;
|
|
607
|
+
.google.protobuf.Timestamp pay_by_date = 3;
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
bool subscription_active = 1;
|
|
611
|
+
bool on_trial = 2;
|
|
612
|
+
.google.protobuf.Timestamp subscription_renewal_time = 3;
|
|
613
|
+
int64 num_seats = 5;
|
|
614
|
+
float plan_unit_amount = 6;
|
|
615
|
+
.exa.seat_management_pb.SubInterval sub_interval = 7;
|
|
616
|
+
bool cancel_at_period_end = 8;
|
|
617
|
+
repeated .exa.seat_management_pb.GetTeamBillingResponse.Invoice invoices = 9 [deprecated = true];
|
|
618
|
+
.exa.seat_management_pb.GetTeamBillingResponse.PaymentMethod payment_method = 10;
|
|
619
|
+
bool trial_only = 11;
|
|
620
|
+
.exa.codeium_common_pb.PlanStatus plan_status = 12;
|
|
621
|
+
int64 num_users = 14;
|
|
622
|
+
int64 num_seats_current_billing_period = 15;
|
|
623
|
+
int64 num_cascade_users = 16;
|
|
624
|
+
int64 num_cascade_seats = 17;
|
|
625
|
+
int64 num_core_users = 18;
|
|
626
|
+
int64 num_core_seats = 19;
|
|
627
|
+
.exa.seat_management_pb.GetTeamBillingResponse.FailedSubscriptionPayment failed_subscription_payment = 20;
|
|
628
|
+
string top_up_error_string = 21;
|
|
629
|
+
bool team_top_up_criteria_reached = 22;
|
|
630
|
+
}
|
|
631
|
+
|
|
632
|
+
message UpdateSeatsRequest {
|
|
633
|
+
reserved 1;
|
|
634
|
+
reserved "auth_token";
|
|
635
|
+
|
|
636
|
+
int64 num_seats = 2;
|
|
637
|
+
bool preview = 3;
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
message UpdateSeatsResponse {
|
|
641
|
+
.exa.seat_management_pb.BillingUpdate billing_update = 1;
|
|
642
|
+
}
|
|
643
|
+
|
|
644
|
+
message UpdatePlanRequest {
|
|
645
|
+
reserved 1;
|
|
646
|
+
reserved 2;
|
|
647
|
+
reserved "auth_token";
|
|
648
|
+
|
|
649
|
+
bool preview = 3;
|
|
650
|
+
.exa.seat_management_pb.PaymentPeriod payment_period = 4;
|
|
651
|
+
.exa.codeium_common_pb.TeamsTier teams_tier = 5;
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
message UpdatePlanResponse {
|
|
655
|
+
.exa.seat_management_pb.BillingUpdate billing_update = 1;
|
|
656
|
+
bool applied_changes = 2;
|
|
657
|
+
string next_action_client_secret = 3;
|
|
658
|
+
string payment_failure_reason = 4;
|
|
659
|
+
bool requires_password_reset = 5;
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
message BillingUpdate {
|
|
663
|
+
float amount_due_immediately = 1;
|
|
664
|
+
float price_per_seat = 3;
|
|
665
|
+
int64 num_seats = 4;
|
|
666
|
+
.exa.seat_management_pb.SubInterval sub_interval = 5;
|
|
667
|
+
float amount_per_interval = 6;
|
|
668
|
+
.google.protobuf.Timestamp billing_start = 7;
|
|
669
|
+
.google.protobuf.Timestamp billing_end = 8;
|
|
670
|
+
bool unused_plan_refunded = 9;
|
|
671
|
+
bool has_sso_add_on = 10;
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
message CancelPlanRequest {
|
|
675
|
+
reserved 1;
|
|
676
|
+
reserved "auth_token";
|
|
677
|
+
|
|
678
|
+
bool cancel_plan = 2;
|
|
679
|
+
bool resume_plan = 3;
|
|
680
|
+
string cancel_comment = 4;
|
|
681
|
+
string cancel_reason = 5;
|
|
682
|
+
}
|
|
683
|
+
|
|
684
|
+
message CancelPlanResponse {
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
message UpdateBillingRequest {
|
|
688
|
+
reserved 1;
|
|
689
|
+
reserved "auth_token";
|
|
690
|
+
|
|
691
|
+
string success_url = 2 [deprecated = true];
|
|
692
|
+
string cancel_url = 3 [deprecated = true];
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
message UpdateBillingResponse {
|
|
696
|
+
string checkout_url = 1 [deprecated = true];
|
|
697
|
+
}
|
|
698
|
+
|
|
699
|
+
message GetCustomerPortalRequest {
|
|
700
|
+
reserved 1;
|
|
701
|
+
reserved "auth_token";
|
|
702
|
+
|
|
703
|
+
string return_url = 2;
|
|
704
|
+
}
|
|
705
|
+
|
|
706
|
+
message GetCustomerPortalResponse {
|
|
707
|
+
string portal_url = 1;
|
|
708
|
+
}
|
|
709
|
+
|
|
710
|
+
message AddTeamAddOnFeatureRequest {
|
|
711
|
+
reserved 1;
|
|
712
|
+
reserved "auth_token";
|
|
713
|
+
|
|
714
|
+
.exa.codeium_common_pb.TeamsFeatures feature_type = 2;
|
|
715
|
+
bool preview = 3;
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
message AddTeamAddOnFeatureResponse {
|
|
719
|
+
.exa.seat_management_pb.BillingUpdate billing_update = 1;
|
|
720
|
+
bool applied_changes = 2;
|
|
721
|
+
string next_action_client_secret = 3;
|
|
722
|
+
string payment_failure_reason = 4;
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
message ShowSSOAddOnRequest {
|
|
726
|
+
reserved 1;
|
|
727
|
+
reserved "auth_token";
|
|
728
|
+
}
|
|
729
|
+
|
|
730
|
+
message ShowSSOAddOnResponse {
|
|
731
|
+
bool show_sso_add_on = 1;
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
message GetUserSubscriptionRequest {
|
|
735
|
+
reserved 1;
|
|
736
|
+
reserved "auth_token";
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
message GetUserSubscriptionResponse {
|
|
740
|
+
bool exists = 1;
|
|
741
|
+
bool newsletter = 2;
|
|
742
|
+
bool disabled_telemetry = 3;
|
|
743
|
+
string inbound_source = 4;
|
|
744
|
+
string signup_stage = 5;
|
|
745
|
+
.exa.seat_management_pb.UserSettings subscription = 6;
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
message UpdateOccupationRequest {
|
|
749
|
+
reserved 1;
|
|
750
|
+
reserved "auth_token";
|
|
751
|
+
|
|
752
|
+
string occupation_company = 2;
|
|
753
|
+
string occupation_role = 3;
|
|
754
|
+
uint32 years_of_experience_min = 4;
|
|
755
|
+
uint32 years_of_experience_max = 5;
|
|
756
|
+
}
|
|
757
|
+
|
|
758
|
+
message UpdateOccupationResponse {
|
|
759
|
+
}
|
|
760
|
+
|
|
761
|
+
message UpdateProfileRequest {
|
|
762
|
+
reserved 1;
|
|
763
|
+
reserved "auth_token";
|
|
764
|
+
|
|
765
|
+
string new_name = 2;
|
|
766
|
+
string new_email = 3;
|
|
767
|
+
string new_bio = 4;
|
|
768
|
+
string otp_code = 5;
|
|
769
|
+
}
|
|
770
|
+
|
|
771
|
+
message UpdateProfileResponse {
|
|
772
|
+
}
|
|
773
|
+
|
|
774
|
+
message AddUsersToTeamRequest {
|
|
775
|
+
string secret = 1;
|
|
776
|
+
string team_id = 2;
|
|
777
|
+
repeated string emails = 3;
|
|
778
|
+
bool create_if_not_exists = 4;
|
|
779
|
+
bool send_email = 5;
|
|
780
|
+
}
|
|
781
|
+
|
|
782
|
+
message AddUsersToTeamResponse {
|
|
783
|
+
}
|
|
784
|
+
|
|
785
|
+
message UpdateUserRolesRequest {
|
|
786
|
+
string secret = 1;
|
|
787
|
+
string email = 2;
|
|
788
|
+
repeated string roles = 3;
|
|
789
|
+
}
|
|
790
|
+
|
|
791
|
+
message UpdateUserRolesResponse {
|
|
792
|
+
}
|
|
793
|
+
|
|
794
|
+
message BulkUpdateUserRolesRequest {
|
|
795
|
+
string service_key = 1;
|
|
796
|
+
repeated string emails = 2;
|
|
797
|
+
string role = 3;
|
|
798
|
+
string group_name = 4;
|
|
799
|
+
}
|
|
800
|
+
|
|
801
|
+
message BulkUpdateUserRolesResponse {
|
|
802
|
+
repeated string successful_emails = 1;
|
|
803
|
+
repeated string failed_emails = 2;
|
|
804
|
+
}
|
|
805
|
+
|
|
806
|
+
message GetTeamActivityRequest {
|
|
807
|
+
string api_key = 1;
|
|
808
|
+
.google.protobuf.Timestamp start_timestamp = 2;
|
|
809
|
+
.google.protobuf.Timestamp end_timestamp = 3;
|
|
810
|
+
}
|
|
811
|
+
|
|
812
|
+
message GetTeamActivityResponse {
|
|
813
|
+
message UserActivity {
|
|
814
|
+
.exa.seat_management_pb.User user = 1;
|
|
815
|
+
.exa.codeium_common_pb.CompletionStatistics completion_statistics = 2;
|
|
816
|
+
}
|
|
817
|
+
|
|
818
|
+
repeated .exa.seat_management_pb.GetTeamActivityResponse.UserActivity user_activity = 1;
|
|
819
|
+
}
|
|
820
|
+
|
|
821
|
+
message GetSSOProviderRequest {
|
|
822
|
+
reserved 1;
|
|
823
|
+
reserved "auth_token";
|
|
824
|
+
}
|
|
825
|
+
|
|
826
|
+
message GetSSOProviderResponse {
|
|
827
|
+
.exa.seat_management_pb.SAMLAuthProvider saml_auth_provider = 1;
|
|
828
|
+
}
|
|
829
|
+
|
|
830
|
+
message SaveSSOProviderRequest {
|
|
831
|
+
reserved 1;
|
|
832
|
+
reserved "auth_token";
|
|
833
|
+
|
|
834
|
+
.exa.seat_management_pb.SAMLAuthProvider saml_auth_provider = 2;
|
|
835
|
+
bool is_test = 3;
|
|
836
|
+
}
|
|
837
|
+
|
|
838
|
+
message SaveSSOProviderResponse {
|
|
839
|
+
}
|
|
840
|
+
|
|
841
|
+
message SAMLAuthProvider {
|
|
842
|
+
string sso_provider_id = 1;
|
|
843
|
+
string idp_entity_id = 2;
|
|
844
|
+
string sso_url = 3;
|
|
845
|
+
string x509_certificate = 4;
|
|
846
|
+
bool enabled = 5;
|
|
847
|
+
}
|
|
848
|
+
|
|
849
|
+
message JoinTeamWithSSOLoginRequest {
|
|
850
|
+
reserved 1;
|
|
851
|
+
reserved "auth_token";
|
|
852
|
+
|
|
853
|
+
string saml_provider_id = 2;
|
|
854
|
+
string saml_auth_token = 3;
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
message JoinTeamWithSSOLoginResponse {
|
|
858
|
+
}
|
|
859
|
+
|
|
860
|
+
message UserSSOLoginRedirectRequest {
|
|
861
|
+
string email = 1;
|
|
862
|
+
}
|
|
863
|
+
|
|
864
|
+
message UserSSOLoginRedirectResponse {
|
|
865
|
+
bool should_redirect = 1;
|
|
866
|
+
string sso_provider_id = 2;
|
|
867
|
+
bool disallow_enterprise_user_login = 3;
|
|
868
|
+
string redirect_url = 4;
|
|
869
|
+
}
|
|
870
|
+
|
|
871
|
+
message CheckEmailForSSORequest {
|
|
872
|
+
string email = 1;
|
|
873
|
+
}
|
|
874
|
+
|
|
875
|
+
message CheckEmailForSSOResponse {
|
|
876
|
+
string redirect_url = 1;
|
|
877
|
+
bool show_sso_requirement_message = 2;
|
|
878
|
+
}
|
|
879
|
+
|
|
880
|
+
message CheckUserLoginMethodRequest {
|
|
881
|
+
string email = 1;
|
|
882
|
+
string approval_id = 2;
|
|
883
|
+
}
|
|
884
|
+
|
|
885
|
+
message CheckUserLoginMethodResponse {
|
|
886
|
+
string redirect_url = 1;
|
|
887
|
+
bool disallow_enterprise_user_login = 2;
|
|
888
|
+
bool user_exists = 3;
|
|
889
|
+
bool is_migrated = 4;
|
|
890
|
+
bool has_password = 5;
|
|
891
|
+
bool has_legacy_invite = 6;
|
|
892
|
+
bool redirect_to_enterprise_register = 7;
|
|
893
|
+
}
|
|
894
|
+
|
|
895
|
+
message SSOTeamOption {
|
|
896
|
+
string team_name = 1;
|
|
897
|
+
string redirect_url = 2;
|
|
898
|
+
}
|
|
899
|
+
|
|
900
|
+
message EnterpriseLicenseConfig {
|
|
901
|
+
.google.protobuf.Timestamp expiration_timestamp = 1;
|
|
902
|
+
uint32 seat_limit = 2;
|
|
903
|
+
bool attribution_enabled = 3;
|
|
904
|
+
bool audit_logs_enabled = 4;
|
|
905
|
+
.google.protobuf.Timestamp start_timestamp = 5;
|
|
906
|
+
uint32 mucs_total = 6;
|
|
907
|
+
bool mucs_enabled = 7;
|
|
908
|
+
uint32 license_length_months = 8;
|
|
909
|
+
bool enable_individual_user_analytics = 9;
|
|
910
|
+
}
|
|
911
|
+
|
|
912
|
+
message DeleteTeamRequest {
|
|
913
|
+
reserved 1;
|
|
914
|
+
reserved "auth_token";
|
|
915
|
+
}
|
|
916
|
+
|
|
917
|
+
message DeleteTeamResponse {
|
|
918
|
+
}
|
|
919
|
+
|
|
920
|
+
message GetTeamsFeaturesRequest {
|
|
921
|
+
reserved 1;
|
|
922
|
+
reserved "auth_token";
|
|
923
|
+
}
|
|
924
|
+
|
|
925
|
+
message GetTeamsFeaturesResponse {
|
|
926
|
+
repeated .exa.codeium_common_pb.TeamsFeatures features = 1;
|
|
927
|
+
}
|
|
928
|
+
|
|
929
|
+
message GrantSuperAdminAccessRequest {
|
|
930
|
+
reserved 1;
|
|
931
|
+
reserved "auth_token";
|
|
932
|
+
|
|
933
|
+
string user_email = 2;
|
|
934
|
+
string team_id = 3;
|
|
935
|
+
}
|
|
936
|
+
|
|
937
|
+
message GrantSuperAdminAccessResponse {
|
|
938
|
+
.exa.seat_management_pb.User user = 1;
|
|
939
|
+
}
|
|
940
|
+
|
|
941
|
+
message GrantTeamAdminAccessRequest {
|
|
942
|
+
reserved 1;
|
|
943
|
+
reserved "auth_token";
|
|
944
|
+
|
|
945
|
+
string user_email = 2;
|
|
946
|
+
string team_id = 3;
|
|
947
|
+
}
|
|
948
|
+
|
|
949
|
+
message GrantTeamAdminAccessResponse {
|
|
950
|
+
.exa.seat_management_pb.User user = 1;
|
|
951
|
+
bool pre_provisioned = 2;
|
|
952
|
+
}
|
|
953
|
+
|
|
954
|
+
message AddFlexCreditsToMultiTenantTeamRequest {
|
|
955
|
+
reserved 1;
|
|
956
|
+
reserved "auth_token";
|
|
957
|
+
|
|
958
|
+
string team_id = 2;
|
|
959
|
+
int64 flex_credits_to_add = 3;
|
|
960
|
+
}
|
|
961
|
+
|
|
962
|
+
message AddFlexCreditsToMultiTenantTeamResponse {
|
|
963
|
+
.exa.seat_management_pb.Team team = 1;
|
|
964
|
+
}
|
|
965
|
+
|
|
966
|
+
message GetTeamsFeaturesInternalRequest {
|
|
967
|
+
string secret = 1;
|
|
968
|
+
string team_id = 2;
|
|
969
|
+
}
|
|
970
|
+
|
|
971
|
+
message GetTeamsFeaturesInternalResponse {
|
|
972
|
+
repeated .exa.codeium_common_pb.TeamsFeatures features = 1;
|
|
973
|
+
}
|
|
974
|
+
|
|
975
|
+
message UpdateTeamsFeaturesInternalRequest {
|
|
976
|
+
string secret = 1;
|
|
977
|
+
string team_id = 2;
|
|
978
|
+
repeated .exa.codeium_common_pb.TeamsFeatures add_features = 3;
|
|
979
|
+
repeated .exa.codeium_common_pb.TeamsFeatures remove_features = 4;
|
|
980
|
+
}
|
|
981
|
+
|
|
982
|
+
message SetTeamsFeaturesRequest {
|
|
983
|
+
string secret = 1;
|
|
984
|
+
string team_id = 2;
|
|
985
|
+
repeated .exa.codeium_common_pb.TeamsFeatures features = 3;
|
|
986
|
+
}
|
|
987
|
+
|
|
988
|
+
message UpdateTeamsFeaturesInternalResponse {
|
|
989
|
+
}
|
|
990
|
+
|
|
991
|
+
message SetTeamsFeaturesResponse {
|
|
992
|
+
}
|
|
993
|
+
|
|
994
|
+
message BulkEditUserApprovalsRequest {
|
|
995
|
+
reserved 1;
|
|
996
|
+
reserved "auth_token";
|
|
997
|
+
|
|
998
|
+
repeated string emails = 2;
|
|
999
|
+
.exa.seat_management_pb.UserTeamDetailsType approval_type = 3;
|
|
1000
|
+
bool approve = 4;
|
|
1001
|
+
}
|
|
1002
|
+
|
|
1003
|
+
message UserTeamDetails {
|
|
1004
|
+
string auth_uid = 1;
|
|
1005
|
+
string team_id = 2;
|
|
1006
|
+
bool has_cascade_seat = 3;
|
|
1007
|
+
}
|
|
1008
|
+
|
|
1009
|
+
message BulkEditUserApprovalsResponse {
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
message BulkEditUserApprovalsInternalRequest {
|
|
1013
|
+
string secret = 1;
|
|
1014
|
+
string team_name = 2;
|
|
1015
|
+
repeated string emails = 3;
|
|
1016
|
+
.exa.seat_management_pb.UserTeamDetailsType approval_type = 4;
|
|
1017
|
+
bool approve = 5;
|
|
1018
|
+
}
|
|
1019
|
+
|
|
1020
|
+
message BulkEditUserApprovalsInternalResponse {
|
|
1021
|
+
}
|
|
1022
|
+
|
|
1023
|
+
message GetCliTeamSettingsRequest {
|
|
1024
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
1025
|
+
}
|
|
1026
|
+
|
|
1027
|
+
message GetCliTeamSettingsResponse {
|
|
1028
|
+
reserved 2;
|
|
1029
|
+
reserved 5;
|
|
1030
|
+
reserved 13;
|
|
1031
|
+
reserved 16;
|
|
1032
|
+
reserved 17;
|
|
1033
|
+
reserved 18;
|
|
1034
|
+
reserved "allowed_mcp_servers_json";
|
|
1035
|
+
|
|
1036
|
+
bool allow_mcp_servers = 1;
|
|
1037
|
+
bool disable_fast_context = 3;
|
|
1038
|
+
bool cascade_web_search_enabled = 4;
|
|
1039
|
+
.google.protobuf.Timestamp fetched_at = 6;
|
|
1040
|
+
repeated string allowed_model_uids = 7;
|
|
1041
|
+
repeated .exa.codeium_common_pb.McpServerConfig allowed_mcp_servers = 8;
|
|
1042
|
+
repeated string permission_allow = 9;
|
|
1043
|
+
repeated string permission_deny = 10;
|
|
1044
|
+
repeated string permission_ask = 11;
|
|
1045
|
+
bool allow_bundling_devin_cli = 12;
|
|
1046
|
+
repeated string mcp_registry_urls = 14;
|
|
1047
|
+
string acp_registry_config = 15;
|
|
1048
|
+
.exa.codeium_common_pb.SandboxEnforcementMode sandbox_enforcement_mode = 19;
|
|
1049
|
+
repeated string sandbox_allowed_domains = 20;
|
|
1050
|
+
repeated string sandbox_denied_domains = 21;
|
|
1051
|
+
bool devin_terminal_acp_enabled = 22;
|
|
1052
|
+
bool devin_cloud_acp_enabled = 23;
|
|
1053
|
+
optional bool enforce_mcp_registry = 24;
|
|
1054
|
+
string cascade_hooks_json = 25;
|
|
1055
|
+
string default_model_uid = 26;
|
|
1056
|
+
.exa.codeium_common_pb.CascadeCommandsAutoExecution max_cascade_auto_execution_level = 27;
|
|
1057
|
+
bool attribution_enabled = 28;
|
|
1058
|
+
bool disable_plugins = 29;
|
|
1059
|
+
}
|
|
1060
|
+
|
|
1061
|
+
message GetGroupsRequest {
|
|
1062
|
+
reserved 1;
|
|
1063
|
+
reserved "auth_token";
|
|
1064
|
+
|
|
1065
|
+
.exa.codeium_common_pb.Permission permission = 2;
|
|
1066
|
+
}
|
|
1067
|
+
|
|
1068
|
+
message Group {
|
|
1069
|
+
string id = 1;
|
|
1070
|
+
string name = 2;
|
|
1071
|
+
}
|
|
1072
|
+
|
|
1073
|
+
message GetGroupsResponse {
|
|
1074
|
+
repeated .exa.seat_management_pb.Group groups = 1;
|
|
1075
|
+
}
|
|
1076
|
+
|
|
1077
|
+
message CreateTeamApiSecretRequest {
|
|
1078
|
+
reserved 1;
|
|
1079
|
+
reserved "auth_token";
|
|
1080
|
+
|
|
1081
|
+
string name = 2;
|
|
1082
|
+
string role = 3;
|
|
1083
|
+
string group_id = 4;
|
|
1084
|
+
.google.protobuf.Timestamp expiration_date = 5;
|
|
1085
|
+
}
|
|
1086
|
+
|
|
1087
|
+
message CreateTeamApiSecretResponse {
|
|
1088
|
+
string secret = 1;
|
|
1089
|
+
}
|
|
1090
|
+
|
|
1091
|
+
message UpdateTeamApiSecretRequest {
|
|
1092
|
+
reserved 1;
|
|
1093
|
+
reserved "auth_token";
|
|
1094
|
+
|
|
1095
|
+
string service_key_id = 2;
|
|
1096
|
+
string name = 3;
|
|
1097
|
+
string role = 4;
|
|
1098
|
+
string group_id = 5;
|
|
1099
|
+
}
|
|
1100
|
+
|
|
1101
|
+
message UpdateTeamApiSecretResponse {
|
|
1102
|
+
}
|
|
1103
|
+
|
|
1104
|
+
message GetAllTeamApiSecretsRequest {
|
|
1105
|
+
reserved 1;
|
|
1106
|
+
reserved "auth_token";
|
|
1107
|
+
}
|
|
1108
|
+
|
|
1109
|
+
message TeamApiSecret {
|
|
1110
|
+
string id = 1;
|
|
1111
|
+
string name = 2;
|
|
1112
|
+
.google.protobuf.Timestamp created_at = 3;
|
|
1113
|
+
string role_id = 4;
|
|
1114
|
+
string group_id = 5;
|
|
1115
|
+
.google.protobuf.Timestamp expiration_date = 6;
|
|
1116
|
+
}
|
|
1117
|
+
|
|
1118
|
+
message GetAllTeamApiSecretsResponse {
|
|
1119
|
+
repeated .exa.seat_management_pb.TeamApiSecret secrets = 1;
|
|
1120
|
+
}
|
|
1121
|
+
|
|
1122
|
+
message DeleteTeamApiSecretRequest {
|
|
1123
|
+
reserved 1;
|
|
1124
|
+
reserved "auth_token";
|
|
1125
|
+
|
|
1126
|
+
string secret_id = 2;
|
|
1127
|
+
}
|
|
1128
|
+
|
|
1129
|
+
message DeleteTeamApiSecretResponse {
|
|
1130
|
+
}
|
|
1131
|
+
|
|
1132
|
+
message GetUserNotificationsRequest {
|
|
1133
|
+
string api_key = 1;
|
|
1134
|
+
}
|
|
1135
|
+
|
|
1136
|
+
message GetUserNotificationsResponse {
|
|
1137
|
+
message TeamPreapprovalMetadata {
|
|
1138
|
+
string admin_name = 1;
|
|
1139
|
+
string team_name = 2;
|
|
1140
|
+
.google.protobuf.Timestamp created_at = 3;
|
|
1141
|
+
}
|
|
1142
|
+
|
|
1143
|
+
.exa.seat_management_pb.GetUserNotificationsResponse.TeamPreapprovalMetadata team_preapproval_metadata = 1;
|
|
1144
|
+
}
|
|
1145
|
+
|
|
1146
|
+
message ConnectGithubAccountRequest {
|
|
1147
|
+
reserved 1;
|
|
1148
|
+
reserved "auth_token";
|
|
1149
|
+
|
|
1150
|
+
string github_refresh_token = 2;
|
|
1151
|
+
.google.protobuf.Timestamp github_refresh_token_expires_at = 3;
|
|
1152
|
+
}
|
|
1153
|
+
|
|
1154
|
+
message ConnectGithubAccountResponse {
|
|
1155
|
+
string github_access_token = 1;
|
|
1156
|
+
.google.protobuf.Timestamp github_access_token_expires_at = 2;
|
|
1157
|
+
}
|
|
1158
|
+
|
|
1159
|
+
message GetGitHubAccountStatusRequest {
|
|
1160
|
+
reserved 1;
|
|
1161
|
+
reserved "auth_token";
|
|
1162
|
+
}
|
|
1163
|
+
|
|
1164
|
+
message GetGitHubAccountStatusResponse {
|
|
1165
|
+
bool connected = 1;
|
|
1166
|
+
string username = 2;
|
|
1167
|
+
.google.protobuf.Timestamp expires_at = 3;
|
|
1168
|
+
}
|
|
1169
|
+
|
|
1170
|
+
message GetGitHubAccessTokenRequest {
|
|
1171
|
+
reserved 1;
|
|
1172
|
+
reserved "auth_token";
|
|
1173
|
+
}
|
|
1174
|
+
|
|
1175
|
+
message GetGitHubAccessTokenResponse {
|
|
1176
|
+
string access_token = 1;
|
|
1177
|
+
.google.protobuf.Timestamp expires_at = 2;
|
|
1178
|
+
}
|
|
1179
|
+
|
|
1180
|
+
message ConnectNetlifyAccountRequest {
|
|
1181
|
+
reserved 1;
|
|
1182
|
+
reserved "auth_token";
|
|
1183
|
+
|
|
1184
|
+
string netlify_access_token = 2;
|
|
1185
|
+
.google.protobuf.Timestamp expires_at = 3;
|
|
1186
|
+
string netlify_user_id = 4;
|
|
1187
|
+
}
|
|
1188
|
+
|
|
1189
|
+
message ConnectNetlifyAccountResponse {
|
|
1190
|
+
}
|
|
1191
|
+
|
|
1192
|
+
message DisconnectNetlifyAccountRequest {
|
|
1193
|
+
reserved 1;
|
|
1194
|
+
reserved "auth_token";
|
|
1195
|
+
}
|
|
1196
|
+
|
|
1197
|
+
message DisconnectNetlifyAccountResponse {
|
|
1198
|
+
}
|
|
1199
|
+
|
|
1200
|
+
message GetNetlifyAccountStatusRequest {
|
|
1201
|
+
reserved 1;
|
|
1202
|
+
reserved "auth_token";
|
|
1203
|
+
}
|
|
1204
|
+
|
|
1205
|
+
message GetNetlifyAccountStatusResponse {
|
|
1206
|
+
bool connected = 1;
|
|
1207
|
+
string netlify_user_id = 2;
|
|
1208
|
+
.google.protobuf.Timestamp expires_at = 3;
|
|
1209
|
+
}
|
|
1210
|
+
|
|
1211
|
+
message UpdateCodeiumAccessRequest {
|
|
1212
|
+
reserved 1;
|
|
1213
|
+
reserved "auth_token";
|
|
1214
|
+
|
|
1215
|
+
string api_key_to_update = 2;
|
|
1216
|
+
bool disable_codeium_access = 3;
|
|
1217
|
+
}
|
|
1218
|
+
|
|
1219
|
+
message UpdateCodeiumAccessResponse {
|
|
1220
|
+
}
|
|
1221
|
+
|
|
1222
|
+
message UpdateCliAccessRequest {
|
|
1223
|
+
reserved 1;
|
|
1224
|
+
reserved "auth_token";
|
|
1225
|
+
|
|
1226
|
+
string api_key_to_update = 2;
|
|
1227
|
+
bool disable_cli_access = 3;
|
|
1228
|
+
}
|
|
1229
|
+
|
|
1230
|
+
message UpdateCliAccessResponse {
|
|
1231
|
+
}
|
|
1232
|
+
|
|
1233
|
+
message CreateRoleRequest {
|
|
1234
|
+
reserved 1;
|
|
1235
|
+
reserved "auth_token";
|
|
1236
|
+
|
|
1237
|
+
string name = 2;
|
|
1238
|
+
repeated .exa.codeium_common_pb.Permission permissions = 3;
|
|
1239
|
+
}
|
|
1240
|
+
|
|
1241
|
+
message CreateRoleResponse {
|
|
1242
|
+
}
|
|
1243
|
+
|
|
1244
|
+
message DeleteRoleRequest {
|
|
1245
|
+
reserved 1;
|
|
1246
|
+
reserved "auth_token";
|
|
1247
|
+
|
|
1248
|
+
string role_id = 2;
|
|
1249
|
+
optional string reassign_to_role_id = 3;
|
|
1250
|
+
}
|
|
1251
|
+
|
|
1252
|
+
message DeleteRoleResponse {
|
|
1253
|
+
}
|
|
1254
|
+
|
|
1255
|
+
message UpdateRoleRequest {
|
|
1256
|
+
reserved 1;
|
|
1257
|
+
reserved "auth_token";
|
|
1258
|
+
|
|
1259
|
+
string role_id = 2;
|
|
1260
|
+
repeated .exa.codeium_common_pb.Permission permissions = 3;
|
|
1261
|
+
}
|
|
1262
|
+
|
|
1263
|
+
message UpdateRoleResponse {
|
|
1264
|
+
}
|
|
1265
|
+
|
|
1266
|
+
message GetRolesRequest {
|
|
1267
|
+
reserved 1;
|
|
1268
|
+
reserved "auth_token";
|
|
1269
|
+
}
|
|
1270
|
+
|
|
1271
|
+
message Role {
|
|
1272
|
+
string role_id = 1;
|
|
1273
|
+
string name = 2;
|
|
1274
|
+
repeated .exa.codeium_common_pb.Permission permissions = 3;
|
|
1275
|
+
bool mutable = 4;
|
|
1276
|
+
}
|
|
1277
|
+
|
|
1278
|
+
message GetRolesResponse {
|
|
1279
|
+
repeated .exa.seat_management_pb.Role roles = 1;
|
|
1280
|
+
}
|
|
1281
|
+
|
|
1282
|
+
message GetMucsInfoRequest {
|
|
1283
|
+
}
|
|
1284
|
+
|
|
1285
|
+
message MonthlyMucsMessage {
|
|
1286
|
+
int32 billing_months = 1;
|
|
1287
|
+
int32 billing_years = 2;
|
|
1288
|
+
int32 mucs_charged = 3;
|
|
1289
|
+
int32 mucs_deducted = 4;
|
|
1290
|
+
}
|
|
1291
|
+
|
|
1292
|
+
message GetMucsInfoResponse {
|
|
1293
|
+
int32 mucs_left = 1;
|
|
1294
|
+
int32 mucs_used = 2;
|
|
1295
|
+
bool is_mucs_enabled = 3;
|
|
1296
|
+
.google.protobuf.Timestamp start_date = 4;
|
|
1297
|
+
int32 current_registered_users = 5;
|
|
1298
|
+
int32 current_high_watermark = 6;
|
|
1299
|
+
repeated .exa.seat_management_pb.MonthlyMucsMessage mucs_table = 7;
|
|
1300
|
+
}
|
|
1301
|
+
|
|
1302
|
+
message GetCascadeAnalyticsRequest {
|
|
1303
|
+
reserved 1;
|
|
1304
|
+
reserved "auth_token";
|
|
1305
|
+
|
|
1306
|
+
.google.protobuf.Timestamp start_timestamp = 2;
|
|
1307
|
+
.google.protobuf.Timestamp end_timestamp = 3;
|
|
1308
|
+
}
|
|
1309
|
+
|
|
1310
|
+
message GetCascadeAnalyticsResponse {
|
|
1311
|
+
int32 used_prompt_credits = 1;
|
|
1312
|
+
int32 used_flow_credits = 2;
|
|
1313
|
+
int32 estimated_monthly_prompts = 3;
|
|
1314
|
+
int32 estimated_monthly_flows = 4;
|
|
1315
|
+
int64 purchased_credits = 5;
|
|
1316
|
+
}
|
|
1317
|
+
|
|
1318
|
+
message GetPlanStatusRequest {
|
|
1319
|
+
reserved 1;
|
|
1320
|
+
reserved "auth_token";
|
|
1321
|
+
|
|
1322
|
+
bool include_top_up_status = 2;
|
|
1323
|
+
}
|
|
1324
|
+
|
|
1325
|
+
message GetPlanStatusResponse {
|
|
1326
|
+
.exa.codeium_common_pb.PlanStatus plan_status = 1;
|
|
1327
|
+
int64 team_used_prompt_credits = 2;
|
|
1328
|
+
}
|
|
1329
|
+
|
|
1330
|
+
message Wrapped2024 {
|
|
1331
|
+
string api_key = 1;
|
|
1332
|
+
string email = 2;
|
|
1333
|
+
string name = 3;
|
|
1334
|
+
int32 total_minutes_coded = 4;
|
|
1335
|
+
double coding_percentile = 5;
|
|
1336
|
+
.google.protobuf.Timestamp biggest_coding_day = 6;
|
|
1337
|
+
int32 minutes_coding_biggest_day = 7;
|
|
1338
|
+
int32 autocompletes_accepted = 8;
|
|
1339
|
+
int32 cascade_messages_sent = 9;
|
|
1340
|
+
int32 cascade_lines_written = 10;
|
|
1341
|
+
int32 longest_streak = 11;
|
|
1342
|
+
int32 most_productive_day = 12;
|
|
1343
|
+
}
|
|
1344
|
+
|
|
1345
|
+
message GetWrapped2024Request {
|
|
1346
|
+
reserved 1;
|
|
1347
|
+
reserved "auth_token";
|
|
1348
|
+
}
|
|
1349
|
+
|
|
1350
|
+
message GetWrapped2024Response {
|
|
1351
|
+
.exa.seat_management_pb.Wrapped2024 wrapped_data = 1;
|
|
1352
|
+
}
|
|
1353
|
+
|
|
1354
|
+
message FlexCreditChronicleEntry {
|
|
1355
|
+
string team_id = 1;
|
|
1356
|
+
.google.protobuf.Timestamp grant_date = 2;
|
|
1357
|
+
int32 num_credits = 3;
|
|
1358
|
+
.exa.seat_management_pb.FlexCreditChronicleType type = 4;
|
|
1359
|
+
uint32 referral_id = 5;
|
|
1360
|
+
string invoice_id = 6;
|
|
1361
|
+
oneof reason {
|
|
1362
|
+
.exa.seat_management_pb.ReferrerReason referrer = 7;
|
|
1363
|
+
.exa.seat_management_pb.AveryReason avery = 8;
|
|
1364
|
+
.exa.seat_management_pb.PurchaseReason purchase = 9;
|
|
1365
|
+
}
|
|
1366
|
+
int64 amount_micros = 10;
|
|
1367
|
+
}
|
|
1368
|
+
|
|
1369
|
+
message ReferrerReason {
|
|
1370
|
+
string user_email = 1;
|
|
1371
|
+
string avery_email = 2;
|
|
1372
|
+
}
|
|
1373
|
+
|
|
1374
|
+
message AveryReason {
|
|
1375
|
+
string user_email = 1;
|
|
1376
|
+
string referrer_email = 2;
|
|
1377
|
+
}
|
|
1378
|
+
|
|
1379
|
+
message PurchaseReason {
|
|
1380
|
+
.exa.seat_management_pb.PurchaseReasonType type = 1;
|
|
1381
|
+
}
|
|
1382
|
+
|
|
1383
|
+
message GetTeamCreditEntriesRequest {
|
|
1384
|
+
reserved 1;
|
|
1385
|
+
reserved "auth_token";
|
|
1386
|
+
}
|
|
1387
|
+
|
|
1388
|
+
message GetTeamCreditEntriesResponse {
|
|
1389
|
+
repeated .exa.seat_management_pb.FlexCreditChronicleEntry entries = 1;
|
|
1390
|
+
}
|
|
1391
|
+
|
|
1392
|
+
message SendEmailVerificationRequest {
|
|
1393
|
+
string first_name = 1;
|
|
1394
|
+
string email = 2;
|
|
1395
|
+
string turnstile_token = 3;
|
|
1396
|
+
}
|
|
1397
|
+
|
|
1398
|
+
message SendEmailVerificationResponse {
|
|
1399
|
+
}
|
|
1400
|
+
|
|
1401
|
+
message CreateEnterpriseRequest {
|
|
1402
|
+
string secret = 1;
|
|
1403
|
+
string team_name = 2;
|
|
1404
|
+
string admin_email = 3;
|
|
1405
|
+
repeated string tags = 4;
|
|
1406
|
+
string organization = 5;
|
|
1407
|
+
string source = 6;
|
|
1408
|
+
string creation_reason = 7;
|
|
1409
|
+
bool trial = 8;
|
|
1410
|
+
.google.protobuf.Timestamp end_date = 9;
|
|
1411
|
+
bool hybrid = 10;
|
|
1412
|
+
int32 flow_seats = 11;
|
|
1413
|
+
int32 core_seats = 12;
|
|
1414
|
+
repeated string users_to_add = 13;
|
|
1415
|
+
string created_by = 14;
|
|
1416
|
+
bool paid_out_of_band = 15;
|
|
1417
|
+
bool enable_auto_cascade_seat_provisioning = 16;
|
|
1418
|
+
int32 user_prompt_credit_cap = 17;
|
|
1419
|
+
int32 user_flow_credit_cap = 18;
|
|
1420
|
+
bool send_email = 19;
|
|
1421
|
+
bool is_pooled = 20;
|
|
1422
|
+
int64 prepurchased_credits = 21;
|
|
1423
|
+
}
|
|
1424
|
+
|
|
1425
|
+
message CreateEnterpriseResponse {
|
|
1426
|
+
}
|
|
1427
|
+
|
|
1428
|
+
message UpdateTeamConfigRequest {
|
|
1429
|
+
string secret = 1;
|
|
1430
|
+
string team_name = 2;
|
|
1431
|
+
int32 user_prompt_credit_cap = 3;
|
|
1432
|
+
int32 user_flow_credit_cap = 4;
|
|
1433
|
+
bool disable_prompt_limit = 5;
|
|
1434
|
+
bool disable_flow_limit = 6;
|
|
1435
|
+
}
|
|
1436
|
+
|
|
1437
|
+
message UpdateTeamConfigResponse {
|
|
1438
|
+
}
|
|
1439
|
+
|
|
1440
|
+
message UpdateTeamConfigExternalRequest {
|
|
1441
|
+
reserved 1;
|
|
1442
|
+
reserved 37;
|
|
1443
|
+
reserved 38;
|
|
1444
|
+
reserved 40;
|
|
1445
|
+
reserved 41;
|
|
1446
|
+
reserved 42;
|
|
1447
|
+
reserved "auth_token";
|
|
1448
|
+
|
|
1449
|
+
optional bool allow_auto_run_commands = 2;
|
|
1450
|
+
optional bool allow_mcp_servers = 3;
|
|
1451
|
+
optional bool allow_app_deployments = 4;
|
|
1452
|
+
optional bool allow_github_reviews = 5;
|
|
1453
|
+
optional bool allow_github_description_edits = 6;
|
|
1454
|
+
optional string pull_request_review_guidelines = 7;
|
|
1455
|
+
optional string pull_request_description_guidelines = 8;
|
|
1456
|
+
optional bool allow_individual_level_analytics = 9;
|
|
1457
|
+
optional bool allow_conversation_sharing = 10;
|
|
1458
|
+
optional bool allow_sandbox_app_deployments = 11;
|
|
1459
|
+
optional bool allow_teams_app_deployments = 12;
|
|
1460
|
+
optional bool allow_attribution = 13;
|
|
1461
|
+
optional string allowed_mcp_servers = 14;
|
|
1462
|
+
optional bool allow_github_auto_reviews = 15;
|
|
1463
|
+
optional bool allow_browser_experimental_features = 16;
|
|
1464
|
+
optional bool allow_vibe_and_replace = 17;
|
|
1465
|
+
optional bool disable_deepwiki = 18;
|
|
1466
|
+
optional bool disable_codemaps = 19;
|
|
1467
|
+
optional string allow_codemap_sharing = 20;
|
|
1468
|
+
optional bool disable_fast_context = 21;
|
|
1469
|
+
optional bool disable_lifeguard = 22;
|
|
1470
|
+
optional bool disable_tool_call_execution_outside_workspace = 23;
|
|
1471
|
+
repeated string allowed_ip_ranges = 24 [deprecated = true];
|
|
1472
|
+
.exa.codeium_common_pb.CascadeCommandsAutoExecution max_cascade_auto_execution_level = 25;
|
|
1473
|
+
optional .exa.seat_management_pb.IpAllowlist ip_allowlist = 26;
|
|
1474
|
+
optional .exa.seat_management_pb.TerminalAllowList terminal_allow_list = 27;
|
|
1475
|
+
optional .exa.seat_management_pb.TerminalDenyList terminal_deny_list = 28;
|
|
1476
|
+
optional .exa.seat_management_pb.CliPermissionsList cli_permissions_allow = 29;
|
|
1477
|
+
optional .exa.seat_management_pb.CliPermissionsList cli_permissions_deny = 30;
|
|
1478
|
+
optional .exa.seat_management_pb.CliPermissionsList cli_permissions_ask = 31;
|
|
1479
|
+
optional string default_model_uid = 32;
|
|
1480
|
+
optional bool allow_arena_mode = 33;
|
|
1481
|
+
optional string cascade_hooks_json = 34;
|
|
1482
|
+
optional bool cascade_web_search_enabled = 35;
|
|
1483
|
+
optional bool allow_bundling_devin_cli = 36;
|
|
1484
|
+
optional .exa.seat_management_pb.McpRegistryUrlsList mcp_registry_urls_list = 49;
|
|
1485
|
+
optional string acp_registry_config = 39;
|
|
1486
|
+
optional .exa.codeium_common_pb.SandboxEnforcementMode sandbox_enforcement_mode = 43;
|
|
1487
|
+
optional .exa.seat_management_pb.SandboxDomainAllowlist sandbox_domain_allowlist = 44;
|
|
1488
|
+
optional .exa.seat_management_pb.SandboxDomainDenylist sandbox_domain_denylist = 45;
|
|
1489
|
+
optional bool devin_terminal_acp_enabled = 46;
|
|
1490
|
+
optional bool devin_cloud_acp_enabled = 47;
|
|
1491
|
+
optional bool enforce_mcp_registry = 48;
|
|
1492
|
+
optional bool user_configured_banner_enabled = 50;
|
|
1493
|
+
optional string user_configured_banner_label = 51;
|
|
1494
|
+
optional string user_configured_banner_color = 52;
|
|
1495
|
+
optional bool disable_cascade = 53;
|
|
1496
|
+
optional string extension_policy = 54;
|
|
1497
|
+
optional int32 api_key_expiration_days = 55;
|
|
1498
|
+
optional bool disable_plugins = 56;
|
|
1499
|
+
}
|
|
1500
|
+
|
|
1501
|
+
message UpdateTeamConfigExternalResponse {
|
|
1502
|
+
}
|
|
1503
|
+
|
|
1504
|
+
message TerminalAllowList {
|
|
1505
|
+
repeated string allowed = 1;
|
|
1506
|
+
}
|
|
1507
|
+
|
|
1508
|
+
message TerminalDenyList {
|
|
1509
|
+
repeated string deny = 1;
|
|
1510
|
+
}
|
|
1511
|
+
|
|
1512
|
+
message SandboxDomainAllowlist {
|
|
1513
|
+
repeated string domains = 1;
|
|
1514
|
+
}
|
|
1515
|
+
|
|
1516
|
+
message SandboxDomainDenylist {
|
|
1517
|
+
repeated string domains = 1;
|
|
1518
|
+
}
|
|
1519
|
+
|
|
1520
|
+
message CliPermissionsList {
|
|
1521
|
+
repeated string rules = 1;
|
|
1522
|
+
}
|
|
1523
|
+
|
|
1524
|
+
message IpAllowlist {
|
|
1525
|
+
repeated string ranges = 1;
|
|
1526
|
+
}
|
|
1527
|
+
|
|
1528
|
+
message McpRegistryUrlsList {
|
|
1529
|
+
repeated string urls = 1;
|
|
1530
|
+
}
|
|
1531
|
+
|
|
1532
|
+
message GetTeamConfigRecordRequest {
|
|
1533
|
+
reserved 1;
|
|
1534
|
+
reserved "auth_token";
|
|
1535
|
+
}
|
|
1536
|
+
|
|
1537
|
+
message GetTeamConfigRecordResponse {
|
|
1538
|
+
.exa.codeium_common_pb.TeamConfig team_config = 1;
|
|
1539
|
+
optional int32 api_key_expiration_days = 2;
|
|
1540
|
+
}
|
|
1541
|
+
|
|
1542
|
+
message UsageConfigRequest {
|
|
1543
|
+
string service_key = 1;
|
|
1544
|
+
oneof user_add_on_credit_cap_update {
|
|
1545
|
+
bool clear_add_on_credit_cap = 2;
|
|
1546
|
+
uint32 set_add_on_credit_cap = 3;
|
|
1547
|
+
}
|
|
1548
|
+
oneof scope {
|
|
1549
|
+
bool team_level = 4;
|
|
1550
|
+
string group_id = 5;
|
|
1551
|
+
string user_email = 6;
|
|
1552
|
+
}
|
|
1553
|
+
}
|
|
1554
|
+
|
|
1555
|
+
message UsageConfigResponse {
|
|
1556
|
+
}
|
|
1557
|
+
|
|
1558
|
+
message GetUsageConfigRequest {
|
|
1559
|
+
string service_key = 1;
|
|
1560
|
+
oneof scope {
|
|
1561
|
+
bool team_level = 2;
|
|
1562
|
+
string group_id = 3;
|
|
1563
|
+
string user_email = 4;
|
|
1564
|
+
}
|
|
1565
|
+
}
|
|
1566
|
+
|
|
1567
|
+
message GetUsageConfigResponse {
|
|
1568
|
+
optional uint32 add_on_credit_cap = 1;
|
|
1569
|
+
}
|
|
1570
|
+
|
|
1571
|
+
message GetTeamCreditBalanceRequest {
|
|
1572
|
+
string service_key = 1;
|
|
1573
|
+
}
|
|
1574
|
+
|
|
1575
|
+
message GetTeamCreditBalanceResponse {
|
|
1576
|
+
int64 prompt_credits_per_seat = 1;
|
|
1577
|
+
int64 num_seats = 2;
|
|
1578
|
+
int64 add_on_credits_available = 3;
|
|
1579
|
+
int64 add_on_credits_used = 4;
|
|
1580
|
+
.google.protobuf.Timestamp billing_cycle_start = 5;
|
|
1581
|
+
.google.protobuf.Timestamp billing_cycle_end = 6;
|
|
1582
|
+
}
|
|
1583
|
+
|
|
1584
|
+
message GetTeamInfoRequest {
|
|
1585
|
+
string secret = 1;
|
|
1586
|
+
string team_name = 2;
|
|
1587
|
+
}
|
|
1588
|
+
|
|
1589
|
+
message UserInfo {
|
|
1590
|
+
string api_key = 1;
|
|
1591
|
+
string name = 2;
|
|
1592
|
+
string email = 3;
|
|
1593
|
+
.google.protobuf.Timestamp signup_time = 4;
|
|
1594
|
+
int32 flows_used = 5;
|
|
1595
|
+
int32 prompts_used = 6;
|
|
1596
|
+
int32 num_acceptances = 7;
|
|
1597
|
+
int32 num_lines_accepted = 8;
|
|
1598
|
+
.google.protobuf.Timestamp last_update_time = 9;
|
|
1599
|
+
.google.protobuf.Timestamp first_windsurf_use_time = 10;
|
|
1600
|
+
.exa.codeium_common_pb.UserTeamStatus team_status = 11;
|
|
1601
|
+
bool has_cascade_seat = 12;
|
|
1602
|
+
}
|
|
1603
|
+
|
|
1604
|
+
message GetTeamInfoResponse {
|
|
1605
|
+
.exa.seat_management_pb.Team team = 1;
|
|
1606
|
+
repeated string users_with_cascade = 2 [deprecated = true];
|
|
1607
|
+
repeated string users_on_team = 3 [deprecated = true];
|
|
1608
|
+
repeated .exa.seat_management_pb.UserInfo user_infos = 4;
|
|
1609
|
+
.exa.codeium_common_pb.TeamConfig team_config = 5;
|
|
1610
|
+
}
|
|
1611
|
+
|
|
1612
|
+
message IsValidReferralCodeRequest {
|
|
1613
|
+
string referral_code = 1;
|
|
1614
|
+
}
|
|
1615
|
+
|
|
1616
|
+
message IsValidReferralCodeResponse {
|
|
1617
|
+
string referrer_name = 1;
|
|
1618
|
+
}
|
|
1619
|
+
|
|
1620
|
+
message ProcessReferralCodeRequest {
|
|
1621
|
+
reserved 1;
|
|
1622
|
+
reserved "auth_token";
|
|
1623
|
+
|
|
1624
|
+
string referral_code = 2;
|
|
1625
|
+
}
|
|
1626
|
+
|
|
1627
|
+
message ProcessReferralCodeResponse {
|
|
1628
|
+
}
|
|
1629
|
+
|
|
1630
|
+
message CreateMultiTenantTeamRequest {
|
|
1631
|
+
reserved 1;
|
|
1632
|
+
reserved "auth_token";
|
|
1633
|
+
|
|
1634
|
+
string name = 2;
|
|
1635
|
+
string org_id = 3;
|
|
1636
|
+
}
|
|
1637
|
+
|
|
1638
|
+
message CreateMultiTenantTeamResponse {
|
|
1639
|
+
.exa.seat_management_pb.Team team = 1;
|
|
1640
|
+
}
|
|
1641
|
+
|
|
1642
|
+
message GetMultiTenantTeamsRequest {
|
|
1643
|
+
reserved 1;
|
|
1644
|
+
reserved "auth_token";
|
|
1645
|
+
}
|
|
1646
|
+
|
|
1647
|
+
message GetMultiTenantTeamsResponse {
|
|
1648
|
+
repeated .exa.seat_management_pb.Team teams = 1;
|
|
1649
|
+
}
|
|
1650
|
+
|
|
1651
|
+
message GetTeamOrgIdRequest {
|
|
1652
|
+
reserved 1;
|
|
1653
|
+
reserved "auth_token";
|
|
1654
|
+
|
|
1655
|
+
string team_id = 2;
|
|
1656
|
+
}
|
|
1657
|
+
|
|
1658
|
+
message GetTeamOrgIdResponse {
|
|
1659
|
+
string org_id = 1;
|
|
1660
|
+
}
|
|
1661
|
+
|
|
1662
|
+
message DeleteMultiTenantTeamRequest {
|
|
1663
|
+
reserved 1;
|
|
1664
|
+
reserved "auth_token";
|
|
1665
|
+
|
|
1666
|
+
string team_name = 2;
|
|
1667
|
+
bool soft_delete = 3;
|
|
1668
|
+
}
|
|
1669
|
+
|
|
1670
|
+
message DeleteMultiTenantTeamResponse {
|
|
1671
|
+
}
|
|
1672
|
+
|
|
1673
|
+
message SetTeamLicenseRequest {
|
|
1674
|
+
reserved 1;
|
|
1675
|
+
reserved "auth_token";
|
|
1676
|
+
|
|
1677
|
+
string team_name = 2;
|
|
1678
|
+
.google.protobuf.Timestamp billing_start_date = 3;
|
|
1679
|
+
.google.protobuf.Timestamp billing_end_date = 4;
|
|
1680
|
+
int64 num_seats = 5;
|
|
1681
|
+
}
|
|
1682
|
+
|
|
1683
|
+
message SetTeamLicenseResponse {
|
|
1684
|
+
.exa.seat_management_pb.Team team = 1;
|
|
1685
|
+
}
|
|
1686
|
+
|
|
1687
|
+
message UpdatePlanDetailsInternalRequest {
|
|
1688
|
+
string secret = 1;
|
|
1689
|
+
string email = 2;
|
|
1690
|
+
.exa.codeium_common_pb.TeamsTier teams_tier = 3;
|
|
1691
|
+
int64 num_flex_credits = 4;
|
|
1692
|
+
int64 used_flex_credits = 5;
|
|
1693
|
+
int64 used_flow_credits = 6;
|
|
1694
|
+
int64 used_prompt_credits = 7;
|
|
1695
|
+
int64 num_teams_seats = 8;
|
|
1696
|
+
int64 user_used_prompt_credits = 9;
|
|
1697
|
+
int64 user_used_flow_credits = 10;
|
|
1698
|
+
bool for_credit_update = 11;
|
|
1699
|
+
int64 user_used_flex_credits_for_prompts = 12;
|
|
1700
|
+
}
|
|
1701
|
+
|
|
1702
|
+
message UpdatePlanDetailsInternalResponse {
|
|
1703
|
+
}
|
|
1704
|
+
|
|
1705
|
+
message RemoveUsersFromTeamInternalRequest {
|
|
1706
|
+
string secret = 1;
|
|
1707
|
+
repeated string emails = 2;
|
|
1708
|
+
bool override_subscription_active_check = 3;
|
|
1709
|
+
}
|
|
1710
|
+
|
|
1711
|
+
message RemoveUsersFromTeamInternalResponse {
|
|
1712
|
+
}
|
|
1713
|
+
|
|
1714
|
+
message DevinUserIdentifier {
|
|
1715
|
+
string user_id = 1;
|
|
1716
|
+
string account_id = 2;
|
|
1717
|
+
string email = 3;
|
|
1718
|
+
}
|
|
1719
|
+
|
|
1720
|
+
message BulkDeleteUsersInternalRequest {
|
|
1721
|
+
string secret = 1;
|
|
1722
|
+
repeated string emails = 2;
|
|
1723
|
+
bool delete_from_bigquery = 3 [deprecated = true];
|
|
1724
|
+
repeated .exa.seat_management_pb.DevinUserIdentifier devin_users = 4;
|
|
1725
|
+
}
|
|
1726
|
+
|
|
1727
|
+
message BulkDeleteUsersInternalResponse {
|
|
1728
|
+
}
|
|
1729
|
+
|
|
1730
|
+
message BulkDeleteUsersInternalFromBigQueryRequest {
|
|
1731
|
+
string secret = 1;
|
|
1732
|
+
repeated string emails = 2;
|
|
1733
|
+
}
|
|
1734
|
+
|
|
1735
|
+
message BulkDeleteUsersInternalFromBigQueryResponse {
|
|
1736
|
+
}
|
|
1737
|
+
|
|
1738
|
+
message ExportUserDataInternalRequest {
|
|
1739
|
+
string secret = 1;
|
|
1740
|
+
string email = 2;
|
|
1741
|
+
}
|
|
1742
|
+
|
|
1743
|
+
message ExportUserDataInternalResponse {
|
|
1744
|
+
message Invoice {
|
|
1745
|
+
string id = 1;
|
|
1746
|
+
int64 amount_paid = 2;
|
|
1747
|
+
string currency = 3;
|
|
1748
|
+
.google.protobuf.Timestamp created = 4;
|
|
1749
|
+
bool paid = 5;
|
|
1750
|
+
string invoice_pdf = 6;
|
|
1751
|
+
string status = 7;
|
|
1752
|
+
}
|
|
1753
|
+
|
|
1754
|
+
message StripeData {
|
|
1755
|
+
string customer_id = 1;
|
|
1756
|
+
string subscription_id = 2;
|
|
1757
|
+
bool subscription_active = 3;
|
|
1758
|
+
string subscription_status = 4;
|
|
1759
|
+
.google.protobuf.Timestamp current_period_start = 5;
|
|
1760
|
+
.google.protobuf.Timestamp current_period_end = 6;
|
|
1761
|
+
bool cancel_at_period_end = 7;
|
|
1762
|
+
string payment_method_type = 8;
|
|
1763
|
+
string payment_method_last4 = 9;
|
|
1764
|
+
repeated .exa.seat_management_pb.ExportUserDataInternalResponse.Invoice invoices = 10;
|
|
1765
|
+
}
|
|
1766
|
+
|
|
1767
|
+
message BrevoData {
|
|
1768
|
+
string email = 1;
|
|
1769
|
+
map<string, string> attributes = 2;
|
|
1770
|
+
repeated int64 list_ids = 3;
|
|
1771
|
+
.google.protobuf.Timestamp created_at = 4;
|
|
1772
|
+
.google.protobuf.Timestamp modified_at = 5;
|
|
1773
|
+
}
|
|
1774
|
+
|
|
1775
|
+
message BigQueryData {
|
|
1776
|
+
message PreapprovedUserRow {
|
|
1777
|
+
string id = 1;
|
|
1778
|
+
string name = 2;
|
|
1779
|
+
string email = 3;
|
|
1780
|
+
string team_id = 4;
|
|
1781
|
+
string issued_by_api_key = 5;
|
|
1782
|
+
.google.protobuf.Timestamp created_at = 6;
|
|
1783
|
+
.google.protobuf.Timestamp updated_at = 7;
|
|
1784
|
+
}
|
|
1785
|
+
|
|
1786
|
+
message WaitlistRow {
|
|
1787
|
+
string email = 1;
|
|
1788
|
+
string feature_name = 2;
|
|
1789
|
+
.google.protobuf.Timestamp signup_time = 3;
|
|
1790
|
+
.google.protobuf.Timestamp accepted_at = 4;
|
|
1791
|
+
}
|
|
1792
|
+
|
|
1793
|
+
message BlogSubscriptionRow {
|
|
1794
|
+
string id = 1;
|
|
1795
|
+
string email = 2;
|
|
1796
|
+
.google.protobuf.Timestamp created_at = 3;
|
|
1797
|
+
}
|
|
1798
|
+
|
|
1799
|
+
message Wrapped2024Row {
|
|
1800
|
+
string api_key = 1;
|
|
1801
|
+
string email = 2;
|
|
1802
|
+
string name = 3;
|
|
1803
|
+
int32 total_minutes_coded = 4;
|
|
1804
|
+
float coding_percentile = 5;
|
|
1805
|
+
.google.protobuf.Timestamp biggest_coding_day = 6;
|
|
1806
|
+
int32 minutes_coding_biggest_day = 7;
|
|
1807
|
+
int32 autocompletes_accepted = 8;
|
|
1808
|
+
int32 cascade_messages_sent = 9;
|
|
1809
|
+
int32 cascade_lines_written = 10;
|
|
1810
|
+
}
|
|
1811
|
+
|
|
1812
|
+
message EmailTrackingRow {
|
|
1813
|
+
string auth_uid = 1;
|
|
1814
|
+
string email_id = 2;
|
|
1815
|
+
.google.protobuf.Timestamp sent_at = 3;
|
|
1816
|
+
}
|
|
1817
|
+
|
|
1818
|
+
message CascadeCostRow {
|
|
1819
|
+
string api_key = 1;
|
|
1820
|
+
string user_email = 2;
|
|
1821
|
+
.google.protobuf.Timestamp date = 3;
|
|
1822
|
+
float cascade_cost = 4;
|
|
1823
|
+
int64 prompt_credits = 5;
|
|
1824
|
+
int64 flow_credits = 6;
|
|
1825
|
+
int64 num_product_events = 7;
|
|
1826
|
+
}
|
|
1827
|
+
|
|
1828
|
+
repeated .exa.seat_management_pb.ExportUserDataInternalResponse.BigQueryData.PreapprovedUserRow preapproved_users = 1;
|
|
1829
|
+
repeated .exa.seat_management_pb.ExportUserDataInternalResponse.BigQueryData.WaitlistRow waitlist = 2;
|
|
1830
|
+
repeated .exa.seat_management_pb.ExportUserDataInternalResponse.BigQueryData.BlogSubscriptionRow blog_subscriptions = 3;
|
|
1831
|
+
repeated .exa.seat_management_pb.ExportUserDataInternalResponse.BigQueryData.Wrapped2024Row wrapped_2024 = 4;
|
|
1832
|
+
repeated .exa.seat_management_pb.ExportUserDataInternalResponse.BigQueryData.EmailTrackingRow email_tracking = 5;
|
|
1833
|
+
repeated .exa.seat_management_pb.ExportUserDataInternalResponse.BigQueryData.CascadeCostRow cascade_costs = 6;
|
|
1834
|
+
}
|
|
1835
|
+
|
|
1836
|
+
message FirebaseAuthData {
|
|
1837
|
+
string uid = 1;
|
|
1838
|
+
.google.protobuf.Timestamp creation_time = 2;
|
|
1839
|
+
.google.protobuf.Timestamp last_sign_in_time = 3;
|
|
1840
|
+
bool email_verified = 4;
|
|
1841
|
+
repeated .exa.seat_management_pb.ExportUserDataInternalResponse.ProviderData providers = 5;
|
|
1842
|
+
}
|
|
1843
|
+
|
|
1844
|
+
message ProviderData {
|
|
1845
|
+
string provider_id = 1;
|
|
1846
|
+
string uid = 2;
|
|
1847
|
+
string email = 3;
|
|
1848
|
+
}
|
|
1849
|
+
|
|
1850
|
+
message GitHubAuthData {
|
|
1851
|
+
string auth_uid = 1;
|
|
1852
|
+
string github_username = 2;
|
|
1853
|
+
.google.protobuf.Timestamp created_at = 3;
|
|
1854
|
+
.google.protobuf.Timestamp updated_at = 4;
|
|
1855
|
+
}
|
|
1856
|
+
|
|
1857
|
+
message NetlifyAuthData {
|
|
1858
|
+
string auth_uid = 1;
|
|
1859
|
+
string netlify_user_id = 2;
|
|
1860
|
+
.google.protobuf.Timestamp created_at = 3;
|
|
1861
|
+
.google.protobuf.Timestamp updated_at = 4;
|
|
1862
|
+
}
|
|
1863
|
+
|
|
1864
|
+
message OfferTrackingRow {
|
|
1865
|
+
string auth_uid = 1;
|
|
1866
|
+
string offer_id = 2;
|
|
1867
|
+
.google.protobuf.Timestamp created_at = 3;
|
|
1868
|
+
}
|
|
1869
|
+
|
|
1870
|
+
message UserFeaturesRow {
|
|
1871
|
+
string id = 1;
|
|
1872
|
+
string api_key = 2;
|
|
1873
|
+
int32 feature = 3;
|
|
1874
|
+
.google.protobuf.Timestamp created_at = 4;
|
|
1875
|
+
}
|
|
1876
|
+
|
|
1877
|
+
message CompletionExampleRow {
|
|
1878
|
+
string auth_uid = 1;
|
|
1879
|
+
string completion_id = 2;
|
|
1880
|
+
string file_path = 3;
|
|
1881
|
+
string short_prefix = 4;
|
|
1882
|
+
string completion_text = 5;
|
|
1883
|
+
string short_suffix = 6;
|
|
1884
|
+
.google.protobuf.Timestamp timestamp = 7;
|
|
1885
|
+
}
|
|
1886
|
+
|
|
1887
|
+
message WindsurfProjectRow {
|
|
1888
|
+
string windsurf_project_id = 1;
|
|
1889
|
+
string auth_uid = 2;
|
|
1890
|
+
string deployment_provider = 3;
|
|
1891
|
+
string provider_project_id = 4;
|
|
1892
|
+
string project_name = 5;
|
|
1893
|
+
string domain = 6;
|
|
1894
|
+
string subdomain_name = 7;
|
|
1895
|
+
.google.protobuf.Timestamp expires_at = 8;
|
|
1896
|
+
.google.protobuf.Timestamp claimed_at = 9;
|
|
1897
|
+
.google.protobuf.Timestamp deprovisioned_at = 10;
|
|
1898
|
+
.google.protobuf.Timestamp created_at = 11;
|
|
1899
|
+
.google.protobuf.Timestamp updated_at = 12;
|
|
1900
|
+
}
|
|
1901
|
+
|
|
1902
|
+
message WindsurfDeploymentRow {
|
|
1903
|
+
string windsurf_deployment_id = 1;
|
|
1904
|
+
string windsurf_project_id = 2;
|
|
1905
|
+
string provider_deployment_id = 3;
|
|
1906
|
+
string workspace_path = 4;
|
|
1907
|
+
string deployment_url = 5;
|
|
1908
|
+
.google.protobuf.Timestamp created_at = 6;
|
|
1909
|
+
.google.protobuf.Timestamp updated_at = 7;
|
|
1910
|
+
}
|
|
1911
|
+
|
|
1912
|
+
message UserReferralRow {
|
|
1913
|
+
uint32 id = 1;
|
|
1914
|
+
string auth_uid = 2;
|
|
1915
|
+
string referred_email = 3;
|
|
1916
|
+
string details = 4;
|
|
1917
|
+
.google.protobuf.Timestamp created_at = 5;
|
|
1918
|
+
.google.protobuf.Timestamp granted_at = 6;
|
|
1919
|
+
}
|
|
1920
|
+
|
|
1921
|
+
message UserRoleRow {
|
|
1922
|
+
string api_key = 1;
|
|
1923
|
+
string role = 2;
|
|
1924
|
+
string group_id = 3;
|
|
1925
|
+
}
|
|
1926
|
+
|
|
1927
|
+
message GroupMemberRow {
|
|
1928
|
+
string id = 1;
|
|
1929
|
+
string group_id = 2;
|
|
1930
|
+
string user_id = 3;
|
|
1931
|
+
.google.protobuf.Timestamp created_at = 4;
|
|
1932
|
+
.google.protobuf.Timestamp updated_at = 5;
|
|
1933
|
+
}
|
|
1934
|
+
|
|
1935
|
+
message AuditLogRow {
|
|
1936
|
+
string event_id = 1;
|
|
1937
|
+
.google.protobuf.Timestamp timestamp = 2;
|
|
1938
|
+
string team_id = 3;
|
|
1939
|
+
string user_email = 4;
|
|
1940
|
+
string user_name = 5;
|
|
1941
|
+
string api_key = 6;
|
|
1942
|
+
string event = 7;
|
|
1943
|
+
string status_code = 8;
|
|
1944
|
+
string status_reason = 9;
|
|
1945
|
+
string description = 10;
|
|
1946
|
+
}
|
|
1947
|
+
|
|
1948
|
+
message RegistrationActivityRow {
|
|
1949
|
+
string email_id = 1;
|
|
1950
|
+
int32 action_value = 2;
|
|
1951
|
+
string action_description = 3;
|
|
1952
|
+
.google.protobuf.Timestamp time_of_action = 4;
|
|
1953
|
+
bool successful_action = 5;
|
|
1954
|
+
}
|
|
1955
|
+
|
|
1956
|
+
.exa.seat_management_pb.User user = 1;
|
|
1957
|
+
.exa.seat_management_pb.Team team = 2;
|
|
1958
|
+
.exa.codeium_common_pb.UserTeamStatus user_team_status = 3;
|
|
1959
|
+
.exa.seat_management_pb.ExportUserDataInternalResponse.StripeData stripe_data = 4;
|
|
1960
|
+
.exa.seat_management_pb.ExportUserDataInternalResponse.BrevoData brevo_data = 5;
|
|
1961
|
+
.exa.seat_management_pb.ExportUserDataInternalResponse.BigQueryData bigquery_data = 6;
|
|
1962
|
+
.exa.seat_management_pb.ExportUserDataInternalResponse.FirebaseAuthData firebase_auth_data = 7;
|
|
1963
|
+
.exa.seat_management_pb.ExportUserDataInternalResponse.GitHubAuthData github_auth_data = 8;
|
|
1964
|
+
.exa.seat_management_pb.ExportUserDataInternalResponse.NetlifyAuthData netlify_auth_data = 9;
|
|
1965
|
+
repeated .exa.seat_management_pb.ExportUserDataInternalResponse.OfferTrackingRow offer_tracking = 10;
|
|
1966
|
+
repeated .exa.seat_management_pb.ExportUserDataInternalResponse.UserFeaturesRow user_features = 11;
|
|
1967
|
+
repeated .exa.seat_management_pb.ExportUserDataInternalResponse.CompletionExampleRow completion_examples = 12;
|
|
1968
|
+
repeated .exa.seat_management_pb.ExportUserDataInternalResponse.WindsurfProjectRow windsurf_projects = 13;
|
|
1969
|
+
repeated .exa.seat_management_pb.ExportUserDataInternalResponse.WindsurfDeploymentRow windsurf_deployments = 14;
|
|
1970
|
+
repeated .exa.seat_management_pb.ExportUserDataInternalResponse.UserReferralRow user_referrals = 15;
|
|
1971
|
+
repeated .exa.seat_management_pb.ExportUserDataInternalResponse.UserRoleRow user_roles = 16;
|
|
1972
|
+
repeated .exa.seat_management_pb.ExportUserDataInternalResponse.GroupMemberRow group_members = 17;
|
|
1973
|
+
repeated .exa.seat_management_pb.ExportUserDataInternalResponse.AuditLogRow audit_logs = 18;
|
|
1974
|
+
repeated .exa.seat_management_pb.ExportUserDataInternalResponse.RegistrationActivityRow registration_activity = 19;
|
|
1975
|
+
}
|
|
1976
|
+
|
|
1977
|
+
message InitiateAccountOwnershipVerificationInternalRequest {
|
|
1978
|
+
string secret = 1;
|
|
1979
|
+
string email = 2;
|
|
1980
|
+
}
|
|
1981
|
+
|
|
1982
|
+
message InitiateAccountOwnershipVerificationInternalResponse {
|
|
1983
|
+
bool success = 1;
|
|
1984
|
+
string message = 2;
|
|
1985
|
+
}
|
|
1986
|
+
|
|
1987
|
+
message VerifyAccountOwnershipInternalRequest {
|
|
1988
|
+
string secret = 1;
|
|
1989
|
+
string email = 2;
|
|
1990
|
+
string verification_code = 3;
|
|
1991
|
+
}
|
|
1992
|
+
|
|
1993
|
+
message VerifyAccountOwnershipInternalResponse {
|
|
1994
|
+
bool verified = 1;
|
|
1995
|
+
string message = 2;
|
|
1996
|
+
}
|
|
1997
|
+
|
|
1998
|
+
message InitiateTopUpRequest {
|
|
1999
|
+
reserved 1;
|
|
2000
|
+
reserved "auth_token";
|
|
2001
|
+
}
|
|
2002
|
+
|
|
2003
|
+
message InitiateTopUpResponse {
|
|
2004
|
+
.exa.codeium_common_pb.TransactionStatus status = 1;
|
|
2005
|
+
}
|
|
2006
|
+
|
|
2007
|
+
message UserCascadeDetails {
|
|
2008
|
+
string auth_uid = 1;
|
|
2009
|
+
int64 used_prompt_credits = 2;
|
|
2010
|
+
int64 used_flow_credits = 3;
|
|
2011
|
+
.google.protobuf.Timestamp free_cascade_usage_month_start = 4;
|
|
2012
|
+
}
|
|
2013
|
+
|
|
2014
|
+
message AddExtraFlexCreditsInternalRequest {
|
|
2015
|
+
string secret = 1;
|
|
2016
|
+
string team_id = 2;
|
|
2017
|
+
int64 amount = 3;
|
|
2018
|
+
.exa.seat_management_pb.FlexCreditChronicleType type = 4;
|
|
2019
|
+
string email = 5;
|
|
2020
|
+
}
|
|
2021
|
+
|
|
2022
|
+
message AddExtraFlexCreditsInternalResponse {
|
|
2023
|
+
int64 previous_flex_credits = 1;
|
|
2024
|
+
int64 new_flex_credits = 2;
|
|
2025
|
+
}
|
|
2026
|
+
|
|
2027
|
+
message GetOneTimeAuthTokenRequest {
|
|
2028
|
+
reserved 1;
|
|
2029
|
+
reserved "auth_token";
|
|
2030
|
+
}
|
|
2031
|
+
|
|
2032
|
+
message GetOneTimeAuthTokenResponse {
|
|
2033
|
+
string auth_token = 1;
|
|
2034
|
+
}
|
|
2035
|
+
|
|
2036
|
+
message CreatePKCEAuthorizationCodeRequest {
|
|
2037
|
+
reserved 1;
|
|
2038
|
+
reserved "auth_token";
|
|
2039
|
+
|
|
2040
|
+
string code_challenge = 2;
|
|
2041
|
+
string code_challenge_method = 3;
|
|
2042
|
+
}
|
|
2043
|
+
|
|
2044
|
+
message CreatePKCEAuthorizationCodeResponse {
|
|
2045
|
+
string authorization_code = 1;
|
|
2046
|
+
}
|
|
2047
|
+
|
|
2048
|
+
message ExchangePKCEAuthorizationCodeRequest {
|
|
2049
|
+
string authorization_code = 1;
|
|
2050
|
+
string code_verifier = 2;
|
|
2051
|
+
}
|
|
2052
|
+
|
|
2053
|
+
message ExchangePKCEAuthorizationCodeResponse {
|
|
2054
|
+
string api_key = 1;
|
|
2055
|
+
string name = 2;
|
|
2056
|
+
string api_server_url = 3;
|
|
2057
|
+
string devin_webapp_host = 4;
|
|
2058
|
+
string devin_api_url = 5;
|
|
2059
|
+
}
|
|
2060
|
+
|
|
2061
|
+
message GetSetUserApiProviderKeysRequest {
|
|
2062
|
+
reserved 1;
|
|
2063
|
+
reserved "auth_token";
|
|
2064
|
+
}
|
|
2065
|
+
|
|
2066
|
+
message GetSetUserApiProviderKeysResponse {
|
|
2067
|
+
repeated .exa.codeium_common_pb.APIProvider providers = 1;
|
|
2068
|
+
}
|
|
2069
|
+
|
|
2070
|
+
message SetUserApiProviderKeyRequest {
|
|
2071
|
+
reserved 1;
|
|
2072
|
+
reserved "auth_token";
|
|
2073
|
+
|
|
2074
|
+
.exa.codeium_common_pb.APIProvider provider = 2;
|
|
2075
|
+
string provider_api_key = 3;
|
|
2076
|
+
}
|
|
2077
|
+
|
|
2078
|
+
message SetUserApiProviderKeyResponse {
|
|
2079
|
+
}
|
|
2080
|
+
|
|
2081
|
+
message DeleteUserApiProviderKeyRequest {
|
|
2082
|
+
reserved 1;
|
|
2083
|
+
reserved "auth_token";
|
|
2084
|
+
|
|
2085
|
+
.exa.codeium_common_pb.APIProvider provider = 2;
|
|
2086
|
+
}
|
|
2087
|
+
|
|
2088
|
+
message DeleteUserApiProviderKeyResponse {
|
|
2089
|
+
}
|
|
2090
|
+
|
|
2091
|
+
message DeleteApiKeyRequest {
|
|
2092
|
+
reserved 1;
|
|
2093
|
+
reserved "auth_token";
|
|
2094
|
+
|
|
2095
|
+
oneof auth {
|
|
2096
|
+
string service_key = 3;
|
|
2097
|
+
}
|
|
2098
|
+
oneof target {
|
|
2099
|
+
string key_id = 2;
|
|
2100
|
+
string api_key = 4;
|
|
2101
|
+
string group_id = 5;
|
|
2102
|
+
}
|
|
2103
|
+
}
|
|
2104
|
+
|
|
2105
|
+
message DeleteApiKeyResponse {
|
|
2106
|
+
int64 num_deleted = 1;
|
|
2107
|
+
}
|
|
2108
|
+
|
|
2109
|
+
message GetApiKeySummaryRequest {
|
|
2110
|
+
reserved 1;
|
|
2111
|
+
reserved "auth_token";
|
|
2112
|
+
}
|
|
2113
|
+
|
|
2114
|
+
message ApiKeyForDisplay {
|
|
2115
|
+
string key_id = 1;
|
|
2116
|
+
string key_for_display = 2;
|
|
2117
|
+
.google.protobuf.Timestamp created_at = 3;
|
|
2118
|
+
.google.protobuf.Timestamp last_used_at = 4;
|
|
2119
|
+
.google.protobuf.Timestamp expires_at = 5;
|
|
2120
|
+
}
|
|
2121
|
+
|
|
2122
|
+
message GetApiKeySummaryResponse {
|
|
2123
|
+
repeated .exa.seat_management_pb.ApiKeyForDisplay api_keys = 1;
|
|
2124
|
+
}
|
|
2125
|
+
|
|
2126
|
+
message LogOutUserRequest {
|
|
2127
|
+
string uid = 1;
|
|
2128
|
+
}
|
|
2129
|
+
|
|
2130
|
+
message LogOutUserResponse {
|
|
2131
|
+
}
|
|
2132
|
+
|
|
2133
|
+
message TeamDomain {
|
|
2134
|
+
string domain = 1;
|
|
2135
|
+
bool verified = 2;
|
|
2136
|
+
}
|
|
2137
|
+
|
|
2138
|
+
message AddTeamDomainRequest {
|
|
2139
|
+
reserved 1;
|
|
2140
|
+
reserved "auth_token";
|
|
2141
|
+
|
|
2142
|
+
string domain = 2;
|
|
2143
|
+
}
|
|
2144
|
+
|
|
2145
|
+
message AddTeamDomainResponse {
|
|
2146
|
+
string verification_token = 1;
|
|
2147
|
+
}
|
|
2148
|
+
|
|
2149
|
+
message ListTeamDomainsRequest {
|
|
2150
|
+
reserved 1;
|
|
2151
|
+
reserved "auth_token";
|
|
2152
|
+
}
|
|
2153
|
+
|
|
2154
|
+
message ListTeamDomainsResponse {
|
|
2155
|
+
repeated .exa.seat_management_pb.TeamDomain team_domains = 1;
|
|
2156
|
+
}
|
|
2157
|
+
|
|
2158
|
+
message VerifyTeamDomainRequest {
|
|
2159
|
+
reserved 1;
|
|
2160
|
+
reserved "auth_token";
|
|
2161
|
+
|
|
2162
|
+
string domain = 2;
|
|
2163
|
+
}
|
|
2164
|
+
|
|
2165
|
+
message VerifyTeamDomainResponse {
|
|
2166
|
+
}
|
|
2167
|
+
|
|
2168
|
+
message DeleteTeamDomainRequest {
|
|
2169
|
+
reserved 1;
|
|
2170
|
+
reserved "auth_token";
|
|
2171
|
+
|
|
2172
|
+
string domain = 2;
|
|
2173
|
+
}
|
|
2174
|
+
|
|
2175
|
+
message DeleteTeamDomainResponse {
|
|
2176
|
+
}
|
|
2177
|
+
|
|
2178
|
+
message AddTeamDomainInternalRequest {
|
|
2179
|
+
string secret = 1;
|
|
2180
|
+
string team_id = 2;
|
|
2181
|
+
string domain = 3;
|
|
2182
|
+
}
|
|
2183
|
+
|
|
2184
|
+
message AddTeamDomainInternalResponse {
|
|
2185
|
+
}
|
|
2186
|
+
|
|
2187
|
+
message DeleteTeamDomainInternalRequest {
|
|
2188
|
+
string secret = 1;
|
|
2189
|
+
string team_id = 2;
|
|
2190
|
+
string domain = 3;
|
|
2191
|
+
}
|
|
2192
|
+
|
|
2193
|
+
message DeleteTeamDomainInternalResponse {
|
|
2194
|
+
}
|
|
2195
|
+
|
|
2196
|
+
message ListTeamDomainsInternalRequest {
|
|
2197
|
+
string secret = 1;
|
|
2198
|
+
string team_id = 2;
|
|
2199
|
+
}
|
|
2200
|
+
|
|
2201
|
+
message ListTeamDomainsInternalResponse {
|
|
2202
|
+
repeated .exa.seat_management_pb.TeamDomain team_domains = 1;
|
|
2203
|
+
}
|
|
2204
|
+
|
|
2205
|
+
message UpdateTeamNameInternalRequest {
|
|
2206
|
+
string secret = 1;
|
|
2207
|
+
string team_id = 2;
|
|
2208
|
+
string new_name = 3;
|
|
2209
|
+
}
|
|
2210
|
+
|
|
2211
|
+
message UpdateTeamNameInternalResponse {
|
|
2212
|
+
}
|
|
2213
|
+
|
|
2214
|
+
message VerifySSOLoginInternalRequest {
|
|
2215
|
+
string secret = 1;
|
|
2216
|
+
string saml_provider_id = 2;
|
|
2217
|
+
string user_email = 3;
|
|
2218
|
+
}
|
|
2219
|
+
|
|
2220
|
+
message VerifySSOLoginInternalResponse {
|
|
2221
|
+
bool is_allowed = 1;
|
|
2222
|
+
string error_message = 2;
|
|
2223
|
+
}
|
|
2224
|
+
|
|
2225
|
+
message CheckProTrialEligibilityRequest {
|
|
2226
|
+
reserved 1;
|
|
2227
|
+
reserved "auth_token";
|
|
2228
|
+
}
|
|
2229
|
+
|
|
2230
|
+
message CheckProTrialEligibilityResponse {
|
|
2231
|
+
bool is_eligible = 1;
|
|
2232
|
+
}
|
|
2233
|
+
|
|
2234
|
+
message ExchangeDevinCodeRequest {
|
|
2235
|
+
string code = 1;
|
|
2236
|
+
}
|
|
2237
|
+
|
|
2238
|
+
message ExchangeDevinCodeResponse {
|
|
2239
|
+
string session_token = 1;
|
|
2240
|
+
optional string auth1_token = 2;
|
|
2241
|
+
optional string account_id = 3;
|
|
2242
|
+
optional string primary_org_id = 4;
|
|
2243
|
+
}
|
|
2244
|
+
|
|
2245
|
+
message GetSelfDevinSessionTokenRequest {
|
|
2246
|
+
.exa.codeium_common_pb.Metadata metadata = 1;
|
|
2247
|
+
}
|
|
2248
|
+
|
|
2249
|
+
message GetSelfDevinSessionTokenResponse {
|
|
2250
|
+
string session_token = 1;
|
|
2251
|
+
}
|
|
2252
|
+
|
|
2253
|
+
message GetEligibleDevinOrganizationsRequest {
|
|
2254
|
+
}
|
|
2255
|
+
|
|
2256
|
+
message GetEligibleDevinOrganizationsResponse {
|
|
2257
|
+
message DevinOrganization {
|
|
2258
|
+
string org_id = 1;
|
|
2259
|
+
string display_name = 2;
|
|
2260
|
+
string account_id = 3;
|
|
2261
|
+
bool is_admin = 4;
|
|
2262
|
+
bool can_use_cli = 5;
|
|
2263
|
+
bool can_use_cascade = 6;
|
|
2264
|
+
}
|
|
2265
|
+
|
|
2266
|
+
repeated .exa.seat_management_pb.GetEligibleDevinOrganizationsResponse.DevinOrganization organizations = 1;
|
|
2267
|
+
}
|
|
2268
|
+
|
|
2269
|
+
message WindsurfPostAuthRequest {
|
|
2270
|
+
reserved 1;
|
|
2271
|
+
reserved "auth1_token";
|
|
2272
|
+
|
|
2273
|
+
string org_id = 2;
|
|
2274
|
+
}
|
|
2275
|
+
|
|
2276
|
+
message WindsurfPostAuthResponse {
|
|
2277
|
+
message WindsurfPostAuthOrg {
|
|
2278
|
+
string id = 1;
|
|
2279
|
+
string name = 2;
|
|
2280
|
+
bool is_admin = 3;
|
|
2281
|
+
bool can_use_cli = 4;
|
|
2282
|
+
bool can_use_cascade = 5;
|
|
2283
|
+
string plan_slug = 6;
|
|
2284
|
+
string subscription_status = 7;
|
|
2285
|
+
string webapp_host = 8;
|
|
2286
|
+
bool sso_login_required = 9;
|
|
2287
|
+
}
|
|
2288
|
+
|
|
2289
|
+
string session_token = 1;
|
|
2290
|
+
repeated .exa.seat_management_pb.WindsurfPostAuthResponse.WindsurfPostAuthOrg orgs = 2;
|
|
2291
|
+
optional string auth1_token = 3;
|
|
2292
|
+
optional string account_id = 4;
|
|
2293
|
+
optional string primary_org_id = 5;
|
|
2294
|
+
}
|
|
2295
|
+
|
|
2296
|
+
message GetStripeSubscriptionStateRequest {
|
|
2297
|
+
reserved 1;
|
|
2298
|
+
reserved "auth_token";
|
|
2299
|
+
}
|
|
2300
|
+
|
|
2301
|
+
message GetStripeSubscriptionStateResponse {
|
|
2302
|
+
string email = 1;
|
|
2303
|
+
string subscription_id = 2;
|
|
2304
|
+
string subscription_status = 3;
|
|
2305
|
+
bool cancel_at_period_end = 4;
|
|
2306
|
+
.google.protobuf.Timestamp current_period_start = 5;
|
|
2307
|
+
.google.protobuf.Timestamp current_period_end = 6;
|
|
2308
|
+
string customer_id = 7;
|
|
2309
|
+
.exa.codeium_common_pb.TeamsTier teams_tier = 8;
|
|
2310
|
+
bool on_trial = 9;
|
|
2311
|
+
.google.protobuf.Timestamp grace_period_end = 10;
|
|
2312
|
+
.exa.codeium_common_pb.GracePeriodStatus grace_period_status = 11;
|
|
2313
|
+
.exa.codeium_common_pb.TeamsTier next_teams_tier = 12;
|
|
2314
|
+
}
|
|
2315
|
+
|
|
2316
|
+
message GetQuotaUsageInternalRequest {
|
|
2317
|
+
string secret = 1;
|
|
2318
|
+
string user_id = 2;
|
|
2319
|
+
}
|
|
2320
|
+
|
|
2321
|
+
message GetQuotaUsageInternalResponse {
|
|
2322
|
+
int64 daily_usage_micros = 1;
|
|
2323
|
+
int64 weekly_usage_micros = 2;
|
|
2324
|
+
int64 daily_limit_micros = 3;
|
|
2325
|
+
int64 weekly_limit_micros = 4;
|
|
2326
|
+
.exa.codeium_common_pb.BillingStrategy billing_strategy = 5;
|
|
2327
|
+
int64 daily_reset_at_unix = 6;
|
|
2328
|
+
int64 weekly_reset_at_unix = 7;
|
|
2329
|
+
}
|
|
2330
|
+
|
|
2331
|
+
message ResetQuotaUsageInternalRequest {
|
|
2332
|
+
string secret = 1;
|
|
2333
|
+
string user_id = 2;
|
|
2334
|
+
bool reset_daily = 3;
|
|
2335
|
+
bool reset_weekly = 4;
|
|
2336
|
+
}
|
|
2337
|
+
|
|
2338
|
+
message ResetQuotaUsageInternalResponse {
|
|
2339
|
+
int64 previous_daily_usage_micros = 1;
|
|
2340
|
+
int64 previous_weekly_usage_micros = 2;
|
|
2341
|
+
}
|
|
2342
|
+
|
|
2343
|
+
message GetOverageBalanceInternalRequest {
|
|
2344
|
+
string secret = 1;
|
|
2345
|
+
string team_id = 2;
|
|
2346
|
+
}
|
|
2347
|
+
|
|
2348
|
+
message GetOverageBalanceInternalResponse {
|
|
2349
|
+
int64 balance_micros = 1;
|
|
2350
|
+
bool exists_in_valkey = 2;
|
|
2351
|
+
int64 postgres_balance_micros = 3;
|
|
2352
|
+
}
|
|
2353
|
+
|
|
2354
|
+
message AdjustOverageBalanceInternalRequest {
|
|
2355
|
+
string secret = 1;
|
|
2356
|
+
string team_id = 2;
|
|
2357
|
+
int64 amount_micros = 3;
|
|
2358
|
+
string reason = 4;
|
|
2359
|
+
}
|
|
2360
|
+
|
|
2361
|
+
message AdjustOverageBalanceInternalResponse {
|
|
2362
|
+
int64 previous_balance_micros = 1;
|
|
2363
|
+
int64 new_balance_micros = 2;
|
|
2364
|
+
}
|
|
2365
|
+
|
|
2366
|
+
message UpdateCodeSnippetTelemetryRequest {
|
|
2367
|
+
reserved 1;
|
|
2368
|
+
reserved "auth_token";
|
|
2369
|
+
|
|
2370
|
+
bool disabled_telemetry = 2;
|
|
2371
|
+
}
|
|
2372
|
+
|
|
2373
|
+
message UpdateCodeSnippetTelemetryResponse {
|
|
2374
|
+
}
|
|
2375
|
+
|
|
2376
|
+
message InvalidateDevinCachesRequest {
|
|
2377
|
+
string account_id = 1;
|
|
2378
|
+
repeated string user_ids = 2;
|
|
2379
|
+
repeated string session_tokens = 3;
|
|
2380
|
+
}
|
|
2381
|
+
|
|
2382
|
+
message InvalidateDevinCachesResponse {
|
|
2383
|
+
int64 deleted_keys = 1;
|
|
2384
|
+
}
|
|
2385
|
+
|
|
2386
|
+
message GetSelfHostedAcuConfigRequest {
|
|
2387
|
+
reserved 1;
|
|
2388
|
+
reserved "auth_token";
|
|
2389
|
+
|
|
2390
|
+
string team_id = 2;
|
|
2391
|
+
}
|
|
2392
|
+
|
|
2393
|
+
message GetSelfHostedAcuConfigResponse {
|
|
2394
|
+
bool acu_billing_enabled = 1;
|
|
2395
|
+
string billing_strategy = 2;
|
|
2396
|
+
string billing_model = 3;
|
|
2397
|
+
double cycle_acu_limit = 4;
|
|
2398
|
+
double cascade_acu_multiplier = 5;
|
|
2399
|
+
double cli_acu_multiplier = 6;
|
|
2400
|
+
double prompt_credits_per_acu = 7;
|
|
2401
|
+
}
|
|
2402
|
+
|
|
2403
|
+
message SetSelfHostedAcuConfigRequest {
|
|
2404
|
+
reserved 1;
|
|
2405
|
+
reserved "auth_token";
|
|
2406
|
+
|
|
2407
|
+
string team_id = 2;
|
|
2408
|
+
string billing_model = 3;
|
|
2409
|
+
double cycle_acu_limit = 4;
|
|
2410
|
+
double cascade_acu_multiplier = 5;
|
|
2411
|
+
double cli_acu_multiplier = 6;
|
|
2412
|
+
double prompt_credits_per_acu = 7;
|
|
2413
|
+
}
|
|
2414
|
+
|
|
2415
|
+
message SetSelfHostedAcuConfigResponse {
|
|
2416
|
+
}
|
|
2417
|
+
|
|
2418
|
+
message DisableSelfHostedAcuBillingRequest {
|
|
2419
|
+
reserved 1;
|
|
2420
|
+
reserved "auth_token";
|
|
2421
|
+
|
|
2422
|
+
string team_id = 2;
|
|
2423
|
+
}
|
|
2424
|
+
|
|
2425
|
+
message DisableSelfHostedAcuBillingResponse {
|
|
2426
|
+
}
|
|
2427
|
+
|
|
2428
|
+
message BatchGetSelfHostedAcuConfigRequest {
|
|
2429
|
+
reserved 1;
|
|
2430
|
+
reserved "auth_token";
|
|
2431
|
+
|
|
2432
|
+
repeated string team_ids = 2;
|
|
2433
|
+
}
|
|
2434
|
+
|
|
2435
|
+
message BatchGetSelfHostedAcuConfigResponse {
|
|
2436
|
+
map<string, .exa.seat_management_pb.GetSelfHostedAcuConfigResponse> configs = 1;
|
|
2437
|
+
}
|
|
2438
|
+
|
|
2439
|
+
message GetSelfHostedAcuTeamCycleUsageRequest {
|
|
2440
|
+
reserved 1;
|
|
2441
|
+
reserved "auth_token";
|
|
2442
|
+
|
|
2443
|
+
string team_id = 2;
|
|
2444
|
+
}
|
|
2445
|
+
|
|
2446
|
+
message GetSelfHostedAcuTeamCycleUsageResponse {
|
|
2447
|
+
double total_acus = 1;
|
|
2448
|
+
.google.protobuf.Timestamp cycle_start = 2;
|
|
2449
|
+
.google.protobuf.Timestamp cycle_end = 3;
|
|
2450
|
+
}
|
|
2451
|
+
|
|
2452
|
+
message GetSelfHostedAcuUserOverrideRequest {
|
|
2453
|
+
reserved 1;
|
|
2454
|
+
reserved "auth_token";
|
|
2455
|
+
|
|
2456
|
+
string team_id = 2;
|
|
2457
|
+
string auth_uid = 3;
|
|
2458
|
+
}
|
|
2459
|
+
|
|
2460
|
+
message GetSelfHostedAcuUserOverrideResponse {
|
|
2461
|
+
bool has_override = 1;
|
|
2462
|
+
double cycle_acu_limit = 2;
|
|
2463
|
+
double current_cycle_usage = 3;
|
|
2464
|
+
double team_cycle_acu_limit = 4;
|
|
2465
|
+
}
|
|
2466
|
+
|
|
2467
|
+
message SetSelfHostedAcuUserOverrideRequest {
|
|
2468
|
+
reserved 1;
|
|
2469
|
+
reserved "auth_token";
|
|
2470
|
+
|
|
2471
|
+
string team_id = 2;
|
|
2472
|
+
string auth_uid = 3;
|
|
2473
|
+
double cycle_acu_limit = 4;
|
|
2474
|
+
}
|
|
2475
|
+
|
|
2476
|
+
message SetSelfHostedAcuUserOverrideResponse {
|
|
2477
|
+
}
|
|
2478
|
+
|
|
2479
|
+
message DeleteSelfHostedAcuUserOverrideRequest {
|
|
2480
|
+
reserved 1;
|
|
2481
|
+
reserved "auth_token";
|
|
2482
|
+
|
|
2483
|
+
string team_id = 2;
|
|
2484
|
+
string auth_uid = 3;
|
|
2485
|
+
}
|
|
2486
|
+
|
|
2487
|
+
message DeleteSelfHostedAcuUserOverrideResponse {
|
|
2488
|
+
}
|
|
2489
|
+
|
|
2490
|
+
message BatchGetSelfHostedAcuUserOverridesRequest {
|
|
2491
|
+
reserved 1;
|
|
2492
|
+
reserved "auth_token";
|
|
2493
|
+
|
|
2494
|
+
string team_id = 2;
|
|
2495
|
+
}
|
|
2496
|
+
|
|
2497
|
+
message BatchGetSelfHostedAcuUserOverridesResponse {
|
|
2498
|
+
message Entry {
|
|
2499
|
+
string auth_uid = 1;
|
|
2500
|
+
double cycle_acu_limit = 2;
|
|
2501
|
+
double current_cycle_usage = 3;
|
|
2502
|
+
}
|
|
2503
|
+
|
|
2504
|
+
repeated .exa.seat_management_pb.BatchGetSelfHostedAcuUserOverridesResponse.Entry entries = 1;
|
|
2505
|
+
}
|
|
2506
|
+
|
|
2507
|
+
message GetCurrentUserNameRequest {
|
|
2508
|
+
}
|
|
2509
|
+
|
|
2510
|
+
message GetCurrentUserNameResponse {
|
|
2511
|
+
string name = 1;
|
|
2512
|
+
string user_id = 2;
|
|
2513
|
+
}
|
|
2514
|
+
|
|
2515
|
+
message PreviewApiKeyExpirationImpactRequest {
|
|
2516
|
+
int32 api_key_expiration_days = 1;
|
|
2517
|
+
}
|
|
2518
|
+
|
|
2519
|
+
message PreviewApiKeyExpirationImpactResponse {
|
|
2520
|
+
int32 total_keys = 1;
|
|
2521
|
+
int32 keys_already_expired = 2;
|
|
2522
|
+
int32 users_affected = 3;
|
|
2523
|
+
}
|
|
2524
|
+
|
|
2525
|
+
service SeatManagementService {
|
|
2526
|
+
rpc GetUserStatus (.exa.seat_management_pb.GetUserStatusRequest) returns (.exa.seat_management_pb.GetUserStatusResponse);
|
|
2527
|
+
rpc GetUsers (.exa.seat_management_pb.GetUsersRequest) returns (.exa.seat_management_pb.GetUsersResponse);
|
|
2528
|
+
rpc GetRolesForUser (.exa.seat_management_pb.GetRolesForUserRequest) returns (.exa.seat_management_pb.GetRolesForUserResponse);
|
|
2529
|
+
rpc AddUserRole (.exa.seat_management_pb.AddUserRoleRequest) returns (.exa.seat_management_pb.AddUserRoleResponse);
|
|
2530
|
+
rpc RemoveUserRole (.exa.seat_management_pb.RemoveUserRoleRequest) returns (.exa.seat_management_pb.RemoveUserRoleResponse);
|
|
2531
|
+
rpc RegisterUser (.exa.seat_management_pb.RegisterUserRequest) returns (.exa.seat_management_pb.RegisterUserResponse);
|
|
2532
|
+
rpc MigrateApiKey (.exa.seat_management_pb.MigrateApiKeyRequest) returns (.exa.seat_management_pb.MigrateApiKeyResponse);
|
|
2533
|
+
rpc CreateFbUser (.exa.seat_management_pb.CreateFbUserRequest) returns (.exa.seat_management_pb.CreateFbUserResponse);
|
|
2534
|
+
rpc GetOneTimeAuthToken (.exa.seat_management_pb.GetOneTimeAuthTokenRequest) returns (.exa.seat_management_pb.GetOneTimeAuthTokenResponse);
|
|
2535
|
+
rpc CreatePKCEAuthorizationCode (.exa.seat_management_pb.CreatePKCEAuthorizationCodeRequest) returns (.exa.seat_management_pb.CreatePKCEAuthorizationCodeResponse);
|
|
2536
|
+
rpc ExchangePKCEAuthorizationCode (.exa.seat_management_pb.ExchangePKCEAuthorizationCodeRequest) returns (.exa.seat_management_pb.ExchangePKCEAuthorizationCodeResponse);
|
|
2537
|
+
rpc UpdateName (.exa.seat_management_pb.UpdateNameRequest) returns (.exa.seat_management_pb.UpdateNameResponse);
|
|
2538
|
+
rpc UpdateInboundSource (.exa.seat_management_pb.UpdateInboundSourceRequest) returns (.exa.seat_management_pb.UpdateInboundSourceResponse);
|
|
2539
|
+
rpc GetProfilePicturePresignedUploadUrl (.exa.seat_management_pb.GetProfilePicturePresignedUploadUrlRequest) returns (.exa.seat_management_pb.GetProfilePicturePresignedUploadUrlResponse);
|
|
2540
|
+
rpc ProfilePictureUploadComplete (.exa.seat_management_pb.ProfilePictureUploadCompleteRequest) returns (.exa.seat_management_pb.ProfilePictureUploadCompleteResponse);
|
|
2541
|
+
rpc GetProfileData (.exa.seat_management_pb.GetProfileDataRequest) returns (.exa.seat_management_pb.GetProfileDataResponse);
|
|
2542
|
+
rpc DeleteProfilePicture (.exa.seat_management_pb.DeleteProfilePictureRequest) returns (.exa.seat_management_pb.DeleteProfilePictureResponse);
|
|
2543
|
+
rpc DeleteUser (.exa.seat_management_pb.DeleteUserRequest) returns (.exa.seat_management_pb.DeleteUserResponse);
|
|
2544
|
+
rpc UpdateCodeiumAccess (.exa.seat_management_pb.UpdateCodeiumAccessRequest) returns (.exa.seat_management_pb.UpdateCodeiumAccessResponse);
|
|
2545
|
+
rpc UpdateCliAccess (.exa.seat_management_pb.UpdateCliAccessRequest) returns (.exa.seat_management_pb.UpdateCliAccessResponse);
|
|
2546
|
+
rpc GetCurrentUser (.exa.seat_management_pb.GetCurrentUserRequest) returns (.exa.seat_management_pb.GetCurrentUserResponse);
|
|
2547
|
+
rpc GetLicense (.exa.seat_management_pb.GetLicenseRequest) returns (.exa.seat_management_pb.GetLicenseResponse);
|
|
2548
|
+
rpc RequestTeamAccess (.exa.seat_management_pb.RequestTeamAccessRequest) returns (.exa.seat_management_pb.RequestTeamAccessResponse);
|
|
2549
|
+
rpc UpdateUserTeamStatus (.exa.seat_management_pb.UpdateUserTeamStatusRequest) returns (.exa.seat_management_pb.UpdateUserTeamStatusResponse);
|
|
2550
|
+
rpc GetTeamMetadata (.exa.seat_management_pb.GetTeamMetadataRequest) returns (.exa.seat_management_pb.GetTeamMetadataResponse);
|
|
2551
|
+
rpc RemoveUserFromTeam (.exa.seat_management_pb.RemoveUserFromTeamRequest) returns (.exa.seat_management_pb.RemoveUserFromTeamResponse);
|
|
2552
|
+
rpc RefreshTeamInviteId (.exa.seat_management_pb.RefreshTeamInviteIdRequest) returns (.exa.seat_management_pb.RefreshTeamInviteIdResponse);
|
|
2553
|
+
rpc GrantPreapproval (.exa.seat_management_pb.GrantPreapprovalRequest) returns (.exa.seat_management_pb.GrantPreapprovalResponse);
|
|
2554
|
+
rpc RevokePreapproval (.exa.seat_management_pb.RevokePreapprovalRequest) returns (.exa.seat_management_pb.RevokePreapprovalResponse);
|
|
2555
|
+
rpc GetPreapprovals (.exa.seat_management_pb.GetPreapprovalsRequest) returns (.exa.seat_management_pb.GetPreapprovalsResponse);
|
|
2556
|
+
rpc GetPreapprovalMetadata (.exa.seat_management_pb.GetPreapprovalMetadataRequest) returns (.exa.seat_management_pb.GetPreapprovalMetadataResponse);
|
|
2557
|
+
rpc AcceptPreapproval (.exa.seat_management_pb.AcceptPreapprovalRequest) returns (.exa.seat_management_pb.AcceptPreapprovalResponse);
|
|
2558
|
+
rpc RejectPreapproval (.exa.seat_management_pb.RejectPreapprovalRequest) returns (.exa.seat_management_pb.RejectPreapprovalResponse);
|
|
2559
|
+
rpc GetPreapprovalForUser (.exa.seat_management_pb.GetPreapprovalForUserRequest) returns (.exa.seat_management_pb.GetPreapprovalForUserResponse);
|
|
2560
|
+
rpc UpdateSeats (.exa.seat_management_pb.UpdateSeatsRequest) returns (.exa.seat_management_pb.UpdateSeatsResponse);
|
|
2561
|
+
rpc SubscribeToPlan (.exa.seat_management_pb.SubscribeToPlanRequest) returns (.exa.seat_management_pb.SubscribeToPlanResponse);
|
|
2562
|
+
rpc PurchaseCascadeCredits (.exa.seat_management_pb.PurchaseCascadeCreditsRequest) returns (.exa.seat_management_pb.PurchaseCascadeCreditsResponse);
|
|
2563
|
+
rpc GetTeamBilling (.exa.seat_management_pb.GetTeamBillingRequest) returns (.exa.seat_management_pb.GetTeamBillingResponse);
|
|
2564
|
+
rpc UpdatePlan (.exa.seat_management_pb.UpdatePlanRequest) returns (.exa.seat_management_pb.UpdatePlanResponse);
|
|
2565
|
+
rpc CancelPlan (.exa.seat_management_pb.CancelPlanRequest) returns (.exa.seat_management_pb.CancelPlanResponse);
|
|
2566
|
+
rpc UpdateBilling (.exa.seat_management_pb.UpdateBillingRequest) returns (.exa.seat_management_pb.UpdateBillingResponse);
|
|
2567
|
+
rpc GetCustomerPortal (.exa.seat_management_pb.GetCustomerPortalRequest) returns (.exa.seat_management_pb.GetCustomerPortalResponse);
|
|
2568
|
+
rpc GetUserSubscription (.exa.seat_management_pb.GetUserSubscriptionRequest) returns (.exa.seat_management_pb.GetUserSubscriptionResponse);
|
|
2569
|
+
rpc UpdateOccupation (.exa.seat_management_pb.UpdateOccupationRequest) returns (.exa.seat_management_pb.UpdateOccupationResponse);
|
|
2570
|
+
rpc UpdateProfile (.exa.seat_management_pb.UpdateProfileRequest) returns (.exa.seat_management_pb.UpdateProfileResponse);
|
|
2571
|
+
rpc GetSSOProvider (.exa.seat_management_pb.GetSSOProviderRequest) returns (.exa.seat_management_pb.GetSSOProviderResponse);
|
|
2572
|
+
rpc SaveSSOProvider (.exa.seat_management_pb.SaveSSOProviderRequest) returns (.exa.seat_management_pb.SaveSSOProviderResponse);
|
|
2573
|
+
rpc JoinTeamWithSSOLogin (.exa.seat_management_pb.JoinTeamWithSSOLoginRequest) returns (.exa.seat_management_pb.JoinTeamWithSSOLoginResponse);
|
|
2574
|
+
rpc UserSSOLoginRedirect (.exa.seat_management_pb.UserSSOLoginRedirectRequest) returns (.exa.seat_management_pb.UserSSOLoginRedirectResponse);
|
|
2575
|
+
rpc CheckEmailForSSO (.exa.seat_management_pb.CheckEmailForSSORequest) returns (.exa.seat_management_pb.CheckEmailForSSOResponse);
|
|
2576
|
+
rpc CheckUserLoginMethod (.exa.seat_management_pb.CheckUserLoginMethodRequest) returns (.exa.seat_management_pb.CheckUserLoginMethodResponse);
|
|
2577
|
+
rpc SendEmailVerification (.exa.seat_management_pb.SendEmailVerificationRequest) returns (.exa.seat_management_pb.SendEmailVerificationResponse);
|
|
2578
|
+
rpc GetTeamActivity (.exa.seat_management_pb.GetTeamActivityRequest) returns (.exa.seat_management_pb.GetTeamActivityResponse);
|
|
2579
|
+
rpc DeleteTeam (.exa.seat_management_pb.DeleteTeamRequest) returns (.exa.seat_management_pb.DeleteTeamResponse);
|
|
2580
|
+
rpc GetTeamsFeatures (.exa.seat_management_pb.GetTeamsFeaturesRequest) returns (.exa.seat_management_pb.GetTeamsFeaturesResponse);
|
|
2581
|
+
rpc GrantSuperAdminAccess (.exa.seat_management_pb.GrantSuperAdminAccessRequest) returns (.exa.seat_management_pb.GrantSuperAdminAccessResponse);
|
|
2582
|
+
rpc GrantTeamAdminAccess (.exa.seat_management_pb.GrantTeamAdminAccessRequest) returns (.exa.seat_management_pb.GrantTeamAdminAccessResponse);
|
|
2583
|
+
rpc AddFlexCreditsToMultiTenantTeam (.exa.seat_management_pb.AddFlexCreditsToMultiTenantTeamRequest) returns (.exa.seat_management_pb.AddFlexCreditsToMultiTenantTeamResponse);
|
|
2584
|
+
rpc GetGroups (.exa.seat_management_pb.GetGroupsRequest) returns (.exa.seat_management_pb.GetGroupsResponse);
|
|
2585
|
+
rpc GetUserNotifications (.exa.seat_management_pb.GetUserNotificationsRequest) returns (.exa.seat_management_pb.GetUserNotificationsResponse);
|
|
2586
|
+
rpc GetCascadeAnalytics (.exa.seat_management_pb.GetCascadeAnalyticsRequest) returns (.exa.seat_management_pb.GetCascadeAnalyticsResponse);
|
|
2587
|
+
rpc GetTeamCreditEntries (.exa.seat_management_pb.GetTeamCreditEntriesRequest) returns (.exa.seat_management_pb.GetTeamCreditEntriesResponse);
|
|
2588
|
+
rpc UpdateCreditTopUpSettings (.exa.seat_management_pb.UpdateCreditTopUpSettingsRequest) returns (.exa.seat_management_pb.UpdateCreditTopUpSettingsResponse);
|
|
2589
|
+
rpc GetPrimaryApiKeyForDevsOnly (.exa.seat_management_pb.GetPrimaryApiKeyForDevsOnlyRequest) returns (.exa.seat_management_pb.GetPrimaryApiKeyForDevsOnlyResponse);
|
|
2590
|
+
rpc ConnectGithubAccount (.exa.seat_management_pb.ConnectGithubAccountRequest) returns (.exa.seat_management_pb.ConnectGithubAccountResponse);
|
|
2591
|
+
rpc GetGitHubAccountStatus (.exa.seat_management_pb.GetGitHubAccountStatusRequest) returns (.exa.seat_management_pb.GetGitHubAccountStatusResponse);
|
|
2592
|
+
rpc GetGitHubAccessToken (.exa.seat_management_pb.GetGitHubAccessTokenRequest) returns (.exa.seat_management_pb.GetGitHubAccessTokenResponse);
|
|
2593
|
+
rpc ConnectNetlifyAccount (.exa.seat_management_pb.ConnectNetlifyAccountRequest) returns (.exa.seat_management_pb.ConnectNetlifyAccountResponse);
|
|
2594
|
+
rpc DisconnectNetlifyAccount (.exa.seat_management_pb.DisconnectNetlifyAccountRequest) returns (.exa.seat_management_pb.DisconnectNetlifyAccountResponse);
|
|
2595
|
+
rpc GetNetlifyAccountStatus (.exa.seat_management_pb.GetNetlifyAccountStatusRequest) returns (.exa.seat_management_pb.GetNetlifyAccountStatusResponse);
|
|
2596
|
+
rpc CreateTeamApiSecret (.exa.seat_management_pb.CreateTeamApiSecretRequest) returns (.exa.seat_management_pb.CreateTeamApiSecretResponse);
|
|
2597
|
+
rpc UpdateTeamApiSecret (.exa.seat_management_pb.UpdateTeamApiSecretRequest) returns (.exa.seat_management_pb.UpdateTeamApiSecretResponse);
|
|
2598
|
+
rpc GetAllTeamApiSecrets (.exa.seat_management_pb.GetAllTeamApiSecretsRequest) returns (.exa.seat_management_pb.GetAllTeamApiSecretsResponse);
|
|
2599
|
+
rpc DeleteTeamApiSecret (.exa.seat_management_pb.DeleteTeamApiSecretRequest) returns (.exa.seat_management_pb.DeleteTeamApiSecretResponse);
|
|
2600
|
+
rpc GetPlanStatus (.exa.seat_management_pb.GetPlanStatusRequest) returns (.exa.seat_management_pb.GetPlanStatusResponse);
|
|
2601
|
+
rpc CreateRole (.exa.seat_management_pb.CreateRoleRequest) returns (.exa.seat_management_pb.CreateRoleResponse);
|
|
2602
|
+
rpc DeleteRole (.exa.seat_management_pb.DeleteRoleRequest) returns (.exa.seat_management_pb.DeleteRoleResponse);
|
|
2603
|
+
rpc UpdateRole (.exa.seat_management_pb.UpdateRoleRequest) returns (.exa.seat_management_pb.UpdateRoleResponse);
|
|
2604
|
+
rpc GetRoles (.exa.seat_management_pb.GetRolesRequest) returns (.exa.seat_management_pb.GetRolesResponse);
|
|
2605
|
+
rpc AddUsersToTeam (.exa.seat_management_pb.AddUsersToTeamRequest) returns (.exa.seat_management_pb.AddUsersToTeamResponse);
|
|
2606
|
+
rpc UpdateUserRoles (.exa.seat_management_pb.UpdateUserRolesRequest) returns (.exa.seat_management_pb.UpdateUserRolesResponse);
|
|
2607
|
+
rpc BulkUpdateUserRoles (.exa.seat_management_pb.BulkUpdateUserRolesRequest) returns (.exa.seat_management_pb.BulkUpdateUserRolesResponse);
|
|
2608
|
+
rpc GetTeamsFeaturesInternal (.exa.seat_management_pb.GetTeamsFeaturesInternalRequest) returns (.exa.seat_management_pb.GetTeamsFeaturesInternalResponse);
|
|
2609
|
+
rpc UpdateTeamsFeaturesInternal (.exa.seat_management_pb.UpdateTeamsFeaturesInternalRequest) returns (.exa.seat_management_pb.UpdateTeamsFeaturesInternalResponse);
|
|
2610
|
+
rpc SetTeamsFeatures (.exa.seat_management_pb.SetTeamsFeaturesRequest) returns (.exa.seat_management_pb.SetTeamsFeaturesResponse);
|
|
2611
|
+
rpc BulkEditUserApprovals (.exa.seat_management_pb.BulkEditUserApprovalsRequest) returns (.exa.seat_management_pb.BulkEditUserApprovalsResponse);
|
|
2612
|
+
rpc BulkEditUserApprovalsInternal (.exa.seat_management_pb.BulkEditUserApprovalsInternalRequest) returns (.exa.seat_management_pb.BulkEditUserApprovalsInternalResponse);
|
|
2613
|
+
rpc CreateEnterprise (.exa.seat_management_pb.CreateEnterpriseRequest) returns (.exa.seat_management_pb.CreateEnterpriseResponse);
|
|
2614
|
+
rpc UpdateTeamConfig (.exa.seat_management_pb.UpdateTeamConfigRequest) returns (.exa.seat_management_pb.UpdateTeamConfigResponse);
|
|
2615
|
+
rpc GetTeamInfo (.exa.seat_management_pb.GetTeamInfoRequest) returns (.exa.seat_management_pb.GetTeamInfoResponse);
|
|
2616
|
+
rpc UpdatePlanDetailsInternal (.exa.seat_management_pb.UpdatePlanDetailsInternalRequest) returns (.exa.seat_management_pb.UpdatePlanDetailsInternalResponse);
|
|
2617
|
+
rpc InitiateTopUp (.exa.seat_management_pb.InitiateTopUpRequest) returns (.exa.seat_management_pb.InitiateTopUpResponse);
|
|
2618
|
+
rpc UpdateTeamConfigExternal (.exa.seat_management_pb.UpdateTeamConfigExternalRequest) returns (.exa.seat_management_pb.UpdateTeamConfigExternalResponse);
|
|
2619
|
+
rpc GetTeamConfigRecord (.exa.seat_management_pb.GetTeamConfigRecordRequest) returns (.exa.seat_management_pb.GetTeamConfigRecordResponse);
|
|
2620
|
+
rpc UsageConfig (.exa.seat_management_pb.UsageConfigRequest) returns (.exa.seat_management_pb.UsageConfigResponse);
|
|
2621
|
+
rpc GetUsageConfig (.exa.seat_management_pb.GetUsageConfigRequest) returns (.exa.seat_management_pb.GetUsageConfigResponse);
|
|
2622
|
+
rpc GetTeamCreditBalance (.exa.seat_management_pb.GetTeamCreditBalanceRequest) returns (.exa.seat_management_pb.GetTeamCreditBalanceResponse);
|
|
2623
|
+
rpc GetCliTeamSettings (.exa.seat_management_pb.GetCliTeamSettingsRequest) returns (.exa.seat_management_pb.GetCliTeamSettingsResponse);
|
|
2624
|
+
rpc CreateMultiTenantTeam (.exa.seat_management_pb.CreateMultiTenantTeamRequest) returns (.exa.seat_management_pb.CreateMultiTenantTeamResponse);
|
|
2625
|
+
rpc GetMultiTenantTeams (.exa.seat_management_pb.GetMultiTenantTeamsRequest) returns (.exa.seat_management_pb.GetMultiTenantTeamsResponse);
|
|
2626
|
+
rpc DeleteMultiTenantTeam (.exa.seat_management_pb.DeleteMultiTenantTeamRequest) returns (.exa.seat_management_pb.DeleteMultiTenantTeamResponse);
|
|
2627
|
+
rpc GetTeamOrgId (.exa.seat_management_pb.GetTeamOrgIdRequest) returns (.exa.seat_management_pb.GetTeamOrgIdResponse);
|
|
2628
|
+
rpc GetSelfHostedAcuConfig (.exa.seat_management_pb.GetSelfHostedAcuConfigRequest) returns (.exa.seat_management_pb.GetSelfHostedAcuConfigResponse);
|
|
2629
|
+
rpc SetSelfHostedAcuConfig (.exa.seat_management_pb.SetSelfHostedAcuConfigRequest) returns (.exa.seat_management_pb.SetSelfHostedAcuConfigResponse);
|
|
2630
|
+
rpc DisableSelfHostedAcuBilling (.exa.seat_management_pb.DisableSelfHostedAcuBillingRequest) returns (.exa.seat_management_pb.DisableSelfHostedAcuBillingResponse);
|
|
2631
|
+
rpc BatchGetSelfHostedAcuConfig (.exa.seat_management_pb.BatchGetSelfHostedAcuConfigRequest) returns (.exa.seat_management_pb.BatchGetSelfHostedAcuConfigResponse);
|
|
2632
|
+
rpc GetSelfHostedAcuTeamCycleUsage (.exa.seat_management_pb.GetSelfHostedAcuTeamCycleUsageRequest) returns (.exa.seat_management_pb.GetSelfHostedAcuTeamCycleUsageResponse);
|
|
2633
|
+
rpc GetSelfHostedAcuUserOverride (.exa.seat_management_pb.GetSelfHostedAcuUserOverrideRequest) returns (.exa.seat_management_pb.GetSelfHostedAcuUserOverrideResponse);
|
|
2634
|
+
rpc SetSelfHostedAcuUserOverride (.exa.seat_management_pb.SetSelfHostedAcuUserOverrideRequest) returns (.exa.seat_management_pb.SetSelfHostedAcuUserOverrideResponse);
|
|
2635
|
+
rpc DeleteSelfHostedAcuUserOverride (.exa.seat_management_pb.DeleteSelfHostedAcuUserOverrideRequest) returns (.exa.seat_management_pb.DeleteSelfHostedAcuUserOverrideResponse);
|
|
2636
|
+
rpc BatchGetSelfHostedAcuUserOverrides (.exa.seat_management_pb.BatchGetSelfHostedAcuUserOverridesRequest) returns (.exa.seat_management_pb.BatchGetSelfHostedAcuUserOverridesResponse);
|
|
2637
|
+
rpc GetMucsInfo (.exa.seat_management_pb.GetMucsInfoRequest) returns (.exa.seat_management_pb.GetMucsInfoResponse);
|
|
2638
|
+
rpc GetWrapped2024 (.exa.seat_management_pb.GetWrapped2024Request) returns (.exa.seat_management_pb.GetWrapped2024Response);
|
|
2639
|
+
rpc SetTeamLicense (.exa.seat_management_pb.SetTeamLicenseRequest) returns (.exa.seat_management_pb.SetTeamLicenseResponse);
|
|
2640
|
+
rpc IsValidReferralCode (.exa.seat_management_pb.IsValidReferralCodeRequest) returns (.exa.seat_management_pb.IsValidReferralCodeResponse);
|
|
2641
|
+
rpc ProcessReferralCode (.exa.seat_management_pb.ProcessReferralCodeRequest) returns (.exa.seat_management_pb.ProcessReferralCodeResponse);
|
|
2642
|
+
rpc RemoveUsersFromTeamInternal (.exa.seat_management_pb.RemoveUsersFromTeamInternalRequest) returns (.exa.seat_management_pb.RemoveUsersFromTeamInternalResponse);
|
|
2643
|
+
rpc BulkDeleteUsersInternal (.exa.seat_management_pb.BulkDeleteUsersInternalRequest) returns (.exa.seat_management_pb.BulkDeleteUsersInternalResponse);
|
|
2644
|
+
rpc BulkDeleteUsersInternalFromBigQuery (.exa.seat_management_pb.BulkDeleteUsersInternalFromBigQueryRequest) returns (.exa.seat_management_pb.BulkDeleteUsersInternalFromBigQueryResponse);
|
|
2645
|
+
rpc ExportUserDataInternal (.exa.seat_management_pb.ExportUserDataInternalRequest) returns (.exa.seat_management_pb.ExportUserDataInternalResponse);
|
|
2646
|
+
rpc InitiateAccountOwnershipVerificationInternal (.exa.seat_management_pb.InitiateAccountOwnershipVerificationInternalRequest) returns (.exa.seat_management_pb.InitiateAccountOwnershipVerificationInternalResponse);
|
|
2647
|
+
rpc VerifyAccountOwnershipInternal (.exa.seat_management_pb.VerifyAccountOwnershipInternalRequest) returns (.exa.seat_management_pb.VerifyAccountOwnershipInternalResponse);
|
|
2648
|
+
rpc AddExtraFlexCreditsInternal (.exa.seat_management_pb.AddExtraFlexCreditsInternalRequest) returns (.exa.seat_management_pb.AddExtraFlexCreditsInternalResponse);
|
|
2649
|
+
rpc AddTeamAddOnFeature (.exa.seat_management_pb.AddTeamAddOnFeatureRequest) returns (.exa.seat_management_pb.AddTeamAddOnFeatureResponse);
|
|
2650
|
+
rpc ShowSSOAddOn (.exa.seat_management_pb.ShowSSOAddOnRequest) returns (.exa.seat_management_pb.ShowSSOAddOnResponse);
|
|
2651
|
+
rpc CheckProTrialEligibility (.exa.seat_management_pb.CheckProTrialEligibilityRequest) returns (.exa.seat_management_pb.CheckProTrialEligibilityResponse);
|
|
2652
|
+
rpc GetSetUserApiProviderKeys (.exa.seat_management_pb.GetSetUserApiProviderKeysRequest) returns (.exa.seat_management_pb.GetSetUserApiProviderKeysResponse);
|
|
2653
|
+
rpc SetUserApiProviderKey (.exa.seat_management_pb.SetUserApiProviderKeyRequest) returns (.exa.seat_management_pb.SetUserApiProviderKeyResponse);
|
|
2654
|
+
rpc DeleteUserApiProviderKey (.exa.seat_management_pb.DeleteUserApiProviderKeyRequest) returns (.exa.seat_management_pb.DeleteUserApiProviderKeyResponse);
|
|
2655
|
+
rpc GetApiKeySummary (.exa.seat_management_pb.GetApiKeySummaryRequest) returns (.exa.seat_management_pb.GetApiKeySummaryResponse);
|
|
2656
|
+
rpc DeleteApiKey (.exa.seat_management_pb.DeleteApiKeyRequest) returns (.exa.seat_management_pb.DeleteApiKeyResponse);
|
|
2657
|
+
rpc LogOutUser (.exa.seat_management_pb.LogOutUserRequest) returns (.exa.seat_management_pb.LogOutUserResponse);
|
|
2658
|
+
rpc AddTeamDomain (.exa.seat_management_pb.AddTeamDomainRequest) returns (.exa.seat_management_pb.AddTeamDomainResponse);
|
|
2659
|
+
rpc ListTeamDomains (.exa.seat_management_pb.ListTeamDomainsRequest) returns (.exa.seat_management_pb.ListTeamDomainsResponse);
|
|
2660
|
+
rpc VerifyTeamDomain (.exa.seat_management_pb.VerifyTeamDomainRequest) returns (.exa.seat_management_pb.VerifyTeamDomainResponse);
|
|
2661
|
+
rpc DeleteTeamDomain (.exa.seat_management_pb.DeleteTeamDomainRequest) returns (.exa.seat_management_pb.DeleteTeamDomainResponse);
|
|
2662
|
+
rpc AddTeamDomainInternal (.exa.seat_management_pb.AddTeamDomainInternalRequest) returns (.exa.seat_management_pb.AddTeamDomainInternalResponse);
|
|
2663
|
+
rpc DeleteTeamDomainInternal (.exa.seat_management_pb.DeleteTeamDomainInternalRequest) returns (.exa.seat_management_pb.DeleteTeamDomainInternalResponse);
|
|
2664
|
+
rpc ListTeamDomainsInternal (.exa.seat_management_pb.ListTeamDomainsInternalRequest) returns (.exa.seat_management_pb.ListTeamDomainsInternalResponse);
|
|
2665
|
+
rpc UpdateTeamNameInternal (.exa.seat_management_pb.UpdateTeamNameInternalRequest) returns (.exa.seat_management_pb.UpdateTeamNameInternalResponse);
|
|
2666
|
+
rpc VerifySSOLoginInternal (.exa.seat_management_pb.VerifySSOLoginInternalRequest) returns (.exa.seat_management_pb.VerifySSOLoginInternalResponse);
|
|
2667
|
+
rpc ExchangeDevinCode (.exa.seat_management_pb.ExchangeDevinCodeRequest) returns (.exa.seat_management_pb.ExchangeDevinCodeResponse);
|
|
2668
|
+
rpc WindsurfPostAuth (.exa.seat_management_pb.WindsurfPostAuthRequest) returns (.exa.seat_management_pb.WindsurfPostAuthResponse);
|
|
2669
|
+
rpc GetSelfDevinSessionToken (.exa.seat_management_pb.GetSelfDevinSessionTokenRequest) returns (.exa.seat_management_pb.GetSelfDevinSessionTokenResponse);
|
|
2670
|
+
rpc GetEligibleDevinOrganizations (.exa.seat_management_pb.GetEligibleDevinOrganizationsRequest) returns (.exa.seat_management_pb.GetEligibleDevinOrganizationsResponse);
|
|
2671
|
+
rpc UpdateCodeSnippetTelemetry (.exa.seat_management_pb.UpdateCodeSnippetTelemetryRequest) returns (.exa.seat_management_pb.UpdateCodeSnippetTelemetryResponse);
|
|
2672
|
+
rpc GetCurrentUserName (.exa.seat_management_pb.GetCurrentUserNameRequest) returns (.exa.seat_management_pb.GetCurrentUserNameResponse);
|
|
2673
|
+
rpc GetStripeSubscriptionState (.exa.seat_management_pb.GetStripeSubscriptionStateRequest) returns (.exa.seat_management_pb.GetStripeSubscriptionStateResponse);
|
|
2674
|
+
rpc GetQuotaUsageInternal (.exa.seat_management_pb.GetQuotaUsageInternalRequest) returns (.exa.seat_management_pb.GetQuotaUsageInternalResponse);
|
|
2675
|
+
rpc ResetQuotaUsageInternal (.exa.seat_management_pb.ResetQuotaUsageInternalRequest) returns (.exa.seat_management_pb.ResetQuotaUsageInternalResponse);
|
|
2676
|
+
rpc GetOverageBalanceInternal (.exa.seat_management_pb.GetOverageBalanceInternalRequest) returns (.exa.seat_management_pb.GetOverageBalanceInternalResponse);
|
|
2677
|
+
rpc AdjustOverageBalanceInternal (.exa.seat_management_pb.AdjustOverageBalanceInternalRequest) returns (.exa.seat_management_pb.AdjustOverageBalanceInternalResponse);
|
|
2678
|
+
rpc InvalidateDevinCaches (.exa.seat_management_pb.InvalidateDevinCachesRequest) returns (.exa.seat_management_pb.InvalidateDevinCachesResponse);
|
|
2679
|
+
rpc PreviewApiKeyExpirationImpact (.exa.seat_management_pb.PreviewApiKeyExpirationImpactRequest) returns (.exa.seat_management_pb.PreviewApiKeyExpirationImpactResponse);
|
|
2680
|
+
}
|