Skip to content

Commit 1e7f59a

Browse files
chore(sdk-ts): regenerate client docs
1 parent f20728e commit 1e7f59a

11 files changed

Lines changed: 18 additions & 30 deletions

sdks/typescript/src/generated/funcs/agents-get-evaluator.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,7 @@ import { Result } from "../types/fp.js";
3737
* agent_name: Agent identifier
3838
* evaluator_name: Name of the evaluator
3939
* db: Database session (injected)
40-
* namespace_key: Resolved namespace; agents in another namespace
41-
* return 404 (non-disclosing).
40+
* principal: Authorized request principal
4241
*
4342
* Returns:
4443
* EvaluatorSchemaItem with schema details

sdks/typescript/src/generated/funcs/agents-get.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,7 @@ import { Result } from "../types/fp.js";
3838
* Args:
3939
* agent_name: Agent identifier
4040
* db: Database session (injected)
41-
* namespace_key: Resolved namespace; agents in another namespace
42-
* return 404 (non-disclosing).
41+
* principal: Authorized request principal
4342
*
4443
* Returns:
4544
* GetAgentResponse with agent metadata and step list

sdks/typescript/src/generated/funcs/agents-init.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ import { Result } from "../types/fp.js";
5151
* Args:
5252
* request: Agent metadata and step schemas
5353
* db: Database session (injected)
54+
* principal: Authorized request principal
5455
*
5556
* Returns:
5657
* InitAgentResponse with created flag and the effective controls

sdks/typescript/src/generated/funcs/agents-list-controls.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ import { Result } from "../types/fp.js";
5353
* target_type: Optional opaque target kind (paired with target_id)
5454
* target_id: Optional opaque target identifier (paired with target_type)
5555
* db: Database session (injected)
56-
* namespace_key: Namespace scoping for the resolution (injected)
56+
* principal: Authorized request principal
5757
*
5858
* Returns:
5959
* AgentControlsResponse with controls matching the requested state filters

sdks/typescript/src/generated/funcs/agents-list-evaluators.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,7 @@ import { Result } from "../types/fp.js";
4242
* cursor: Optional cursor for pagination (name of last evaluator from previous page)
4343
* limit: Pagination limit (default 20, max 100)
4444
* db: Database session (injected)
45-
* namespace_key: Resolved namespace; agents in another namespace
46-
* return 404 (non-disclosing).
45+
* principal: Authorized request principal
4746
*
4847
* Returns:
4948
* ListEvaluatorsResponse with evaluator schemas and pagination

sdks/typescript/src/generated/funcs/agents-list.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ import { Result } from "../types/fp.js";
4242
* limit: Pagination limit (default 20, max 100)
4343
* name: Optional name filter (case-insensitive partial match)
4444
* db: Database session (injected)
45-
* namespace_key: Resolved namespace for the request
45+
* principal: Authorized request principal
4646
*
4747
* Returns:
4848
* ListAgentsResponse with agent summaries and pagination info

sdks/typescript/src/generated/funcs/agents-update.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ import { Result } from "../types/fp.js";
4040
* agent_name: Agent identifier
4141
* request: Lists of step/evaluator identifiers to remove
4242
* db: Database session (injected)
43+
* principal: Authorized request principal
4344
*
4445
* Returns:
4546
* PatchAgentResponse with lists of actually removed items

sdks/typescript/src/generated/funcs/control-bindings-create.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,7 @@ import { Result } from "../types/fp.js";
3333
* Attach a control to an opaque external target.
3434
*
3535
* Each binding row is scoped to the request namespace as resolved by
36-
* ``get_namespace_key``. The auth chain still runs via
37-
* ``require_operation`` for authentication and authorization, but the
38-
* storage namespace is taken from the same resolver the rest of the
39-
* server uses so binding writes and runtime reads stay in lockstep
40-
* until auth-derived namespace resolution lands across every endpoint.
36+
* the active authorizer.
4137
*/
4238
export function controlBindingsCreate(
4339
client: AgentControlSDKCore,

sdks/typescript/src/generated/funcs/control-bindings-list.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,7 @@ import { Result } from "../types/fp.js";
3535
* cursor-based pagination. Bindings are ordered by ID descending
3636
* (newest first). The cursor is opaque to clients: pass back the
3737
* ``next_cursor`` value verbatim to fetch the following page. The
38-
* storage namespace is resolved by ``get_namespace_key`` so this
39-
* listing stays in lockstep with the rest of the server's reads.
38+
* storage namespace is resolved by the active authorizer.
4039
*/
4140
export function controlBindingsList(
4241
client: AgentControlSDKCore,

sdks/typescript/src/generated/sdk/agents.ts

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export class Agents extends ClientSDK {
3939
* limit: Pagination limit (default 20, max 100)
4040
* name: Optional name filter (case-insensitive partial match)
4141
* db: Database session (injected)
42-
* namespace_key: Resolved namespace for the request
42+
* principal: Authorized request principal
4343
*
4444
* Returns:
4545
* ListAgentsResponse with agent summaries and pagination info
@@ -80,6 +80,7 @@ export class Agents extends ClientSDK {
8080
* Args:
8181
* request: Agent metadata and step schemas
8282
* db: Database session (injected)
83+
* principal: Authorized request principal
8384
*
8485
* Returns:
8586
* InitAgentResponse with created flag and the effective controls
@@ -106,8 +107,7 @@ export class Agents extends ClientSDK {
106107
* Args:
107108
* agent_name: Agent identifier
108109
* db: Database session (injected)
109-
* namespace_key: Resolved namespace; agents in another namespace
110-
* return 404 (non-disclosing).
110+
* principal: Authorized request principal
111111
*
112112
* Returns:
113113
* GetAgentResponse with agent metadata and step list
@@ -140,6 +140,7 @@ export class Agents extends ClientSDK {
140140
* agent_name: Agent identifier
141141
* request: Lists of step/evaluator identifiers to remove
142142
* db: Database session (injected)
143+
* principal: Authorized request principal
143144
*
144145
* Returns:
145146
* PatchAgentResponse with lists of actually removed items
@@ -185,7 +186,7 @@ export class Agents extends ClientSDK {
185186
* target_type: Optional opaque target kind (paired with target_id)
186187
* target_id: Optional opaque target identifier (paired with target_type)
187188
* db: Database session (injected)
188-
* namespace_key: Namespace scoping for the resolution (injected)
189+
* principal: Authorized request principal
189190
*
190191
* Returns:
191192
* AgentControlsResponse with controls matching the requested state filters
@@ -256,8 +257,7 @@ export class Agents extends ClientSDK {
256257
* cursor: Optional cursor for pagination (name of last evaluator from previous page)
257258
* limit: Pagination limit (default 20, max 100)
258259
* db: Database session (injected)
259-
* namespace_key: Resolved namespace; agents in another namespace
260-
* return 404 (non-disclosing).
260+
* principal: Authorized request principal
261261
*
262262
* Returns:
263263
* ListEvaluatorsResponse with evaluator schemas and pagination
@@ -287,8 +287,7 @@ export class Agents extends ClientSDK {
287287
* agent_name: Agent identifier
288288
* evaluator_name: Name of the evaluator
289289
* db: Database session (injected)
290-
* namespace_key: Resolved namespace; agents in another namespace
291-
* return 404 (non-disclosing).
290+
* principal: Authorized request principal
292291
*
293292
* Returns:
294293
* EvaluatorSchemaItem with schema details

0 commit comments

Comments
 (0)