diff --git a/examples/code/guides/agentauth/auth_with_google.js b/examples/code/guides/agentauth/auth_with_google.js index b068ac052..033f95465 100644 --- a/examples/code/guides/agentauth/auth_with_google.js +++ b/examples/code/guides/agentauth/auth_with_google.js @@ -13,8 +13,10 @@ import { google } from "googleapis"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -// Your app's internal ID for the user (an email, UUID, etc). It's used internally to identify your user in Arcade, not to identify with the Gmail service. -const user_id = "user@example.com"; +// Your app's internal ID for the user (an email, UUID, etc). +// It's used internally to identify your user in Arcade, not to identify with the Gmail service. +// Use your Arcade account email for testing: +const user_id = "{arcade_user_id}"; // Start the authorization process let auth_response = await client.auth.start(user_id, "google", { diff --git a/examples/code/guides/agentauth/auth_with_google.py b/examples/code/guides/agentauth/auth_with_google.py index a8208e6a8..c40b2bd82 100644 --- a/examples/code/guides/agentauth/auth_with_google.py +++ b/examples/code/guides/agentauth/auth_with_google.py @@ -15,7 +15,7 @@ """ # This would be your app's internal ID for the user (an email, UUID, etc.) -user_id = "user@example.com" +user_id = "{arcade_user_id}" # Start the authorization process auth_response = client.auth.start( diff --git a/examples/code/home/crewai/custom_auth_flow.py b/examples/code/home/crewai/custom_auth_flow.py index eca8a6ccc..f43e890e0 100644 --- a/examples/code/home/crewai/custom_auth_flow.py +++ b/examples/code/home/crewai/custom_auth_flow.py @@ -4,7 +4,7 @@ from crewai.llm import LLM from crewai_arcade import ArcadeToolManager -USER_ID = "user@example.com" +USER_ID = "{arcade_user_id}" def custom_auth_flow( manager: ArcadeToolManager, tool_name: str, **tool_input: dict[str, Any] diff --git a/examples/code/home/crewai/custom_auth_flow_callback_section.py b/examples/code/home/crewai/custom_auth_flow_callback_section.py index 30d71784d..550b9ca83 100644 --- a/examples/code/home/crewai/custom_auth_flow_callback_section.py +++ b/examples/code/home/crewai/custom_auth_flow_callback_section.py @@ -2,7 +2,7 @@ from crewai_arcade import ArcadeToolManager -USER_ID = "user@example.com" +USER_ID = "{arcade_user_id}" def custom_auth_flow( manager: ArcadeToolManager, tool_name: str, **tool_input: dict[str, Any] diff --git a/examples/code/home/crewai/use_arcade_tools.py b/examples/code/home/crewai/use_arcade_tools.py index 23fc632f5..58dcf9fb3 100644 --- a/examples/code/home/crewai/use_arcade_tools.py +++ b/examples/code/home/crewai/use_arcade_tools.py @@ -2,7 +2,7 @@ from crewai.llm import LLM from crewai_arcade import ArcadeToolManager -manager = ArcadeToolManager(default_user_id="user@example.com") +manager = ArcadeToolManager(default_user_id="{arcade_user_id}") tools = manager.get_tools(tools=["Google.ListEmails"]) diff --git a/examples/code/home/mcp/streamable-http/typescript-client.ts.fake b/examples/code/home/mcp/streamable-http/typescript-client.ts.fake index ef2d258d3..2d12d2078 100644 --- a/examples/code/home/mcp/streamable-http/typescript-client.ts.fake +++ b/examples/code/home/mcp/streamable-http/typescript-client.ts.fake @@ -9,7 +9,7 @@ import { // Replace with your actual API key and user ID const arcadeApiKey = "your_arcade_api_key"; -const userId = "your_email@example.com"; +const userId = "{arcade_user_id}"; const arcadeURL = "https://api.arcade.dev/v1"; const serverURL = `${arcadeURL}/mcp`; diff --git a/examples/code/home/use-tools/call-tools-directly/github_directly.js b/examples/code/home/use-tools/call-tools-directly/github_directly.js index cb76448d4..1d0267061 100644 --- a/examples/code/home/use-tools/call-tools-directly/github_directly.js +++ b/examples/code/home/use-tools/call-tools-directly/github_directly.js @@ -2,7 +2,7 @@ import Arcade from "@arcadeai/arcadejs"; const client = new Arcade(); -let userId = "you@example.com"; +let userId = "{arcade_user_id}"; const response = await client.tools.execute({ tool_name: "GitHub.SetStarred", diff --git a/examples/code/home/use-tools/call-tools-directly/github_directly.py b/examples/code/home/use-tools/call-tools-directly/github_directly.py index c0c68acd3..781b75d58 100644 --- a/examples/code/home/use-tools/call-tools-directly/github_directly.py +++ b/examples/code/home/use-tools/call-tools-directly/github_directly.py @@ -2,7 +2,7 @@ client = Arcade() -user_id = "user@example.com" +user_id = "{arcade_user_id}" response = client.tools.execute( tool_name="GitHub.SetStarred", diff --git a/examples/code/home/use-tools/call-tools-directly/quickstart.mjs b/examples/code/home/use-tools/call-tools-directly/quickstart.mjs index 03ffca98d..ea8791d3a 100644 --- a/examples/code/home/use-tools/call-tools-directly/quickstart.mjs +++ b/examples/code/home/use-tools/call-tools-directly/quickstart.mjs @@ -2,12 +2,12 @@ import Arcade from "@arcadeai/arcadejs"; // You can also set the `ARCADE_API_KEY` environment variable instead of passing it as a parameter. const client = new Arcade({ - apiKey: "arcade_api_key", + apiKey: "{arcade_api_key}", }); // Arcade needs a unique identifier for your application user (this could be an email address, a UUID, etc). -// In this example, simply use your email address as the user ID: -let userId = "you@example.com"; +// In this example, use the email you used to sign up for Arcade.dev: +let userId = "{arcade_user_id}"; // Let's use the `Math.Sqrt` tool from the Arcade Math toolkit to get the square root of a number. const response_sqrt = await client.tools.execute({ diff --git a/examples/code/home/use-tools/call-tools-directly/quickstart.py b/examples/code/home/use-tools/call-tools-directly/quickstart.py index f6a640310..3a9c83073 100644 --- a/examples/code/home/use-tools/call-tools-directly/quickstart.py +++ b/examples/code/home/use-tools/call-tools-directly/quickstart.py @@ -1,11 +1,11 @@ from arcadepy import Arcade # You can also set the `ARCADE_API_KEY` environment variable instead of passing it as a parameter. -client = Arcade(api_key="arcade_api_key") +client = Arcade(api_key="{arcade_api_key}") # Arcade needs a unique identifier for your application user (this could be an email address, a UUID, etc). -# In this example, simply use your email address as the user ID: -user_id = "user@example.com" +# In this example, use the email you used to sign up for Arcade.dev: +user_id = "{arcade_user_id}" # Let's use the `Math.Sqrt` tool from the Arcade Math toolkit to get the square root of a number. response = client.tools.execute( diff --git a/examples/code/integrations/asana/custom_auth.js b/examples/code/integrations/asana/custom_auth.js index fbb624d66..93d9b7f81 100644 --- a/examples/code/integrations/asana/custom_auth.js +++ b/examples/code/integrations/asana/custom_auth.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade({ baseURL: "https://api.arcade.dev" }); // Automatically finds the `ARCADE_API_KEY` env variable -const userId = "user@example.com"; +const userId = "{arcade_user_id}"; // Start the authorization process const authResponse = await client.auth.start(userId, "asana", { diff --git a/examples/code/integrations/asana/custom_auth.py b/examples/code/integrations/asana/custom_auth.py index b4d407a0d..cd1c6b958 100644 --- a/examples/code/integrations/asana/custom_auth.py +++ b/examples/code/integrations/asana/custom_auth.py @@ -2,7 +2,7 @@ client = Arcade(base_url="https://api.arcade.dev") # Automatically finds the `ARCADE_API_KEY` env variable -user_id = "user@example.com" +user_id = "{arcade_user_id}" # Start the authorization process auth_response = client.auth.start( diff --git a/examples/code/integrations/asana/custom_tool_call.js b/examples/code/integrations/asana/custom_tool_call.js index 0282c4b3d..f09a9505f 100644 --- a/examples/code/integrations/asana/custom_tool_call.js +++ b/examples/code/integrations/asana/custom_tool_call.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade({ baseURL: "https://api.arcade.dev" }); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Asana.DeleteTask"; // Start the authorization process diff --git a/examples/code/integrations/asana/custom_tool_call.py b/examples/code/integrations/asana/custom_tool_call.py index 780fe8170..ec59bef9b 100644 --- a/examples/code/integrations/asana/custom_tool_call.py +++ b/examples/code/integrations/asana/custom_tool_call.py @@ -2,7 +2,7 @@ client = Arcade(base_url="https://api.arcade.dev") # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Asana.DeleteTask" auth_response = client.tools.authorize(tool_name=TOOL_NAME, user_id=USER_ID) diff --git a/examples/code/integrations/atlassian/custom_auth.js b/examples/code/integrations/atlassian/custom_auth.js index 2bd1313cd..91f479532 100644 --- a/examples/code/integrations/atlassian/custom_auth.js +++ b/examples/code/integrations/atlassian/custom_auth.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const userId = "user@example.com"; +const userId = "{arcade_user_id}"; // Start the authorization process let authResponse = await client.auth.start(userId, "atlassian", { diff --git a/examples/code/integrations/atlassian/custom_auth.py b/examples/code/integrations/atlassian/custom_auth.py index 7a8960071..a1eb8019c 100644 --- a/examples/code/integrations/atlassian/custom_auth.py +++ b/examples/code/integrations/atlassian/custom_auth.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -user_id = "user@example.com" +user_id = "{arcade_user_id}" # Start the authorization process auth_response = client.auth.start( diff --git a/examples/code/integrations/discord/custom_auth.js b/examples/code/integrations/discord/custom_auth.js index 1e163dcca..741066f4d 100644 --- a/examples/code/integrations/discord/custom_auth.js +++ b/examples/code/integrations/discord/custom_auth.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); -const userId = "user@example.com"; +const userId = "{arcade_user_id}"; // Start the authorization process const authResponse = await client.auth.start(userId, "discord", { diff --git a/examples/code/integrations/discord/custom_auth.py b/examples/code/integrations/discord/custom_auth.py index c47908d16..7b7bef6f5 100644 --- a/examples/code/integrations/discord/custom_auth.py +++ b/examples/code/integrations/discord/custom_auth.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -user_id = "user@example.com" +user_id = "{arcade_user_id}" # Start the authorization process auth_response = client.auth.start( diff --git a/examples/code/integrations/dropbox/custom_auth.js b/examples/code/integrations/dropbox/custom_auth.js index 5436803ad..44da32446 100644 --- a/examples/code/integrations/dropbox/custom_auth.js +++ b/examples/code/integrations/dropbox/custom_auth.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); -const userId = "user@example.com"; +const userId = "{arcade_user_id}"; // Start the authorization process const authResponse = await client.auth.start(userId, "dropbox", { diff --git a/examples/code/integrations/dropbox/custom_auth.py b/examples/code/integrations/dropbox/custom_auth.py index ee2d00b31..88b941604 100644 --- a/examples/code/integrations/dropbox/custom_auth.py +++ b/examples/code/integrations/dropbox/custom_auth.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -user_id = "user@example.com" +user_id = "{arcade_user_id}" # Start the authorization process auth_response = client.auth.start( diff --git a/examples/code/integrations/github/custom_auth.js b/examples/code/integrations/github/custom_auth.js index 19e586250..86694c1fb 100644 --- a/examples/code/integrations/github/custom_auth.js +++ b/examples/code/integrations/github/custom_auth.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const userId = "user@example.com"; +const userId = "{arcade_user_id}"; /* In this example, we will use Arcade to authenticate with GitHub and retrieve diff --git a/examples/code/integrations/github/custom_auth.py b/examples/code/integrations/github/custom_auth.py index 58e73c95a..49ed6e780 100644 --- a/examples/code/integrations/github/custom_auth.py +++ b/examples/code/integrations/github/custom_auth.py @@ -3,7 +3,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -user_id = "user@example.com" +user_id = "{arcade_user_id}" """ In this example, we will use Arcade to authenticate with GitHub and retrieve diff --git a/examples/code/integrations/google/custom_auth.js b/examples/code/integrations/google/custom_auth.js index bf8375e34..6d81c732e 100644 --- a/examples/code/integrations/google/custom_auth.js +++ b/examples/code/integrations/google/custom_auth.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const userId = "user@example.com"; +const userId = "{arcade_user_id}"; /* In this example, we will use Arcade to authenticate with Google and diff --git a/examples/code/integrations/google/custom_auth.py b/examples/code/integrations/google/custom_auth.py index 40255cd21..125e461d6 100644 --- a/examples/code/integrations/google/custom_auth.py +++ b/examples/code/integrations/google/custom_auth.py @@ -4,7 +4,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -user_id = "user@example.com" +user_id = "{arcade_user_id}" """ In this example, we will use Arcade to authenticate with Google and diff --git a/examples/code/integrations/hubspot/custom_auth.js b/examples/code/integrations/hubspot/custom_auth.js index fd21f58bd..6bbb0d437 100644 --- a/examples/code/integrations/hubspot/custom_auth.js +++ b/examples/code/integrations/hubspot/custom_auth.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade({ baseURL: "https://api.arcade.dev" }); // Automatically finds the `ARCADE_API_KEY` env variable -const userId = "user@example.com"; +const userId = "{arcade_user_id}"; // Start the authorization process const authResponse = await client.auth.start(userId, "hubspot", { diff --git a/examples/code/integrations/hubspot/custom_auth.py b/examples/code/integrations/hubspot/custom_auth.py index 3ea9227e3..6dce8d9ef 100644 --- a/examples/code/integrations/hubspot/custom_auth.py +++ b/examples/code/integrations/hubspot/custom_auth.py @@ -2,7 +2,7 @@ client = Arcade(base_url="https://api.arcade.dev") # Automatically finds the `ARCADE_API_KEY` env variable -user_id = "user@example.com" +user_id = "{arcade_user_id}" # Start the authorization process auth_response = client.auth.start( diff --git a/examples/code/integrations/hubspot/custom_tool_call.js b/examples/code/integrations/hubspot/custom_tool_call.js index ac9cff4d3..5e711d651 100644 --- a/examples/code/integrations/hubspot/custom_tool_call.js +++ b/examples/code/integrations/hubspot/custom_tool_call.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade({ baseURL: "https://api.arcade.dev" }); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Hubspot.GetCompanyDetails"; // Start the authorization process diff --git a/examples/code/integrations/hubspot/custom_tool_call.py b/examples/code/integrations/hubspot/custom_tool_call.py index bd34fe454..173476ea4 100644 --- a/examples/code/integrations/hubspot/custom_tool_call.py +++ b/examples/code/integrations/hubspot/custom_tool_call.py @@ -2,7 +2,7 @@ client = Arcade(base_url="https://api.arcade.dev") # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Hubspot.GetCompanyDetails" auth_response = client.tools.authorize(tool_name=TOOL_NAME, user_id=USER_ID) diff --git a/examples/code/integrations/linkedin/custom_auth.js b/examples/code/integrations/linkedin/custom_auth.js index e8612c7c4..3844f53e5 100644 --- a/examples/code/integrations/linkedin/custom_auth.js +++ b/examples/code/integrations/linkedin/custom_auth.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const userId = "user@example.com"; +const userId = "{arcade_user_id}"; /* In this example, we will use Arcade to authenticate with LinkedIn and post a diff --git a/examples/code/integrations/linkedin/custom_auth.py b/examples/code/integrations/linkedin/custom_auth.py index 174acb5e4..8c6f339df 100644 --- a/examples/code/integrations/linkedin/custom_auth.py +++ b/examples/code/integrations/linkedin/custom_auth.py @@ -5,7 +5,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -user_id = "user@example.com" +user_id = "{arcade_user_id}" """ In this example, we will use Arcade to authenticate with LinkedIn and post a diff --git a/examples/code/integrations/microsoft/custom_auth.js b/examples/code/integrations/microsoft/custom_auth.js index 40176cb21..bc4caaec7 100644 --- a/examples/code/integrations/microsoft/custom_auth.js +++ b/examples/code/integrations/microsoft/custom_auth.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); -const userId = "user@example.com"; +const userId = "{arcade_user_id}"; // Start the authorization process let authResponse = await client.auth.start(userId, "microsoft", { diff --git a/examples/code/integrations/microsoft/custom_auth.py b/examples/code/integrations/microsoft/custom_auth.py index 844ae7a0c..74c76b8ae 100644 --- a/examples/code/integrations/microsoft/custom_auth.py +++ b/examples/code/integrations/microsoft/custom_auth.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -user_id = "user@example.com" +user_id = "{arcade_user_id}" # Start the authorization process auth_response = client.auth.start( diff --git a/examples/code/integrations/notion/custom_auth.js b/examples/code/integrations/notion/custom_auth.js index 542da93ea..3bf6fe745 100644 --- a/examples/code/integrations/notion/custom_auth.js +++ b/examples/code/integrations/notion/custom_auth.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); -const userId = "user@example.com"; +const userId = "{arcade_user_id}"; // Start the authorization process const authResponse = await client.auth.start(userId, "notion"); diff --git a/examples/code/integrations/notion/custom_auth.py b/examples/code/integrations/notion/custom_auth.py index 43d598072..07a43cb0c 100644 --- a/examples/code/integrations/notion/custom_auth.py +++ b/examples/code/integrations/notion/custom_auth.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -user_id = "user@example.com" +user_id = "{arcade_user_id}" # Start the authorization process auth_response = client.auth.start( diff --git a/examples/code/integrations/oauth2/custom_auth.js b/examples/code/integrations/oauth2/custom_auth.js index 179179972..3d92ce470 100644 --- a/examples/code/integrations/oauth2/custom_auth.js +++ b/examples/code/integrations/oauth2/custom_auth.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const userId = "user@example.com"; +const userId = "{arcade_user_id}"; // Start the authorization process let authResponse = await client.auth.start(userId, "hooli", [ diff --git a/examples/code/integrations/oauth2/custom_auth.py b/examples/code/integrations/oauth2/custom_auth.py index 42554cff0..e7407919d 100644 --- a/examples/code/integrations/oauth2/custom_auth.py +++ b/examples/code/integrations/oauth2/custom_auth.py @@ -3,7 +3,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -user_id = "user@example.com" +user_id = "{arcade_user_id}" # Start the authorization process auth_response = client.auth.start( diff --git a/examples/code/integrations/reddit/custom_auth.js b/examples/code/integrations/reddit/custom_auth.js index a53995912..657042935 100644 --- a/examples/code/integrations/reddit/custom_auth.js +++ b/examples/code/integrations/reddit/custom_auth.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); -const userId = "user@example.com"; +const userId = "{arcade_user_id}"; // Start the authorization process const authResponse = await client.auth.start(userId, "reddit", { diff --git a/examples/code/integrations/reddit/custom_auth.py b/examples/code/integrations/reddit/custom_auth.py index 61799be8d..3a3d94beb 100644 --- a/examples/code/integrations/reddit/custom_auth.py +++ b/examples/code/integrations/reddit/custom_auth.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -user_id = "user@example.com" +user_id = "{arcade_user_id}" # Start the authorization process auth_response = client.auth.start( diff --git a/examples/code/integrations/salesforce/custom_auth.js b/examples/code/integrations/salesforce/custom_auth.js index a02a79681..d7a8296c7 100644 --- a/examples/code/integrations/salesforce/custom_auth.js +++ b/examples/code/integrations/salesforce/custom_auth.js @@ -4,7 +4,7 @@ const client = new Arcade((baseURL = "http://localhost:9099")); // Automatically const salesforceProviderId = "salesforce"; const salesforceOrgSubdomain = "salesforce-org-subdomain"; -const userId = "user@example.com"; +const userId = "{arcade_user_id}"; const scopes = ["read_account"]; // Start the authorization process diff --git a/examples/code/integrations/salesforce/custom_auth.py b/examples/code/integrations/salesforce/custom_auth.py index bb3d167a2..939b61686 100644 --- a/examples/code/integrations/salesforce/custom_auth.py +++ b/examples/code/integrations/salesforce/custom_auth.py @@ -5,7 +5,7 @@ salesforce_provider_id = "salesforce" salesforce_org_subdomain = "salesforce-org-subdomain" -user_id = "user@example.com" +user_id = "{arcade_user_id}" scopes = ["read_account"] # Start the authorization process diff --git a/examples/code/integrations/slack/custom_auth.js b/examples/code/integrations/slack/custom_auth.js index cd821f192..128cc4146 100644 --- a/examples/code/integrations/slack/custom_auth.js +++ b/examples/code/integrations/slack/custom_auth.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const userId = "user@example.com"; +const userId = "{arcade_user_id}"; // Start the authorization process let authResponse = await client.auth.start(userId, "slack", { diff --git a/examples/code/integrations/slack/custom_auth.py b/examples/code/integrations/slack/custom_auth.py index 1853b83d4..d774aebae 100644 --- a/examples/code/integrations/slack/custom_auth.py +++ b/examples/code/integrations/slack/custom_auth.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -user_id = "user@example.com" +user_id = "{arcade_user_id}" # Start the authorization process auth_response = client.auth.start( diff --git a/examples/code/integrations/spotify/custom_auth.js b/examples/code/integrations/spotify/custom_auth.js index 12baec4a1..dbb5a4813 100644 --- a/examples/code/integrations/spotify/custom_auth.js +++ b/examples/code/integrations/spotify/custom_auth.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const userId = "user@example.com"; +const userId = "{arcade_user_id}"; // Start the authorization process let authResponse = await client.auth.start(userId, "spotify", [ diff --git a/examples/code/integrations/spotify/custom_auth.py b/examples/code/integrations/spotify/custom_auth.py index 8f147b33d..dda2c5d19 100644 --- a/examples/code/integrations/spotify/custom_auth.py +++ b/examples/code/integrations/spotify/custom_auth.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -user_id = "user@example.com" +user_id = "{arcade_user_id}" # Start the authorization process auth_response = client.auth.start( diff --git a/examples/code/integrations/twitch/custom_auth.js b/examples/code/integrations/twitch/custom_auth.js index f66913bdc..1725ac11a 100644 --- a/examples/code/integrations/twitch/custom_auth.js +++ b/examples/code/integrations/twitch/custom_auth.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); -const userId = "user@example.com"; +const userId = "{arcade_user_id}"; // Start the authorization process const authResponse = await client.auth.start(userId, "twitch", { diff --git a/examples/code/integrations/twitch/custom_auth.py b/examples/code/integrations/twitch/custom_auth.py index ee7e50713..dbbdf8679 100644 --- a/examples/code/integrations/twitch/custom_auth.py +++ b/examples/code/integrations/twitch/custom_auth.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -user_id = "user@example.com" +user_id = "{arcade_user_id}" # Start the authorization process auth_response = client.auth.start( diff --git a/examples/code/integrations/x/custom_auth.js b/examples/code/integrations/x/custom_auth.js index 0027258f5..ea492464b 100644 --- a/examples/code/integrations/x/custom_auth.js +++ b/examples/code/integrations/x/custom_auth.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const userId = "user@example.com"; +const userId = "{arcade_user_id}"; // Start the authorization process let authResponse = await client.auth.start(userId, "x", [ diff --git a/examples/code/integrations/x/custom_auth.py b/examples/code/integrations/x/custom_auth.py index 324b92ede..a3e54ea96 100644 --- a/examples/code/integrations/x/custom_auth.py +++ b/examples/code/integrations/x/custom_auth.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -user_id = "user@example.com" +user_id = "{arcade_user_id}" # Start the authorization process auth_response = client.auth.start( diff --git a/examples/code/integrations/zoom/custom_auth.js b/examples/code/integrations/zoom/custom_auth.js index 84d8390ca..0a1ddfadb 100644 --- a/examples/code/integrations/zoom/custom_auth.js +++ b/examples/code/integrations/zoom/custom_auth.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const userId = "user@example.com"; +const userId = "{arcade_user_id}"; // Start the authorization process let authResponse = await client.auth.start(userId, "zoom", [ diff --git a/examples/code/integrations/zoom/custom_auth.py b/examples/code/integrations/zoom/custom_auth.py index bf9f078a1..13f748aad 100644 --- a/examples/code/integrations/zoom/custom_auth.py +++ b/examples/code/integrations/zoom/custom_auth.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -user_id = "user@example.com" +user_id = "{arcade_user_id}" # Start the authorization process auth_response = client.auth.start( diff --git a/package.json b/package.json index 8641dd3f1..0590bfba4 100644 --- a/package.json +++ b/package.json @@ -30,6 +30,7 @@ "homepage": "https://arcade.dev/", "dependencies": { "@icons-pack/react-simple-icons": "^10.2.0", + "@ory/client": "^1.20.22", "@radix-ui/react-checkbox": "^1.2.3", "@radix-ui/react-dialog": "^1.1.6", "@radix-ui/react-label": "^2.1.4", diff --git a/pages/home/auth/auth-tool-calling.mdx b/pages/home/auth/auth-tool-calling.mdx index 16148d830..4983bd3d9 100644 --- a/pages/home/auth/auth-tool-calling.mdx +++ b/pages/home/auth/auth-tool-calling.mdx @@ -53,7 +53,7 @@ This authorization must be approved by the user. By approving, the user allows y ```python # As the developer, you must identify the user you're authorizing # and pass a unique identifier for them (e.g. an email or user ID) to Arcade: -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" # Request access to the user's Gmail account auth_response = client.tools.authorize( @@ -70,7 +70,7 @@ if auth_response.status != "completed": ```js // As the developer, you must identify the user you're authorizing // and pass a unique identifier for them (e.g. an email or user ID) to Arcade: -const userId = "you@example.com"; +const userId = "{arcade_user_id}"; // Request access to the user's Gmail account const authResponse = await client.tools.authorize({ diff --git a/pages/home/auth/call-third-party-apis-directly.mdx b/pages/home/auth/call-third-party-apis-directly.mdx index 56b2d928b..8e693f320 100644 --- a/pages/home/auth/call-third-party-apis-directly.mdx +++ b/pages/home/auth/call-third-party-apis-directly.mdx @@ -78,7 +78,7 @@ Create an instance of the Arcade client: ### Initiate an authorization request -Use `client.auth.start` to initiate the authorization process: +Use `client.auth.start()` to initiate the authorization process: @@ -87,7 +87,7 @@ Use `client.auth.start` to initiate the authorization process: ``` -```javascript file=/examples/code/guides/agentauth/auth_with_google.js#L16-L22 +```javascript file=/examples/code/guides/agentauth/auth_with_google.js#L16-L24 ``` @@ -104,7 +104,7 @@ If authorization is not completed, prompt the user to visit the authorization UR ``` -```javascript file=/examples/code/guides/agentauth/auth_with_google.js#L24-L27 +```javascript file=/examples/code/guides/agentauth/auth_with_google.js#L26-L29 ``` @@ -119,7 +119,7 @@ If authorization is not completed, prompt the user to visit the authorization UR ``` -```javascript file=/examples/code/guides/agentauth/auth_with_google.js#L30 +```javascript file=/examples/code/guides/agentauth/auth_with_google.js#L32 ``` @@ -136,7 +136,7 @@ Once authorization is complete, you can use the obtained token to access the thi ``` -```javascript file=/examples/code/guides/agentauth/auth_with_google.js#L36-L47 +```javascript file=/examples/code/guides/agentauth/auth_with_google.js#L39-L49 ``` diff --git a/pages/home/auth/tool-auth-status.mdx b/pages/home/auth/tool-auth-status.mdx index 0f2adf60b..b1a322e98 100644 --- a/pages/home/auth/tool-auth-status.mdx +++ b/pages/home/auth/tool-auth-status.mdx @@ -44,7 +44,7 @@ You can get a list of all available tools and check their authorization status f ```python -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" # Get all tools for the user tools = client.tools.list(user_id=USER_ID) @@ -73,7 +73,7 @@ for tool in tools: ```js -const userId = "you@example.com"; +const userId = "{arcade_user_id}"; // Get all tools for the user const tools = await client.tools.list({ user_id: userId }); @@ -119,7 +119,7 @@ You can also check the authorization status for a specific tool by name: ```python -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Google.ListEmails" # Get specific tool details @@ -149,7 +149,7 @@ if tool.requirements: ```js -const userId = "you@example.com"; +const userId = "{arcade_user_id}"; const toolName = "Google.ListEmails"; // Get specific tool details diff --git a/pages/home/build-tools/create-a-tool-with-auth.mdx b/pages/home/build-tools/create-a-tool-with-auth.mdx index f2fecc1e2..53c4a47c2 100644 --- a/pages/home/build-tools/create-a-tool-with-auth.mdx +++ b/pages/home/build-tools/create-a-tool-with-auth.mdx @@ -113,7 +113,7 @@ from arcadepy import Arcade client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -user_id = "user@example.com" +user_id = "{arcade_user_id}" # Use the tool response = client.tools.execute( diff --git a/pages/home/crewai/use-arcade-tools.mdx b/pages/home/crewai/use-arcade-tools.mdx index af43f9e0b..bd74983a9 100644 --- a/pages/home/crewai/use-arcade-tools.mdx +++ b/pages/home/crewai/use-arcade-tools.mdx @@ -41,7 +41,7 @@ Use the `ArcadeToolManager` to initialize, add, and get Arcade tools: ```python from crewai_arcade import ArcadeToolManager -manager = ArcadeToolManager(default_user_id="user@example.com") +manager = ArcadeToolManager(default_user_id="{arcade_user_id}") """ Retrieves the provided tools and/or toolkits as CrewAI StructuredTools. diff --git a/pages/home/faq.mdx b/pages/home/faq.mdx index 63d7896b9..d62034507 100644 --- a/pages/home/faq.mdx +++ b/pages/home/faq.mdx @@ -36,7 +36,7 @@ This is an important observation. Technically, both included and custom provider ### Can my users connect multiple accounts of the same provider? -Today this is possible if you assign multiple Arcade `user_id`s to the same user on your system. You will need to manage the mapping between users in your system and the different Arcade `user_id`s assigned to them. +Please [contact us](mailto:support@arcade.dev) if you need this feature. ### Can I authenticate multiple tools at once? @@ -51,7 +51,7 @@ Tools](/home/auth-providers/google), you can use this code to authenticate once: from arcadepy import Arcade client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" # get the list of tools tools = client.tools.list(toolkit="Google") @@ -79,7 +79,7 @@ if auth_response.status != "complete": import Arcade from "@arcadeai/arcadejs"; const client = new Arcade(); -const user_id = "user@example.com"; +const user_id = "{arcade_user_id}"; // get the list of tools const googleToolkit = await client.tools.list({toolkit: "google"}) diff --git a/pages/home/google-adk/overview.mdx b/pages/home/google-adk/overview.mdx index f5c8d59dd..40d7e7ae3 100644 --- a/pages/home/google-adk/overview.mdx +++ b/pages/home/google-adk/overview.mdx @@ -44,7 +44,7 @@ from google_adk_arcade.tools import get_arcade_tools async def main(): app_name = 'my_app' - user_id = 'user@example.com' + user_id = '{arcade_user_id}' session_service = InMemorySessionService() artifact_service = InMemoryArtifactService() client = AsyncArcade() diff --git a/pages/home/langchain/auth-langchain-tools.mdx b/pages/home/langchain/auth-langchain-tools.mdx index e6fd833e3..d6c127019 100644 --- a/pages/home/langchain/auth-langchain-tools.mdx +++ b/pages/home/langchain/auth-langchain-tools.mdx @@ -82,7 +82,7 @@ const arcade = new Arcade(); ```python -user_id = "user@example.com" +user_id = "{arcade_user_id}" auth_response = client.auth.start( user_id=user_id, provider="google", @@ -92,7 +92,7 @@ auth_response = client.auth.start( ```javascript -const USER_ID = "user@example.com"; +const USER_ID = "{arcade_user_id}"; const authResponse = await arcade.auth.start(USER_ID, "google", { scopes: ["https://www.googleapis.com/auth/gmail.readonly"], }); diff --git a/pages/home/langchain/use-arcade-tools.mdx b/pages/home/langchain/use-arcade-tools.mdx index dab51d667..6354d74b3 100644 --- a/pages/home/langchain/use-arcade-tools.mdx +++ b/pages/home/langchain/use-arcade-tools.mdx @@ -164,7 +164,7 @@ Supply a basic config dictionary and a user query. Notice that user_id is requir config = { "configurable": { "thread_id": "1", - "user_id": "user@example.coom" + "user_id": "{arcade_user_id}" } } user_input = { @@ -179,7 +179,7 @@ user_input = { const config = { configurable: { thread_id: "1", - user_id: "user@example.com", + user_id: "{arcade_user_id}", }, streamMode: "values" as const, }; diff --git a/pages/home/langchain/user-auth-interrupts.mdx b/pages/home/langchain/user-auth-interrupts.mdx index d7097a061..f491931ea 100644 --- a/pages/home/langchain/user-auth-interrupts.mdx +++ b/pages/home/langchain/user-auth-interrupts.mdx @@ -85,7 +85,7 @@ import { ChatOpenAI } from "@langchain/openai"; const arcade = new Arcade(); // Replace with your application's user ID (e.g. email address, UUID, etc.) -const USER_ID = "user@example.com"; +const USER_ID = "{arcade_user_id}"; // Initialize tools from Google toolkit const googleToolkit = await arcade.tools.list({ toolkit: "google", limit: 30 }); @@ -324,7 +324,7 @@ inputs = { } # Configuration with thread and user IDs for authorization purposes -config = {"configurable": {"thread_id": "4", "user_id": "user@example.com"}} +config = {"configurable": {"thread_id": "4", "user_id": "{arcade_user_id}"}} # Run the graph and stream the outputs for chunk in graph.stream(inputs, config=config, stream_mode="values"): diff --git a/pages/home/oai-agents/overview.mdx b/pages/home/oai-agents/overview.mdx index be2f88a67..7f85f97fc 100644 --- a/pages/home/oai-agents/overview.mdx +++ b/pages/home/oai-agents/overview.mdx @@ -76,7 +76,7 @@ async def main(): result = await Runner.run( starting_agent=google_agent, input="What are my latest emails?", - context={"user_id": "user@example.com"}, + context={"user_id": "{arcade_user_id}"}, ) print("Final output:\n\n", result.final_output) except AuthorizationError as e: diff --git a/pages/home/oai-agents/use-arcade-tools.mdx b/pages/home/oai-agents/use-arcade-tools.mdx index db97dec73..1e1567ae1 100644 --- a/pages/home/oai-agents/use-arcade-tools.mdx +++ b/pages/home/oai-agents/use-arcade-tools.mdx @@ -191,7 +191,7 @@ try: result = await Runner.run( starting_agent=google_agent, input="What are my latest emails?", - context={"user_id": "user@example.com"}, + context={"user_id": "{arcade_user_id}"}, ) print("Final output:\n\n", result.final_output) except AuthorizationError as e: @@ -200,7 +200,7 @@ except AuthorizationError as e: - + ```javascript const result = await run(googleAgent, "What are my latest emails?"); ``` @@ -273,7 +273,7 @@ async def main(): result = await Runner.run( starting_agent=google_agent, input="What are my latest emails?", - context={"user_id": "user@example.com"}, + context={"user_id": "{arcade_user_id}"}, ) print("Final output:\n\n", result.final_output) except AuthorizationError as e: diff --git a/pages/home/oai-agents/user-auth-interrupts.mdx b/pages/home/oai-agents/user-auth-interrupts.mdx index 512595e07..4b41fbb20 100644 --- a/pages/home/oai-agents/user-auth-interrupts.mdx +++ b/pages/home/oai-agents/user-auth-interrupts.mdx @@ -134,7 +134,7 @@ try: starting_agent=github_agent, input="Star the arcadeai/arcade-ai repo", # Pass a unique user_id for authentication - context={"user_id": "user@example.com"}, + context={"user_id": "{arcade_user_id}"}, ) print("Final output:\n\n", result.final_output) except AuthorizationError as e: @@ -240,7 +240,7 @@ except AuthorizationError as e: result = await Runner.run( starting_agent=github_agent, input="Star the arcadeai/arcade-ai repo", - context={"user_id": "user@example.com"}, + context={"user_id": "{arcade_user_id}"}, ) print("Final output:\n\n", result.final_output) ``` @@ -278,7 +278,7 @@ while (true) { if (response.status !== "completed") { console.log(`Please complete the authorization challenge in your browser: ${response.url}`); } - + // Wait for the authorization to complete await client.auth.waitForCompletion(response); console.log("Authorization completed, retrying..."); @@ -324,7 +324,7 @@ async def main(): tools=tools, ) - user_id = "user@example.com" # Make sure to use a unique user ID + user_id = "{arcade_user_id}" # Make sure to use a unique user ID while True: try: diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ae18bfa91..a76058b2e 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -24,6 +24,9 @@ importers: '@icons-pack/react-simple-icons': specifier: ^10.2.0 version: 10.2.0(react@19.0.0) + '@ory/client': + specifier: ^1.20.22 + version: 1.20.22 '@radix-ui/react-checkbox': specifier: ^1.2.3 version: 1.2.3(@types/react-dom@19.0.3(@types/react@19.0.7))(@types/react@19.0.7)(react-dom@19.0.0(react@19.0.0))(react@19.0.0) @@ -857,6 +860,9 @@ packages: resolution: {integrity: sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==} engines: {node: '>=12.4.0'} + '@ory/client@1.20.22': + resolution: {integrity: sha512-N0UixgrJ7Xi0O5bttaFbJrtQhZAi61z69d9p/3tn71/nfBPOVTb8mOJIOlPhQIECj/11A65ttzI2R0QhEIeQEw==} + '@pkgjs/parseargs@0.11.0': resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} engines: {node: '>=14'} @@ -1912,6 +1918,9 @@ packages: async-sema@3.1.1: resolution: {integrity: sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==} + asynckit@0.4.0: + resolution: {integrity: sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==} + autoprefixer@10.4.20: resolution: {integrity: sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==} engines: {node: ^10 || ^12 || >=14} @@ -1927,6 +1936,9 @@ packages: resolution: {integrity: sha512-RE3mdQ7P3FRSe7eqCWoeQ/Z9QXrtniSjp1wUjt5nRC3WIpz5rSCve6o3fsZ2aCpJtrZjSZgjwXAoTO5k4tEI0w==} engines: {node: '>=4'} + axios@1.10.0: + resolution: {integrity: sha512-/1xYAC4MP/HEG+3duIhFr4ZQXR4sQXOIe+o6sdqzeykGLx6Upp/1p8MHqhINOvGeP7xyNHe7tsiJByc4SSVUxw==} + axobject-query@4.1.0: resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} engines: {node: '>= 0.4'} @@ -2113,6 +2125,10 @@ packages: colorette@2.0.20: resolution: {integrity: sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==} + combined-stream@1.0.8: + resolution: {integrity: sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==} + engines: {node: '>= 0.8'} + comma-separated-tokens@1.0.8: resolution: {integrity: sha512-GHuDRO12Sypu2cV70d1dkA2EUmXHgntrzbpvOB+Qy+49ypNfGgFQIC2fhhXbnyrJRynDCAARsT7Ou0M6hirpfw==} @@ -2429,6 +2445,10 @@ packages: delaunator@5.0.1: resolution: {integrity: sha512-8nvh+XBe96aCESrGOqMp/84b13H9cdKbG5P2ejQCh4d4sK9RL4371qou9drQjMhvnPmhWl5hnmqbEE0fXr9Xnw==} + delayed-stream@1.0.0: + resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==} + engines: {node: '>=0.4.0'} + depd@1.1.2: resolution: {integrity: sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==} engines: {node: '>= 0.6'} @@ -2848,6 +2868,15 @@ packages: flexsearch@0.7.43: resolution: {integrity: sha512-c5o/+Um8aqCSOXGcZoqZOm+NqtVwNsvVpWv6lfmSclU954O3wvQKxxK8zj74fPaSJbXpSLTs4PRhh+wnoCXnKg==} + follow-redirects@1.15.9: + resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==} + engines: {node: '>=4.0'} + peerDependencies: + debug: '*' + peerDependenciesMeta: + debug: + optional: true + for-each@0.3.3: resolution: {integrity: sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==} @@ -2855,6 +2884,10 @@ packages: resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==} engines: {node: '>=14'} + form-data@4.0.3: + resolution: {integrity: sha512-qsITQPfmvMOSAdeyZ+12I1c+CKSstAFAwu+97zrnWAbIr5u8wfsExUzCesVLC8NgHuRUqNN4Zy6UPWUTRGslcA==} + engines: {node: '>= 6'} + format@0.2.2: resolution: {integrity: sha512-wzsgA6WOq+09wrU1tsJ09udeR/YZRaeArL9e1wPbFg3GG2yDnC2ldKpxs4xunpFF9DgqCqOIra3bc1HWrJ37Ww==} engines: {node: '>=0.4.x'} @@ -3699,6 +3732,14 @@ packages: resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} engines: {node: '>=8.6'} + mime-db@1.52.0: + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} + engines: {node: '>= 0.6'} + + mime-types@2.1.35: + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} + engines: {node: '>= 0.6'} + mime@3.0.0: resolution: {integrity: sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==} engines: {node: '>=10.0.0'} @@ -4283,6 +4324,9 @@ packages: property-information@6.5.0: resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==} + proxy-from-env@1.1.0: + resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==} + pump@3.0.2: resolution: {integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==} @@ -5972,6 +6016,12 @@ snapshots: '@nolyfill/is-core-module@1.0.39': {} + '@ory/client@1.20.22': + dependencies: + axios: 1.10.0 + transitivePeerDependencies: + - debug + '@pkgjs/parseargs@0.11.0': optional: true @@ -7124,6 +7174,8 @@ snapshots: async-sema@3.1.1: {} + asynckit@0.4.0: {} + autoprefixer@10.4.20(postcss@8.5.1): dependencies: browserslist: 4.24.4 @@ -7140,6 +7192,14 @@ snapshots: axe-core@4.10.2: {} + axios@1.10.0: + dependencies: + follow-redirects: 1.15.9 + form-data: 4.0.3 + proxy-from-env: 1.1.0 + transitivePeerDependencies: + - debug + axobject-query@4.1.0: {} bail@2.0.2: {} @@ -7328,6 +7388,10 @@ snapshots: colorette@2.0.20: {} + combined-stream@1.0.8: + dependencies: + delayed-stream: 1.0.0 + comma-separated-tokens@1.0.8: {} comma-separated-tokens@2.0.3: {} @@ -7630,6 +7694,8 @@ snapshots: dependencies: robust-predicates: 3.0.2 + delayed-stream@1.0.0: {} + depd@1.1.2: {} dequal@2.0.3: {} @@ -8222,6 +8288,8 @@ snapshots: flexsearch@0.7.43: {} + follow-redirects@1.15.9: {} + for-each@0.3.3: dependencies: is-callable: 1.2.7 @@ -8231,6 +8299,14 @@ snapshots: cross-spawn: 7.0.6 signal-exit: 4.1.0 + form-data@4.0.3: + dependencies: + asynckit: 0.4.0 + combined-stream: 1.0.8 + es-set-tostringtag: 2.1.0 + hasown: 2.0.2 + mime-types: 2.1.35 + format@0.2.2: {} fraction.js@4.3.7: {} @@ -9502,6 +9578,12 @@ snapshots: braces: 3.0.3 picomatch: 2.3.1 + mime-db@1.52.0: {} + + mime-types@2.1.35: + dependencies: + mime-db: 1.52.0 + mime@3.0.0: {} mimic-fn@2.1.0: {} @@ -10056,6 +10138,8 @@ snapshots: property-information@6.5.0: {} + proxy-from-env@1.1.0: {} + pump@3.0.2: dependencies: end-of-stream: 1.4.4 diff --git a/public/examples/integrations/toolkits/code-sandbox/create_static_matplotlib_chart_example_call_tool.js b/public/examples/integrations/toolkits/code-sandbox/create_static_matplotlib_chart_example_call_tool.js index ac0748ce8..8bd0dcbc3 100644 --- a/public/examples/integrations/toolkits/code-sandbox/create_static_matplotlib_chart_example_call_tool.js +++ b/public/examples/integrations/toolkits/code-sandbox/create_static_matplotlib_chart_example_call_tool.js @@ -3,7 +3,7 @@ import { Arcade } from "@arcadeai/arcadejs"; // Initialize the Arcade client const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "CodeSandbox.CreateStaticMatplotlibChart"; // Define the code to create a chart diff --git a/public/examples/integrations/toolkits/code-sandbox/create_static_matplotlib_chart_example_call_tool.py b/public/examples/integrations/toolkits/code-sandbox/create_static_matplotlib_chart_example_call_tool.py index e3520ee18..433abedde 100644 --- a/public/examples/integrations/toolkits/code-sandbox/create_static_matplotlib_chart_example_call_tool.py +++ b/public/examples/integrations/toolkits/code-sandbox/create_static_matplotlib_chart_example_call_tool.py @@ -3,7 +3,7 @@ # Initialize the Arcade client client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "CodeSandbox.CreateStaticMatplotlibChart" # Define the code to create a chart diff --git a/public/examples/integrations/toolkits/code-sandbox/run_code_example_call_tool.js b/public/examples/integrations/toolkits/code-sandbox/run_code_example_call_tool.js index 4d70ea720..73144594a 100644 --- a/public/examples/integrations/toolkits/code-sandbox/run_code_example_call_tool.js +++ b/public/examples/integrations/toolkits/code-sandbox/run_code_example_call_tool.js @@ -3,7 +3,7 @@ import { Arcade } from "@arcadeai/arcadejs"; // Initialize the Arcade client const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "CodeSandbox.RunCode"; // Define the code to merge sort a list diff --git a/public/examples/integrations/toolkits/code-sandbox/run_code_example_call_tool.py b/public/examples/integrations/toolkits/code-sandbox/run_code_example_call_tool.py index a9b054b70..7320c69a9 100644 --- a/public/examples/integrations/toolkits/code-sandbox/run_code_example_call_tool.py +++ b/public/examples/integrations/toolkits/code-sandbox/run_code_example_call_tool.py @@ -3,7 +3,7 @@ # Initialize the Arcade client client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "CodeSandbox.RunCode" # Define the code to merge sort a list diff --git a/public/examples/integrations/toolkits/confluence/create_page_example_call_tool.js b/public/examples/integrations/toolkits/confluence/create_page_example_call_tool.js index 785b4307c..8b3791c8f 100644 --- a/public/examples/integrations/toolkits/confluence/create_page_example_call_tool.js +++ b/public/examples/integrations/toolkits/confluence/create_page_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Confluence.CreatePage"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/confluence/create_page_example_call_tool.py b/public/examples/integrations/toolkits/confluence/create_page_example_call_tool.py index af24a6fa1..b558990f6 100644 --- a/public/examples/integrations/toolkits/confluence/create_page_example_call_tool.py +++ b/public/examples/integrations/toolkits/confluence/create_page_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Confluence.CreatePage" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/confluence/get_attachments_for_page_example_call_tool.js b/public/examples/integrations/toolkits/confluence/get_attachments_for_page_example_call_tool.js index 7af616316..c0e8329c2 100644 --- a/public/examples/integrations/toolkits/confluence/get_attachments_for_page_example_call_tool.js +++ b/public/examples/integrations/toolkits/confluence/get_attachments_for_page_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Confluence.GetAttachmentsForPage"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/confluence/get_attachments_for_page_example_call_tool.py b/public/examples/integrations/toolkits/confluence/get_attachments_for_page_example_call_tool.py index b4a4ec4e3..3b1da1ab2 100644 --- a/public/examples/integrations/toolkits/confluence/get_attachments_for_page_example_call_tool.py +++ b/public/examples/integrations/toolkits/confluence/get_attachments_for_page_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Confluence.GetAttachmentsForPage" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/confluence/get_page_example_call_tool.js b/public/examples/integrations/toolkits/confluence/get_page_example_call_tool.js index a75c8a776..1a523877c 100644 --- a/public/examples/integrations/toolkits/confluence/get_page_example_call_tool.js +++ b/public/examples/integrations/toolkits/confluence/get_page_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Confluence.GetPage"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/confluence/get_page_example_call_tool.py b/public/examples/integrations/toolkits/confluence/get_page_example_call_tool.py index 849283a83..3fba2d893 100644 --- a/public/examples/integrations/toolkits/confluence/get_page_example_call_tool.py +++ b/public/examples/integrations/toolkits/confluence/get_page_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Confluence.GetPage" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/confluence/get_pages_by_id_example_call_tool.js b/public/examples/integrations/toolkits/confluence/get_pages_by_id_example_call_tool.js index d1f821d1a..42e6f90c4 100644 --- a/public/examples/integrations/toolkits/confluence/get_pages_by_id_example_call_tool.js +++ b/public/examples/integrations/toolkits/confluence/get_pages_by_id_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Confluence.GetPagesById"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/confluence/get_pages_by_id_example_call_tool.py b/public/examples/integrations/toolkits/confluence/get_pages_by_id_example_call_tool.py index 4bdd4426b..e0f1048f8 100644 --- a/public/examples/integrations/toolkits/confluence/get_pages_by_id_example_call_tool.py +++ b/public/examples/integrations/toolkits/confluence/get_pages_by_id_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Confluence.GetPagesById" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/confluence/get_space_example_call_tool.js b/public/examples/integrations/toolkits/confluence/get_space_example_call_tool.js index eed83c6a5..2dbb06c5a 100644 --- a/public/examples/integrations/toolkits/confluence/get_space_example_call_tool.js +++ b/public/examples/integrations/toolkits/confluence/get_space_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Confluence.GetSpace"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/confluence/get_space_example_call_tool.py b/public/examples/integrations/toolkits/confluence/get_space_example_call_tool.py index 8697baf9d..f2f88292e 100644 --- a/public/examples/integrations/toolkits/confluence/get_space_example_call_tool.py +++ b/public/examples/integrations/toolkits/confluence/get_space_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Confluence.GetSpace" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/confluence/get_space_hierarchy_example_call_tool.js b/public/examples/integrations/toolkits/confluence/get_space_hierarchy_example_call_tool.js index 905afac99..b5caadda0 100644 --- a/public/examples/integrations/toolkits/confluence/get_space_hierarchy_example_call_tool.js +++ b/public/examples/integrations/toolkits/confluence/get_space_hierarchy_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Confluence.GetSpaceHierarchy"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/confluence/get_space_hierarchy_example_call_tool.py b/public/examples/integrations/toolkits/confluence/get_space_hierarchy_example_call_tool.py index 3a8057b27..aad4db913 100644 --- a/public/examples/integrations/toolkits/confluence/get_space_hierarchy_example_call_tool.py +++ b/public/examples/integrations/toolkits/confluence/get_space_hierarchy_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Confluence.GetSpaceHierarchy" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/confluence/list_attachments_example_call_tool.js b/public/examples/integrations/toolkits/confluence/list_attachments_example_call_tool.js index ae8205db6..5a5651545 100644 --- a/public/examples/integrations/toolkits/confluence/list_attachments_example_call_tool.js +++ b/public/examples/integrations/toolkits/confluence/list_attachments_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Confluence.ListAttachments"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/confluence/list_attachments_example_call_tool.py b/public/examples/integrations/toolkits/confluence/list_attachments_example_call_tool.py index 9329910a4..e6697015e 100644 --- a/public/examples/integrations/toolkits/confluence/list_attachments_example_call_tool.py +++ b/public/examples/integrations/toolkits/confluence/list_attachments_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Confluence.ListAttachments" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/confluence/list_pages_example_call_tool.js b/public/examples/integrations/toolkits/confluence/list_pages_example_call_tool.js index a38f4aaf4..34027766a 100644 --- a/public/examples/integrations/toolkits/confluence/list_pages_example_call_tool.js +++ b/public/examples/integrations/toolkits/confluence/list_pages_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Confluence.ListPages"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/confluence/list_pages_example_call_tool.py b/public/examples/integrations/toolkits/confluence/list_pages_example_call_tool.py index 55cf88d59..0ef1a354a 100644 --- a/public/examples/integrations/toolkits/confluence/list_pages_example_call_tool.py +++ b/public/examples/integrations/toolkits/confluence/list_pages_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Confluence.ListPages" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/confluence/list_spaces_example_call_tool.js b/public/examples/integrations/toolkits/confluence/list_spaces_example_call_tool.js index 2ebf22ae3..0c719f13a 100644 --- a/public/examples/integrations/toolkits/confluence/list_spaces_example_call_tool.js +++ b/public/examples/integrations/toolkits/confluence/list_spaces_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Confluence.ListSpaces"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/confluence/list_spaces_example_call_tool.py b/public/examples/integrations/toolkits/confluence/list_spaces_example_call_tool.py index eee9399cf..529572fc3 100644 --- a/public/examples/integrations/toolkits/confluence/list_spaces_example_call_tool.py +++ b/public/examples/integrations/toolkits/confluence/list_spaces_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Confluence.ListSpaces" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/confluence/rename_page_example_call_tool.js b/public/examples/integrations/toolkits/confluence/rename_page_example_call_tool.js index df1785723..208b470aa 100644 --- a/public/examples/integrations/toolkits/confluence/rename_page_example_call_tool.js +++ b/public/examples/integrations/toolkits/confluence/rename_page_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Confluence.RenamePage"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/confluence/rename_page_example_call_tool.py b/public/examples/integrations/toolkits/confluence/rename_page_example_call_tool.py index 5c0fcf868..51817e2fb 100644 --- a/public/examples/integrations/toolkits/confluence/rename_page_example_call_tool.py +++ b/public/examples/integrations/toolkits/confluence/rename_page_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Confluence.RenamePage" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/confluence/search_content_example_call_tool.js b/public/examples/integrations/toolkits/confluence/search_content_example_call_tool.js index 87e7c6d50..b3e817ca9 100644 --- a/public/examples/integrations/toolkits/confluence/search_content_example_call_tool.js +++ b/public/examples/integrations/toolkits/confluence/search_content_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Confluence.SearchContent"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/confluence/search_content_example_call_tool.py b/public/examples/integrations/toolkits/confluence/search_content_example_call_tool.py index c34cc3a49..4b739f22f 100644 --- a/public/examples/integrations/toolkits/confluence/search_content_example_call_tool.py +++ b/public/examples/integrations/toolkits/confluence/search_content_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Confluence.SearchContent" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/confluence/update_page_content_example_call_tool.js b/public/examples/integrations/toolkits/confluence/update_page_content_example_call_tool.js index 57528da8d..490880e93 100644 --- a/public/examples/integrations/toolkits/confluence/update_page_content_example_call_tool.js +++ b/public/examples/integrations/toolkits/confluence/update_page_content_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Confluence.UpdatePageContent"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/confluence/update_page_content_example_call_tool.py b/public/examples/integrations/toolkits/confluence/update_page_content_example_call_tool.py index 8913f672d..fba48dbbe 100644 --- a/public/examples/integrations/toolkits/confluence/update_page_content_example_call_tool.py +++ b/public/examples/integrations/toolkits/confluence/update_page_content_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Confluence.UpdatePageContent" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/github/count_stargazers_example_call_tool.js b/public/examples/integrations/toolkits/github/count_stargazers_example_call_tool.js index e55882e46..f3956253b 100644 --- a/public/examples/integrations/toolkits/github/count_stargazers_example_call_tool.js +++ b/public/examples/integrations/toolkits/github/count_stargazers_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Github.CountStargazers"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/github/count_stargazers_example_call_tool.py b/public/examples/integrations/toolkits/github/count_stargazers_example_call_tool.py index ae9651446..62910eb64 100644 --- a/public/examples/integrations/toolkits/github/count_stargazers_example_call_tool.py +++ b/public/examples/integrations/toolkits/github/count_stargazers_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Github.CountStargazers" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/github/create_issue_comment_example_call_tool.js b/public/examples/integrations/toolkits/github/create_issue_comment_example_call_tool.js index 4aaf939d4..9b1a0b3ec 100644 --- a/public/examples/integrations/toolkits/github/create_issue_comment_example_call_tool.js +++ b/public/examples/integrations/toolkits/github/create_issue_comment_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Github.CreateIssueComment"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/github/create_issue_comment_example_call_tool.py b/public/examples/integrations/toolkits/github/create_issue_comment_example_call_tool.py index 91b4cae62..ba251865c 100644 --- a/public/examples/integrations/toolkits/github/create_issue_comment_example_call_tool.py +++ b/public/examples/integrations/toolkits/github/create_issue_comment_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Github.CreateIssueComment" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/github/create_issue_example_call_tool.js b/public/examples/integrations/toolkits/github/create_issue_example_call_tool.js index ec2865cda..1dde4fd74 100644 --- a/public/examples/integrations/toolkits/github/create_issue_example_call_tool.js +++ b/public/examples/integrations/toolkits/github/create_issue_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Github.CreateIssue"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/github/create_issue_example_call_tool.py b/public/examples/integrations/toolkits/github/create_issue_example_call_tool.py index 9d8a468b5..2f269d323 100644 --- a/public/examples/integrations/toolkits/github/create_issue_example_call_tool.py +++ b/public/examples/integrations/toolkits/github/create_issue_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Github.CreateIssue" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/github/create_reply_for_review_comment_example_call_tool.js b/public/examples/integrations/toolkits/github/create_reply_for_review_comment_example_call_tool.js index ea6fc9763..fea0442a6 100644 --- a/public/examples/integrations/toolkits/github/create_reply_for_review_comment_example_call_tool.js +++ b/public/examples/integrations/toolkits/github/create_reply_for_review_comment_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Github.CreateReplyForReviewComment"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/github/create_reply_for_review_comment_example_call_tool.py b/public/examples/integrations/toolkits/github/create_reply_for_review_comment_example_call_tool.py index 8ab7da71d..f3953da90 100644 --- a/public/examples/integrations/toolkits/github/create_reply_for_review_comment_example_call_tool.py +++ b/public/examples/integrations/toolkits/github/create_reply_for_review_comment_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Github.CreateReplyForReviewComment" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/github/create_review_comment_example_call_tool.js b/public/examples/integrations/toolkits/github/create_review_comment_example_call_tool.js index f031ff6bb..865046eb5 100644 --- a/public/examples/integrations/toolkits/github/create_review_comment_example_call_tool.js +++ b/public/examples/integrations/toolkits/github/create_review_comment_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Github.CreateReviewComment"; // Start the authorization process @@ -32,4 +32,4 @@ const response = await client.tools.execute({ user_id: USER_ID, }); -console.log(response); \ No newline at end of file +console.log(response); \ No newline at end of file diff --git a/public/examples/integrations/toolkits/github/create_review_comment_example_call_tool.py b/public/examples/integrations/toolkits/github/create_review_comment_example_call_tool.py index cfabe1965..0b7ded3f7 100644 --- a/public/examples/integrations/toolkits/github/create_review_comment_example_call_tool.py +++ b/public/examples/integrations/toolkits/github/create_review_comment_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Github.CreateReviewComment" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/github/get_pull_request_example_call_tool.js b/public/examples/integrations/toolkits/github/get_pull_request_example_call_tool.js index 1d87a04fe..479598dba 100644 --- a/public/examples/integrations/toolkits/github/get_pull_request_example_call_tool.js +++ b/public/examples/integrations/toolkits/github/get_pull_request_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Github.GetPullRequest"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/github/get_pull_request_example_call_tool.py b/public/examples/integrations/toolkits/github/get_pull_request_example_call_tool.py index f93add666..f82dd1c9f 100644 --- a/public/examples/integrations/toolkits/github/get_pull_request_example_call_tool.py +++ b/public/examples/integrations/toolkits/github/get_pull_request_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}}" TOOL_NAME = "Github.GetPullRequest" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/github/get_repository_example_call_tool.js b/public/examples/integrations/toolkits/github/get_repository_example_call_tool.js index 8bf298cc4..f24eb10c5 100644 --- a/public/examples/integrations/toolkits/github/get_repository_example_call_tool.js +++ b/public/examples/integrations/toolkits/github/get_repository_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Github.GetRepository"; // Start the authorization process @@ -29,4 +29,4 @@ const response = await client.tools.execute({ user_id: USER_ID, }); -console.log(response); \ No newline at end of file +console.log(response); \ No newline at end of file diff --git a/public/examples/integrations/toolkits/github/get_repository_example_call_tool.py b/public/examples/integrations/toolkits/github/get_repository_example_call_tool.py index d90f7a5e1..ed2d0091d 100644 --- a/public/examples/integrations/toolkits/github/get_repository_example_call_tool.py +++ b/public/examples/integrations/toolkits/github/get_repository_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Github.GetRepository" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/github/list_org_repositories_example_call_tool.js b/public/examples/integrations/toolkits/github/list_org_repositories_example_call_tool.js index 405325d22..805bb5d5e 100644 --- a/public/examples/integrations/toolkits/github/list_org_repositories_example_call_tool.js +++ b/public/examples/integrations/toolkits/github/list_org_repositories_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Github.ListOrgRepositories"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/github/list_org_repositories_example_call_tool.py b/public/examples/integrations/toolkits/github/list_org_repositories_example_call_tool.py index 7bfe59d01..ccd3c5e14 100644 --- a/public/examples/integrations/toolkits/github/list_org_repositories_example_call_tool.py +++ b/public/examples/integrations/toolkits/github/list_org_repositories_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Github.ListOrgRepositories" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/github/list_pull_request_commits_example_call_tool.js b/public/examples/integrations/toolkits/github/list_pull_request_commits_example_call_tool.js index 7420816af..e1fc752fe 100644 --- a/public/examples/integrations/toolkits/github/list_pull_request_commits_example_call_tool.js +++ b/public/examples/integrations/toolkits/github/list_pull_request_commits_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Github.ListPullRequestCommits"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/github/list_pull_request_commits_example_call_tool.py b/public/examples/integrations/toolkits/github/list_pull_request_commits_example_call_tool.py index 9e8d8b2ce..b36d14ed6 100644 --- a/public/examples/integrations/toolkits/github/list_pull_request_commits_example_call_tool.py +++ b/public/examples/integrations/toolkits/github/list_pull_request_commits_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Github.ListPullRequestCommits" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/github/list_pull_requests_example_call_tool.js b/public/examples/integrations/toolkits/github/list_pull_requests_example_call_tool.js index c05c6e87b..ffc288180 100644 --- a/public/examples/integrations/toolkits/github/list_pull_requests_example_call_tool.js +++ b/public/examples/integrations/toolkits/github/list_pull_requests_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}}"; const TOOL_NAME = "Github.ListPullRequests"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/github/list_pull_requests_example_call_tool.py b/public/examples/integrations/toolkits/github/list_pull_requests_example_call_tool.py index 92403d8f7..776511132 100644 --- a/public/examples/integrations/toolkits/github/list_pull_requests_example_call_tool.py +++ b/public/examples/integrations/toolkits/github/list_pull_requests_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Github.ListPullRequests" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/github/list_repository_activities_example_call_tool.js b/public/examples/integrations/toolkits/github/list_repository_activities_example_call_tool.js index 67d7fe104..9c19ed4d7 100644 --- a/public/examples/integrations/toolkits/github/list_repository_activities_example_call_tool.js +++ b/public/examples/integrations/toolkits/github/list_repository_activities_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Github.ListRepositoryActivities"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/github/list_repository_activities_example_call_tool.py b/public/examples/integrations/toolkits/github/list_repository_activities_example_call_tool.py index 127ea040c..8b2d20a85 100644 --- a/public/examples/integrations/toolkits/github/list_repository_activities_example_call_tool.py +++ b/public/examples/integrations/toolkits/github/list_repository_activities_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Github.ListRepositoryActivities" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/github/list_review_comments_in_a_repository_example_call_tool.js b/public/examples/integrations/toolkits/github/list_review_comments_in_a_repository_example_call_tool.js index f2b93fc20..df43bf6a4 100644 --- a/public/examples/integrations/toolkits/github/list_review_comments_in_a_repository_example_call_tool.js +++ b/public/examples/integrations/toolkits/github/list_review_comments_in_a_repository_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Github.ListReviewCommentsInARepository"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/github/list_review_comments_in_a_repository_example_call_tool.py b/public/examples/integrations/toolkits/github/list_review_comments_in_a_repository_example_call_tool.py index 156638d84..000aa3c8e 100644 --- a/public/examples/integrations/toolkits/github/list_review_comments_in_a_repository_example_call_tool.py +++ b/public/examples/integrations/toolkits/github/list_review_comments_in_a_repository_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Github.ListReviewCommentsInARepository" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/github/list_review_comments_on_pull_request_example_call_tool.js b/public/examples/integrations/toolkits/github/list_review_comments_on_pull_request_example_call_tool.js index cdd631bdc..6e509e472 100644 --- a/public/examples/integrations/toolkits/github/list_review_comments_on_pull_request_example_call_tool.js +++ b/public/examples/integrations/toolkits/github/list_review_comments_on_pull_request_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Github.ListReviewCommentsOnPullRequest"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/github/list_review_comments_on_pull_request_example_call_tool.py b/public/examples/integrations/toolkits/github/list_review_comments_on_pull_request_example_call_tool.py index 204e93957..c8860434a 100644 --- a/public/examples/integrations/toolkits/github/list_review_comments_on_pull_request_example_call_tool.py +++ b/public/examples/integrations/toolkits/github/list_review_comments_on_pull_request_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Github.ListReviewCommentsOnPullRequest" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/github/list_stargazers_example_call_tool.js b/public/examples/integrations/toolkits/github/list_stargazers_example_call_tool.js index 5c60f64bb..502e4fddc 100644 --- a/public/examples/integrations/toolkits/github/list_stargazers_example_call_tool.js +++ b/public/examples/integrations/toolkits/github/list_stargazers_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Github.ListStargazers"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/github/list_stargazers_example_call_tool.py b/public/examples/integrations/toolkits/github/list_stargazers_example_call_tool.py index 8fd4d7f11..7ee27380b 100644 --- a/public/examples/integrations/toolkits/github/list_stargazers_example_call_tool.py +++ b/public/examples/integrations/toolkits/github/list_stargazers_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Github.ListStargazers" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/github/set_starred_example_call_tool.js b/public/examples/integrations/toolkits/github/set_starred_example_call_tool.js index 0ef567435..cfe58df02 100644 --- a/public/examples/integrations/toolkits/github/set_starred_example_call_tool.js +++ b/public/examples/integrations/toolkits/github/set_starred_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Github.SetStarred"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/github/set_starred_example_call_tool.py b/public/examples/integrations/toolkits/github/set_starred_example_call_tool.py index 140285227..3f1e0d34c 100644 --- a/public/examples/integrations/toolkits/github/set_starred_example_call_tool.py +++ b/public/examples/integrations/toolkits/github/set_starred_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Github.SetStarred" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/github/update_pull_request_example_call_tool.js b/public/examples/integrations/toolkits/github/update_pull_request_example_call_tool.js index e26c82d87..633e2318b 100644 --- a/public/examples/integrations/toolkits/github/update_pull_request_example_call_tool.js +++ b/public/examples/integrations/toolkits/github/update_pull_request_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Github.UpdatePullRequest"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/github/update_pull_request_example_call_tool.py b/public/examples/integrations/toolkits/github/update_pull_request_example_call_tool.py index 5c728acc9..a198155b6 100644 --- a/public/examples/integrations/toolkits/github/update_pull_request_example_call_tool.py +++ b/public/examples/integrations/toolkits/github/update_pull_request_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Github.UpdatePullRequest" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/google/calendar/create_event_example_call_tool.js b/public/examples/integrations/toolkits/google/calendar/create_event_example_call_tool.js index 493f23422..1449a9301 100644 --- a/public/examples/integrations/toolkits/google/calendar/create_event_example_call_tool.js +++ b/public/examples/integrations/toolkits/google/calendar/create_event_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Google.CreateEvent"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/google/calendar/create_event_example_call_tool.py b/public/examples/integrations/toolkits/google/calendar/create_event_example_call_tool.py index bee049e35..ff0a0b0a2 100644 --- a/public/examples/integrations/toolkits/google/calendar/create_event_example_call_tool.py +++ b/public/examples/integrations/toolkits/google/calendar/create_event_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Google.CreateEvent" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/google/calendar/delete_event_example_call_tool.js b/public/examples/integrations/toolkits/google/calendar/delete_event_example_call_tool.js index ddc027682..c13c80c8c 100644 --- a/public/examples/integrations/toolkits/google/calendar/delete_event_example_call_tool.js +++ b/public/examples/integrations/toolkits/google/calendar/delete_event_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Google.DeleteEvent"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/google/calendar/delete_event_example_call_tool.py b/public/examples/integrations/toolkits/google/calendar/delete_event_example_call_tool.py index bd3caa0e4..8663b8b08 100644 --- a/public/examples/integrations/toolkits/google/calendar/delete_event_example_call_tool.py +++ b/public/examples/integrations/toolkits/google/calendar/delete_event_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Google.DeleteEvent" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/google/calendar/find_free_slots_example_call_tool.js b/public/examples/integrations/toolkits/google/calendar/find_free_slots_example_call_tool.js index cb75c21e3..e751e0444 100644 --- a/public/examples/integrations/toolkits/google/calendar/find_free_slots_example_call_tool.js +++ b/public/examples/integrations/toolkits/google/calendar/find_free_slots_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Google.FindTimeSlotsWhenEveryoneIsFree"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/google/calendar/find_free_slots_example_call_tool.py b/public/examples/integrations/toolkits/google/calendar/find_free_slots_example_call_tool.py index 60ef229ee..554b2b22f 100644 --- a/public/examples/integrations/toolkits/google/calendar/find_free_slots_example_call_tool.py +++ b/public/examples/integrations/toolkits/google/calendar/find_free_slots_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Google.FindTimeSlotsWhenEveryoneIsFree" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/google/calendar/list_calendars_example_call_tool.js b/public/examples/integrations/toolkits/google/calendar/list_calendars_example_call_tool.js index 0ae4e4dff..a82b4abe2 100644 --- a/public/examples/integrations/toolkits/google/calendar/list_calendars_example_call_tool.js +++ b/public/examples/integrations/toolkits/google/calendar/list_calendars_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Google.ListCalendars"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/google/calendar/list_calendars_example_call_tool.py b/public/examples/integrations/toolkits/google/calendar/list_calendars_example_call_tool.py index a6f22d97a..f42085198 100644 --- a/public/examples/integrations/toolkits/google/calendar/list_calendars_example_call_tool.py +++ b/public/examples/integrations/toolkits/google/calendar/list_calendars_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Google.ListCalendars" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/google/calendar/list_events_example_call_tool.js b/public/examples/integrations/toolkits/google/calendar/list_events_example_call_tool.js index 7bfd795f6..6eab677fe 100644 --- a/public/examples/integrations/toolkits/google/calendar/list_events_example_call_tool.js +++ b/public/examples/integrations/toolkits/google/calendar/list_events_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Google.ListEvents"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/google/calendar/list_events_example_call_tool.py b/public/examples/integrations/toolkits/google/calendar/list_events_example_call_tool.py index 3816bdf3a..18b8d14df 100644 --- a/public/examples/integrations/toolkits/google/calendar/list_events_example_call_tool.py +++ b/public/examples/integrations/toolkits/google/calendar/list_events_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Google.ListEvents" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/google/calendar/update_event_example_call_tool.js b/public/examples/integrations/toolkits/google/calendar/update_event_example_call_tool.js index ff43c91f8..0f951224c 100644 --- a/public/examples/integrations/toolkits/google/calendar/update_event_example_call_tool.js +++ b/public/examples/integrations/toolkits/google/calendar/update_event_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Google.UpdateEvent"; // Start the authorization process @@ -33,4 +33,4 @@ const response = await client.tools.execute({ user_id: USER_ID, }); -console.log(response); \ No newline at end of file +console.log(response); \ No newline at end of file diff --git a/public/examples/integrations/toolkits/google/calendar/update_event_example_call_tool.py b/public/examples/integrations/toolkits/google/calendar/update_event_example_call_tool.py index d1ee3c75f..c148aded4 100644 --- a/public/examples/integrations/toolkits/google/calendar/update_event_example_call_tool.py +++ b/public/examples/integrations/toolkits/google/calendar/update_event_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Google.UpdateEvent" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/google/contacts/create_contact_example_call_tool.js b/public/examples/integrations/toolkits/google/contacts/create_contact_example_call_tool.js index 842245d7f..3d80824ed 100644 --- a/public/examples/integrations/toolkits/google/contacts/create_contact_example_call_tool.js +++ b/public/examples/integrations/toolkits/google/contacts/create_contact_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Google.CreateContact"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/google/contacts/create_contact_example_call_tool.py b/public/examples/integrations/toolkits/google/contacts/create_contact_example_call_tool.py index 26ac9f7d3..6a32afff5 100644 --- a/public/examples/integrations/toolkits/google/contacts/create_contact_example_call_tool.py +++ b/public/examples/integrations/toolkits/google/contacts/create_contact_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Google.CreateContact" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/google/contacts/search_contacts_by_email_example_call_tool.js b/public/examples/integrations/toolkits/google/contacts/search_contacts_by_email_example_call_tool.js index 9288123ab..cae3a19bc 100644 --- a/public/examples/integrations/toolkits/google/contacts/search_contacts_by_email_example_call_tool.js +++ b/public/examples/integrations/toolkits/google/contacts/search_contacts_by_email_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Google.SearchContactsByEmail"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/google/contacts/search_contacts_by_email_example_call_tool.py b/public/examples/integrations/toolkits/google/contacts/search_contacts_by_email_example_call_tool.py index 0ca47a20f..dc9adef40 100644 --- a/public/examples/integrations/toolkits/google/contacts/search_contacts_by_email_example_call_tool.py +++ b/public/examples/integrations/toolkits/google/contacts/search_contacts_by_email_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Google.SearchContactsByEmail" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/google/contacts/search_contacts_by_name_example_call_tool.js b/public/examples/integrations/toolkits/google/contacts/search_contacts_by_name_example_call_tool.js index 458c3b570..9e9799617 100644 --- a/public/examples/integrations/toolkits/google/contacts/search_contacts_by_name_example_call_tool.js +++ b/public/examples/integrations/toolkits/google/contacts/search_contacts_by_name_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Google.SearchContactsByName"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/google/contacts/search_contacts_by_name_example_call_tool.py b/public/examples/integrations/toolkits/google/contacts/search_contacts_by_name_example_call_tool.py index d36ed45dd..815d0682c 100644 --- a/public/examples/integrations/toolkits/google/contacts/search_contacts_by_name_example_call_tool.py +++ b/public/examples/integrations/toolkits/google/contacts/search_contacts_by_name_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Google.SearchContactsByName" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/google/docs/create_blank_document_example_call_tool.js b/public/examples/integrations/toolkits/google/docs/create_blank_document_example_call_tool.js index ba50f8c6e..b9a6b38ba 100644 --- a/public/examples/integrations/toolkits/google/docs/create_blank_document_example_call_tool.js +++ b/public/examples/integrations/toolkits/google/docs/create_blank_document_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Google.CreateBlankDocument"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/google/docs/create_blank_document_example_call_tool.py b/public/examples/integrations/toolkits/google/docs/create_blank_document_example_call_tool.py index e0e4b6fcc..f5ec79501 100644 --- a/public/examples/integrations/toolkits/google/docs/create_blank_document_example_call_tool.py +++ b/public/examples/integrations/toolkits/google/docs/create_blank_document_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Google.CreateBlankDocument" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/google/docs/create_document_from_text_example_call_tool.js b/public/examples/integrations/toolkits/google/docs/create_document_from_text_example_call_tool.js index 2c6cd5154..f4fb6caa9 100644 --- a/public/examples/integrations/toolkits/google/docs/create_document_from_text_example_call_tool.js +++ b/public/examples/integrations/toolkits/google/docs/create_document_from_text_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Google.CreateDocumentFromText"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/google/docs/create_document_from_text_example_call_tool.py b/public/examples/integrations/toolkits/google/docs/create_document_from_text_example_call_tool.py index a0aca8ce3..c1aa33bb6 100644 --- a/public/examples/integrations/toolkits/google/docs/create_document_from_text_example_call_tool.py +++ b/public/examples/integrations/toolkits/google/docs/create_document_from_text_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Google.CreateDocumentFromText" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/google/docs/get_document_by_id_example_call_tool.js b/public/examples/integrations/toolkits/google/docs/get_document_by_id_example_call_tool.js index 5c170eb9d..9c4f9d112 100644 --- a/public/examples/integrations/toolkits/google/docs/get_document_by_id_example_call_tool.js +++ b/public/examples/integrations/toolkits/google/docs/get_document_by_id_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Google.GetDocumentById"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/google/docs/get_document_by_id_example_call_tool.py b/public/examples/integrations/toolkits/google/docs/get_document_by_id_example_call_tool.py index b02ad7535..79ce96827 100644 --- a/public/examples/integrations/toolkits/google/docs/get_document_by_id_example_call_tool.py +++ b/public/examples/integrations/toolkits/google/docs/get_document_by_id_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}}" TOOL_NAME = "Google.GetDocumentById" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/google/docs/insert_text_at_end_of_document_example_call_tool.js b/public/examples/integrations/toolkits/google/docs/insert_text_at_end_of_document_example_call_tool.js index 5bc9aacaf..8446caf8f 100644 --- a/public/examples/integrations/toolkits/google/docs/insert_text_at_end_of_document_example_call_tool.js +++ b/public/examples/integrations/toolkits/google/docs/insert_text_at_end_of_document_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}}"; const TOOL_NAME = "Google.InsertTextAtEndOfDocument"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/google/docs/insert_text_at_end_of_document_example_call_tool.py b/public/examples/integrations/toolkits/google/docs/insert_text_at_end_of_document_example_call_tool.py index 8dc1709d4..f6860317f 100644 --- a/public/examples/integrations/toolkits/google/docs/insert_text_at_end_of_document_example_call_tool.py +++ b/public/examples/integrations/toolkits/google/docs/insert_text_at_end_of_document_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Google.InsertTextAtEndOfDocument" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/google/drive/generate_google_file_picker_url_example_call_tool.js b/public/examples/integrations/toolkits/google/drive/generate_google_file_picker_url_example_call_tool.js index 0df9608c8..4a66a4bd0 100644 --- a/public/examples/integrations/toolkits/google/drive/generate_google_file_picker_url_example_call_tool.js +++ b/public/examples/integrations/toolkits/google/drive/generate_google_file_picker_url_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Google.GenerateGoogleFilePickerUrl"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/google/drive/generate_google_file_picker_url_example_call_tool.py b/public/examples/integrations/toolkits/google/drive/generate_google_file_picker_url_example_call_tool.py index 45e69a3a5..efb93332b 100644 --- a/public/examples/integrations/toolkits/google/drive/generate_google_file_picker_url_example_call_tool.py +++ b/public/examples/integrations/toolkits/google/drive/generate_google_file_picker_url_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Google.GenerateGoogleFilePickerUrl" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/google/drive/get_file_tree_structure_example_call_tool.js b/public/examples/integrations/toolkits/google/drive/get_file_tree_structure_example_call_tool.js index 465fe338c..dc95485fc 100644 --- a/public/examples/integrations/toolkits/google/drive/get_file_tree_structure_example_call_tool.js +++ b/public/examples/integrations/toolkits/google/drive/get_file_tree_structure_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Google.GetFileTreeStructure"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/google/drive/get_file_tree_structure_example_call_tool.py b/public/examples/integrations/toolkits/google/drive/get_file_tree_structure_example_call_tool.py index e6b8465f1..296421542 100644 --- a/public/examples/integrations/toolkits/google/drive/get_file_tree_structure_example_call_tool.py +++ b/public/examples/integrations/toolkits/google/drive/get_file_tree_structure_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Google.GetFileTreeStructure" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/google/drive/search_and_retrieve_documents_example_call_tool.js b/public/examples/integrations/toolkits/google/drive/search_and_retrieve_documents_example_call_tool.js index 82c87e7af..ec5ef2395 100644 --- a/public/examples/integrations/toolkits/google/drive/search_and_retrieve_documents_example_call_tool.js +++ b/public/examples/integrations/toolkits/google/drive/search_and_retrieve_documents_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Google.SearchAndRetrieveDocuments"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/google/drive/search_and_retrieve_documents_example_call_tool.py b/public/examples/integrations/toolkits/google/drive/search_and_retrieve_documents_example_call_tool.py index b5ab7e99a..5c17bb436 100644 --- a/public/examples/integrations/toolkits/google/drive/search_and_retrieve_documents_example_call_tool.py +++ b/public/examples/integrations/toolkits/google/drive/search_and_retrieve_documents_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Google.SearchAndRetrieveDocuments" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/google/drive/search_documents_example_call_tool.js b/public/examples/integrations/toolkits/google/drive/search_documents_example_call_tool.js index ca227254b..c2a5c0805 100644 --- a/public/examples/integrations/toolkits/google/drive/search_documents_example_call_tool.js +++ b/public/examples/integrations/toolkits/google/drive/search_documents_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Google.SearchDocuments"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/google/drive/search_documents_example_call_tool.py b/public/examples/integrations/toolkits/google/drive/search_documents_example_call_tool.py index 6bfe24a09..f1e31040a 100644 --- a/public/examples/integrations/toolkits/google/drive/search_documents_example_call_tool.py +++ b/public/examples/integrations/toolkits/google/drive/search_documents_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Google.SearchDocuments" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/google/gmail/delete_draft_email_example_call_tool.js b/public/examples/integrations/toolkits/google/gmail/delete_draft_email_example_call_tool.js index eb5d56d0d..1e9950557 100644 --- a/public/examples/integrations/toolkits/google/gmail/delete_draft_email_example_call_tool.js +++ b/public/examples/integrations/toolkits/google/gmail/delete_draft_email_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Google.DeleteDraftEmail"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/google/gmail/delete_draft_email_example_call_tool.py b/public/examples/integrations/toolkits/google/gmail/delete_draft_email_example_call_tool.py index 41334eeeb..37d2c8748 100644 --- a/public/examples/integrations/toolkits/google/gmail/delete_draft_email_example_call_tool.py +++ b/public/examples/integrations/toolkits/google/gmail/delete_draft_email_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Google.DeleteDraftEmail" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/google/gmail/get_thread_example_call_tool.js b/public/examples/integrations/toolkits/google/gmail/get_thread_example_call_tool.js index 527ccf2cf..ce7528f1c 100644 --- a/public/examples/integrations/toolkits/google/gmail/get_thread_example_call_tool.js +++ b/public/examples/integrations/toolkits/google/gmail/get_thread_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Google.GetThread"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/google/gmail/get_thread_example_call_tool.py b/public/examples/integrations/toolkits/google/gmail/get_thread_example_call_tool.py index 80c079d8b..6416c3c43 100644 --- a/public/examples/integrations/toolkits/google/gmail/get_thread_example_call_tool.py +++ b/public/examples/integrations/toolkits/google/gmail/get_thread_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Google.GetThread" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/google/gmail/list_draft_emails_example_call_tool.js b/public/examples/integrations/toolkits/google/gmail/list_draft_emails_example_call_tool.js index 146a049d4..118780285 100644 --- a/public/examples/integrations/toolkits/google/gmail/list_draft_emails_example_call_tool.js +++ b/public/examples/integrations/toolkits/google/gmail/list_draft_emails_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Google.ListDraftEmails"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/google/gmail/list_draft_emails_example_call_tool.py b/public/examples/integrations/toolkits/google/gmail/list_draft_emails_example_call_tool.py index 92bd218b7..a9e4603a9 100644 --- a/public/examples/integrations/toolkits/google/gmail/list_draft_emails_example_call_tool.py +++ b/public/examples/integrations/toolkits/google/gmail/list_draft_emails_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Google.ListDraftEmails" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/google/gmail/list_emails_by_header_example_call_tool.js b/public/examples/integrations/toolkits/google/gmail/list_emails_by_header_example_call_tool.js index 5dc270c35..08c9bbd4b 100644 --- a/public/examples/integrations/toolkits/google/gmail/list_emails_by_header_example_call_tool.js +++ b/public/examples/integrations/toolkits/google/gmail/list_emails_by_header_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Google.ListEmailsByHeader"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/google/gmail/list_emails_by_header_example_call_tool.py b/public/examples/integrations/toolkits/google/gmail/list_emails_by_header_example_call_tool.py index 356c2077f..df42b5d98 100644 --- a/public/examples/integrations/toolkits/google/gmail/list_emails_by_header_example_call_tool.py +++ b/public/examples/integrations/toolkits/google/gmail/list_emails_by_header_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Google.ListEmailsByHeader" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/google/gmail/list_emails_example_call_tool.js b/public/examples/integrations/toolkits/google/gmail/list_emails_example_call_tool.js index 829dd7b1a..110dc5951 100644 --- a/public/examples/integrations/toolkits/google/gmail/list_emails_example_call_tool.js +++ b/public/examples/integrations/toolkits/google/gmail/list_emails_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Google.ListEmails"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/google/gmail/list_emails_example_call_tool.py b/public/examples/integrations/toolkits/google/gmail/list_emails_example_call_tool.py index 53a1ced97..165d4b84b 100644 --- a/public/examples/integrations/toolkits/google/gmail/list_emails_example_call_tool.py +++ b/public/examples/integrations/toolkits/google/gmail/list_emails_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Google.ListEmails" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/google/gmail/list_threads_example_call_tool.js b/public/examples/integrations/toolkits/google/gmail/list_threads_example_call_tool.js index 524f8ec3f..405154d53 100644 --- a/public/examples/integrations/toolkits/google/gmail/list_threads_example_call_tool.js +++ b/public/examples/integrations/toolkits/google/gmail/list_threads_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Google.ListThreads"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/google/gmail/list_threads_example_call_tool.py b/public/examples/integrations/toolkits/google/gmail/list_threads_example_call_tool.py index 9d6de21b6..681613af2 100644 --- a/public/examples/integrations/toolkits/google/gmail/list_threads_example_call_tool.py +++ b/public/examples/integrations/toolkits/google/gmail/list_threads_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Google.ListThreads" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/google/gmail/search_threads_example_call_tool.js b/public/examples/integrations/toolkits/google/gmail/search_threads_example_call_tool.js index 42d290d4c..7f5e31d58 100644 --- a/public/examples/integrations/toolkits/google/gmail/search_threads_example_call_tool.js +++ b/public/examples/integrations/toolkits/google/gmail/search_threads_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Google.SearchThreads"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/google/gmail/search_threads_example_call_tool.py b/public/examples/integrations/toolkits/google/gmail/search_threads_example_call_tool.py index 21565b192..3d0fba1c7 100644 --- a/public/examples/integrations/toolkits/google/gmail/search_threads_example_call_tool.py +++ b/public/examples/integrations/toolkits/google/gmail/search_threads_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Google.SearchThreads" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/google/gmail/send_draft_email_example_call_tool.js b/public/examples/integrations/toolkits/google/gmail/send_draft_email_example_call_tool.js index 77bf73b81..5335e9e7e 100644 --- a/public/examples/integrations/toolkits/google/gmail/send_draft_email_example_call_tool.js +++ b/public/examples/integrations/toolkits/google/gmail/send_draft_email_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Google.SendDraftEmail"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/google/gmail/send_draft_email_example_call_tool.py b/public/examples/integrations/toolkits/google/gmail/send_draft_email_example_call_tool.py index c56bac34c..c7f6f8e77 100644 --- a/public/examples/integrations/toolkits/google/gmail/send_draft_email_example_call_tool.py +++ b/public/examples/integrations/toolkits/google/gmail/send_draft_email_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Google.SendDraftEmail" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/google/gmail/send_email_example_call_tool.js b/public/examples/integrations/toolkits/google/gmail/send_email_example_call_tool.js index 522c7d1c1..d906e6d41 100644 --- a/public/examples/integrations/toolkits/google/gmail/send_email_example_call_tool.js +++ b/public/examples/integrations/toolkits/google/gmail/send_email_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Google.SendEmail"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/google/gmail/send_email_example_call_tool.py b/public/examples/integrations/toolkits/google/gmail/send_email_example_call_tool.py index 74a384827..28f9fcf2c 100644 --- a/public/examples/integrations/toolkits/google/gmail/send_email_example_call_tool.py +++ b/public/examples/integrations/toolkits/google/gmail/send_email_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Google.SendEmail" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/google/gmail/trash_email_example_call_tool.js b/public/examples/integrations/toolkits/google/gmail/trash_email_example_call_tool.js index fb0c5d989..f91907532 100644 --- a/public/examples/integrations/toolkits/google/gmail/trash_email_example_call_tool.js +++ b/public/examples/integrations/toolkits/google/gmail/trash_email_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Google.TrashEmail"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/google/gmail/trash_email_example_call_tool.py b/public/examples/integrations/toolkits/google/gmail/trash_email_example_call_tool.py index e3457a8eb..68df915a8 100644 --- a/public/examples/integrations/toolkits/google/gmail/trash_email_example_call_tool.py +++ b/public/examples/integrations/toolkits/google/gmail/trash_email_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Google.TrashEmail" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/google/gmail/update_draft_email_example_call_tool.js b/public/examples/integrations/toolkits/google/gmail/update_draft_email_example_call_tool.js index 1fc4a5d6c..63f051056 100644 --- a/public/examples/integrations/toolkits/google/gmail/update_draft_email_example_call_tool.js +++ b/public/examples/integrations/toolkits/google/gmail/update_draft_email_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Google.UpdateDraftEmail"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/google/gmail/update_draft_email_example_call_tool.py b/public/examples/integrations/toolkits/google/gmail/update_draft_email_example_call_tool.py index 5173d2829..a0944c6ae 100644 --- a/public/examples/integrations/toolkits/google/gmail/update_draft_email_example_call_tool.py +++ b/public/examples/integrations/toolkits/google/gmail/update_draft_email_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Google.UpdateDraftEmail" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/google/gmail/write_draft_email_example_call_tool.js b/public/examples/integrations/toolkits/google/gmail/write_draft_email_example_call_tool.js index d7a93daa8..cb85f3590 100644 --- a/public/examples/integrations/toolkits/google/gmail/write_draft_email_example_call_tool.js +++ b/public/examples/integrations/toolkits/google/gmail/write_draft_email_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Google.WriteDraftEmail"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/google/gmail/write_draft_email_example_call_tool.py b/public/examples/integrations/toolkits/google/gmail/write_draft_email_example_call_tool.py index 3afe2adf0..d2126bce4 100644 --- a/public/examples/integrations/toolkits/google/gmail/write_draft_email_example_call_tool.py +++ b/public/examples/integrations/toolkits/google/gmail/write_draft_email_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Google.WriteDraftEmail" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/google/sheets/create_spreadsheet_example_call_tool.js b/public/examples/integrations/toolkits/google/sheets/create_spreadsheet_example_call_tool.js index faf0dc76e..b8e0282be 100644 --- a/public/examples/integrations/toolkits/google/sheets/create_spreadsheet_example_call_tool.js +++ b/public/examples/integrations/toolkits/google/sheets/create_spreadsheet_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Google.CreateSpreadsheet"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/google/sheets/create_spreadsheet_example_call_tool.py b/public/examples/integrations/toolkits/google/sheets/create_spreadsheet_example_call_tool.py index cde3e8e12..f63cac65a 100644 --- a/public/examples/integrations/toolkits/google/sheets/create_spreadsheet_example_call_tool.py +++ b/public/examples/integrations/toolkits/google/sheets/create_spreadsheet_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Google.CreateSpreadsheet" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/google/sheets/get_spreadsheet_example_call_tool.js b/public/examples/integrations/toolkits/google/sheets/get_spreadsheet_example_call_tool.js index fc8085e14..386547159 100644 --- a/public/examples/integrations/toolkits/google/sheets/get_spreadsheet_example_call_tool.js +++ b/public/examples/integrations/toolkits/google/sheets/get_spreadsheet_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Google.GetSpreadsheet"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/google/sheets/get_spreadsheet_example_call_tool.py b/public/examples/integrations/toolkits/google/sheets/get_spreadsheet_example_call_tool.py index 1daf229b9..2f79c65de 100644 --- a/public/examples/integrations/toolkits/google/sheets/get_spreadsheet_example_call_tool.py +++ b/public/examples/integrations/toolkits/google/sheets/get_spreadsheet_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Google.GetSpreadsheet" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/google/sheets/write_to_cell_example_call_tool.js b/public/examples/integrations/toolkits/google/sheets/write_to_cell_example_call_tool.js index 68dc52cd6..8051c37eb 100644 --- a/public/examples/integrations/toolkits/google/sheets/write_to_cell_example_call_tool.js +++ b/public/examples/integrations/toolkits/google/sheets/write_to_cell_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Google.WriteToCell"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/google/sheets/write_to_cell_example_call_tool.py b/public/examples/integrations/toolkits/google/sheets/write_to_cell_example_call_tool.py index 04344292d..2f2bfe70f 100644 --- a/public/examples/integrations/toolkits/google/sheets/write_to_cell_example_call_tool.py +++ b/public/examples/integrations/toolkits/google/sheets/write_to_cell_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Google.WriteToCell" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/hubspot/create_contact_example_call_tool.js b/public/examples/integrations/toolkits/hubspot/create_contact_example_call_tool.js index ae26a4765..ab1c0e36e 100644 --- a/public/examples/integrations/toolkits/hubspot/create_contact_example_call_tool.js +++ b/public/examples/integrations/toolkits/hubspot/create_contact_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Hubspot.CreateContact"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/hubspot/create_contact_example_call_tool.py b/public/examples/integrations/toolkits/hubspot/create_contact_example_call_tool.py index 6fb5bd98c..6ef28136e 100644 --- a/public/examples/integrations/toolkits/hubspot/create_contact_example_call_tool.py +++ b/public/examples/integrations/toolkits/hubspot/create_contact_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Hubspot.CreateContact" auth_response = client.tools.authorize(tool_name=TOOL_NAME, user_id=USER_ID) diff --git a/public/examples/integrations/toolkits/hubspot/get_company_data_by_keywords_example_call_tool.js b/public/examples/integrations/toolkits/hubspot/get_company_data_by_keywords_example_call_tool.js index 697da08dc..94a958b46 100644 --- a/public/examples/integrations/toolkits/hubspot/get_company_data_by_keywords_example_call_tool.js +++ b/public/examples/integrations/toolkits/hubspot/get_company_data_by_keywords_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Hubspot.GetCompanyDataByKeywords"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/hubspot/get_company_data_by_keywords_example_call_tool.py b/public/examples/integrations/toolkits/hubspot/get_company_data_by_keywords_example_call_tool.py index 7f8d5cf15..95974d0b0 100644 --- a/public/examples/integrations/toolkits/hubspot/get_company_data_by_keywords_example_call_tool.py +++ b/public/examples/integrations/toolkits/hubspot/get_company_data_by_keywords_example_call_tool.py @@ -4,7 +4,7 @@ TOOL_NAME = "Hubspot.GetCompanyDataByKeywords" -user_id = "user@example.com" +user_id = "{arcade_user_id}" auth_response = client.tools.authorize(tool_name=TOOL_NAME, user_id=user_id) if auth_response.status != "completed": diff --git a/public/examples/integrations/toolkits/hubspot/get_contact_data_by_keywords_example_call_tool.js b/public/examples/integrations/toolkits/hubspot/get_contact_data_by_keywords_example_call_tool.js index 0aeeb89fd..bde15b77d 100644 --- a/public/examples/integrations/toolkits/hubspot/get_contact_data_by_keywords_example_call_tool.js +++ b/public/examples/integrations/toolkits/hubspot/get_contact_data_by_keywords_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Hubspot.GetContactDataByKeywords"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/hubspot/get_contact_data_by_keywords_example_call_tool.py b/public/examples/integrations/toolkits/hubspot/get_contact_data_by_keywords_example_call_tool.py index d659339c3..2609eb062 100644 --- a/public/examples/integrations/toolkits/hubspot/get_contact_data_by_keywords_example_call_tool.py +++ b/public/examples/integrations/toolkits/hubspot/get_contact_data_by_keywords_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Hubspot.GetContactDataByKeywords" auth_response = client.tools.authorize(tool_name=TOOL_NAME, user_id=USER_ID) diff --git a/public/examples/integrations/toolkits/jira/add_comment_to_issue_example_call_tool.js b/public/examples/integrations/toolkits/jira/add_comment_to_issue_example_call_tool.js index 712343d58..d62c338b6 100644 --- a/public/examples/integrations/toolkits/jira/add_comment_to_issue_example_call_tool.js +++ b/public/examples/integrations/toolkits/jira/add_comment_to_issue_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; // Unique identifier for your user (email, UUID, etc.) +const USER_ID = "{arcade_user_id}"; // Unique identifier for your user (email, UUID, etc.) const TOOL_NAME = "Jira.AddCommentToIssue"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/jira/add_comment_to_issue_example_call_tool.py b/public/examples/integrations/toolkits/jira/add_comment_to_issue_example_call_tool.py index 59e03392c..be2bb9dca 100644 --- a/public/examples/integrations/toolkits/jira/add_comment_to_issue_example_call_tool.py +++ b/public/examples/integrations/toolkits/jira/add_comment_to_issue_example_call_tool.py @@ -3,7 +3,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" # Unique identifier for your user (email, UUID, etc.) +USER_ID = "{arcade_user_id}" # Unique identifier for your user (email, UUID, etc.) TOOL_NAME = "Jira.AddCommentToIssue" auth_response = client.tools.authorize(tool_name=TOOL_NAME) diff --git a/public/examples/integrations/toolkits/jira/add_labels_to_issue_example_call_tool.js b/public/examples/integrations/toolkits/jira/add_labels_to_issue_example_call_tool.js index 124b58b87..c8e9a60f9 100644 --- a/public/examples/integrations/toolkits/jira/add_labels_to_issue_example_call_tool.js +++ b/public/examples/integrations/toolkits/jira/add_labels_to_issue_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; // Unique identifier for your user (email, UUID, etc.) +const USER_ID = "{arcade_user_id}"; // Unique identifier for your user (email, UUID, etc.) const TOOL_NAME = "Jira.AddLabelsToIssue"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/jira/add_labels_to_issue_example_call_tool.py b/public/examples/integrations/toolkits/jira/add_labels_to_issue_example_call_tool.py index 096413582..318af6a3f 100644 --- a/public/examples/integrations/toolkits/jira/add_labels_to_issue_example_call_tool.py +++ b/public/examples/integrations/toolkits/jira/add_labels_to_issue_example_call_tool.py @@ -3,7 +3,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" # Unique identifier for your user (email, UUID, etc.) +USER_ID = "{arcade_user_id}" # Unique identifier for your user (email, UUID, etc.) TOOL_NAME = "Jira.AddLabelsToIssue" auth_response = client.tools.authorize(tool_name=TOOL_NAME) diff --git a/public/examples/integrations/toolkits/jira/attach_file_to_issue_example_call_tool.js b/public/examples/integrations/toolkits/jira/attach_file_to_issue_example_call_tool.js index c589c3686..614fd9bc8 100644 --- a/public/examples/integrations/toolkits/jira/attach_file_to_issue_example_call_tool.js +++ b/public/examples/integrations/toolkits/jira/attach_file_to_issue_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; // Unique identifier for your user (email, UUID, etc.) +const USER_ID = "{arcade_user_id}"; // Unique identifier for your user (email, UUID, etc.) const TOOL_NAME = "Jira.AttachFileToIssue"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/jira/attach_file_to_issue_example_call_tool.py b/public/examples/integrations/toolkits/jira/attach_file_to_issue_example_call_tool.py index 0b5f955ab..abee43f79 100644 --- a/public/examples/integrations/toolkits/jira/attach_file_to_issue_example_call_tool.py +++ b/public/examples/integrations/toolkits/jira/attach_file_to_issue_example_call_tool.py @@ -3,7 +3,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" # Unique identifier for your user (email, UUID, etc.) +USER_ID = "{arcade_user_id}" # Unique identifier for your user (email, UUID, etc.) TOOL_NAME = "Jira.AttachFileToIssue" auth_response = client.tools.authorize(tool_name=TOOL_NAME) diff --git a/public/examples/integrations/toolkits/jira/create_issue_example_call_tool.js b/public/examples/integrations/toolkits/jira/create_issue_example_call_tool.js index 04c2d4c38..3c628277e 100644 --- a/public/examples/integrations/toolkits/jira/create_issue_example_call_tool.js +++ b/public/examples/integrations/toolkits/jira/create_issue_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; // Unique identifier for your user (email, UUID, etc.) +const USER_ID = "{arcade_user_id}"; // Unique identifier for your user (email, UUID, etc.) const TOOL_NAME = "Jira.CreateIssue"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/jira/create_issue_example_call_tool.py b/public/examples/integrations/toolkits/jira/create_issue_example_call_tool.py index 58dddca46..f978ba16b 100644 --- a/public/examples/integrations/toolkits/jira/create_issue_example_call_tool.py +++ b/public/examples/integrations/toolkits/jira/create_issue_example_call_tool.py @@ -3,7 +3,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" # Unique identifier for your user (email, UUID, etc.) +USER_ID = "{arcade_user_id}" # Unique identifier for your user (email, UUID, etc.) TOOL_NAME = "Jira.CreateIssue" auth_response = client.tools.authorize(tool_name=TOOL_NAME) diff --git a/public/examples/integrations/toolkits/jira/download_attachment_example_call_tool.js b/public/examples/integrations/toolkits/jira/download_attachment_example_call_tool.js index c88f102fd..c3142efa6 100644 --- a/public/examples/integrations/toolkits/jira/download_attachment_example_call_tool.js +++ b/public/examples/integrations/toolkits/jira/download_attachment_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; // Unique identifier for your user (email, UUID, etc.) +const USER_ID = "{arcade_user_id}"; // Unique identifier for your user (email, UUID, etc.) const TOOL_NAME = "Jira.DownloadAttachment"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/jira/download_attachment_example_call_tool.py b/public/examples/integrations/toolkits/jira/download_attachment_example_call_tool.py index bebf47962..d9e6cc8f7 100644 --- a/public/examples/integrations/toolkits/jira/download_attachment_example_call_tool.py +++ b/public/examples/integrations/toolkits/jira/download_attachment_example_call_tool.py @@ -3,7 +3,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" # Unique identifier for your user (email, UUID, etc.) +USER_ID = "{arcade_user_id}" # Unique identifier for your user (email, UUID, etc.) TOOL_NAME = "Jira.DownloadAttachment" auth_response = client.tools.authorize(tool_name=TOOL_NAME) diff --git a/public/examples/integrations/toolkits/jira/get_attachment_metadata_example_call_tool.js b/public/examples/integrations/toolkits/jira/get_attachment_metadata_example_call_tool.js index bcab6e2aa..a44d82128 100644 --- a/public/examples/integrations/toolkits/jira/get_attachment_metadata_example_call_tool.js +++ b/public/examples/integrations/toolkits/jira/get_attachment_metadata_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; // Unique identifier for your user (email, UUID, etc.) +const USER_ID = "{arcade_user_id}"; // Unique identifier for your user (email, UUID, etc.) const TOOL_NAME = "Jira.GetAttachmentMetadata"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/jira/get_attachment_metadata_example_call_tool.py b/public/examples/integrations/toolkits/jira/get_attachment_metadata_example_call_tool.py index 771853950..372b3b6b9 100644 --- a/public/examples/integrations/toolkits/jira/get_attachment_metadata_example_call_tool.py +++ b/public/examples/integrations/toolkits/jira/get_attachment_metadata_example_call_tool.py @@ -3,7 +3,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" # Unique identifier for your user (email, UUID, etc.) +USER_ID = "{arcade_user_id}" # Unique identifier for your user (email, UUID, etc.) TOOL_NAME = "Jira.GetAttachmentMetadata" auth_response = client.tools.authorize(tool_name=TOOL_NAME) diff --git a/public/examples/integrations/toolkits/jira/get_comment_by_id_example_call_tool.js b/public/examples/integrations/toolkits/jira/get_comment_by_id_example_call_tool.js index a8240826d..7fb7897d3 100644 --- a/public/examples/integrations/toolkits/jira/get_comment_by_id_example_call_tool.js +++ b/public/examples/integrations/toolkits/jira/get_comment_by_id_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; // Unique identifier for your user (email, UUID, etc.) +const USER_ID = "{arcade_user_id}"; // Unique identifier for your user (email, UUID, etc.) const TOOL_NAME = "Jira.GetCommentById"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/jira/get_comment_by_id_example_call_tool.py b/public/examples/integrations/toolkits/jira/get_comment_by_id_example_call_tool.py index c2172d99b..78f4461a6 100644 --- a/public/examples/integrations/toolkits/jira/get_comment_by_id_example_call_tool.py +++ b/public/examples/integrations/toolkits/jira/get_comment_by_id_example_call_tool.py @@ -3,7 +3,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" # Unique identifier for your user (email, UUID, etc.) +USER_ID = "{arcade_user_id}" # Unique identifier for your user (email, UUID, etc.) TOOL_NAME = "Jira.GetCommentById" auth_response = client.tools.authorize(tool_name=TOOL_NAME) diff --git a/public/examples/integrations/toolkits/jira/get_issue_by_id_example_call_tool.js b/public/examples/integrations/toolkits/jira/get_issue_by_id_example_call_tool.js index c8bb61271..b718a82fb 100644 --- a/public/examples/integrations/toolkits/jira/get_issue_by_id_example_call_tool.js +++ b/public/examples/integrations/toolkits/jira/get_issue_by_id_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; // Unique identifier for your user (email, UUID, etc.) +const USER_ID = "{arcade_user_id}"; // Unique identifier for your user (email, UUID, etc.) const TOOL_NAME = "Jira.GetIssueById"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/jira/get_issue_by_id_example_call_tool.py b/public/examples/integrations/toolkits/jira/get_issue_by_id_example_call_tool.py index 2c208bc1f..9172f8182 100644 --- a/public/examples/integrations/toolkits/jira/get_issue_by_id_example_call_tool.py +++ b/public/examples/integrations/toolkits/jira/get_issue_by_id_example_call_tool.py @@ -3,7 +3,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" # Unique identifier for your user (email, UUID, etc.) +USER_ID = "{arcade_user_id}" # Unique identifier for your user (email, UUID, etc.) TOOL_NAME = "Jira.GetIssueById" auth_response = client.tools.authorize(tool_name=TOOL_NAME) diff --git a/public/examples/integrations/toolkits/jira/get_issue_comments_example_call_tool.js b/public/examples/integrations/toolkits/jira/get_issue_comments_example_call_tool.js index 51e4a4a13..8f07a226b 100644 --- a/public/examples/integrations/toolkits/jira/get_issue_comments_example_call_tool.js +++ b/public/examples/integrations/toolkits/jira/get_issue_comments_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; // Unique identifier for your user (email, UUID, etc.) +const USER_ID = "{arcade_user_id}"; // Unique identifier for your user (email, UUID, etc.) const TOOL_NAME = "Jira.GetIssueComments"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/jira/get_issue_comments_example_call_tool.py b/public/examples/integrations/toolkits/jira/get_issue_comments_example_call_tool.py index bbb35a0a7..ab9d723e8 100644 --- a/public/examples/integrations/toolkits/jira/get_issue_comments_example_call_tool.py +++ b/public/examples/integrations/toolkits/jira/get_issue_comments_example_call_tool.py @@ -3,7 +3,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" # Unique identifier for your user (email, UUID, etc.) +USER_ID = "{arcade_user_id}" # Unique identifier for your user (email, UUID, etc.) TOOL_NAME = "Jira.GetIssueComments" auth_response = client.tools.authorize(tool_name=TOOL_NAME) diff --git a/public/examples/integrations/toolkits/jira/get_issue_type_by_id_example_call_tool.js b/public/examples/integrations/toolkits/jira/get_issue_type_by_id_example_call_tool.js index ade6c6ae6..804411ead 100644 --- a/public/examples/integrations/toolkits/jira/get_issue_type_by_id_example_call_tool.js +++ b/public/examples/integrations/toolkits/jira/get_issue_type_by_id_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; // Unique identifier for your user (email, UUID, etc.) +const USER_ID = "{arcade_user_id}"; // Unique identifier for your user (email, UUID, etc.) const TOOL_NAME = "Jira.GetIssueTypeById"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/jira/get_issue_type_by_id_example_call_tool.py b/public/examples/integrations/toolkits/jira/get_issue_type_by_id_example_call_tool.py index 6eaf8b43d..c024550cc 100644 --- a/public/examples/integrations/toolkits/jira/get_issue_type_by_id_example_call_tool.py +++ b/public/examples/integrations/toolkits/jira/get_issue_type_by_id_example_call_tool.py @@ -3,7 +3,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" # Unique identifier for your user (email, UUID, etc.) +USER_ID = "{arcade_user_id}" # Unique identifier for your user (email, UUID, etc.) TOOL_NAME = "Jira.GetIssueTypeById" auth_response = client.tools.authorize(tool_name=TOOL_NAME) diff --git a/public/examples/integrations/toolkits/jira/get_issues_without_id_example_call_tool.js b/public/examples/integrations/toolkits/jira/get_issues_without_id_example_call_tool.js index a64177818..2d8d23114 100644 --- a/public/examples/integrations/toolkits/jira/get_issues_without_id_example_call_tool.js +++ b/public/examples/integrations/toolkits/jira/get_issues_without_id_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; // Unique identifier for your user (email, UUID, etc.) +const USER_ID = "{arcade_user_id}"; // Unique identifier for your user (email, UUID, etc.) const TOOL_NAME = "Jira.GetIssuesWithoutId"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/jira/get_issues_without_id_example_call_tool.py b/public/examples/integrations/toolkits/jira/get_issues_without_id_example_call_tool.py index f280a0195..ce2061aa6 100644 --- a/public/examples/integrations/toolkits/jira/get_issues_without_id_example_call_tool.py +++ b/public/examples/integrations/toolkits/jira/get_issues_without_id_example_call_tool.py @@ -3,7 +3,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" # Unique identifier for your user (email, UUID, etc.) +USER_ID = "{arcade_user_id}" # Unique identifier for your user (email, UUID, etc.) TOOL_NAME = "Jira.GetIssuesWithoutId" auth_response = client.tools.authorize(tool_name=TOOL_NAME) diff --git a/public/examples/integrations/toolkits/jira/get_priority_by_id_example_call_tool.js b/public/examples/integrations/toolkits/jira/get_priority_by_id_example_call_tool.js index 83ccfb86d..f40a7f9e6 100644 --- a/public/examples/integrations/toolkits/jira/get_priority_by_id_example_call_tool.js +++ b/public/examples/integrations/toolkits/jira/get_priority_by_id_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; // Unique identifier for your user (email, UUID, etc.) +const USER_ID = "{arcade_user_id}"; // Unique identifier for your user (email, UUID, etc.) const TOOL_NAME = "Jira.GetPriorityById"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/jira/get_priority_by_id_example_call_tool.py b/public/examples/integrations/toolkits/jira/get_priority_by_id_example_call_tool.py index 0dfb9bb5c..e43626ef0 100644 --- a/public/examples/integrations/toolkits/jira/get_priority_by_id_example_call_tool.py +++ b/public/examples/integrations/toolkits/jira/get_priority_by_id_example_call_tool.py @@ -3,7 +3,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" # Unique identifier for your user (email, UUID, etc.) +USER_ID = "{arcade_user_id}" # Unique identifier for your user (email, UUID, etc.) TOOL_NAME = "Jira.GetPriorityById" auth_response = client.tools.authorize(tool_name=TOOL_NAME) diff --git a/public/examples/integrations/toolkits/jira/get_project_by_id_example_call_tool.js b/public/examples/integrations/toolkits/jira/get_project_by_id_example_call_tool.js index 7a25cfa4c..809050962 100644 --- a/public/examples/integrations/toolkits/jira/get_project_by_id_example_call_tool.js +++ b/public/examples/integrations/toolkits/jira/get_project_by_id_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; // Unique identifier for your user (email, UUID, etc.) +const USER_ID = "{arcade_user_id}"; // Unique identifier for your user (email, UUID, etc.) const TOOL_NAME = "Jira.GetProjectById"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/jira/get_project_by_id_example_call_tool.py b/public/examples/integrations/toolkits/jira/get_project_by_id_example_call_tool.py index e5ff640af..1efa95406 100644 --- a/public/examples/integrations/toolkits/jira/get_project_by_id_example_call_tool.py +++ b/public/examples/integrations/toolkits/jira/get_project_by_id_example_call_tool.py @@ -3,7 +3,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" # Unique identifier for your user (email, UUID, etc.) +USER_ID = "{arcade_user_id}" # Unique identifier for your user (email, UUID, etc.) TOOL_NAME = "Jira.GetProjectById" auth_response = client.tools.authorize(tool_name=TOOL_NAME) diff --git a/public/examples/integrations/toolkits/jira/get_transition_by_id_example_call_tool.js b/public/examples/integrations/toolkits/jira/get_transition_by_id_example_call_tool.js index cc3f57532..78a0361af 100644 --- a/public/examples/integrations/toolkits/jira/get_transition_by_id_example_call_tool.js +++ b/public/examples/integrations/toolkits/jira/get_transition_by_id_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; // Unique identifier for your user (email, UUID, etc.) +const USER_ID = "{arcade_user_id}"; // Unique identifier for your user (email, UUID, etc.) const TOOL_NAME = "Jira.GetTransitionById"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/jira/get_transition_by_id_example_call_tool.py b/public/examples/integrations/toolkits/jira/get_transition_by_id_example_call_tool.py index 39b2678c6..6bb0863ab 100644 --- a/public/examples/integrations/toolkits/jira/get_transition_by_id_example_call_tool.py +++ b/public/examples/integrations/toolkits/jira/get_transition_by_id_example_call_tool.py @@ -3,7 +3,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" # Unique identifier for your user (email, UUID, etc.) +USER_ID = "{arcade_user_id}" # Unique identifier for your user (email, UUID, etc.) TOOL_NAME = "Jira.GetTransitionById" auth_response = client.tools.authorize(tool_name=TOOL_NAME) diff --git a/public/examples/integrations/toolkits/jira/get_transition_by_status_name_example_call_tool.js b/public/examples/integrations/toolkits/jira/get_transition_by_status_name_example_call_tool.js index 047a49b19..fe28ae596 100644 --- a/public/examples/integrations/toolkits/jira/get_transition_by_status_name_example_call_tool.js +++ b/public/examples/integrations/toolkits/jira/get_transition_by_status_name_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; // Unique identifier for your user (email, UUID, etc.) +const USER_ID = "{arcade_user_id}"; // Unique identifier for your user (email, UUID, etc.) const TOOL_NAME = "Jira.GetTransitionByStatusName"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/jira/get_transition_by_status_name_example_call_tool.py b/public/examples/integrations/toolkits/jira/get_transition_by_status_name_example_call_tool.py index 25ad12932..128e808e6 100644 --- a/public/examples/integrations/toolkits/jira/get_transition_by_status_name_example_call_tool.py +++ b/public/examples/integrations/toolkits/jira/get_transition_by_status_name_example_call_tool.py @@ -3,7 +3,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" # Unique identifier for your user (email, UUID, etc.) +USER_ID = "{arcade_user_id}" # Unique identifier for your user (email, UUID, etc.) TOOL_NAME = "Jira.GetTransitionByStatusName" auth_response = client.tools.authorize(tool_name=TOOL_NAME) diff --git a/public/examples/integrations/toolkits/jira/get_transitions_available_for_issue_example_call_tool.js b/public/examples/integrations/toolkits/jira/get_transitions_available_for_issue_example_call_tool.js index 6d7d7147f..6fbfb3d7c 100644 --- a/public/examples/integrations/toolkits/jira/get_transitions_available_for_issue_example_call_tool.js +++ b/public/examples/integrations/toolkits/jira/get_transitions_available_for_issue_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; // Unique identifier for your user (email, UUID, etc.) +const USER_ID = "{arcade_user_id}"; // Unique identifier for your user (email, UUID, etc.) const TOOL_NAME = "Jira.GetTransitionsAvailableForIssue"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/jira/get_transitions_available_for_issue_example_call_tool.py b/public/examples/integrations/toolkits/jira/get_transitions_available_for_issue_example_call_tool.py index a0f0ef0d6..679043309 100644 --- a/public/examples/integrations/toolkits/jira/get_transitions_available_for_issue_example_call_tool.py +++ b/public/examples/integrations/toolkits/jira/get_transitions_available_for_issue_example_call_tool.py @@ -3,7 +3,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" # Unique identifier for your user (email, UUID, etc.) +USER_ID = "{arcade_user_id}" # Unique identifier for your user (email, UUID, etc.) TOOL_NAME = "Jira.GetTransitionsAvailableForIssue" auth_response = client.tools.authorize(tool_name=TOOL_NAME) diff --git a/public/examples/integrations/toolkits/jira/get_user_by_id_example_call_tool.js b/public/examples/integrations/toolkits/jira/get_user_by_id_example_call_tool.js index 19eb7983a..4c6caf4b5 100644 --- a/public/examples/integrations/toolkits/jira/get_user_by_id_example_call_tool.js +++ b/public/examples/integrations/toolkits/jira/get_user_by_id_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; // Unique identifier for your user (email, UUID, etc.) +const USER_ID = "{arcade_user_id}"; // Unique identifier for your user (email, UUID, etc.) const TOOL_NAME = "Jira.GetUserById"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/jira/get_user_by_id_example_call_tool.py b/public/examples/integrations/toolkits/jira/get_user_by_id_example_call_tool.py index f2554d4c1..a87ef7777 100644 --- a/public/examples/integrations/toolkits/jira/get_user_by_id_example_call_tool.py +++ b/public/examples/integrations/toolkits/jira/get_user_by_id_example_call_tool.py @@ -3,7 +3,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" # Unique identifier for your user (email, UUID, etc.) +USER_ID = "{arcade_user_id}" # Unique identifier for your user (email, UUID, etc.) TOOL_NAME = "Jira.GetUserById" auth_response = client.tools.authorize(tool_name=TOOL_NAME) diff --git a/public/examples/integrations/toolkits/jira/get_users_without_id_example_call_tool.js b/public/examples/integrations/toolkits/jira/get_users_without_id_example_call_tool.js index 0e01e15ab..ef6f40291 100644 --- a/public/examples/integrations/toolkits/jira/get_users_without_id_example_call_tool.js +++ b/public/examples/integrations/toolkits/jira/get_users_without_id_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; // Unique identifier for your user (email, UUID, etc.) +const USER_ID = "{arcade_user_id}"; // Unique identifier for your user (email, UUID, etc.) const TOOL_NAME = "Jira.GetUsersWithoutId"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/jira/get_users_without_id_example_call_tool.py b/public/examples/integrations/toolkits/jira/get_users_without_id_example_call_tool.py index 2462c6c23..de1ba4387 100644 --- a/public/examples/integrations/toolkits/jira/get_users_without_id_example_call_tool.py +++ b/public/examples/integrations/toolkits/jira/get_users_without_id_example_call_tool.py @@ -3,7 +3,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" # Unique identifier for your user (email, UUID, etc.) +USER_ID = "{arcade_user_id}" # Unique identifier for your user (email, UUID, etc.) TOOL_NAME = "Jira.GetUsersWithoutId" auth_response = client.tools.authorize(tool_name=TOOL_NAME) diff --git a/public/examples/integrations/toolkits/jira/list_issue_attachments_metadata_example_call_tool.js b/public/examples/integrations/toolkits/jira/list_issue_attachments_metadata_example_call_tool.js index 21bd8a068..fe5178ad1 100644 --- a/public/examples/integrations/toolkits/jira/list_issue_attachments_metadata_example_call_tool.js +++ b/public/examples/integrations/toolkits/jira/list_issue_attachments_metadata_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; // Unique identifier for your user (email, UUID, etc.) +const USER_ID = "{arcade_user_id}"; // Unique identifier for your user (email, UUID, etc.) const TOOL_NAME = "Jira.ListIssueAttachmentsMetadata"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/jira/list_issue_attachments_metadata_example_call_tool.py b/public/examples/integrations/toolkits/jira/list_issue_attachments_metadata_example_call_tool.py index c7adb9be3..77daa5388 100644 --- a/public/examples/integrations/toolkits/jira/list_issue_attachments_metadata_example_call_tool.py +++ b/public/examples/integrations/toolkits/jira/list_issue_attachments_metadata_example_call_tool.py @@ -3,7 +3,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" # Unique identifier for your user (email, UUID, etc.) +USER_ID = "{arcade_user_id}" # Unique identifier for your user (email, UUID, etc.) TOOL_NAME = "Jira.ListIssueAttachmentsMetadata" auth_response = client.tools.authorize(tool_name=TOOL_NAME) diff --git a/public/examples/integrations/toolkits/jira/list_issue_types_by_project_example_call_tool.js b/public/examples/integrations/toolkits/jira/list_issue_types_by_project_example_call_tool.js index 5c9f52f8b..97b4fdb78 100644 --- a/public/examples/integrations/toolkits/jira/list_issue_types_by_project_example_call_tool.js +++ b/public/examples/integrations/toolkits/jira/list_issue_types_by_project_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; // Unique identifier for your user (email, UUID, etc.) +const USER_ID = "{arcade_user_id}"; // Unique identifier for your user (email, UUID, etc.) const TOOL_NAME = "Jira.ListIssueTypesByProject"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/jira/list_issue_types_by_project_example_call_tool.py b/public/examples/integrations/toolkits/jira/list_issue_types_by_project_example_call_tool.py index 0ace83453..09caec9d1 100644 --- a/public/examples/integrations/toolkits/jira/list_issue_types_by_project_example_call_tool.py +++ b/public/examples/integrations/toolkits/jira/list_issue_types_by_project_example_call_tool.py @@ -3,7 +3,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" # Unique identifier for your user (email, UUID, etc.) +USER_ID = "{arcade_user_id}" # Unique identifier for your user (email, UUID, etc.) TOOL_NAME = "Jira.ListIssueTypesByProject" auth_response = client.tools.authorize(tool_name=TOOL_NAME) diff --git a/public/examples/integrations/toolkits/jira/list_issues_example_call_tool.js b/public/examples/integrations/toolkits/jira/list_issues_example_call_tool.js index 3aeb8a882..7242e56e4 100644 --- a/public/examples/integrations/toolkits/jira/list_issues_example_call_tool.js +++ b/public/examples/integrations/toolkits/jira/list_issues_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; // Unique identifier for your user (email, UUID, etc.) +const USER_ID = "{arcade_user_id}"; // Unique identifier for your user (email, UUID, etc.) const TOOL_NAME = "Jira.ListIssues"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/jira/list_issues_example_call_tool.py b/public/examples/integrations/toolkits/jira/list_issues_example_call_tool.py index 7c85680d0..e96922faa 100644 --- a/public/examples/integrations/toolkits/jira/list_issues_example_call_tool.py +++ b/public/examples/integrations/toolkits/jira/list_issues_example_call_tool.py @@ -3,7 +3,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" # Unique identifier for your user (email, UUID, etc.) +USER_ID = "{arcade_user_id}" # Unique identifier for your user (email, UUID, etc.) TOOL_NAME = "Jira.ListIssues" auth_response = client.tools.authorize(tool_name=TOOL_NAME) diff --git a/public/examples/integrations/toolkits/jira/list_labels_example_call_tool.js b/public/examples/integrations/toolkits/jira/list_labels_example_call_tool.js index 8ebef9d79..f449761fb 100644 --- a/public/examples/integrations/toolkits/jira/list_labels_example_call_tool.js +++ b/public/examples/integrations/toolkits/jira/list_labels_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; // Unique identifier for your user (email, UUID, etc.) +const USER_ID = "{arcade_user_id}"; // Unique identifier for your user (email, UUID, etc.) const TOOL_NAME = "Jira.ListLabels"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/jira/list_labels_example_call_tool.py b/public/examples/integrations/toolkits/jira/list_labels_example_call_tool.py index 759a4cefa..b22428ba2 100644 --- a/public/examples/integrations/toolkits/jira/list_labels_example_call_tool.py +++ b/public/examples/integrations/toolkits/jira/list_labels_example_call_tool.py @@ -3,7 +3,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" # Unique identifier for your user (email, UUID, etc.) +USER_ID = "{arcade_user_id}" # Unique identifier for your user (email, UUID, etc.) TOOL_NAME = "Jira.ListLabels" auth_response = client.tools.authorize(tool_name=TOOL_NAME) diff --git a/public/examples/integrations/toolkits/jira/list_priorities_associated_with_a_priority_scheme_example_call_tool.js b/public/examples/integrations/toolkits/jira/list_priorities_associated_with_a_priority_scheme_example_call_tool.js index 7bcc97afc..0e6f8ab20 100644 --- a/public/examples/integrations/toolkits/jira/list_priorities_associated_with_a_priority_scheme_example_call_tool.js +++ b/public/examples/integrations/toolkits/jira/list_priorities_associated_with_a_priority_scheme_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; // Unique identifier for your user (email, UUID, etc.) +const USER_ID = "{arcade_user_id}"; // Unique identifier for your user (email, UUID, etc.) const TOOL_NAME = "Jira.ListPrioritiesAssociatedWithAPriorityScheme"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/jira/list_priorities_associated_with_a_priority_scheme_example_call_tool.py b/public/examples/integrations/toolkits/jira/list_priorities_associated_with_a_priority_scheme_example_call_tool.py index 465a99df7..7be7b51ef 100644 --- a/public/examples/integrations/toolkits/jira/list_priorities_associated_with_a_priority_scheme_example_call_tool.py +++ b/public/examples/integrations/toolkits/jira/list_priorities_associated_with_a_priority_scheme_example_call_tool.py @@ -3,7 +3,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" # Unique identifier for your user (email, UUID, etc.) +USER_ID = "{arcade_user_id}" # Unique identifier for your user (email, UUID, etc.) TOOL_NAME = "Jira.ListPrioritiesAssociatedWithAPriorityScheme" auth_response = client.tools.authorize(tool_name=TOOL_NAME) diff --git a/public/examples/integrations/toolkits/jira/list_priorities_available_to_a_project_example_call_tool.js b/public/examples/integrations/toolkits/jira/list_priorities_available_to_a_project_example_call_tool.js index 6ee11efeb..da50c51c9 100644 --- a/public/examples/integrations/toolkits/jira/list_priorities_available_to_a_project_example_call_tool.js +++ b/public/examples/integrations/toolkits/jira/list_priorities_available_to_a_project_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; // Unique identifier for your user (email, UUID, etc.) +const USER_ID = "{arcade_user_id}"; // Unique identifier for your user (email, UUID, etc.) const TOOL_NAME = "Jira.ListPrioritiesAvailableToAProject"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/jira/list_priorities_available_to_a_project_example_call_tool.py b/public/examples/integrations/toolkits/jira/list_priorities_available_to_a_project_example_call_tool.py index e3322177d..4c8f0043c 100644 --- a/public/examples/integrations/toolkits/jira/list_priorities_available_to_a_project_example_call_tool.py +++ b/public/examples/integrations/toolkits/jira/list_priorities_available_to_a_project_example_call_tool.py @@ -3,7 +3,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" # Unique identifier for your user (email, UUID, etc.) +USER_ID = "{arcade_user_id}" # Unique identifier for your user (email, UUID, etc.) TOOL_NAME = "Jira.ListPrioritiesAvailableToAProject" auth_response = client.tools.authorize(tool_name=TOOL_NAME) diff --git a/public/examples/integrations/toolkits/jira/list_priorities_available_to_an_issue_example_call_tool.js b/public/examples/integrations/toolkits/jira/list_priorities_available_to_an_issue_example_call_tool.js index 0793baaea..b0dbc6b9e 100644 --- a/public/examples/integrations/toolkits/jira/list_priorities_available_to_an_issue_example_call_tool.js +++ b/public/examples/integrations/toolkits/jira/list_priorities_available_to_an_issue_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; // Unique identifier for your user (email, UUID, etc.) +const USER_ID = "{arcade_user_id}"; // Unique identifier for your user (email, UUID, etc.) const TOOL_NAME = "Jira.ListPrioritiesAvailableToAnIssue"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/jira/list_priorities_available_to_an_issue_example_call_tool.py b/public/examples/integrations/toolkits/jira/list_priorities_available_to_an_issue_example_call_tool.py index 084db4413..05308f670 100644 --- a/public/examples/integrations/toolkits/jira/list_priorities_available_to_an_issue_example_call_tool.py +++ b/public/examples/integrations/toolkits/jira/list_priorities_available_to_an_issue_example_call_tool.py @@ -3,7 +3,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" # Unique identifier for your user (email, UUID, etc.) +USER_ID = "{arcade_user_id}" # Unique identifier for your user (email, UUID, etc.) TOOL_NAME = "Jira.ListPrioritiesAvailableToAnIssue" auth_response = client.tools.authorize(tool_name=TOOL_NAME) diff --git a/public/examples/integrations/toolkits/jira/list_priority_schemes_example_call_tool.js b/public/examples/integrations/toolkits/jira/list_priority_schemes_example_call_tool.js index ccca894a5..ea1516430 100644 --- a/public/examples/integrations/toolkits/jira/list_priority_schemes_example_call_tool.js +++ b/public/examples/integrations/toolkits/jira/list_priority_schemes_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; // Unique identifier for your user (email, UUID, etc.) +const USER_ID = "{arcade_user_id}"; // Unique identifier for your user (email, UUID, etc.) const TOOL_NAME = "Jira.ListPrioritySchemes"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/jira/list_priority_schemes_example_call_tool.py b/public/examples/integrations/toolkits/jira/list_priority_schemes_example_call_tool.py index b01305112..7e5ab2d68 100644 --- a/public/examples/integrations/toolkits/jira/list_priority_schemes_example_call_tool.py +++ b/public/examples/integrations/toolkits/jira/list_priority_schemes_example_call_tool.py @@ -3,7 +3,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" # Unique identifier for your user (email, UUID, etc.) +USER_ID = "{arcade_user_id}" # Unique identifier for your user (email, UUID, etc.) TOOL_NAME = "Jira.ListPrioritySchemes" auth_response = client.tools.authorize(tool_name=TOOL_NAME) diff --git a/public/examples/integrations/toolkits/jira/list_projects_associated_with_a_priority_scheme_example_call_tool.js b/public/examples/integrations/toolkits/jira/list_projects_associated_with_a_priority_scheme_example_call_tool.js index efca381ee..a56cd9f64 100644 --- a/public/examples/integrations/toolkits/jira/list_projects_associated_with_a_priority_scheme_example_call_tool.js +++ b/public/examples/integrations/toolkits/jira/list_projects_associated_with_a_priority_scheme_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; // Unique identifier for your user (email, UUID, etc.) +const USER_ID = "{arcade_user_id}"; // Unique identifier for your user (email, UUID, etc.) const TOOL_NAME = "Jira.ListProjectsAssociatedWithAPriorityScheme"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/jira/list_projects_associated_with_a_priority_scheme_example_call_tool.py b/public/examples/integrations/toolkits/jira/list_projects_associated_with_a_priority_scheme_example_call_tool.py index 09c722eca..70de1fa2e 100644 --- a/public/examples/integrations/toolkits/jira/list_projects_associated_with_a_priority_scheme_example_call_tool.py +++ b/public/examples/integrations/toolkits/jira/list_projects_associated_with_a_priority_scheme_example_call_tool.py @@ -3,7 +3,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" # Unique identifier for your user (email, UUID, etc.) +USER_ID = "{arcade_user_id}" # Unique identifier for your user (email, UUID, etc.) TOOL_NAME = "Jira.ListProjectsAssociatedWithAPriorityScheme" auth_response = client.tools.authorize(tool_name=TOOL_NAME) diff --git a/public/examples/integrations/toolkits/jira/list_projects_example_call_tool.js b/public/examples/integrations/toolkits/jira/list_projects_example_call_tool.js index ea569a03d..69247348d 100644 --- a/public/examples/integrations/toolkits/jira/list_projects_example_call_tool.js +++ b/public/examples/integrations/toolkits/jira/list_projects_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; // Unique identifier for your user (email, UUID, etc.) +const USER_ID = "{arcade_user_id}"; // Unique identifier for your user (email, UUID, etc.) const TOOL_NAME = "Jira.ListProjects"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/jira/list_projects_example_call_tool.py b/public/examples/integrations/toolkits/jira/list_projects_example_call_tool.py index 5d62fed09..37036a19d 100644 --- a/public/examples/integrations/toolkits/jira/list_projects_example_call_tool.py +++ b/public/examples/integrations/toolkits/jira/list_projects_example_call_tool.py @@ -3,7 +3,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" # Unique identifier for your user (email, UUID, etc.) +USER_ID = "{arcade_user_id}" # Unique identifier for your user (email, UUID, etc.) TOOL_NAME = "Jira.ListProjects" auth_response = client.tools.authorize(tool_name=TOOL_NAME) diff --git a/public/examples/integrations/toolkits/jira/list_users_example_call_tool.js b/public/examples/integrations/toolkits/jira/list_users_example_call_tool.js index 3dcfe5edb..55f50054c 100644 --- a/public/examples/integrations/toolkits/jira/list_users_example_call_tool.js +++ b/public/examples/integrations/toolkits/jira/list_users_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; // Unique identifier for your user (email, UUID, etc.) +const USER_ID = "{arcade_user_id}"; // Unique identifier for your user (email, UUID, etc.) const TOOL_NAME = "Jira.ListUsers"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/jira/list_users_example_call_tool.py b/public/examples/integrations/toolkits/jira/list_users_example_call_tool.py index ffe95e695..1904c10fa 100644 --- a/public/examples/integrations/toolkits/jira/list_users_example_call_tool.py +++ b/public/examples/integrations/toolkits/jira/list_users_example_call_tool.py @@ -3,7 +3,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" # Unique identifier for your user (email, UUID, etc.) +USER_ID = "{arcade_user_id}" # Unique identifier for your user (email, UUID, etc.) TOOL_NAME = "Jira.ListUsers" auth_response = client.tools.authorize(tool_name=TOOL_NAME) diff --git a/public/examples/integrations/toolkits/jira/remove_labels_from_issue_example_call_tool.js b/public/examples/integrations/toolkits/jira/remove_labels_from_issue_example_call_tool.js index 8079ef8b4..60b46a30c 100644 --- a/public/examples/integrations/toolkits/jira/remove_labels_from_issue_example_call_tool.js +++ b/public/examples/integrations/toolkits/jira/remove_labels_from_issue_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; // Unique identifier for your user (email, UUID, etc.) +const USER_ID = "{arcade_user_id}"; // Unique identifier for your user (email, UUID, etc.) const TOOL_NAME = "Jira.RemoveLabelsFromIssue"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/jira/remove_labels_from_issue_example_call_tool.py b/public/examples/integrations/toolkits/jira/remove_labels_from_issue_example_call_tool.py index 621c7c4f7..707a2964b 100644 --- a/public/examples/integrations/toolkits/jira/remove_labels_from_issue_example_call_tool.py +++ b/public/examples/integrations/toolkits/jira/remove_labels_from_issue_example_call_tool.py @@ -3,7 +3,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" # Unique identifier for your user (email, UUID, etc.) +USER_ID = "{arcade_user_id}" # Unique identifier for your user (email, UUID, etc.) TOOL_NAME = "Jira.RemoveLabelsFromIssue" auth_response = client.tools.authorize(tool_name=TOOL_NAME) diff --git a/public/examples/integrations/toolkits/jira/search_issues_with_jql_example_call_tool.js b/public/examples/integrations/toolkits/jira/search_issues_with_jql_example_call_tool.js index e573eb569..1718771f2 100644 --- a/public/examples/integrations/toolkits/jira/search_issues_with_jql_example_call_tool.js +++ b/public/examples/integrations/toolkits/jira/search_issues_with_jql_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; // Unique identifier for your user (email, UUID, etc.) +const USER_ID = "{arcade_user_id}"; // Unique identifier for your user (email, UUID, etc.) const TOOL_NAME = "Jira.SearchIssuesWithJql"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/jira/search_issues_with_jql_example_call_tool.py b/public/examples/integrations/toolkits/jira/search_issues_with_jql_example_call_tool.py index 05b7aec3a..d7427dcf9 100644 --- a/public/examples/integrations/toolkits/jira/search_issues_with_jql_example_call_tool.py +++ b/public/examples/integrations/toolkits/jira/search_issues_with_jql_example_call_tool.py @@ -3,7 +3,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" # Unique identifier for your user (email, UUID, etc.) +USER_ID = "{arcade_user_id}" # Unique identifier for your user (email, UUID, etc.) TOOL_NAME = "Jira.SearchIssuesWithJql" auth_response = client.tools.authorize(tool_name=TOOL_NAME) diff --git a/public/examples/integrations/toolkits/jira/search_issues_without_jql_example_call_tool.js b/public/examples/integrations/toolkits/jira/search_issues_without_jql_example_call_tool.js index 7905417ad..c643a536b 100644 --- a/public/examples/integrations/toolkits/jira/search_issues_without_jql_example_call_tool.js +++ b/public/examples/integrations/toolkits/jira/search_issues_without_jql_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; // Unique identifier for your user (email, UUID, etc.) +const USER_ID = "{arcade_user_id}"; // Unique identifier for your user (email, UUID, etc.) const TOOL_NAME = "Jira.SearchIssuesWithoutJql"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/jira/search_issues_without_jql_example_call_tool.py b/public/examples/integrations/toolkits/jira/search_issues_without_jql_example_call_tool.py index 4d6835734..5c0ad336a 100644 --- a/public/examples/integrations/toolkits/jira/search_issues_without_jql_example_call_tool.py +++ b/public/examples/integrations/toolkits/jira/search_issues_without_jql_example_call_tool.py @@ -3,7 +3,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" # Unique identifier for your user (email, UUID, etc.) +USER_ID = "{arcade_user_id}" # Unique identifier for your user (email, UUID, etc.) TOOL_NAME = "Jira.SearchIssuesWithoutJql" auth_response = client.tools.authorize(tool_name=TOOL_NAME) diff --git a/public/examples/integrations/toolkits/jira/search_projects_example_call_tool.js b/public/examples/integrations/toolkits/jira/search_projects_example_call_tool.js index 36f24154b..5a37f856f 100644 --- a/public/examples/integrations/toolkits/jira/search_projects_example_call_tool.js +++ b/public/examples/integrations/toolkits/jira/search_projects_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; // Unique identifier for your user (email, UUID, etc.) +const USER_ID = "{arcade_user_id}"; // Unique identifier for your user (email, UUID, etc.) const TOOL_NAME = "Jira.SearchProjects"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/jira/search_projects_example_call_tool.py b/public/examples/integrations/toolkits/jira/search_projects_example_call_tool.py index cb1a52ec3..51bf2fdaf 100644 --- a/public/examples/integrations/toolkits/jira/search_projects_example_call_tool.py +++ b/public/examples/integrations/toolkits/jira/search_projects_example_call_tool.py @@ -3,7 +3,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" # Unique identifier for your user (email, UUID, etc.) +USER_ID = "{arcade_user_id}" # Unique identifier for your user (email, UUID, etc.) TOOL_NAME = "Jira.SearchProjects" auth_response = client.tools.authorize(tool_name=TOOL_NAME) diff --git a/public/examples/integrations/toolkits/jira/transition_issue_to_new_status_example_call_tool.js b/public/examples/integrations/toolkits/jira/transition_issue_to_new_status_example_call_tool.js index 0186395c7..e4f7fd811 100644 --- a/public/examples/integrations/toolkits/jira/transition_issue_to_new_status_example_call_tool.js +++ b/public/examples/integrations/toolkits/jira/transition_issue_to_new_status_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; // Unique identifier for your user (email, UUID, etc.) +const USER_ID = "{arcade_user_id}"; // Unique identifier for your user (email, UUID, etc.) const TOOL_NAME = "Jira.TransitionIssueToNewStatus"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/jira/transition_issue_to_new_status_example_call_tool.py b/public/examples/integrations/toolkits/jira/transition_issue_to_new_status_example_call_tool.py index e5828bca2..f119397c7 100644 --- a/public/examples/integrations/toolkits/jira/transition_issue_to_new_status_example_call_tool.py +++ b/public/examples/integrations/toolkits/jira/transition_issue_to_new_status_example_call_tool.py @@ -3,7 +3,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" # Unique identifier for your user (email, UUID, etc.) +USER_ID = "{arcade_user_id}" # Unique identifier for your user (email, UUID, etc.) TOOL_NAME = "Jira.TransitionIssueToNewStatus" auth_response = client.tools.authorize(tool_name=TOOL_NAME) diff --git a/public/examples/integrations/toolkits/jira/update_issue_example_call_tool.js b/public/examples/integrations/toolkits/jira/update_issue_example_call_tool.js index ffee97c00..44bc7b574 100644 --- a/public/examples/integrations/toolkits/jira/update_issue_example_call_tool.js +++ b/public/examples/integrations/toolkits/jira/update_issue_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; // Unique identifier for your user (email, UUID, etc.) +const USER_ID = "{arcade_user_id}"; // Unique identifier for your user (email, UUID, etc.) const TOOL_NAME = "Jira.UpdateIssue"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/jira/update_issue_example_call_tool.py b/public/examples/integrations/toolkits/jira/update_issue_example_call_tool.py index 3115c17b1..3205c3d52 100644 --- a/public/examples/integrations/toolkits/jira/update_issue_example_call_tool.py +++ b/public/examples/integrations/toolkits/jira/update_issue_example_call_tool.py @@ -3,7 +3,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" # Unique identifier for your user (email, UUID, etc.) +USER_ID = "{arcade_user_id}" # Unique identifier for your user (email, UUID, etc.) TOOL_NAME = "Jira.UpdateIssue" auth_response = client.tools.authorize(tool_name=TOOL_NAME) diff --git a/public/examples/integrations/toolkits/linkedin/create_text_post_example_call_tool.js b/public/examples/integrations/toolkits/linkedin/create_text_post_example_call_tool.js index 0fa6bb240..09dc5994f 100644 --- a/public/examples/integrations/toolkits/linkedin/create_text_post_example_call_tool.js +++ b/public/examples/integrations/toolkits/linkedin/create_text_post_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "LinkedIn.CreateTextPost"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/linkedin/create_text_post_example_call_tool.py b/public/examples/integrations/toolkits/linkedin/create_text_post_example_call_tool.py index b629d2802..ceb2dfb3a 100644 --- a/public/examples/integrations/toolkits/linkedin/create_text_post_example_call_tool.py +++ b/public/examples/integrations/toolkits/linkedin/create_text_post_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "LinkedIn.CreateTextPost" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/microsoft/outlook_calendar/create_event_example_call_tool.js b/public/examples/integrations/toolkits/microsoft/outlook_calendar/create_event_example_call_tool.js index 473a14a1c..703209277 100644 --- a/public/examples/integrations/toolkits/microsoft/outlook_calendar/create_event_example_call_tool.js +++ b/public/examples/integrations/toolkits/microsoft/outlook_calendar/create_event_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Microsoft.CreateEvent"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/microsoft/outlook_calendar/create_event_example_call_tool.py b/public/examples/integrations/toolkits/microsoft/outlook_calendar/create_event_example_call_tool.py index 5f6c59f72..5a558575a 100644 --- a/public/examples/integrations/toolkits/microsoft/outlook_calendar/create_event_example_call_tool.py +++ b/public/examples/integrations/toolkits/microsoft/outlook_calendar/create_event_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Microsoft.CreateEvent" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/microsoft/outlook_calendar/get_event_example_call_tool.js b/public/examples/integrations/toolkits/microsoft/outlook_calendar/get_event_example_call_tool.js index a5560466f..9721e3f1d 100644 --- a/public/examples/integrations/toolkits/microsoft/outlook_calendar/get_event_example_call_tool.js +++ b/public/examples/integrations/toolkits/microsoft/outlook_calendar/get_event_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Microsoft.GetEvent"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/microsoft/outlook_calendar/get_event_example_call_tool.py b/public/examples/integrations/toolkits/microsoft/outlook_calendar/get_event_example_call_tool.py index 769af1c22..c571e2dfb 100644 --- a/public/examples/integrations/toolkits/microsoft/outlook_calendar/get_event_example_call_tool.py +++ b/public/examples/integrations/toolkits/microsoft/outlook_calendar/get_event_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Microsoft.GetEvent" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/microsoft/outlook_calendar/list_events_in_time_range_example_call_tool.js b/public/examples/integrations/toolkits/microsoft/outlook_calendar/list_events_in_time_range_example_call_tool.js index efd1a0458..e09acccb8 100644 --- a/public/examples/integrations/toolkits/microsoft/outlook_calendar/list_events_in_time_range_example_call_tool.js +++ b/public/examples/integrations/toolkits/microsoft/outlook_calendar/list_events_in_time_range_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Microsoft.ListEventsInTimeRange"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/microsoft/outlook_calendar/list_events_in_time_range_example_call_tool.py b/public/examples/integrations/toolkits/microsoft/outlook_calendar/list_events_in_time_range_example_call_tool.py index 47efcd377..82cc2b883 100644 --- a/public/examples/integrations/toolkits/microsoft/outlook_calendar/list_events_in_time_range_example_call_tool.py +++ b/public/examples/integrations/toolkits/microsoft/outlook_calendar/list_events_in_time_range_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Microsoft.ListEventsInTimeRange" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/microsoft/outlook_mail/create_and_send_email_example_call_tool.js b/public/examples/integrations/toolkits/microsoft/outlook_mail/create_and_send_email_example_call_tool.js index a787eb1ff..7b6856821 100644 --- a/public/examples/integrations/toolkits/microsoft/outlook_mail/create_and_send_email_example_call_tool.js +++ b/public/examples/integrations/toolkits/microsoft/outlook_mail/create_and_send_email_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Microsoft.CreateAndSendEmail"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/microsoft/outlook_mail/create_and_send_email_example_call_tool.py b/public/examples/integrations/toolkits/microsoft/outlook_mail/create_and_send_email_example_call_tool.py index d54ac5320..40763f576 100644 --- a/public/examples/integrations/toolkits/microsoft/outlook_mail/create_and_send_email_example_call_tool.py +++ b/public/examples/integrations/toolkits/microsoft/outlook_mail/create_and_send_email_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Microsoft.CreateAndSendEmail" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/microsoft/outlook_mail/create_draft_email_example_call_tool.js b/public/examples/integrations/toolkits/microsoft/outlook_mail/create_draft_email_example_call_tool.js index 0c9d24687..c2dbdb95e 100644 --- a/public/examples/integrations/toolkits/microsoft/outlook_mail/create_draft_email_example_call_tool.js +++ b/public/examples/integrations/toolkits/microsoft/outlook_mail/create_draft_email_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Microsoft.CreateDraftEmail"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/microsoft/outlook_mail/create_draft_email_example_call_tool.py b/public/examples/integrations/toolkits/microsoft/outlook_mail/create_draft_email_example_call_tool.py index ab3dc8bcd..39a2440a0 100644 --- a/public/examples/integrations/toolkits/microsoft/outlook_mail/create_draft_email_example_call_tool.py +++ b/public/examples/integrations/toolkits/microsoft/outlook_mail/create_draft_email_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Microsoft.CreateDraftEmail" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/microsoft/outlook_mail/list_emails_by_property_example_call_tool.js b/public/examples/integrations/toolkits/microsoft/outlook_mail/list_emails_by_property_example_call_tool.js index ec1c90b19..4d33b492c 100644 --- a/public/examples/integrations/toolkits/microsoft/outlook_mail/list_emails_by_property_example_call_tool.js +++ b/public/examples/integrations/toolkits/microsoft/outlook_mail/list_emails_by_property_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Microsoft.ListEmailsByProperty"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/microsoft/outlook_mail/list_emails_by_property_example_call_tool.py b/public/examples/integrations/toolkits/microsoft/outlook_mail/list_emails_by_property_example_call_tool.py index f29a3fbb1..ee7edfae8 100644 --- a/public/examples/integrations/toolkits/microsoft/outlook_mail/list_emails_by_property_example_call_tool.py +++ b/public/examples/integrations/toolkits/microsoft/outlook_mail/list_emails_by_property_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Microsoft.ListEmailsByProperty" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/microsoft/outlook_mail/list_emails_example_call_tool.js b/public/examples/integrations/toolkits/microsoft/outlook_mail/list_emails_example_call_tool.js index 7b19d1093..804c8ba52 100644 --- a/public/examples/integrations/toolkits/microsoft/outlook_mail/list_emails_example_call_tool.js +++ b/public/examples/integrations/toolkits/microsoft/outlook_mail/list_emails_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Microsoft.ListEmails"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/microsoft/outlook_mail/list_emails_example_call_tool.py b/public/examples/integrations/toolkits/microsoft/outlook_mail/list_emails_example_call_tool.py index 78695f694..dad319be5 100644 --- a/public/examples/integrations/toolkits/microsoft/outlook_mail/list_emails_example_call_tool.py +++ b/public/examples/integrations/toolkits/microsoft/outlook_mail/list_emails_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Microsoft.ListEmails" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/microsoft/outlook_mail/list_emails_in_folder_example_call_tool.js b/public/examples/integrations/toolkits/microsoft/outlook_mail/list_emails_in_folder_example_call_tool.js index 586077afd..98f5b2161 100644 --- a/public/examples/integrations/toolkits/microsoft/outlook_mail/list_emails_in_folder_example_call_tool.js +++ b/public/examples/integrations/toolkits/microsoft/outlook_mail/list_emails_in_folder_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Microsoft.ListEmailsInFolder"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/microsoft/outlook_mail/list_emails_in_folder_example_call_tool.py b/public/examples/integrations/toolkits/microsoft/outlook_mail/list_emails_in_folder_example_call_tool.py index c2d9ca00b..e0d897120 100644 --- a/public/examples/integrations/toolkits/microsoft/outlook_mail/list_emails_in_folder_example_call_tool.py +++ b/public/examples/integrations/toolkits/microsoft/outlook_mail/list_emails_in_folder_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Microsoft.ListEmailsInFolder" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/microsoft/outlook_mail/reply_to_email_example_call_tool.js b/public/examples/integrations/toolkits/microsoft/outlook_mail/reply_to_email_example_call_tool.js index bf03362c9..082789783 100644 --- a/public/examples/integrations/toolkits/microsoft/outlook_mail/reply_to_email_example_call_tool.js +++ b/public/examples/integrations/toolkits/microsoft/outlook_mail/reply_to_email_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Microsoft.ReplyToEmail"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/microsoft/outlook_mail/reply_to_email_example_call_tool.py b/public/examples/integrations/toolkits/microsoft/outlook_mail/reply_to_email_example_call_tool.py index cff0d95c8..8fcd3e62c 100644 --- a/public/examples/integrations/toolkits/microsoft/outlook_mail/reply_to_email_example_call_tool.py +++ b/public/examples/integrations/toolkits/microsoft/outlook_mail/reply_to_email_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Microsoft.ReplyToEmail" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/microsoft/outlook_mail/send_draft_email_example_call_tool.js b/public/examples/integrations/toolkits/microsoft/outlook_mail/send_draft_email_example_call_tool.js index 241572134..b2bbc2a24 100644 --- a/public/examples/integrations/toolkits/microsoft/outlook_mail/send_draft_email_example_call_tool.js +++ b/public/examples/integrations/toolkits/microsoft/outlook_mail/send_draft_email_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Microsoft.SendDraftEmail"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/microsoft/outlook_mail/send_draft_email_example_call_tool.py b/public/examples/integrations/toolkits/microsoft/outlook_mail/send_draft_email_example_call_tool.py index fb5f58116..181ad83aa 100644 --- a/public/examples/integrations/toolkits/microsoft/outlook_mail/send_draft_email_example_call_tool.py +++ b/public/examples/integrations/toolkits/microsoft/outlook_mail/send_draft_email_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Microsoft.SendDraftEmail" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/microsoft/outlook_mail/update_draft_email_example_call_tool.js b/public/examples/integrations/toolkits/microsoft/outlook_mail/update_draft_email_example_call_tool.js index 8f99af417..d10e194f2 100644 --- a/public/examples/integrations/toolkits/microsoft/outlook_mail/update_draft_email_example_call_tool.js +++ b/public/examples/integrations/toolkits/microsoft/outlook_mail/update_draft_email_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Microsoft.UpdateDraftEmail"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/microsoft/outlook_mail/update_draft_email_example_call_tool.py b/public/examples/integrations/toolkits/microsoft/outlook_mail/update_draft_email_example_call_tool.py index b58a2ced7..4659d5719 100644 --- a/public/examples/integrations/toolkits/microsoft/outlook_mail/update_draft_email_example_call_tool.py +++ b/public/examples/integrations/toolkits/microsoft/outlook_mail/update_draft_email_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Microsoft.UpdateDraftEmail" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/notion/create_page_example_call_tool.js b/public/examples/integrations/toolkits/notion/create_page_example_call_tool.js index f5efdb307..2cee92aaf 100644 --- a/public/examples/integrations/toolkits/notion/create_page_example_call_tool.js +++ b/public/examples/integrations/toolkits/notion/create_page_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "NotionToolkit.CreatePage"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/notion/create_page_example_call_tool.py b/public/examples/integrations/toolkits/notion/create_page_example_call_tool.py index ef88a81e5..a99c74270 100644 --- a/public/examples/integrations/toolkits/notion/create_page_example_call_tool.py +++ b/public/examples/integrations/toolkits/notion/create_page_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "NotionToolkit.CreatePage" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/notion/get_object_metadata_example_call_tool.js b/public/examples/integrations/toolkits/notion/get_object_metadata_example_call_tool.js index 7cae6e59b..6940c052a 100644 --- a/public/examples/integrations/toolkits/notion/get_object_metadata_example_call_tool.js +++ b/public/examples/integrations/toolkits/notion/get_object_metadata_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "NotionToolkit.GetObjectMetadata"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/notion/get_object_metadata_example_call_tool.py b/public/examples/integrations/toolkits/notion/get_object_metadata_example_call_tool.py index dab3ed09d..caf0a2e92 100644 --- a/public/examples/integrations/toolkits/notion/get_object_metadata_example_call_tool.py +++ b/public/examples/integrations/toolkits/notion/get_object_metadata_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "NotionToolkit.GetObjectMetadata" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/notion/get_page_content_by_id_example_call_tool.js b/public/examples/integrations/toolkits/notion/get_page_content_by_id_example_call_tool.js index a17c9bc5c..7b4255196 100644 --- a/public/examples/integrations/toolkits/notion/get_page_content_by_id_example_call_tool.js +++ b/public/examples/integrations/toolkits/notion/get_page_content_by_id_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "NotionToolkit.GetPageContentById"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/notion/get_page_content_by_id_example_call_tool.py b/public/examples/integrations/toolkits/notion/get_page_content_by_id_example_call_tool.py index 59d6f58f9..03c3b0aed 100644 --- a/public/examples/integrations/toolkits/notion/get_page_content_by_id_example_call_tool.py +++ b/public/examples/integrations/toolkits/notion/get_page_content_by_id_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "NotionToolkit.GetPageContentById" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/notion/get_page_content_by_title_example_call_tool.js b/public/examples/integrations/toolkits/notion/get_page_content_by_title_example_call_tool.js index 1172975f8..3e63be2ef 100644 --- a/public/examples/integrations/toolkits/notion/get_page_content_by_title_example_call_tool.js +++ b/public/examples/integrations/toolkits/notion/get_page_content_by_title_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "NotionToolkit.GetPageContentByTitle"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/notion/get_page_content_by_title_example_call_tool.py b/public/examples/integrations/toolkits/notion/get_page_content_by_title_example_call_tool.py index dd223a03a..48752efb5 100644 --- a/public/examples/integrations/toolkits/notion/get_page_content_by_title_example_call_tool.py +++ b/public/examples/integrations/toolkits/notion/get_page_content_by_title_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "NotionToolkit.GetPageContentByTitle" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/notion/get_workspace_structure_example_call_tool.js b/public/examples/integrations/toolkits/notion/get_workspace_structure_example_call_tool.js index c50c08deb..000a74006 100644 --- a/public/examples/integrations/toolkits/notion/get_workspace_structure_example_call_tool.js +++ b/public/examples/integrations/toolkits/notion/get_workspace_structure_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "NotionToolkit.GetWorkspaceStructure"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/notion/get_workspace_structure_example_call_tool.py b/public/examples/integrations/toolkits/notion/get_workspace_structure_example_call_tool.py index 04d09f0d9..722d5bf41 100644 --- a/public/examples/integrations/toolkits/notion/get_workspace_structure_example_call_tool.py +++ b/public/examples/integrations/toolkits/notion/get_workspace_structure_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "NotionToolkit.GetWorkspaceStructure" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/notion/search_by_title_example_call_tool.js b/public/examples/integrations/toolkits/notion/search_by_title_example_call_tool.js index e94d36c1b..dc6b57da5 100644 --- a/public/examples/integrations/toolkits/notion/search_by_title_example_call_tool.js +++ b/public/examples/integrations/toolkits/notion/search_by_title_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "NotionToolkit.SearchByTitle"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/notion/search_by_title_example_call_tool.py b/public/examples/integrations/toolkits/notion/search_by_title_example_call_tool.py index d80e525d0..3ed8ab6a7 100644 --- a/public/examples/integrations/toolkits/notion/search_by_title_example_call_tool.py +++ b/public/examples/integrations/toolkits/notion/search_by_title_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "NotionToolkit.SearchByTitle" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/reddit/check_subreddit_access_example_call_tool.js b/public/examples/integrations/toolkits/reddit/check_subreddit_access_example_call_tool.js index 9c071916f..353beb301 100644 --- a/public/examples/integrations/toolkits/reddit/check_subreddit_access_example_call_tool.js +++ b/public/examples/integrations/toolkits/reddit/check_subreddit_access_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Reddit.CheckSubredditAccess"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/reddit/check_subreddit_access_example_call_tool.py b/public/examples/integrations/toolkits/reddit/check_subreddit_access_example_call_tool.py index 4dcda4581..6dc5baaa4 100644 --- a/public/examples/integrations/toolkits/reddit/check_subreddit_access_example_call_tool.py +++ b/public/examples/integrations/toolkits/reddit/check_subreddit_access_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Reddit.CheckSubredditAccess" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/reddit/comment_on_post_example_call_tool.js b/public/examples/integrations/toolkits/reddit/comment_on_post_example_call_tool.js index 7b527d2d5..81265ea01 100644 --- a/public/examples/integrations/toolkits/reddit/comment_on_post_example_call_tool.js +++ b/public/examples/integrations/toolkits/reddit/comment_on_post_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Reddit.CommentOnPost"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/reddit/comment_on_post_example_call_tool.py b/public/examples/integrations/toolkits/reddit/comment_on_post_example_call_tool.py index c7b278f16..4a029e0dd 100644 --- a/public/examples/integrations/toolkits/reddit/comment_on_post_example_call_tool.py +++ b/public/examples/integrations/toolkits/reddit/comment_on_post_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Reddit.CommentOnPost" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/reddit/get_content_of_multiple_posts_example_call_tool.js b/public/examples/integrations/toolkits/reddit/get_content_of_multiple_posts_example_call_tool.js index 486010dff..9d10b8155 100644 --- a/public/examples/integrations/toolkits/reddit/get_content_of_multiple_posts_example_call_tool.js +++ b/public/examples/integrations/toolkits/reddit/get_content_of_multiple_posts_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Reddit.GetContentOfMultiplePosts"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/reddit/get_content_of_multiple_posts_example_call_tool.py b/public/examples/integrations/toolkits/reddit/get_content_of_multiple_posts_example_call_tool.py index d4a8cdc4d..023e46e71 100644 --- a/public/examples/integrations/toolkits/reddit/get_content_of_multiple_posts_example_call_tool.py +++ b/public/examples/integrations/toolkits/reddit/get_content_of_multiple_posts_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Reddit.GetContentOfMultiplePosts" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/reddit/get_content_of_post_example_call_tool.js b/public/examples/integrations/toolkits/reddit/get_content_of_post_example_call_tool.js index b98fbc3d1..5bc88841a 100644 --- a/public/examples/integrations/toolkits/reddit/get_content_of_post_example_call_tool.js +++ b/public/examples/integrations/toolkits/reddit/get_content_of_post_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Reddit.GetContentOfPost"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/reddit/get_content_of_post_example_call_tool.py b/public/examples/integrations/toolkits/reddit/get_content_of_post_example_call_tool.py index 6103d471c..ac40f8e29 100644 --- a/public/examples/integrations/toolkits/reddit/get_content_of_post_example_call_tool.py +++ b/public/examples/integrations/toolkits/reddit/get_content_of_post_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Reddit.GetContentOfPost" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/reddit/get_my_posts_example_call_tool.js b/public/examples/integrations/toolkits/reddit/get_my_posts_example_call_tool.js index e814ceec9..5300c0338 100644 --- a/public/examples/integrations/toolkits/reddit/get_my_posts_example_call_tool.js +++ b/public/examples/integrations/toolkits/reddit/get_my_posts_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Reddit.GetMyPosts"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/reddit/get_my_posts_example_call_tool.py b/public/examples/integrations/toolkits/reddit/get_my_posts_example_call_tool.py index 7034dacee..f4d6c227e 100644 --- a/public/examples/integrations/toolkits/reddit/get_my_posts_example_call_tool.py +++ b/public/examples/integrations/toolkits/reddit/get_my_posts_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Reddit.GetMyPosts" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/reddit/get_my_username_example_call_tool.js b/public/examples/integrations/toolkits/reddit/get_my_username_example_call_tool.js index cc56d1b32..9f489d926 100644 --- a/public/examples/integrations/toolkits/reddit/get_my_username_example_call_tool.js +++ b/public/examples/integrations/toolkits/reddit/get_my_username_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Reddit.GetMyUsername"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/reddit/get_my_username_example_call_tool.py b/public/examples/integrations/toolkits/reddit/get_my_username_example_call_tool.py index 0e9f55036..ed5eb7acb 100644 --- a/public/examples/integrations/toolkits/reddit/get_my_username_example_call_tool.py +++ b/public/examples/integrations/toolkits/reddit/get_my_username_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Reddit.GetMyUsername" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/reddit/get_posts_in_subreddit_example_call_tool.js b/public/examples/integrations/toolkits/reddit/get_posts_in_subreddit_example_call_tool.js index 6b909d106..072d7f52a 100644 --- a/public/examples/integrations/toolkits/reddit/get_posts_in_subreddit_example_call_tool.js +++ b/public/examples/integrations/toolkits/reddit/get_posts_in_subreddit_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Reddit.GetPostsInSubreddit"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/reddit/get_posts_in_subreddit_example_call_tool.py b/public/examples/integrations/toolkits/reddit/get_posts_in_subreddit_example_call_tool.py index 4e42db11a..c05f85c60 100644 --- a/public/examples/integrations/toolkits/reddit/get_posts_in_subreddit_example_call_tool.py +++ b/public/examples/integrations/toolkits/reddit/get_posts_in_subreddit_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Reddit.GetPostsInSubreddit" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/reddit/get_subreddit_rules_example_call_tool.js b/public/examples/integrations/toolkits/reddit/get_subreddit_rules_example_call_tool.js index 373639235..5253b3ba5 100644 --- a/public/examples/integrations/toolkits/reddit/get_subreddit_rules_example_call_tool.js +++ b/public/examples/integrations/toolkits/reddit/get_subreddit_rules_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Reddit.GetSubredditRules"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/reddit/get_subreddit_rules_example_call_tool.py b/public/examples/integrations/toolkits/reddit/get_subreddit_rules_example_call_tool.py index e0ddfb6f8..20c79add1 100644 --- a/public/examples/integrations/toolkits/reddit/get_subreddit_rules_example_call_tool.py +++ b/public/examples/integrations/toolkits/reddit/get_subreddit_rules_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Reddit.GetSubredditRules" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/reddit/get_top_level_comments_of_post_example_call_tool.js b/public/examples/integrations/toolkits/reddit/get_top_level_comments_of_post_example_call_tool.js index c86ac5c74..6e6867f94 100644 --- a/public/examples/integrations/toolkits/reddit/get_top_level_comments_of_post_example_call_tool.js +++ b/public/examples/integrations/toolkits/reddit/get_top_level_comments_of_post_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Reddit.GetTopLevelCommentsOfPost"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/reddit/get_top_level_comments_of_post_example_call_tool.py b/public/examples/integrations/toolkits/reddit/get_top_level_comments_of_post_example_call_tool.py index b4d70fb49..2e50f486b 100644 --- a/public/examples/integrations/toolkits/reddit/get_top_level_comments_of_post_example_call_tool.py +++ b/public/examples/integrations/toolkits/reddit/get_top_level_comments_of_post_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Reddit.GetTopLevelCommentsOfPost" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/reddit/reply_to_comment_example_call_tool.js b/public/examples/integrations/toolkits/reddit/reply_to_comment_example_call_tool.js index a0a4543b8..c44ba7761 100644 --- a/public/examples/integrations/toolkits/reddit/reply_to_comment_example_call_tool.js +++ b/public/examples/integrations/toolkits/reddit/reply_to_comment_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Reddit.ReplyToComment"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/reddit/reply_to_comment_example_call_tool.py b/public/examples/integrations/toolkits/reddit/reply_to_comment_example_call_tool.py index d4cf49485..41a61cf1e 100644 --- a/public/examples/integrations/toolkits/reddit/reply_to_comment_example_call_tool.py +++ b/public/examples/integrations/toolkits/reddit/reply_to_comment_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Reddit.ReplyToComment" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/reddit/submit_text_post_example_call_tool.js b/public/examples/integrations/toolkits/reddit/submit_text_post_example_call_tool.js index 01371e033..c2d273747 100644 --- a/public/examples/integrations/toolkits/reddit/submit_text_post_example_call_tool.js +++ b/public/examples/integrations/toolkits/reddit/submit_text_post_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Reddit.SubmitTextPost"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/reddit/submit_text_post_example_call_tool.py b/public/examples/integrations/toolkits/reddit/submit_text_post_example_call_tool.py index d8ef54edb..114d577fb 100644 --- a/public/examples/integrations/toolkits/reddit/submit_text_post_example_call_tool.py +++ b/public/examples/integrations/toolkits/reddit/submit_text_post_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Reddit.SubmitTextPost" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/salesforce/create_contact_example_call_tool.js b/public/examples/integrations/toolkits/salesforce/create_contact_example_call_tool.js index acca0382d..a3dc2e345 100644 --- a/public/examples/integrations/toolkits/salesforce/create_contact_example_call_tool.js +++ b/public/examples/integrations/toolkits/salesforce/create_contact_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade({ baseURL: "http://localhost:9099" }); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Salesforce.CreateContact"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/salesforce/create_contact_example_call_tool.py b/public/examples/integrations/toolkits/salesforce/create_contact_example_call_tool.py index 4789a4f93..4ad42c155 100644 --- a/public/examples/integrations/toolkits/salesforce/create_contact_example_call_tool.py +++ b/public/examples/integrations/toolkits/salesforce/create_contact_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade(base_url="http://localhost:9099") # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Salesforce.CreateContact" auth_response = client.tools.authorize(tool_name=TOOL_NAME, user_id=USER_ID) diff --git a/public/examples/integrations/toolkits/salesforce/get_account_data_by_id_example_call_tool.js b/public/examples/integrations/toolkits/salesforce/get_account_data_by_id_example_call_tool.js index 36bdcd9af..b9378814f 100644 --- a/public/examples/integrations/toolkits/salesforce/get_account_data_by_id_example_call_tool.js +++ b/public/examples/integrations/toolkits/salesforce/get_account_data_by_id_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade({ baseURL: "http://localhost:9099" }); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "user@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Salesforce.GetAccountDataById"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/salesforce/get_account_data_by_id_example_call_tool.py b/public/examples/integrations/toolkits/salesforce/get_account_data_by_id_example_call_tool.py index c06da4f7c..05210f2ff 100644 --- a/public/examples/integrations/toolkits/salesforce/get_account_data_by_id_example_call_tool.py +++ b/public/examples/integrations/toolkits/salesforce/get_account_data_by_id_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade(base_url="http://localhost:9099") # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "user@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Salesforce.GetAccountDataById" auth_response = client.tools.authorize(tool_name=TOOL_NAME, user_id=USER_ID) diff --git a/public/examples/integrations/toolkits/salesforce/get_account_data_by_keywords_example_call_tool.js b/public/examples/integrations/toolkits/salesforce/get_account_data_by_keywords_example_call_tool.js index aca111277..dd7d599ff 100644 --- a/public/examples/integrations/toolkits/salesforce/get_account_data_by_keywords_example_call_tool.js +++ b/public/examples/integrations/toolkits/salesforce/get_account_data_by_keywords_example_call_tool.js @@ -3,7 +3,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade({ baseURL: "http://localhost:9099" }); // Automatically finds the `ARCADE_API_KEY` env variable const TOOL_NAME = "Salesforce.GetAccountDataByKeywords"; -const USER_ID = "user@example.com"; +const USER_ID = "{arcade_user_id}"; // Start the authorization process const authResponse = await client.tools.authorize({tool_name: TOOL_NAME, user_id: USER_ID}); diff --git a/public/examples/integrations/toolkits/salesforce/get_account_data_by_keywords_example_call_tool.py b/public/examples/integrations/toolkits/salesforce/get_account_data_by_keywords_example_call_tool.py index 2f10e3e2a..9812d870b 100644 --- a/public/examples/integrations/toolkits/salesforce/get_account_data_by_keywords_example_call_tool.py +++ b/public/examples/integrations/toolkits/salesforce/get_account_data_by_keywords_example_call_tool.py @@ -3,7 +3,7 @@ client = Arcade(base_url="http://localhost:9099") # Automatically finds the `ARCADE_API_KEY` env variable TOOL_NAME = "Salesforce.GetAccountDataByKeywords" -USER_ID = "user@example.com" +USER_ID = "{arcade_user_id}" auth_response = client.tools.authorize(tool_name=TOOL_NAME, user_id=USER_ID) diff --git a/public/examples/integrations/toolkits/search/google_finance/get_stock_historical_data_example_call_tool.js b/public/examples/integrations/toolkits/search/google_finance/get_stock_historical_data_example_call_tool.js index 52644dc8f..a213df609 100644 --- a/public/examples/integrations/toolkits/search/google_finance/get_stock_historical_data_example_call_tool.js +++ b/public/examples/integrations/toolkits/search/google_finance/get_stock_historical_data_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Search.GetStockHistoricalData"; const toolInput = { diff --git a/public/examples/integrations/toolkits/search/google_finance/get_stock_historical_data_example_call_tool.py b/public/examples/integrations/toolkits/search/google_finance/get_stock_historical_data_example_call_tool.py index 5adb32734..99ce59285 100644 --- a/public/examples/integrations/toolkits/search/google_finance/get_stock_historical_data_example_call_tool.py +++ b/public/examples/integrations/toolkits/search/google_finance/get_stock_historical_data_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Search.GetStockHistoricalData" tool_input = { diff --git a/public/examples/integrations/toolkits/search/google_finance/get_stock_summary_example_call_tool.js b/public/examples/integrations/toolkits/search/google_finance/get_stock_summary_example_call_tool.js index 516ebbf73..fb2b03f8f 100644 --- a/public/examples/integrations/toolkits/search/google_finance/get_stock_summary_example_call_tool.js +++ b/public/examples/integrations/toolkits/search/google_finance/get_stock_summary_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Search.GetStockSummary"; const toolInput = { diff --git a/public/examples/integrations/toolkits/search/google_finance/get_stock_summary_example_call_tool.py b/public/examples/integrations/toolkits/search/google_finance/get_stock_summary_example_call_tool.py index 50a53cdc0..ef866f1e7 100644 --- a/public/examples/integrations/toolkits/search/google_finance/get_stock_summary_example_call_tool.py +++ b/public/examples/integrations/toolkits/search/google_finance/get_stock_summary_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Search.GetStockSummary" tool_input = { diff --git a/public/examples/integrations/toolkits/search/google_flights/search_one_way_flights_example_call_tool.js b/public/examples/integrations/toolkits/search/google_flights/search_one_way_flights_example_call_tool.js index 608781d66..a6feb32d4 100644 --- a/public/examples/integrations/toolkits/search/google_flights/search_one_way_flights_example_call_tool.js +++ b/public/examples/integrations/toolkits/search/google_flights/search_one_way_flights_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Search.SearchOneWayFlights"; const toolInput = { diff --git a/public/examples/integrations/toolkits/search/google_flights/search_one_way_flights_example_call_tool.py b/public/examples/integrations/toolkits/search/google_flights/search_one_way_flights_example_call_tool.py index a8ea73094..549049547 100644 --- a/public/examples/integrations/toolkits/search/google_flights/search_one_way_flights_example_call_tool.py +++ b/public/examples/integrations/toolkits/search/google_flights/search_one_way_flights_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Search.SearchOneWayFlights" tool_input = { diff --git a/public/examples/integrations/toolkits/search/google_flights/search_roundtrip_flights_example_call_tool.js b/public/examples/integrations/toolkits/search/google_flights/search_roundtrip_flights_example_call_tool.js index 87efd073a..f7da95bec 100644 --- a/public/examples/integrations/toolkits/search/google_flights/search_roundtrip_flights_example_call_tool.js +++ b/public/examples/integrations/toolkits/search/google_flights/search_roundtrip_flights_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Search.SearchRoundtripFlights"; const toolInput = { diff --git a/public/examples/integrations/toolkits/search/google_flights/search_roundtrip_flights_example_call_tool.py b/public/examples/integrations/toolkits/search/google_flights/search_roundtrip_flights_example_call_tool.py index e17f11ed3..16f8f56a9 100644 --- a/public/examples/integrations/toolkits/search/google_flights/search_roundtrip_flights_example_call_tool.py +++ b/public/examples/integrations/toolkits/search/google_flights/search_roundtrip_flights_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Search.SearchRoundtripFlights" tool_input = { diff --git a/public/examples/integrations/toolkits/search/google_hotels/search_hotels_example_call_tool.js b/public/examples/integrations/toolkits/search/google_hotels/search_hotels_example_call_tool.js index c7282235a..3b415c35f 100644 --- a/public/examples/integrations/toolkits/search/google_hotels/search_hotels_example_call_tool.js +++ b/public/examples/integrations/toolkits/search/google_hotels/search_hotels_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Search.SearchHotels"; const toolInput = { diff --git a/public/examples/integrations/toolkits/search/google_hotels/search_hotels_example_call_tool.py b/public/examples/integrations/toolkits/search/google_hotels/search_hotels_example_call_tool.py index dbcb4a982..4a511da70 100644 --- a/public/examples/integrations/toolkits/search/google_hotels/search_hotels_example_call_tool.py +++ b/public/examples/integrations/toolkits/search/google_hotels/search_hotels_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Search.SearchHotels" tool_input = { diff --git a/public/examples/integrations/toolkits/search/google_jobs/search_jobs_example_call_tool.js b/public/examples/integrations/toolkits/search/google_jobs/search_jobs_example_call_tool.js index 5c4c56478..1518157e9 100644 --- a/public/examples/integrations/toolkits/search/google_jobs/search_jobs_example_call_tool.js +++ b/public/examples/integrations/toolkits/search/google_jobs/search_jobs_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Search.SearchJobs"; const toolInput = { diff --git a/public/examples/integrations/toolkits/search/google_jobs/search_jobs_example_call_tool.py b/public/examples/integrations/toolkits/search/google_jobs/search_jobs_example_call_tool.py index bede86bf3..f9b145eee 100644 --- a/public/examples/integrations/toolkits/search/google_jobs/search_jobs_example_call_tool.py +++ b/public/examples/integrations/toolkits/search/google_jobs/search_jobs_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Search.SearchJobs" tool_input = { diff --git a/public/examples/integrations/toolkits/search/google_maps/get_directions_between_addresses_example_call_tool.js b/public/examples/integrations/toolkits/search/google_maps/get_directions_between_addresses_example_call_tool.js index c08f7dd0f..f50014685 100644 --- a/public/examples/integrations/toolkits/search/google_maps/get_directions_between_addresses_example_call_tool.js +++ b/public/examples/integrations/toolkits/search/google_maps/get_directions_between_addresses_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Search.GetDirectionsBetweenAddresses"; const toolInput = { diff --git a/public/examples/integrations/toolkits/search/google_maps/get_directions_between_addresses_example_call_tool.py b/public/examples/integrations/toolkits/search/google_maps/get_directions_between_addresses_example_call_tool.py index a59d1a3ed..4335f50ef 100644 --- a/public/examples/integrations/toolkits/search/google_maps/get_directions_between_addresses_example_call_tool.py +++ b/public/examples/integrations/toolkits/search/google_maps/get_directions_between_addresses_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Search.GetDirectionsBetweenAddresses" tool_input = { diff --git a/public/examples/integrations/toolkits/search/google_maps/get_directions_between_coordinates_example_call_tool.js b/public/examples/integrations/toolkits/search/google_maps/get_directions_between_coordinates_example_call_tool.js index 55e9e9e8f..a9ecbdf66 100644 --- a/public/examples/integrations/toolkits/search/google_maps/get_directions_between_coordinates_example_call_tool.js +++ b/public/examples/integrations/toolkits/search/google_maps/get_directions_between_coordinates_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Search.GetDirectionsBetweenCoordinates"; const toolInput = { diff --git a/public/examples/integrations/toolkits/search/google_maps/get_directions_between_coordinates_example_call_tool.py b/public/examples/integrations/toolkits/search/google_maps/get_directions_between_coordinates_example_call_tool.py index 1a8627de6..02f5f2538 100644 --- a/public/examples/integrations/toolkits/search/google_maps/get_directions_between_coordinates_example_call_tool.py +++ b/public/examples/integrations/toolkits/search/google_maps/get_directions_between_coordinates_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Search.GetDirectionsBetweenCoordinates" tool_input = { diff --git a/public/examples/integrations/toolkits/search/google_news/search_news_example_call_tool.js b/public/examples/integrations/toolkits/search/google_news/search_news_example_call_tool.js index 4a4c9fef1..547d9fb91 100644 --- a/public/examples/integrations/toolkits/search/google_news/search_news_example_call_tool.js +++ b/public/examples/integrations/toolkits/search/google_news/search_news_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Search.SearchNews"; const toolInput = { diff --git a/public/examples/integrations/toolkits/search/google_news/search_news_example_call_tool.py b/public/examples/integrations/toolkits/search/google_news/search_news_example_call_tool.py index 0eb1e1393..40778de8c 100644 --- a/public/examples/integrations/toolkits/search/google_news/search_news_example_call_tool.py +++ b/public/examples/integrations/toolkits/search/google_news/search_news_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Search.SearchNews" tool_input = { diff --git a/public/examples/integrations/toolkits/search/google_search/search_google_example_call_tool.js b/public/examples/integrations/toolkits/search/google_search/search_google_example_call_tool.js index c115f5b09..dd97d8036 100644 --- a/public/examples/integrations/toolkits/search/google_search/search_google_example_call_tool.js +++ b/public/examples/integrations/toolkits/search/google_search/search_google_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Search.SearchGoogle"; const toolInput = { diff --git a/public/examples/integrations/toolkits/search/google_search/search_google_example_call_tool.py b/public/examples/integrations/toolkits/search/google_search/search_google_example_call_tool.py index f33af1b48..0a01575a1 100644 --- a/public/examples/integrations/toolkits/search/google_search/search_google_example_call_tool.py +++ b/public/examples/integrations/toolkits/search/google_search/search_google_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Search.SearchGoogle" tool_input = {"query": "Arcade documentation", "n_results": 5} diff --git a/public/examples/integrations/toolkits/slack/get_channel_metadata_by_name_example_call_tool.js b/public/examples/integrations/toolkits/slack/get_channel_metadata_by_name_example_call_tool.js index 38efac496..dcf28adc4 100644 --- a/public/examples/integrations/toolkits/slack/get_channel_metadata_by_name_example_call_tool.js +++ b/public/examples/integrations/toolkits/slack/get_channel_metadata_by_name_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Slack.GetChannelMetadataByName"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/slack/get_channel_metadata_by_name_example_call_tool.py b/public/examples/integrations/toolkits/slack/get_channel_metadata_by_name_example_call_tool.py index b157bd0ea..2fb120810 100644 --- a/public/examples/integrations/toolkits/slack/get_channel_metadata_by_name_example_call_tool.py +++ b/public/examples/integrations/toolkits/slack/get_channel_metadata_by_name_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Slack.GetChannelMetadataByName" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/slack/get_conversation_history_by_id_example_call_tool.js b/public/examples/integrations/toolkits/slack/get_conversation_history_by_id_example_call_tool.js index 09d6e67d3..832ec7658 100644 --- a/public/examples/integrations/toolkits/slack/get_conversation_history_by_id_example_call_tool.js +++ b/public/examples/integrations/toolkits/slack/get_conversation_history_by_id_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Slack.GetConversationHistoryById"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/slack/get_conversation_history_by_id_example_call_tool.py b/public/examples/integrations/toolkits/slack/get_conversation_history_by_id_example_call_tool.py index f1381306a..175914538 100644 --- a/public/examples/integrations/toolkits/slack/get_conversation_history_by_id_example_call_tool.py +++ b/public/examples/integrations/toolkits/slack/get_conversation_history_by_id_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Slack.GetConversationHistoryById" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/slack/get_conversation_history_by_name_example_call_tool.js b/public/examples/integrations/toolkits/slack/get_conversation_history_by_name_example_call_tool.js index 012fd802d..1d240b0fd 100644 --- a/public/examples/integrations/toolkits/slack/get_conversation_history_by_name_example_call_tool.js +++ b/public/examples/integrations/toolkits/slack/get_conversation_history_by_name_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Slack.GetConversationHistoryByName"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/slack/get_conversation_history_by_name_example_call_tool.py b/public/examples/integrations/toolkits/slack/get_conversation_history_by_name_example_call_tool.py index d71b7641f..c65480338 100644 --- a/public/examples/integrations/toolkits/slack/get_conversation_history_by_name_example_call_tool.py +++ b/public/examples/integrations/toolkits/slack/get_conversation_history_by_name_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Slack.GetConversationHistoryByName" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/slack/get_conversation_metadata_by_id_example_call_tool.js b/public/examples/integrations/toolkits/slack/get_conversation_metadata_by_id_example_call_tool.js index 9323ba270..8fae4cd20 100644 --- a/public/examples/integrations/toolkits/slack/get_conversation_metadata_by_id_example_call_tool.js +++ b/public/examples/integrations/toolkits/slack/get_conversation_metadata_by_id_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Slack.GetConversationMetadataById"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/slack/get_conversation_metadata_by_id_example_call_tool.py b/public/examples/integrations/toolkits/slack/get_conversation_metadata_by_id_example_call_tool.py index 735ee8f97..6e26a4837 100644 --- a/public/examples/integrations/toolkits/slack/get_conversation_metadata_by_id_example_call_tool.py +++ b/public/examples/integrations/toolkits/slack/get_conversation_metadata_by_id_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Slack.GetConversationMetadataById" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/slack/get_direct_message_conversation_metadata_by_username_example_call_tool.js b/public/examples/integrations/toolkits/slack/get_direct_message_conversation_metadata_by_username_example_call_tool.js index 4643e7b9b..9e409b3e2 100644 --- a/public/examples/integrations/toolkits/slack/get_direct_message_conversation_metadata_by_username_example_call_tool.js +++ b/public/examples/integrations/toolkits/slack/get_direct_message_conversation_metadata_by_username_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Slack.GetDirectMessageConversationMetadataByUsername"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/slack/get_direct_message_conversation_metadata_by_username_example_call_tool.py b/public/examples/integrations/toolkits/slack/get_direct_message_conversation_metadata_by_username_example_call_tool.py index d1a3b470e..a7cc17fe3 100644 --- a/public/examples/integrations/toolkits/slack/get_direct_message_conversation_metadata_by_username_example_call_tool.py +++ b/public/examples/integrations/toolkits/slack/get_direct_message_conversation_metadata_by_username_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Slack.GetDirectMessageConversationMetadataByUsername" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/slack/get_members_in_channel_by_name_example_call_tool.js b/public/examples/integrations/toolkits/slack/get_members_in_channel_by_name_example_call_tool.js index e8e1f489b..3cc283685 100644 --- a/public/examples/integrations/toolkits/slack/get_members_in_channel_by_name_example_call_tool.js +++ b/public/examples/integrations/toolkits/slack/get_members_in_channel_by_name_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Slack.GetMembersInChannelByName"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/slack/get_members_in_channel_by_name_example_call_tool.py b/public/examples/integrations/toolkits/slack/get_members_in_channel_by_name_example_call_tool.py index e31815f91..5052816ad 100644 --- a/public/examples/integrations/toolkits/slack/get_members_in_channel_by_name_example_call_tool.py +++ b/public/examples/integrations/toolkits/slack/get_members_in_channel_by_name_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Slack.GetMembersInChannelByName" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/slack/get_members_in_conversation_by_id_example_call_tool.js b/public/examples/integrations/toolkits/slack/get_members_in_conversation_by_id_example_call_tool.js index 5b78ac8c3..a819f4361 100644 --- a/public/examples/integrations/toolkits/slack/get_members_in_conversation_by_id_example_call_tool.js +++ b/public/examples/integrations/toolkits/slack/get_members_in_conversation_by_id_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Slack.GetMembersInConversationById"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/slack/get_members_in_conversation_by_id_example_call_tool.py b/public/examples/integrations/toolkits/slack/get_members_in_conversation_by_id_example_call_tool.py index e4e2504b3..96de9984a 100644 --- a/public/examples/integrations/toolkits/slack/get_members_in_conversation_by_id_example_call_tool.py +++ b/public/examples/integrations/toolkits/slack/get_members_in_conversation_by_id_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Slack.GetMembersInConversationById" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/slack/get_messages_in_channel_by_name_example_call_tool.js b/public/examples/integrations/toolkits/slack/get_messages_in_channel_by_name_example_call_tool.js index ac1fccfa4..5bdcea8aa 100644 --- a/public/examples/integrations/toolkits/slack/get_messages_in_channel_by_name_example_call_tool.js +++ b/public/examples/integrations/toolkits/slack/get_messages_in_channel_by_name_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Slack.GetMessagesInChannelByName"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/slack/get_messages_in_channel_by_name_example_call_tool.py b/public/examples/integrations/toolkits/slack/get_messages_in_channel_by_name_example_call_tool.py index 95c5426cd..a96aa03ee 100644 --- a/public/examples/integrations/toolkits/slack/get_messages_in_channel_by_name_example_call_tool.py +++ b/public/examples/integrations/toolkits/slack/get_messages_in_channel_by_name_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Slack.GetMessagesInChannelByName" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/slack/get_messages_in_conversation_by_id_example_call_tool.js b/public/examples/integrations/toolkits/slack/get_messages_in_conversation_by_id_example_call_tool.js index f2044fff1..f40fcfd61 100644 --- a/public/examples/integrations/toolkits/slack/get_messages_in_conversation_by_id_example_call_tool.js +++ b/public/examples/integrations/toolkits/slack/get_messages_in_conversation_by_id_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Slack.GetMessagesInConversationById"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/slack/get_messages_in_conversation_by_id_example_call_tool.py b/public/examples/integrations/toolkits/slack/get_messages_in_conversation_by_id_example_call_tool.py index a377e7612..6be5c62ca 100644 --- a/public/examples/integrations/toolkits/slack/get_messages_in_conversation_by_id_example_call_tool.py +++ b/public/examples/integrations/toolkits/slack/get_messages_in_conversation_by_id_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Slack.GetMessagesInConversationById" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/slack/get_messages_in_direct_message_conversation_by_username_example_call_tool.js b/public/examples/integrations/toolkits/slack/get_messages_in_direct_message_conversation_by_username_example_call_tool.js index 471c0a20d..4441dd237 100644 --- a/public/examples/integrations/toolkits/slack/get_messages_in_direct_message_conversation_by_username_example_call_tool.js +++ b/public/examples/integrations/toolkits/slack/get_messages_in_direct_message_conversation_by_username_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Slack.GetMessagesInDirectMessageConversationByUsername"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/slack/get_messages_in_direct_message_conversation_by_username_example_call_tool.py b/public/examples/integrations/toolkits/slack/get_messages_in_direct_message_conversation_by_username_example_call_tool.py index 543d43165..f542d323d 100644 --- a/public/examples/integrations/toolkits/slack/get_messages_in_direct_message_conversation_by_username_example_call_tool.py +++ b/public/examples/integrations/toolkits/slack/get_messages_in_direct_message_conversation_by_username_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Slack.GetMessagesInDirectMessageConversationByUsername" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/slack/get_messages_in_multi_person_dm_conversation_by_username_example_call_tool.js b/public/examples/integrations/toolkits/slack/get_messages_in_multi_person_dm_conversation_by_username_example_call_tool.js index aaaa14ee8..c7ccdbc05 100644 --- a/public/examples/integrations/toolkits/slack/get_messages_in_multi_person_dm_conversation_by_username_example_call_tool.js +++ b/public/examples/integrations/toolkits/slack/get_messages_in_multi_person_dm_conversation_by_username_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Slack.GetMessagesInMultiPersonDmConversationByUsername"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/slack/get_messages_in_multi_person_dm_conversation_by_username_example_call_tool.py b/public/examples/integrations/toolkits/slack/get_messages_in_multi_person_dm_conversation_by_username_example_call_tool.py index f024c2ace..bc6502612 100644 --- a/public/examples/integrations/toolkits/slack/get_messages_in_multi_person_dm_conversation_by_username_example_call_tool.py +++ b/public/examples/integrations/toolkits/slack/get_messages_in_multi_person_dm_conversation_by_username_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Slack.GetMessagesInMultiPersonDmConversationByUsername" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/slack/get_multi_person_dm_conversation_metadata_by_usernames_example_call_tool.js b/public/examples/integrations/toolkits/slack/get_multi_person_dm_conversation_metadata_by_usernames_example_call_tool.js index 5dcf6e2e6..1d6e0f51d 100644 --- a/public/examples/integrations/toolkits/slack/get_multi_person_dm_conversation_metadata_by_usernames_example_call_tool.js +++ b/public/examples/integrations/toolkits/slack/get_multi_person_dm_conversation_metadata_by_usernames_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Slack.GetMultiPersonDmConversationMetadataByUsername"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/slack/get_multi_person_dm_conversation_metadata_by_usernames_example_call_tool.py b/public/examples/integrations/toolkits/slack/get_multi_person_dm_conversation_metadata_by_usernames_example_call_tool.py index 660d10fd2..16d3baade 100644 --- a/public/examples/integrations/toolkits/slack/get_multi_person_dm_conversation_metadata_by_usernames_example_call_tool.py +++ b/public/examples/integrations/toolkits/slack/get_multi_person_dm_conversation_metadata_by_usernames_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Slack.GetMultiPersonDmConversationMetadataByUsername" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/slack/get_user_info_by_id_example_call_tool.js b/public/examples/integrations/toolkits/slack/get_user_info_by_id_example_call_tool.js index e64b00b88..2a798d467 100644 --- a/public/examples/integrations/toolkits/slack/get_user_info_by_id_example_call_tool.js +++ b/public/examples/integrations/toolkits/slack/get_user_info_by_id_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Slack.GetUserInfoById"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/slack/get_user_info_by_id_example_call_tool.py b/public/examples/integrations/toolkits/slack/get_user_info_by_id_example_call_tool.py index 49de1870b..eec55c7da 100644 --- a/public/examples/integrations/toolkits/slack/get_user_info_by_id_example_call_tool.py +++ b/public/examples/integrations/toolkits/slack/get_user_info_by_id_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Slack.GetUserInfoById" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/slack/list_conversations_metadata_example_call_tool.js b/public/examples/integrations/toolkits/slack/list_conversations_metadata_example_call_tool.js index 34454f121..00a6a2d6b 100644 --- a/public/examples/integrations/toolkits/slack/list_conversations_metadata_example_call_tool.js +++ b/public/examples/integrations/toolkits/slack/list_conversations_metadata_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Slack.ListConversationsMetadata"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/slack/list_conversations_metadata_example_call_tool.py b/public/examples/integrations/toolkits/slack/list_conversations_metadata_example_call_tool.py index 33d5e98f0..ecdd12787 100644 --- a/public/examples/integrations/toolkits/slack/list_conversations_metadata_example_call_tool.py +++ b/public/examples/integrations/toolkits/slack/list_conversations_metadata_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Slack.ListConversationsMetadata" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/slack/list_direct_message_channels_metadata_example_call_tool.js b/public/examples/integrations/toolkits/slack/list_direct_message_channels_metadata_example_call_tool.js index 55f5ebfc4..684df3d4b 100644 --- a/public/examples/integrations/toolkits/slack/list_direct_message_channels_metadata_example_call_tool.js +++ b/public/examples/integrations/toolkits/slack/list_direct_message_channels_metadata_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Slack.ListDirectMessageChannelsMetadata"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/slack/list_direct_message_channels_metadata_example_call_tool.py b/public/examples/integrations/toolkits/slack/list_direct_message_channels_metadata_example_call_tool.py index 7f626727e..08639bf56 100644 --- a/public/examples/integrations/toolkits/slack/list_direct_message_channels_metadata_example_call_tool.py +++ b/public/examples/integrations/toolkits/slack/list_direct_message_channels_metadata_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Slack.ListDirectMessageChannelsMetadata" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/slack/list_direct_message_conversations_metadata_example_call_tool.js b/public/examples/integrations/toolkits/slack/list_direct_message_conversations_metadata_example_call_tool.js index 2612bfc0f..bda376906 100644 --- a/public/examples/integrations/toolkits/slack/list_direct_message_conversations_metadata_example_call_tool.js +++ b/public/examples/integrations/toolkits/slack/list_direct_message_conversations_metadata_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Slack.ListDirectMessageConversationsMetadata"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/slack/list_direct_message_conversations_metadata_example_call_tool.py b/public/examples/integrations/toolkits/slack/list_direct_message_conversations_metadata_example_call_tool.py index b3366302b..fc0533d46 100644 --- a/public/examples/integrations/toolkits/slack/list_direct_message_conversations_metadata_example_call_tool.py +++ b/public/examples/integrations/toolkits/slack/list_direct_message_conversations_metadata_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Slack.ListDirectMessageConversationsMetadata" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/slack/list_group_direct_message_channels_metadata_example_call_tool.js b/public/examples/integrations/toolkits/slack/list_group_direct_message_channels_metadata_example_call_tool.js index 6cc1509fc..1dda86336 100644 --- a/public/examples/integrations/toolkits/slack/list_group_direct_message_channels_metadata_example_call_tool.js +++ b/public/examples/integrations/toolkits/slack/list_group_direct_message_channels_metadata_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Slack.ListGroupDirectMessageChannelsMetadata"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/slack/list_group_direct_message_channels_metadata_example_call_tool.py b/public/examples/integrations/toolkits/slack/list_group_direct_message_channels_metadata_example_call_tool.py index 009bf1e5b..2680aac39 100644 --- a/public/examples/integrations/toolkits/slack/list_group_direct_message_channels_metadata_example_call_tool.py +++ b/public/examples/integrations/toolkits/slack/list_group_direct_message_channels_metadata_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Slack.ListGroupDirectMessageChannelsMetadata" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/slack/list_group_direct_message_conversations_metadata_example_call_tool.js b/public/examples/integrations/toolkits/slack/list_group_direct_message_conversations_metadata_example_call_tool.js index 40bac2444..3aee439a6 100644 --- a/public/examples/integrations/toolkits/slack/list_group_direct_message_conversations_metadata_example_call_tool.js +++ b/public/examples/integrations/toolkits/slack/list_group_direct_message_conversations_metadata_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Slack.ListGroupDirectMessageConversationsMetadata"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/slack/list_group_direct_message_conversations_metadata_example_call_tool.py b/public/examples/integrations/toolkits/slack/list_group_direct_message_conversations_metadata_example_call_tool.py index 29a1e1815..605c9848d 100644 --- a/public/examples/integrations/toolkits/slack/list_group_direct_message_conversations_metadata_example_call_tool.py +++ b/public/examples/integrations/toolkits/slack/list_group_direct_message_conversations_metadata_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Slack.ListGroupDirectMessageConversationsMetadata" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/slack/list_private_channels_metadata_example_call_tool.js b/public/examples/integrations/toolkits/slack/list_private_channels_metadata_example_call_tool.js index b49b828ad..36dc7bc8d 100644 --- a/public/examples/integrations/toolkits/slack/list_private_channels_metadata_example_call_tool.js +++ b/public/examples/integrations/toolkits/slack/list_private_channels_metadata_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Slack.ListPrivateChannelsMetadata"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/slack/list_private_channels_metadata_example_call_tool.py b/public/examples/integrations/toolkits/slack/list_private_channels_metadata_example_call_tool.py index b41c3277e..874108294 100644 --- a/public/examples/integrations/toolkits/slack/list_private_channels_metadata_example_call_tool.py +++ b/public/examples/integrations/toolkits/slack/list_private_channels_metadata_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Slack.ListPrivateChannelsMetadata" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/slack/list_public_channels_metadata_example_call_tool.js b/public/examples/integrations/toolkits/slack/list_public_channels_metadata_example_call_tool.js index dd8ab3702..32a836f57 100644 --- a/public/examples/integrations/toolkits/slack/list_public_channels_metadata_example_call_tool.js +++ b/public/examples/integrations/toolkits/slack/list_public_channels_metadata_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Slack.ListPublicChannelsMetadata"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/slack/list_public_channels_metadata_example_call_tool.py b/public/examples/integrations/toolkits/slack/list_public_channels_metadata_example_call_tool.py index 371b555b6..5d080167d 100644 --- a/public/examples/integrations/toolkits/slack/list_public_channels_metadata_example_call_tool.py +++ b/public/examples/integrations/toolkits/slack/list_public_channels_metadata_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Slack.ListPublicChannelsMetadata" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/slack/list_users_example_call_tool.js b/public/examples/integrations/toolkits/slack/list_users_example_call_tool.js index 2b5cae7ff..f0073beb9 100644 --- a/public/examples/integrations/toolkits/slack/list_users_example_call_tool.js +++ b/public/examples/integrations/toolkits/slack/list_users_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Slack.ListUsers"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/slack/list_users_example_call_tool.py b/public/examples/integrations/toolkits/slack/list_users_example_call_tool.py index 21339a18c..87c3139e4 100644 --- a/public/examples/integrations/toolkits/slack/list_users_example_call_tool.py +++ b/public/examples/integrations/toolkits/slack/list_users_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Slack.ListUsers" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/slack/send_dm_to_user_example_call_tool.js b/public/examples/integrations/toolkits/slack/send_dm_to_user_example_call_tool.js index c4bc16395..1b2b19199 100644 --- a/public/examples/integrations/toolkits/slack/send_dm_to_user_example_call_tool.js +++ b/public/examples/integrations/toolkits/slack/send_dm_to_user_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Slack.SendDmToUser"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/slack/send_dm_to_user_example_call_tool.py b/public/examples/integrations/toolkits/slack/send_dm_to_user_example_call_tool.py index f189ed56b..6d777024c 100644 --- a/public/examples/integrations/toolkits/slack/send_dm_to_user_example_call_tool.py +++ b/public/examples/integrations/toolkits/slack/send_dm_to_user_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Slack.SendDmToUser" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/slack/send_message_to_channel_example_call_tool.js b/public/examples/integrations/toolkits/slack/send_message_to_channel_example_call_tool.js index 8a6835870..3a9eb4300 100644 --- a/public/examples/integrations/toolkits/slack/send_message_to_channel_example_call_tool.js +++ b/public/examples/integrations/toolkits/slack/send_message_to_channel_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Slack.SendMessageToChannel"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/slack/send_message_to_channel_example_call_tool.py b/public/examples/integrations/toolkits/slack/send_message_to_channel_example_call_tool.py index 606f84bad..edbf10911 100644 --- a/public/examples/integrations/toolkits/slack/send_message_to_channel_example_call_tool.py +++ b/public/examples/integrations/toolkits/slack/send_message_to_channel_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Slack.SendMessageToChannel" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/spotify/adjust_playback_position_example_call_tool.js b/public/examples/integrations/toolkits/spotify/adjust_playback_position_example_call_tool.js index 89aa338e1..cfded04cc 100644 --- a/public/examples/integrations/toolkits/spotify/adjust_playback_position_example_call_tool.js +++ b/public/examples/integrations/toolkits/spotify/adjust_playback_position_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Spotify.AdjustPlaybackPosition"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/spotify/adjust_playback_position_example_call_tool.py b/public/examples/integrations/toolkits/spotify/adjust_playback_position_example_call_tool.py index 6d39cd156..153d292b9 100644 --- a/public/examples/integrations/toolkits/spotify/adjust_playback_position_example_call_tool.py +++ b/public/examples/integrations/toolkits/spotify/adjust_playback_position_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Spotify.AdjustPlaybackPosition" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/spotify/get_available_devices_example_call_tool.js b/public/examples/integrations/toolkits/spotify/get_available_devices_example_call_tool.js index b3d859c86..be35a21e7 100644 --- a/public/examples/integrations/toolkits/spotify/get_available_devices_example_call_tool.js +++ b/public/examples/integrations/toolkits/spotify/get_available_devices_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Spotify.GetAvailableDevices"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/spotify/get_available_devices_example_call_tool.py b/public/examples/integrations/toolkits/spotify/get_available_devices_example_call_tool.py index a4dc38493..ec53dcb73 100644 --- a/public/examples/integrations/toolkits/spotify/get_available_devices_example_call_tool.py +++ b/public/examples/integrations/toolkits/spotify/get_available_devices_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Spotify.GetAvailableDevices" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/spotify/get_currently_playing_example_call_tool.js b/public/examples/integrations/toolkits/spotify/get_currently_playing_example_call_tool.js index c3f69c3af..83976f8d4 100644 --- a/public/examples/integrations/toolkits/spotify/get_currently_playing_example_call_tool.js +++ b/public/examples/integrations/toolkits/spotify/get_currently_playing_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Spotify.GetCurrentlyPlaying"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/spotify/get_currently_playing_example_call_tool.py b/public/examples/integrations/toolkits/spotify/get_currently_playing_example_call_tool.py index a3f39beee..758dc5cad 100644 --- a/public/examples/integrations/toolkits/spotify/get_currently_playing_example_call_tool.py +++ b/public/examples/integrations/toolkits/spotify/get_currently_playing_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Spotify.GetCurrentlyPlaying" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/spotify/get_playback_state_example_call_tool.js b/public/examples/integrations/toolkits/spotify/get_playback_state_example_call_tool.js index 1335be2b4..ebfc7b072 100644 --- a/public/examples/integrations/toolkits/spotify/get_playback_state_example_call_tool.js +++ b/public/examples/integrations/toolkits/spotify/get_playback_state_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Spotify.GetPlaybackState"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/spotify/get_playback_state_example_call_tool.py b/public/examples/integrations/toolkits/spotify/get_playback_state_example_call_tool.py index 96e034eef..15a266d12 100644 --- a/public/examples/integrations/toolkits/spotify/get_playback_state_example_call_tool.py +++ b/public/examples/integrations/toolkits/spotify/get_playback_state_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Spotify.GetPlaybackState" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/spotify/get_track_from_id_example_call_tool.js b/public/examples/integrations/toolkits/spotify/get_track_from_id_example_call_tool.js index c3fe0abf4..833c08ea0 100644 --- a/public/examples/integrations/toolkits/spotify/get_track_from_id_example_call_tool.js +++ b/public/examples/integrations/toolkits/spotify/get_track_from_id_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Spotify.GetTrackFromId"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/spotify/get_track_from_id_example_call_tool.py b/public/examples/integrations/toolkits/spotify/get_track_from_id_example_call_tool.py index f4179df9c..61df74442 100644 --- a/public/examples/integrations/toolkits/spotify/get_track_from_id_example_call_tool.py +++ b/public/examples/integrations/toolkits/spotify/get_track_from_id_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Spotify.GetTrackFromId" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/spotify/pause_playback_example_call_tool.js b/public/examples/integrations/toolkits/spotify/pause_playback_example_call_tool.js index c96048bee..22a2bee25 100644 --- a/public/examples/integrations/toolkits/spotify/pause_playback_example_call_tool.js +++ b/public/examples/integrations/toolkits/spotify/pause_playback_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Spotify.PausePlayback"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/spotify/pause_playback_example_call_tool.py b/public/examples/integrations/toolkits/spotify/pause_playback_example_call_tool.py index b65ccb0b6..57e756ee0 100644 --- a/public/examples/integrations/toolkits/spotify/pause_playback_example_call_tool.py +++ b/public/examples/integrations/toolkits/spotify/pause_playback_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Spotify.PausePlayback" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/spotify/play_artist_by_name_example_call_tool.js b/public/examples/integrations/toolkits/spotify/play_artist_by_name_example_call_tool.js index 8cba06af6..085e9a51a 100644 --- a/public/examples/integrations/toolkits/spotify/play_artist_by_name_example_call_tool.js +++ b/public/examples/integrations/toolkits/spotify/play_artist_by_name_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Spotify.PlayArtistByName"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/spotify/play_artist_by_name_example_call_tool.py b/public/examples/integrations/toolkits/spotify/play_artist_by_name_example_call_tool.py index 3fd6fd65a..39cde8787 100644 --- a/public/examples/integrations/toolkits/spotify/play_artist_by_name_example_call_tool.py +++ b/public/examples/integrations/toolkits/spotify/play_artist_by_name_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Spotify.PlayArtistByName" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/spotify/play_track_by_name_example_call_tool.js b/public/examples/integrations/toolkits/spotify/play_track_by_name_example_call_tool.js index c9a5d93e8..577a6e66d 100644 --- a/public/examples/integrations/toolkits/spotify/play_track_by_name_example_call_tool.js +++ b/public/examples/integrations/toolkits/spotify/play_track_by_name_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Spotify.PlayTrackByName"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/spotify/play_track_by_name_example_call_tool.py b/public/examples/integrations/toolkits/spotify/play_track_by_name_example_call_tool.py index 4f0fd5c88..019547c9e 100644 --- a/public/examples/integrations/toolkits/spotify/play_track_by_name_example_call_tool.py +++ b/public/examples/integrations/toolkits/spotify/play_track_by_name_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Spotify.PlayTrackByName" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/spotify/resume_playback_example_call_tool.js b/public/examples/integrations/toolkits/spotify/resume_playback_example_call_tool.js index 0ac65e5ff..5e4213dc4 100644 --- a/public/examples/integrations/toolkits/spotify/resume_playback_example_call_tool.js +++ b/public/examples/integrations/toolkits/spotify/resume_playback_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Spotify.ResumePlayback"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/spotify/resume_playback_example_call_tool.py b/public/examples/integrations/toolkits/spotify/resume_playback_example_call_tool.py index a5e5f3c7c..4c96742ea 100644 --- a/public/examples/integrations/toolkits/spotify/resume_playback_example_call_tool.py +++ b/public/examples/integrations/toolkits/spotify/resume_playback_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Spotify.ResumePlayback" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/spotify/search_example_call_tool.js b/public/examples/integrations/toolkits/spotify/search_example_call_tool.js index 0eebe6e26..f1c02d744 100644 --- a/public/examples/integrations/toolkits/spotify/search_example_call_tool.js +++ b/public/examples/integrations/toolkits/spotify/search_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Spotify.Search"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/spotify/search_example_call_tool.py b/public/examples/integrations/toolkits/spotify/search_example_call_tool.py index 87a9059ee..31e924d25 100644 --- a/public/examples/integrations/toolkits/spotify/search_example_call_tool.py +++ b/public/examples/integrations/toolkits/spotify/search_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Spotify.Search" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/spotify/skip_to_next_track_example_call_tool.js b/public/examples/integrations/toolkits/spotify/skip_to_next_track_example_call_tool.js index 651794255..09d8a542f 100644 --- a/public/examples/integrations/toolkits/spotify/skip_to_next_track_example_call_tool.js +++ b/public/examples/integrations/toolkits/spotify/skip_to_next_track_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Spotify.SkipToNextTrack"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/spotify/skip_to_next_track_example_call_tool.py b/public/examples/integrations/toolkits/spotify/skip_to_next_track_example_call_tool.py index 59e140713..de83c4b1c 100644 --- a/public/examples/integrations/toolkits/spotify/skip_to_next_track_example_call_tool.py +++ b/public/examples/integrations/toolkits/spotify/skip_to_next_track_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Spotify.SkipToNextTrack" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/spotify/skip_to_previous_track_example_call_tool.js b/public/examples/integrations/toolkits/spotify/skip_to_previous_track_example_call_tool.js index 31e3bafb4..a6c09a86b 100644 --- a/public/examples/integrations/toolkits/spotify/skip_to_previous_track_example_call_tool.js +++ b/public/examples/integrations/toolkits/spotify/skip_to_previous_track_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Spotify.SkipToPreviousTrack"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/spotify/skip_to_previous_track_example_call_tool.py b/public/examples/integrations/toolkits/spotify/skip_to_previous_track_example_call_tool.py index 68abc645c..94a5b923f 100644 --- a/public/examples/integrations/toolkits/spotify/skip_to_previous_track_example_call_tool.py +++ b/public/examples/integrations/toolkits/spotify/skip_to_previous_track_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Spotify.SkipToPreviousTrack" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/spotify/start_tracks_playback_by_id_example_call_tool.js b/public/examples/integrations/toolkits/spotify/start_tracks_playback_by_id_example_call_tool.js index 6266e9d13..a785f4dcc 100644 --- a/public/examples/integrations/toolkits/spotify/start_tracks_playback_by_id_example_call_tool.js +++ b/public/examples/integrations/toolkits/spotify/start_tracks_playback_by_id_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Spotify.StartTracksPlaybackById"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/spotify/start_tracks_playback_by_id_example_call_tool.py b/public/examples/integrations/toolkits/spotify/start_tracks_playback_by_id_example_call_tool.py index cc5c193f6..faef2d05d 100644 --- a/public/examples/integrations/toolkits/spotify/start_tracks_playback_by_id_example_call_tool.py +++ b/public/examples/integrations/toolkits/spotify/start_tracks_playback_by_id_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Spotify.StartTracksPlaybackById" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/stripe/create_billing_portal_session_example_call_tool.js b/public/examples/integrations/toolkits/stripe/create_billing_portal_session_example_call_tool.js index 1468dd501..39c17c5c4 100644 --- a/public/examples/integrations/toolkits/stripe/create_billing_portal_session_example_call_tool.js +++ b/public/examples/integrations/toolkits/stripe/create_billing_portal_session_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Stripe.CreateBillingPortalSession"; const toolInput = { diff --git a/public/examples/integrations/toolkits/stripe/create_billing_portal_session_example_call_tool.py b/public/examples/integrations/toolkits/stripe/create_billing_portal_session_example_call_tool.py index 5c35e66c0..ae8217eda 100644 --- a/public/examples/integrations/toolkits/stripe/create_billing_portal_session_example_call_tool.py +++ b/public/examples/integrations/toolkits/stripe/create_billing_portal_session_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Stripe.CreateBillingPortalSession" tool_input = { diff --git a/public/examples/integrations/toolkits/stripe/create_customer_example_call_tool.js b/public/examples/integrations/toolkits/stripe/create_customer_example_call_tool.js index 1c48ad5ce..50a497015 100644 --- a/public/examples/integrations/toolkits/stripe/create_customer_example_call_tool.js +++ b/public/examples/integrations/toolkits/stripe/create_customer_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Stripe.CreateCustomer"; const toolInput = { diff --git a/public/examples/integrations/toolkits/stripe/create_customer_example_call_tool.py b/public/examples/integrations/toolkits/stripe/create_customer_example_call_tool.py index a09adcc61..262116870 100644 --- a/public/examples/integrations/toolkits/stripe/create_customer_example_call_tool.py +++ b/public/examples/integrations/toolkits/stripe/create_customer_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Stripe.CreateCustomer" tool_input = { diff --git a/public/examples/integrations/toolkits/stripe/create_invoice_example_call_tool.js b/public/examples/integrations/toolkits/stripe/create_invoice_example_call_tool.js index 9305512a8..4ab149508 100644 --- a/public/examples/integrations/toolkits/stripe/create_invoice_example_call_tool.js +++ b/public/examples/integrations/toolkits/stripe/create_invoice_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Stripe.CreateInvoice"; const toolInput = { diff --git a/public/examples/integrations/toolkits/stripe/create_invoice_example_call_tool.py b/public/examples/integrations/toolkits/stripe/create_invoice_example_call_tool.py index 247c4d455..a8a7fa5f9 100644 --- a/public/examples/integrations/toolkits/stripe/create_invoice_example_call_tool.py +++ b/public/examples/integrations/toolkits/stripe/create_invoice_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Stripe.CreateInvoice" tool_input = { diff --git a/public/examples/integrations/toolkits/stripe/create_invoice_item_example_call_tool.js b/public/examples/integrations/toolkits/stripe/create_invoice_item_example_call_tool.js index 130f143a7..f815a5ab3 100644 --- a/public/examples/integrations/toolkits/stripe/create_invoice_item_example_call_tool.js +++ b/public/examples/integrations/toolkits/stripe/create_invoice_item_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Stripe.CreateInvoiceItem"; const toolInput = { diff --git a/public/examples/integrations/toolkits/stripe/create_invoice_item_example_call_tool.py b/public/examples/integrations/toolkits/stripe/create_invoice_item_example_call_tool.py index 04194ea73..6ec42eb03 100644 --- a/public/examples/integrations/toolkits/stripe/create_invoice_item_example_call_tool.py +++ b/public/examples/integrations/toolkits/stripe/create_invoice_item_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Stripe.CreateInvoiceItem" tool_input = { diff --git a/public/examples/integrations/toolkits/stripe/create_payment_link_example_call_tool.js b/public/examples/integrations/toolkits/stripe/create_payment_link_example_call_tool.js index 9c994b8b6..2873ed84b 100644 --- a/public/examples/integrations/toolkits/stripe/create_payment_link_example_call_tool.js +++ b/public/examples/integrations/toolkits/stripe/create_payment_link_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Stripe.CreatePaymentLink"; const toolInput = { diff --git a/public/examples/integrations/toolkits/stripe/create_payment_link_example_call_tool.py b/public/examples/integrations/toolkits/stripe/create_payment_link_example_call_tool.py index a15324104..4e3ca79ba 100644 --- a/public/examples/integrations/toolkits/stripe/create_payment_link_example_call_tool.py +++ b/public/examples/integrations/toolkits/stripe/create_payment_link_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Stripe.CreatePaymentLink" tool_input = { diff --git a/public/examples/integrations/toolkits/stripe/create_price_example_call_tool.js b/public/examples/integrations/toolkits/stripe/create_price_example_call_tool.js index b8217e2b3..8af64ed42 100644 --- a/public/examples/integrations/toolkits/stripe/create_price_example_call_tool.js +++ b/public/examples/integrations/toolkits/stripe/create_price_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Stripe.CreatePrice"; const toolInput = { diff --git a/public/examples/integrations/toolkits/stripe/create_price_example_call_tool.py b/public/examples/integrations/toolkits/stripe/create_price_example_call_tool.py index 81e8ba5df..aa8c12228 100644 --- a/public/examples/integrations/toolkits/stripe/create_price_example_call_tool.py +++ b/public/examples/integrations/toolkits/stripe/create_price_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Stripe.CreatePrice" tool_input = { diff --git a/public/examples/integrations/toolkits/stripe/create_product_example_call_tool.js b/public/examples/integrations/toolkits/stripe/create_product_example_call_tool.js index ab8509aa5..353dc343c 100644 --- a/public/examples/integrations/toolkits/stripe/create_product_example_call_tool.js +++ b/public/examples/integrations/toolkits/stripe/create_product_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Stripe.CreateProduct"; const toolInput = { diff --git a/public/examples/integrations/toolkits/stripe/create_product_example_call_tool.py b/public/examples/integrations/toolkits/stripe/create_product_example_call_tool.py index a7befccaa..07c7489df 100644 --- a/public/examples/integrations/toolkits/stripe/create_product_example_call_tool.py +++ b/public/examples/integrations/toolkits/stripe/create_product_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Stripe.CreateProduct" tool_input = { diff --git a/public/examples/integrations/toolkits/stripe/create_refund_example_call_tool.js b/public/examples/integrations/toolkits/stripe/create_refund_example_call_tool.js index 50938f24e..0069200e0 100644 --- a/public/examples/integrations/toolkits/stripe/create_refund_example_call_tool.js +++ b/public/examples/integrations/toolkits/stripe/create_refund_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Stripe.CreateRefund"; const toolInput = { diff --git a/public/examples/integrations/toolkits/stripe/create_refund_example_call_tool.py b/public/examples/integrations/toolkits/stripe/create_refund_example_call_tool.py index 724d084d3..fa8593765 100644 --- a/public/examples/integrations/toolkits/stripe/create_refund_example_call_tool.py +++ b/public/examples/integrations/toolkits/stripe/create_refund_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Stripe.CreateRefund" tool_input = { diff --git a/public/examples/integrations/toolkits/stripe/finalize_invoice_example_call_tool.js b/public/examples/integrations/toolkits/stripe/finalize_invoice_example_call_tool.js index deae748f1..540e4a458 100644 --- a/public/examples/integrations/toolkits/stripe/finalize_invoice_example_call_tool.js +++ b/public/examples/integrations/toolkits/stripe/finalize_invoice_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Stripe.FinalizeInvoice"; const toolInput = { diff --git a/public/examples/integrations/toolkits/stripe/finalize_invoice_example_call_tool.py b/public/examples/integrations/toolkits/stripe/finalize_invoice_example_call_tool.py index 8c0229f58..2bba19f5c 100644 --- a/public/examples/integrations/toolkits/stripe/finalize_invoice_example_call_tool.py +++ b/public/examples/integrations/toolkits/stripe/finalize_invoice_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Stripe.FinalizeInvoice" tool_input = { diff --git a/public/examples/integrations/toolkits/stripe/list_customers_example_call_tool.js b/public/examples/integrations/toolkits/stripe/list_customers_example_call_tool.js index c63654440..4bcac6613 100644 --- a/public/examples/integrations/toolkits/stripe/list_customers_example_call_tool.js +++ b/public/examples/integrations/toolkits/stripe/list_customers_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Stripe.ListCustomers"; const toolInput = { diff --git a/public/examples/integrations/toolkits/stripe/list_customers_example_call_tool.py b/public/examples/integrations/toolkits/stripe/list_customers_example_call_tool.py index bd132f9c0..df2adb5f5 100644 --- a/public/examples/integrations/toolkits/stripe/list_customers_example_call_tool.py +++ b/public/examples/integrations/toolkits/stripe/list_customers_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Stripe.ListCustomers" tool_input = { diff --git a/public/examples/integrations/toolkits/stripe/list_invoices_example_call_tool.js b/public/examples/integrations/toolkits/stripe/list_invoices_example_call_tool.js index 68b28cdc0..615ffc449 100644 --- a/public/examples/integrations/toolkits/stripe/list_invoices_example_call_tool.js +++ b/public/examples/integrations/toolkits/stripe/list_invoices_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Stripe.ListInvoices"; const toolInput = { diff --git a/public/examples/integrations/toolkits/stripe/list_invoices_example_call_tool.py b/public/examples/integrations/toolkits/stripe/list_invoices_example_call_tool.py index 7ed916109..229df0f0b 100644 --- a/public/examples/integrations/toolkits/stripe/list_invoices_example_call_tool.py +++ b/public/examples/integrations/toolkits/stripe/list_invoices_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Stripe.ListInvoices" tool_input = { diff --git a/public/examples/integrations/toolkits/stripe/list_payment_intents_example_call_tool.js b/public/examples/integrations/toolkits/stripe/list_payment_intents_example_call_tool.js index 67e5f62c2..dfa63fadb 100644 --- a/public/examples/integrations/toolkits/stripe/list_payment_intents_example_call_tool.js +++ b/public/examples/integrations/toolkits/stripe/list_payment_intents_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Stripe.ListPaymentIntents"; const toolInput = { diff --git a/public/examples/integrations/toolkits/stripe/list_payment_intents_example_call_tool.py b/public/examples/integrations/toolkits/stripe/list_payment_intents_example_call_tool.py index b98c80b78..a81858837 100644 --- a/public/examples/integrations/toolkits/stripe/list_payment_intents_example_call_tool.py +++ b/public/examples/integrations/toolkits/stripe/list_payment_intents_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Stripe.ListPaymentIntents" tool_input = { diff --git a/public/examples/integrations/toolkits/stripe/list_prices_example_call_tool.js b/public/examples/integrations/toolkits/stripe/list_prices_example_call_tool.js index 5c3229e8b..2d0f609ac 100644 --- a/public/examples/integrations/toolkits/stripe/list_prices_example_call_tool.js +++ b/public/examples/integrations/toolkits/stripe/list_prices_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Stripe.ListPrices"; const toolInput = { diff --git a/public/examples/integrations/toolkits/stripe/list_prices_example_call_tool.py b/public/examples/integrations/toolkits/stripe/list_prices_example_call_tool.py index 6c842962e..ae4a03ef3 100644 --- a/public/examples/integrations/toolkits/stripe/list_prices_example_call_tool.py +++ b/public/examples/integrations/toolkits/stripe/list_prices_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Stripe.ListPrices" tool_input = { diff --git a/public/examples/integrations/toolkits/stripe/list_products_example_call_tool.js b/public/examples/integrations/toolkits/stripe/list_products_example_call_tool.js index c8b4d9420..6b7187366 100644 --- a/public/examples/integrations/toolkits/stripe/list_products_example_call_tool.js +++ b/public/examples/integrations/toolkits/stripe/list_products_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Stripe.ListProducts"; const toolInput = { diff --git a/public/examples/integrations/toolkits/stripe/list_products_example_call_tool.py b/public/examples/integrations/toolkits/stripe/list_products_example_call_tool.py index a60720be4..3acaf8573 100644 --- a/public/examples/integrations/toolkits/stripe/list_products_example_call_tool.py +++ b/public/examples/integrations/toolkits/stripe/list_products_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Stripe.ListProducts" tool_input = { diff --git a/public/examples/integrations/toolkits/stripe/retrieve_balance_example_call_tool.js b/public/examples/integrations/toolkits/stripe/retrieve_balance_example_call_tool.js index 2d5676fe5..b1de1b8a7 100644 --- a/public/examples/integrations/toolkits/stripe/retrieve_balance_example_call_tool.js +++ b/public/examples/integrations/toolkits/stripe/retrieve_balance_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Stripe.RetrieveBalance"; const toolInput = {}; // No input required for this tool diff --git a/public/examples/integrations/toolkits/stripe/retrieve_balance_example_call_tool.py b/public/examples/integrations/toolkits/stripe/retrieve_balance_example_call_tool.py index e86396f1c..c9d1033ed 100644 --- a/public/examples/integrations/toolkits/stripe/retrieve_balance_example_call_tool.py +++ b/public/examples/integrations/toolkits/stripe/retrieve_balance_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Stripe.RetrieveBalance" tool_input = {} # No input required for this tool diff --git a/public/examples/integrations/toolkits/web/cancel_crawl_example_call_tool.js b/public/examples/integrations/toolkits/web/cancel_crawl_example_call_tool.js index c9b1438d3..ce5a5b0af 100644 --- a/public/examples/integrations/toolkits/web/cancel_crawl_example_call_tool.js +++ b/public/examples/integrations/toolkits/web/cancel_crawl_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Web.CancelCrawl"; const toolInput = { diff --git a/public/examples/integrations/toolkits/web/cancel_crawl_example_call_tool.py b/public/examples/integrations/toolkits/web/cancel_crawl_example_call_tool.py index 5a2c918c9..2393f76bc 100644 --- a/public/examples/integrations/toolkits/web/cancel_crawl_example_call_tool.py +++ b/public/examples/integrations/toolkits/web/cancel_crawl_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Web.CancelCrawl" tool_input = {"crawl_id": "your_crawl_id"} diff --git a/public/examples/integrations/toolkits/web/crawl_website_example_call_tool.js b/public/examples/integrations/toolkits/web/crawl_website_example_call_tool.js index 66c10955f..d7b7d819a 100644 --- a/public/examples/integrations/toolkits/web/crawl_website_example_call_tool.js +++ b/public/examples/integrations/toolkits/web/crawl_website_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Web.CrawlWebsite"; const toolInput = { diff --git a/public/examples/integrations/toolkits/web/crawl_website_example_call_tool.py b/public/examples/integrations/toolkits/web/crawl_website_example_call_tool.py index d994e8395..a8809b59d 100644 --- a/public/examples/integrations/toolkits/web/crawl_website_example_call_tool.py +++ b/public/examples/integrations/toolkits/web/crawl_website_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Web.CrawlWebsite" tool_input = {"url": "https://example.com", "max_depth": 2} diff --git a/public/examples/integrations/toolkits/web/get_crawl_data_example_call_tool.js b/public/examples/integrations/toolkits/web/get_crawl_data_example_call_tool.js index 151308a14..0938de1db 100644 --- a/public/examples/integrations/toolkits/web/get_crawl_data_example_call_tool.js +++ b/public/examples/integrations/toolkits/web/get_crawl_data_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Web.GetCrawlData"; const toolInput = { diff --git a/public/examples/integrations/toolkits/web/get_crawl_data_example_call_tool.py b/public/examples/integrations/toolkits/web/get_crawl_data_example_call_tool.py index 6c208e021..ba61afe69 100644 --- a/public/examples/integrations/toolkits/web/get_crawl_data_example_call_tool.py +++ b/public/examples/integrations/toolkits/web/get_crawl_data_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Web.GetCrawlData" tool_input = {"crawl_id": "your_crawl_id"} diff --git a/public/examples/integrations/toolkits/web/get_crawl_status_example_call_tool.js b/public/examples/integrations/toolkits/web/get_crawl_status_example_call_tool.js index 71a162bfb..0e41df210 100644 --- a/public/examples/integrations/toolkits/web/get_crawl_status_example_call_tool.js +++ b/public/examples/integrations/toolkits/web/get_crawl_status_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Web.GetCrawlStatus"; const toolInput = { diff --git a/public/examples/integrations/toolkits/web/get_crawl_status_example_call_tool.py b/public/examples/integrations/toolkits/web/get_crawl_status_example_call_tool.py index 589fdb9eb..9db589a03 100644 --- a/public/examples/integrations/toolkits/web/get_crawl_status_example_call_tool.py +++ b/public/examples/integrations/toolkits/web/get_crawl_status_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Web.GetCrawlStatus" tool_input = {"crawl_id": "your_crawl_id"} diff --git a/public/examples/integrations/toolkits/web/map_website_example_call_tool.js b/public/examples/integrations/toolkits/web/map_website_example_call_tool.js index 39d376aa7..d79a653cf 100644 --- a/public/examples/integrations/toolkits/web/map_website_example_call_tool.js +++ b/public/examples/integrations/toolkits/web/map_website_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Web.MapWebsite"; const toolInput = { diff --git a/public/examples/integrations/toolkits/web/map_website_example_call_tool.py b/public/examples/integrations/toolkits/web/map_website_example_call_tool.py index c880a9eb8..d1b1fa3b2 100644 --- a/public/examples/integrations/toolkits/web/map_website_example_call_tool.py +++ b/public/examples/integrations/toolkits/web/map_website_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Web.MapWebsite" tool_input = {"url": "https://example.com"} diff --git a/public/examples/integrations/toolkits/web/scrape_url_example_call_tool.js b/public/examples/integrations/toolkits/web/scrape_url_example_call_tool.js index d836006eb..29e1a3c99 100644 --- a/public/examples/integrations/toolkits/web/scrape_url_example_call_tool.js +++ b/public/examples/integrations/toolkits/web/scrape_url_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "Web.ScrapeUrl"; const toolInput = { diff --git a/public/examples/integrations/toolkits/web/scrape_url_example_call_tool.py b/public/examples/integrations/toolkits/web/scrape_url_example_call_tool.py index 0c5f5cb6d..d0194e5bd 100644 --- a/public/examples/integrations/toolkits/web/scrape_url_example_call_tool.py +++ b/public/examples/integrations/toolkits/web/scrape_url_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "Web.ScrapeUrl" tool_input = {"url": "https://example.com", "formats": "Formats.MARKDOWN"} diff --git a/public/examples/integrations/toolkits/x/delete_tweet_by_id_example_call_tool.js b/public/examples/integrations/toolkits/x/delete_tweet_by_id_example_call_tool.js index 3d7e2bd36..7d3208ff6 100644 --- a/public/examples/integrations/toolkits/x/delete_tweet_by_id_example_call_tool.js +++ b/public/examples/integrations/toolkits/x/delete_tweet_by_id_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "X.DeleteTweetById"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/x/delete_tweet_by_id_example_call_tool.py b/public/examples/integrations/toolkits/x/delete_tweet_by_id_example_call_tool.py index b8903c1d9..6b365d40f 100644 --- a/public/examples/integrations/toolkits/x/delete_tweet_by_id_example_call_tool.py +++ b/public/examples/integrations/toolkits/x/delete_tweet_by_id_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "X.DeleteTweetById" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/x/lookup_single_user_by_username_example_call_tool.js b/public/examples/integrations/toolkits/x/lookup_single_user_by_username_example_call_tool.js index 9095ae49a..6ff356ae3 100644 --- a/public/examples/integrations/toolkits/x/lookup_single_user_by_username_example_call_tool.js +++ b/public/examples/integrations/toolkits/x/lookup_single_user_by_username_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "X.LookupSingleUserByUsername"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/x/lookup_single_user_by_username_example_call_tool.py b/public/examples/integrations/toolkits/x/lookup_single_user_by_username_example_call_tool.py index 17adc1e2f..d243b8125 100644 --- a/public/examples/integrations/toolkits/x/lookup_single_user_by_username_example_call_tool.py +++ b/public/examples/integrations/toolkits/x/lookup_single_user_by_username_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "X.LookupSingleUserByUsername" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/x/lookup_tweet_by_id_example_call_tool.js b/public/examples/integrations/toolkits/x/lookup_tweet_by_id_example_call_tool.js index 58ba5c28e..d6d0d51da 100644 --- a/public/examples/integrations/toolkits/x/lookup_tweet_by_id_example_call_tool.js +++ b/public/examples/integrations/toolkits/x/lookup_tweet_by_id_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "X.LookupTweetById"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/x/lookup_tweet_by_id_example_call_tool.py b/public/examples/integrations/toolkits/x/lookup_tweet_by_id_example_call_tool.py index 25cc0f4f9..346e0da86 100644 --- a/public/examples/integrations/toolkits/x/lookup_tweet_by_id_example_call_tool.py +++ b/public/examples/integrations/toolkits/x/lookup_tweet_by_id_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "X.LookupTweetById" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/x/post_tweet_example_call_tool.js b/public/examples/integrations/toolkits/x/post_tweet_example_call_tool.js index dbd377143..990811077 100644 --- a/public/examples/integrations/toolkits/x/post_tweet_example_call_tool.js +++ b/public/examples/integrations/toolkits/x/post_tweet_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "X.PostTweet"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/x/post_tweet_example_call_tool.py b/public/examples/integrations/toolkits/x/post_tweet_example_call_tool.py index 4e022a078..a98ed8ec4 100644 --- a/public/examples/integrations/toolkits/x/post_tweet_example_call_tool.py +++ b/public/examples/integrations/toolkits/x/post_tweet_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "X.PostTweet" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/x/search_recent_tweets_by_keywords_example_call_tool.js b/public/examples/integrations/toolkits/x/search_recent_tweets_by_keywords_example_call_tool.js index 948f46639..9ea745939 100644 --- a/public/examples/integrations/toolkits/x/search_recent_tweets_by_keywords_example_call_tool.js +++ b/public/examples/integrations/toolkits/x/search_recent_tweets_by_keywords_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "X.SearchRecentTweetsByKeywords"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/x/search_recent_tweets_by_keywords_example_call_tool.py b/public/examples/integrations/toolkits/x/search_recent_tweets_by_keywords_example_call_tool.py index 45b1a9bc9..982da4523 100644 --- a/public/examples/integrations/toolkits/x/search_recent_tweets_by_keywords_example_call_tool.py +++ b/public/examples/integrations/toolkits/x/search_recent_tweets_by_keywords_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "X.SearchRecentTweetsByKeywords" auth_response = client.tools.authorize( diff --git a/public/examples/integrations/toolkits/x/search_recent_tweets_by_username_example_call_tool.js b/public/examples/integrations/toolkits/x/search_recent_tweets_by_username_example_call_tool.js index 6d537aa1b..f43deb17e 100644 --- a/public/examples/integrations/toolkits/x/search_recent_tweets_by_username_example_call_tool.js +++ b/public/examples/integrations/toolkits/x/search_recent_tweets_by_username_example_call_tool.js @@ -2,7 +2,7 @@ import { Arcade } from "@arcadeai/arcadejs"; const client = new Arcade(); // Automatically finds the `ARCADE_API_KEY` env variable -const USER_ID = "you@example.com"; +const USER_ID = "{arcade_user_id}"; const TOOL_NAME = "X.SearchRecentTweetsByUsername"; // Start the authorization process diff --git a/public/examples/integrations/toolkits/x/search_recent_tweets_by_username_example_call_tool.py b/public/examples/integrations/toolkits/x/search_recent_tweets_by_username_example_call_tool.py index a2f11ae68..92efa9172 100644 --- a/public/examples/integrations/toolkits/x/search_recent_tweets_by_username_example_call_tool.py +++ b/public/examples/integrations/toolkits/x/search_recent_tweets_by_username_example_call_tool.py @@ -2,7 +2,7 @@ client = Arcade() # Automatically finds the `ARCADE_API_KEY` env variable -USER_ID = "you@example.com" +USER_ID = "{arcade_user_id}" TOOL_NAME = "X.SearchRecentTweetsByUsername" auth_response = client.tools.authorize( diff --git a/src/components/CustomLayout.tsx b/src/components/CustomLayout.tsx index 15cca076b..8563f33f3 100644 --- a/src/components/CustomLayout.tsx +++ b/src/components/CustomLayout.tsx @@ -1,9 +1,16 @@ import React from "react"; +import { OrySessionProvider } from "@/lib/OrySessionContext"; +import { PlaceholderReplacer } from "@/components/PlaceholderReplacer"; const CustomLayout: React.FC<{ children: React.ReactNode }> = ({ children, }) => { - return
{children}
; + return ( + + +
{children}
+
+ ); }; export default CustomLayout; diff --git a/src/components/PlaceholderReplacer.tsx b/src/components/PlaceholderReplacer.tsx new file mode 100644 index 000000000..120c6af67 --- /dev/null +++ b/src/components/PlaceholderReplacer.tsx @@ -0,0 +1,99 @@ +import { useEffect } from "react"; +import { useOrySession } from "@/lib/OrySessionContext"; +import { getCookie } from "@/lib/utils"; + +export function PlaceholderReplacer() { + const { email, loading } = useOrySession(); + + useEffect(() => { + // Determine the replacement value with fallback priority: + // 1. If loading, keep original placeholder + // 2. If Ory email is available, use that (highest priority) + // 3. If no Ory email but cookie exists, use cookie value + // 4. Otherwise, use original placeholder + const getCookieEmail = () => getCookie("last_arcadedev_account_email"); + + const replacement = loading + ? "{arcade_user_id}" // Keep original while loading + : email || getCookieEmail() || "{arcade_user_id}"; + + // Function to replace text in a text node + const replaceInTextNode = (node: Text) => { + if (node.nodeValue && node.nodeValue.includes("{arcade_user_id}")) { + const newValue = node.nodeValue.replace( + /\{arcade_user_id\}/g, + replacement, + ); + if (node.nodeValue !== newValue) { + node.nodeValue = newValue; + } + } + }; + + // Function to process all text nodes in an element + const processElement = (element: Element) => { + // Skip script and style elements + if (element.tagName === "SCRIPT" || element.tagName === "STYLE") { + return; + } + + // Walk through all text nodes + const walker = document.createTreeWalker(element, NodeFilter.SHOW_TEXT, { + acceptNode: (node) => { + // Only process text nodes that might contain our placeholder + if (node.nodeValue && node.nodeValue.includes("arcade_user_id")) { + return NodeFilter.FILTER_ACCEPT; + } + return NodeFilter.FILTER_SKIP; + }, + }); + + let node; + while ((node = walker.nextNode())) { + replaceInTextNode(node as Text); + } + }; + + // Initial replacement on mount + const timeoutId = setTimeout(() => { + processElement(document.body); + }, 100); // Small delay to ensure content is rendered + + // Set up MutationObserver for dynamic content + const observer = new MutationObserver((mutations) => { + mutations.forEach((mutation) => { + if (mutation.type === "childList") { + mutation.addedNodes.forEach((node) => { + if (node.nodeType === Node.ELEMENT_NODE) { + processElement(node as Element); + } else if (node.nodeType === Node.TEXT_NODE) { + replaceInTextNode(node as Text); + } + }); + } else if ( + mutation.type === "characterData" && + mutation.target.nodeType === Node.TEXT_NODE + ) { + replaceInTextNode(mutation.target as Text); + } + }); + }); + + // Start observing + observer.observe(document.body, { + childList: true, + subtree: true, + characterData: true, + characterDataOldValue: true, + }); + + // Cleanup + return () => { + clearTimeout(timeoutId); + observer.disconnect(); + }; + }, [email, loading]); + + // This component doesn't render anything + return null; +} diff --git a/src/lib/OrySessionContext.tsx b/src/lib/OrySessionContext.tsx new file mode 100644 index 000000000..8b632eec2 --- /dev/null +++ b/src/lib/OrySessionContext.tsx @@ -0,0 +1,73 @@ +import React, { createContext, useContext, useEffect, useState } from "react"; +import { Configuration, FrontendApi } from "@ory/client"; + +interface OrySessionContextType { + email: string | null; + loading: boolean; + error: Error | null; +} + +const OrySessionContext = createContext({ + email: null, + loading: true, + error: null, +}); + +const ory = new FrontendApi( + new Configuration({ + basePath: process.env.NEXT_PUBLIC_ORY_SDK_URL || "https://auth.arcade.dev", + baseOptions: { + withCredentials: true, + }, + }), +); + +export function OrySessionProvider({ + children, +}: { + children: React.ReactNode; +}) { + const [email, setEmail] = useState(null); + const [loading, setLoading] = useState(true); + const [error, setError] = useState(null); + + useEffect(() => { + const checkSession = async () => { + try { + const { data: session } = await ory.toSession(); + + // Extract email from session identity traits + const userEmail = session?.identity?.traits?.email as + | string + | undefined; + + if (userEmail) { + setEmail(userEmail); + } else { + setEmail(null); + } + } catch (err) { + // Session not found or expired + setEmail(null); + setError( + err instanceof Error ? err : new Error("Failed to fetch session"), + ); + } finally { + setLoading(false); + } + }; + + checkSession(); + }, []); + + return ( + + {children} + + ); +} + +export function useOrySession() { + const context = useContext(OrySessionContext); + return context; +} diff --git a/src/lib/utils.ts b/src/lib/utils.ts index a5ef19350..ecda8f62b 100644 --- a/src/lib/utils.ts +++ b/src/lib/utils.ts @@ -4,3 +4,17 @@ import { twMerge } from "tailwind-merge"; export function cn(...inputs: ClassValue[]) { return twMerge(clsx(inputs)); } + +/** + * Read a cookie value by name from document.cookie + * @param name - The name of the cookie to read + * @returns The cookie value or null if not found + */ +export function getCookie(name: string): string | null { + const value = `; ${document.cookie}`; + const parts = value.split(`; ${name}=`); + if (parts.length === 2) { + return parts.pop()?.split(";").shift() || null; + } + return null; +} diff --git a/theme.config.tsx b/theme.config.tsx index e83d97058..ca8cea256 100644 --- a/theme.config.tsx +++ b/theme.config.tsx @@ -10,7 +10,7 @@ import { Check, Important, Info, Note, Tip, Warning } from "@markdown/Callouts"; import { Card, Cards } from "@markdown/Cards"; import { DarkOnly, LightOnly } from "@markdown/ThemeContent"; import { DocsThemeConfig } from "nextra-theme-docs"; -import { Button, Cards as NavCards, Steps } from "nextra/components"; +import { Cards as NavCards, Steps } from "nextra/components"; import { SignupLink } from "@/components/Analytics"; import Link from "next/link";