@1claw/sdk 0.51.0 → 0.52.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -7297,6 +7297,18 @@ export interface components {
|
|
|
7297
7297
|
* @description Optional expiration time for the agent's API key.
|
|
7298
7298
|
*/
|
|
7299
7299
|
api_key_expires_at?: string | null;
|
|
7300
|
+
/** @description Named environment for this agent (production, preview, development, or custom). */
|
|
7301
|
+
environment?: string;
|
|
7302
|
+
/**
|
|
7303
|
+
* @description When true, the environment tag cannot be changed after creation.
|
|
7304
|
+
* @default false
|
|
7305
|
+
*/
|
|
7306
|
+
environment_locked: boolean;
|
|
7307
|
+
/**
|
|
7308
|
+
* @description When true, env var resolve endpoints auto-fill environment from this agent's tag.
|
|
7309
|
+
* @default false
|
|
7310
|
+
*/
|
|
7311
|
+
env_auto_resolve: boolean;
|
|
7300
7312
|
};
|
|
7301
7313
|
UpdateAgentRequest: {
|
|
7302
7314
|
name?: string;
|
|
@@ -7396,6 +7408,16 @@ export interface components {
|
|
|
7396
7408
|
* @description Optional expiration time for the agent's API key. Set to null to clear.
|
|
7397
7409
|
*/
|
|
7398
7410
|
api_key_expires_at?: string | null;
|
|
7411
|
+
/** @description Named environment for this agent (production, preview, development, or custom). */
|
|
7412
|
+
environment?: string | null;
|
|
7413
|
+
/** @description When true, the environment tag cannot be changed after creation. */
|
|
7414
|
+
environment_locked?: boolean;
|
|
7415
|
+
/** @description When true, env var resolve endpoints auto-fill environment from this agent's tag. */
|
|
7416
|
+
env_auto_resolve?: boolean;
|
|
7417
|
+
/** @description Per-environment guardrail overrides keyed by environment slug. */
|
|
7418
|
+
per_environment_guardrails?: {
|
|
7419
|
+
[key: string]: unknown;
|
|
7420
|
+
};
|
|
7399
7421
|
};
|
|
7400
7422
|
AgentResponse: {
|
|
7401
7423
|
/** Format: uuid */
|
|
@@ -7532,6 +7554,16 @@ export interface components {
|
|
|
7532
7554
|
last_active_at?: string;
|
|
7533
7555
|
/** @description Multi-chain; one Safe per chain */
|
|
7534
7556
|
smart_accounts?: components["schemas"]["AgentSmartAccountResponse"][];
|
|
7557
|
+
/** @description Named environment this agent belongs to (production, preview, development, or custom). */
|
|
7558
|
+
environment?: string | null;
|
|
7559
|
+
/** @description When true, the environment tag is locked and cannot be changed. */
|
|
7560
|
+
environment_locked?: boolean;
|
|
7561
|
+
/** @description When true, env var resolve endpoints auto-fill environment from this agent's tag. */
|
|
7562
|
+
env_auto_resolve?: boolean;
|
|
7563
|
+
/** @description Per-environment guardrail overrides keyed by environment slug. */
|
|
7564
|
+
per_environment_guardrails?: {
|
|
7565
|
+
[key: string]: unknown;
|
|
7566
|
+
};
|
|
7535
7567
|
};
|
|
7536
7568
|
KnownToken: {
|
|
7537
7569
|
/** Format: uuid */
|