@rightbrain/brain-api-client 0.0.1-dev.144.719ee49 → 0.0.1-dev.145.f5d6d3e

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.
Files changed (4) hide show
  1. package/api.ts +1155 -4
  2. package/dist/api.d.ts +786 -4
  3. package/dist/api.js +1028 -76
  4. package/package.json +1 -1
package/dist/api.d.ts CHANGED
@@ -4578,6 +4578,74 @@ export interface McpServerDiscoveryResponse {
4578
4578
  */
4579
4579
  'transport'?: TaskMcpTransport;
4580
4580
  }
4581
+ /**
4582
+ *
4583
+ * @export
4584
+ * @interface McpServerIAMMemberRoleUpdate
4585
+ */
4586
+ export interface McpServerIAMMemberRoleUpdate {
4587
+ /**
4588
+ * A list of mcp_server roles to grant to the member. Roles in this list are applied to the member AFTER any removals specified in `remove`. This may be combined with `remove_all` to replace the member\'s entire role list.
4589
+ * @type {Array<string>}
4590
+ * @memberof McpServerIAMMemberRoleUpdate
4591
+ */
4592
+ 'add'?: Array<McpServerIAMMemberRoleUpdateAddEnum>;
4593
+ /**
4594
+ * A list of mcp_server roles to revoke from the member.
4595
+ * @type {Array<string>}
4596
+ * @memberof McpServerIAMMemberRoleUpdate
4597
+ */
4598
+ 'remove'?: Array<McpServerIAMMemberRoleUpdateRemoveEnum>;
4599
+ /**
4600
+ * Removes all existing roles from the member. This may be combined with `add` to replace all existing roles that the member holds.
4601
+ * @type {boolean}
4602
+ * @memberof McpServerIAMMemberRoleUpdate
4603
+ */
4604
+ 'remove_all'?: boolean | null;
4605
+ }
4606
+ export declare const McpServerIAMMemberRoleUpdateAddEnum: {
4607
+ readonly Editor: "editor";
4608
+ readonly Owner: "owner";
4609
+ readonly Viewer: "viewer";
4610
+ };
4611
+ export type McpServerIAMMemberRoleUpdateAddEnum = typeof McpServerIAMMemberRoleUpdateAddEnum[keyof typeof McpServerIAMMemberRoleUpdateAddEnum];
4612
+ export declare const McpServerIAMMemberRoleUpdateRemoveEnum: {
4613
+ readonly Editor: "editor";
4614
+ readonly Owner: "owner";
4615
+ readonly Viewer: "viewer";
4616
+ };
4617
+ export type McpServerIAMMemberRoleUpdateRemoveEnum = typeof McpServerIAMMemberRoleUpdateRemoveEnum[keyof typeof McpServerIAMMemberRoleUpdateRemoveEnum];
4618
+ /**
4619
+ *
4620
+ * @export
4621
+ * @interface McpServerIAMPermissionTest
4622
+ */
4623
+ export interface McpServerIAMPermissionTest {
4624
+ /**
4625
+ * A list of permissions to test on the mcp_server.
4626
+ * @type {Array<string>}
4627
+ * @memberof McpServerIAMPermissionTest
4628
+ */
4629
+ 'permissions': Array<McpServerIAMPermissionTestPermissionsEnum>;
4630
+ /**
4631
+ *
4632
+ * @type {string}
4633
+ * @memberof McpServerIAMPermissionTest
4634
+ */
4635
+ 'member'?: string | null;
4636
+ }
4637
+ export declare const McpServerIAMPermissionTestPermissionsEnum: {
4638
+ readonly AddEditor: "add_editor";
4639
+ readonly AddMember: "add_member";
4640
+ readonly AddOwner: "add_owner";
4641
+ readonly Edit: "edit";
4642
+ readonly RemoveEditor: "remove_editor";
4643
+ readonly RemoveMember: "remove_member";
4644
+ readonly RemoveOwner: "remove_owner";
4645
+ readonly View: "view";
4646
+ readonly ViewMembers: "view_members";
4647
+ };
4648
+ export type McpServerIAMPermissionTestPermissionsEnum = typeof McpServerIAMPermissionTestPermissionsEnum[keyof typeof McpServerIAMPermissionTestPermissionsEnum];
4581
4649
  /**
4582
4650
  *
4583
4651
  * @export
@@ -8264,6 +8332,34 @@ export type Response400DocumentIamOrgOrgIdProjectProjectIdDocumentDocumentIdIamU
8264
8332
  } & MalformedResourceIdentifierErrorResponse | {
8265
8333
  reason: 'MULTIPLE_ROLES_NOT_ALLOWED';
8266
8334
  } & MultipleRolesNotAllowedErrorResponse;
8335
+ /**
8336
+ * @type Response400McpServerIamOrgOrgIdProjectProjectIdMcpServerMcpServerIdIamTestPermissions
8337
+ * @export
8338
+ */
8339
+ export type Response400McpServerIamOrgOrgIdProjectProjectIdMcpServerMcpServerIdIamTestPermissions = {
8340
+ reason: 'INVALID_MEMBER';
8341
+ } & InvalidMemberErrorResponse | {
8342
+ reason: 'INVALID_ROLE';
8343
+ } & InvalidRoleErrorResponse | {
8344
+ reason: 'INVALID_SUBJECT_TYPE';
8345
+ } & InvalidSubjectTypeErrorResponse | {
8346
+ reason: 'MALFORMED_RESOURCE_IDENTIFIER';
8347
+ } & MalformedResourceIdentifierErrorResponse;
8348
+ /**
8349
+ * @type Response400McpServerIamOrgOrgIdProjectProjectIdMcpServerMcpServerIdIamUpdateMemberRoles
8350
+ * @export
8351
+ */
8352
+ export type Response400McpServerIamOrgOrgIdProjectProjectIdMcpServerMcpServerIdIamUpdateMemberRoles = {
8353
+ reason: 'INVALID_MEMBER';
8354
+ } & InvalidMemberErrorResponse | {
8355
+ reason: 'INVALID_ROLE';
8356
+ } & InvalidRoleErrorResponse | {
8357
+ reason: 'INVALID_SUBJECT_TYPE';
8358
+ } & InvalidSubjectTypeErrorResponse | {
8359
+ reason: 'MALFORMED_RESOURCE_IDENTIFIER';
8360
+ } & MalformedResourceIdentifierErrorResponse | {
8361
+ reason: 'MULTIPLE_ROLES_NOT_ALLOWED';
8362
+ } & MultipleRolesNotAllowedErrorResponse;
8267
8363
  /**
8268
8364
  * @type Response400OrganizationIamTestPermissions
8269
8365
  * @export
@@ -8488,6 +8584,34 @@ export type Response400TaskIamOrgOrgIdProjectProjectIdTaskTaskIdIamUpdateMemberR
8488
8584
  } & MalformedResourceIdentifierErrorResponse | {
8489
8585
  reason: 'MULTIPLE_ROLES_NOT_ALLOWED';
8490
8586
  } & MultipleRolesNotAllowedErrorResponse;
8587
+ /**
8588
+ * @type Response400TaskMcpServerIamOrgOrgIdProjectProjectIdTaskMcpServerTaskMcpServerIdIamTestPermissions
8589
+ * @export
8590
+ */
8591
+ export type Response400TaskMcpServerIamOrgOrgIdProjectProjectIdTaskMcpServerTaskMcpServerIdIamTestPermissions = {
8592
+ reason: 'INVALID_MEMBER';
8593
+ } & InvalidMemberErrorResponse | {
8594
+ reason: 'INVALID_ROLE';
8595
+ } & InvalidRoleErrorResponse | {
8596
+ reason: 'INVALID_SUBJECT_TYPE';
8597
+ } & InvalidSubjectTypeErrorResponse | {
8598
+ reason: 'MALFORMED_RESOURCE_IDENTIFIER';
8599
+ } & MalformedResourceIdentifierErrorResponse;
8600
+ /**
8601
+ * @type Response400TaskMcpServerIamOrgOrgIdProjectProjectIdTaskMcpServerTaskMcpServerIdIamUpdateMemberRoles
8602
+ * @export
8603
+ */
8604
+ export type Response400TaskMcpServerIamOrgOrgIdProjectProjectIdTaskMcpServerTaskMcpServerIdIamUpdateMemberRoles = {
8605
+ reason: 'INVALID_MEMBER';
8606
+ } & InvalidMemberErrorResponse | {
8607
+ reason: 'INVALID_ROLE';
8608
+ } & InvalidRoleErrorResponse | {
8609
+ reason: 'INVALID_SUBJECT_TYPE';
8610
+ } & InvalidSubjectTypeErrorResponse | {
8611
+ reason: 'MALFORMED_RESOURCE_IDENTIFIER';
8612
+ } & MalformedResourceIdentifierErrorResponse | {
8613
+ reason: 'MULTIPLE_ROLES_NOT_ALLOWED';
8614
+ } & MultipleRolesNotAllowedErrorResponse;
8491
8615
  /**
8492
8616
  * @type Response403Addtoprojectcollection
8493
8617
  * @export
@@ -9262,6 +9386,42 @@ export type Response403Listwebhooktriggerevents = {
9262
9386
  } & MissingAuthenticationErrorResponse | {
9263
9387
  reason: 'PERMISSION_CHECK_FAILED';
9264
9388
  } & PermissionCheckFailedErrorResponse;
9389
+ /**
9390
+ * @type Response403McpServerIamOrgOrgIdProjectProjectIdMcpServerMcpServerIdIamGetMember
9391
+ * @export
9392
+ */
9393
+ export type Response403McpServerIamOrgOrgIdProjectProjectIdMcpServerMcpServerIdIamGetMember = {
9394
+ reason: 'MISSING_AUTHENTICATION';
9395
+ } & MissingAuthenticationErrorResponse | {
9396
+ reason: 'PERMISSION_CHECK_FAILED';
9397
+ } & PermissionCheckFailedErrorResponse;
9398
+ /**
9399
+ * @type Response403McpServerIamOrgOrgIdProjectProjectIdMcpServerMcpServerIdIamListMembers
9400
+ * @export
9401
+ */
9402
+ export type Response403McpServerIamOrgOrgIdProjectProjectIdMcpServerMcpServerIdIamListMembers = {
9403
+ reason: 'MISSING_AUTHENTICATION';
9404
+ } & MissingAuthenticationErrorResponse | {
9405
+ reason: 'PERMISSION_CHECK_FAILED';
9406
+ } & PermissionCheckFailedErrorResponse;
9407
+ /**
9408
+ * @type Response403McpServerIamOrgOrgIdProjectProjectIdMcpServerMcpServerIdIamTestPermissions
9409
+ * @export
9410
+ */
9411
+ export type Response403McpServerIamOrgOrgIdProjectProjectIdMcpServerMcpServerIdIamTestPermissions = {
9412
+ reason: 'MISSING_AUTHENTICATION';
9413
+ } & MissingAuthenticationErrorResponse | {
9414
+ reason: 'PERMISSION_CHECK_FAILED';
9415
+ } & PermissionCheckFailedErrorResponse;
9416
+ /**
9417
+ * @type Response403McpServerIamOrgOrgIdProjectProjectIdMcpServerMcpServerIdIamUpdateMemberRoles
9418
+ * @export
9419
+ */
9420
+ export type Response403McpServerIamOrgOrgIdProjectProjectIdMcpServerMcpServerIdIamUpdateMemberRoles = {
9421
+ reason: 'MISSING_AUTHENTICATION';
9422
+ } & MissingAuthenticationErrorResponse | {
9423
+ reason: 'PERMISSION_CHECK_FAILED';
9424
+ } & PermissionCheckFailedErrorResponse;
9265
9425
  /**
9266
9426
  * @type Response403OrganizationIamGetMember
9267
9427
  * @export
@@ -9640,6 +9800,42 @@ export type Response403TaskIamOrgOrgIdProjectProjectIdTaskTaskIdIamUpdateMemberR
9640
9800
  } & MissingAuthenticationErrorResponse | {
9641
9801
  reason: 'PERMISSION_CHECK_FAILED';
9642
9802
  } & PermissionCheckFailedErrorResponse;
9803
+ /**
9804
+ * @type Response403TaskMcpServerIamOrgOrgIdProjectProjectIdTaskMcpServerTaskMcpServerIdIamGetMember
9805
+ * @export
9806
+ */
9807
+ export type Response403TaskMcpServerIamOrgOrgIdProjectProjectIdTaskMcpServerTaskMcpServerIdIamGetMember = {
9808
+ reason: 'MISSING_AUTHENTICATION';
9809
+ } & MissingAuthenticationErrorResponse | {
9810
+ reason: 'PERMISSION_CHECK_FAILED';
9811
+ } & PermissionCheckFailedErrorResponse;
9812
+ /**
9813
+ * @type Response403TaskMcpServerIamOrgOrgIdProjectProjectIdTaskMcpServerTaskMcpServerIdIamListMembers
9814
+ * @export
9815
+ */
9816
+ export type Response403TaskMcpServerIamOrgOrgIdProjectProjectIdTaskMcpServerTaskMcpServerIdIamListMembers = {
9817
+ reason: 'MISSING_AUTHENTICATION';
9818
+ } & MissingAuthenticationErrorResponse | {
9819
+ reason: 'PERMISSION_CHECK_FAILED';
9820
+ } & PermissionCheckFailedErrorResponse;
9821
+ /**
9822
+ * @type Response403TaskMcpServerIamOrgOrgIdProjectProjectIdTaskMcpServerTaskMcpServerIdIamTestPermissions
9823
+ * @export
9824
+ */
9825
+ export type Response403TaskMcpServerIamOrgOrgIdProjectProjectIdTaskMcpServerTaskMcpServerIdIamTestPermissions = {
9826
+ reason: 'MISSING_AUTHENTICATION';
9827
+ } & MissingAuthenticationErrorResponse | {
9828
+ reason: 'PERMISSION_CHECK_FAILED';
9829
+ } & PermissionCheckFailedErrorResponse;
9830
+ /**
9831
+ * @type Response403TaskMcpServerIamOrgOrgIdProjectProjectIdTaskMcpServerTaskMcpServerIdIamUpdateMemberRoles
9832
+ * @export
9833
+ */
9834
+ export type Response403TaskMcpServerIamOrgOrgIdProjectProjectIdTaskMcpServerTaskMcpServerIdIamUpdateMemberRoles = {
9835
+ reason: 'MISSING_AUTHENTICATION';
9836
+ } & MissingAuthenticationErrorResponse | {
9837
+ reason: 'PERMISSION_CHECK_FAILED';
9838
+ } & PermissionCheckFailedErrorResponse;
9643
9839
  /**
9644
9840
  * @type Response403Updateevalset
9645
9841
  * @export
@@ -11437,6 +11633,12 @@ export interface TaskAgentCreate {
11437
11633
  * @memberof TaskAgentCreate
11438
11634
  */
11439
11635
  'llm_model_id': string;
11636
+ /**
11637
+ * Optional fallback LLM model to snapshot for future failover support.
11638
+ * @type {string}
11639
+ * @memberof TaskAgentCreate
11640
+ */
11641
+ 'fallback_llm_model_id'?: string | null;
11440
11642
  /**
11441
11643
  * Task tools to add. Order in array determines execution order (index 0 = order 0).
11442
11644
  * @type {Array<TaskAgentTaskToolInput>}
@@ -11982,6 +12184,18 @@ export interface TaskAgentRead {
11982
12184
  * @memberof TaskAgentRead
11983
12185
  */
11984
12186
  'llm_model': LLMModel;
12187
+ /**
12188
+ *
12189
+ * @type {string}
12190
+ * @memberof TaskAgentRead
12191
+ */
12192
+ 'fallback_llm_model_id': string | null;
12193
+ /**
12194
+ *
12195
+ * @type {LLMModel}
12196
+ * @memberof TaskAgentRead
12197
+ */
12198
+ 'fallback_llm_model': LLMModel;
11985
12199
  /**
11986
12200
  *
11987
12201
  * @type {Array<TaskAgentTaskToolRead>}
@@ -12172,6 +12386,84 @@ export interface TaskAgentRunEventsResponse {
12172
12386
  */
12173
12387
  'events'?: Array<TaskAgentEvent>;
12174
12388
  }
12389
+ /**
12390
+ * Schema for reading per-model TaskAgent run usage.
12391
+ * @export
12392
+ * @interface TaskAgentRunModelUsageRead
12393
+ */
12394
+ export interface TaskAgentRunModelUsageRead {
12395
+ /**
12396
+ *
12397
+ * @type {string}
12398
+ * @memberof TaskAgentRunModelUsageRead
12399
+ */
12400
+ 'id': string;
12401
+ /**
12402
+ *
12403
+ * @type {string}
12404
+ * @memberof TaskAgentRunModelUsageRead
12405
+ */
12406
+ 'task_agent_run_id': string;
12407
+ /**
12408
+ *
12409
+ * @type {string}
12410
+ * @memberof TaskAgentRunModelUsageRead
12411
+ */
12412
+ 'llm_model_id': string | null;
12413
+ /**
12414
+ *
12415
+ * @type {string}
12416
+ * @memberof TaskAgentRunModelUsageRead
12417
+ */
12418
+ 'usage_type': TaskAgentRunModelUsageReadUsageTypeEnum;
12419
+ /**
12420
+ *
12421
+ * @type {number}
12422
+ * @memberof TaskAgentRunModelUsageRead
12423
+ */
12424
+ 'input_tokens': number;
12425
+ /**
12426
+ *
12427
+ * @type {number}
12428
+ * @memberof TaskAgentRunModelUsageRead
12429
+ */
12430
+ 'output_tokens': number;
12431
+ /**
12432
+ *
12433
+ * @type {number}
12434
+ * @memberof TaskAgentRunModelUsageRead
12435
+ */
12436
+ 'total_tokens': number;
12437
+ /**
12438
+ *
12439
+ * @type {string}
12440
+ * @memberof TaskAgentRunModelUsageRead
12441
+ */
12442
+ 'charged_credits': string | null;
12443
+ /**
12444
+ *
12445
+ * @type {number}
12446
+ * @memberof TaskAgentRunModelUsageRead
12447
+ */
12448
+ 'call_count': number;
12449
+ /**
12450
+ *
12451
+ * @type {string}
12452
+ * @memberof TaskAgentRunModelUsageRead
12453
+ */
12454
+ 'created': string;
12455
+ /**
12456
+ *
12457
+ * @type {string}
12458
+ * @memberof TaskAgentRunModelUsageRead
12459
+ */
12460
+ 'modified': string | null;
12461
+ }
12462
+ export declare const TaskAgentRunModelUsageReadUsageTypeEnum: {
12463
+ readonly Primary: "primary";
12464
+ readonly Fallback: "fallback";
12465
+ };
12466
+ export type TaskAgentRunModelUsageReadUsageTypeEnum = typeof TaskAgentRunModelUsageReadUsageTypeEnum[keyof typeof TaskAgentRunModelUsageReadUsageTypeEnum];
12175
12467
  /**
12176
12468
  * Schema for reading a TaskAgentRun.
12177
12469
  * @export
@@ -12214,6 +12506,30 @@ export interface TaskAgentRunRead {
12214
12506
  * @memberof TaskAgentRunRead
12215
12507
  */
12216
12508
  'is_continuation'?: boolean;
12509
+ /**
12510
+ *
12511
+ * @type {string}
12512
+ * @memberof TaskAgentRunRead
12513
+ */
12514
+ 'primary_llm_model_id'?: string | null;
12515
+ /**
12516
+ *
12517
+ * @type {string}
12518
+ * @memberof TaskAgentRunRead
12519
+ */
12520
+ 'fallback_llm_model_id'?: string | null;
12521
+ /**
12522
+ *
12523
+ * @type {boolean}
12524
+ * @memberof TaskAgentRunRead
12525
+ */
12526
+ 'used_fallback_model'?: boolean;
12527
+ /**
12528
+ *
12529
+ * @type {string}
12530
+ * @memberof TaskAgentRunRead
12531
+ */
12532
+ 'primary_failure_reason'?: string | null;
12217
12533
  /**
12218
12534
  *
12219
12535
  * @type {number}
@@ -12334,6 +12650,12 @@ export interface TaskAgentRunRead {
12334
12650
  * @memberof TaskAgentRunRead
12335
12651
  */
12336
12652
  'last_activity_at'?: string | null;
12653
+ /**
12654
+ *
12655
+ * @type {Array<TaskAgentRunModelUsageRead>}
12656
+ * @memberof TaskAgentRunRead
12657
+ */
12658
+ 'model_usages'?: Array<TaskAgentRunModelUsageRead>;
12337
12659
  /**
12338
12660
  * Files associated with this agent run (both uploaded and generated by task tools)
12339
12661
  * @type {Array<TaskAgentFileMetadata>}
@@ -12726,6 +13048,12 @@ export interface TaskAgentUpdate {
12726
13048
  * @memberof TaskAgentUpdate
12727
13049
  */
12728
13050
  'llm_model_id'?: string | null;
13051
+ /**
13052
+ *
13053
+ * @type {string}
13054
+ * @memberof TaskAgentUpdate
13055
+ */
13056
+ 'fallback_llm_model_id'?: string | null;
12729
13057
  /**
12730
13058
  * Full replacement of task tools. Omit field to leave task tools unchanged. Pass empty list to remove all task tools.
12731
13059
  * @type {Array<TaskAgentTaskToolInput>}
@@ -13560,6 +13888,74 @@ export interface TaskMcpServerCreate {
13560
13888
  */
13561
13889
  'transport'?: TaskMcpTransport;
13562
13890
  }
13891
+ /**
13892
+ *
13893
+ * @export
13894
+ * @interface TaskMcpServerIAMMemberRoleUpdate
13895
+ */
13896
+ export interface TaskMcpServerIAMMemberRoleUpdate {
13897
+ /**
13898
+ * A list of task_mcp_server roles to grant to the member. Roles in this list are applied to the member AFTER any removals specified in `remove`. This may be combined with `remove_all` to replace the member\'s entire role list.
13899
+ * @type {Array<string>}
13900
+ * @memberof TaskMcpServerIAMMemberRoleUpdate
13901
+ */
13902
+ 'add'?: Array<TaskMcpServerIAMMemberRoleUpdateAddEnum>;
13903
+ /**
13904
+ * A list of task_mcp_server roles to revoke from the member.
13905
+ * @type {Array<string>}
13906
+ * @memberof TaskMcpServerIAMMemberRoleUpdate
13907
+ */
13908
+ 'remove'?: Array<TaskMcpServerIAMMemberRoleUpdateRemoveEnum>;
13909
+ /**
13910
+ * Removes all existing roles from the member. This may be combined with `add` to replace all existing roles that the member holds.
13911
+ * @type {boolean}
13912
+ * @memberof TaskMcpServerIAMMemberRoleUpdate
13913
+ */
13914
+ 'remove_all'?: boolean | null;
13915
+ }
13916
+ export declare const TaskMcpServerIAMMemberRoleUpdateAddEnum: {
13917
+ readonly Editor: "editor";
13918
+ readonly Owner: "owner";
13919
+ readonly Viewer: "viewer";
13920
+ };
13921
+ export type TaskMcpServerIAMMemberRoleUpdateAddEnum = typeof TaskMcpServerIAMMemberRoleUpdateAddEnum[keyof typeof TaskMcpServerIAMMemberRoleUpdateAddEnum];
13922
+ export declare const TaskMcpServerIAMMemberRoleUpdateRemoveEnum: {
13923
+ readonly Editor: "editor";
13924
+ readonly Owner: "owner";
13925
+ readonly Viewer: "viewer";
13926
+ };
13927
+ export type TaskMcpServerIAMMemberRoleUpdateRemoveEnum = typeof TaskMcpServerIAMMemberRoleUpdateRemoveEnum[keyof typeof TaskMcpServerIAMMemberRoleUpdateRemoveEnum];
13928
+ /**
13929
+ *
13930
+ * @export
13931
+ * @interface TaskMcpServerIAMPermissionTest
13932
+ */
13933
+ export interface TaskMcpServerIAMPermissionTest {
13934
+ /**
13935
+ * A list of permissions to test on the task_mcp_server.
13936
+ * @type {Array<string>}
13937
+ * @memberof TaskMcpServerIAMPermissionTest
13938
+ */
13939
+ 'permissions': Array<TaskMcpServerIAMPermissionTestPermissionsEnum>;
13940
+ /**
13941
+ *
13942
+ * @type {string}
13943
+ * @memberof TaskMcpServerIAMPermissionTest
13944
+ */
13945
+ 'member'?: string | null;
13946
+ }
13947
+ export declare const TaskMcpServerIAMPermissionTestPermissionsEnum: {
13948
+ readonly AddEditor: "add_editor";
13949
+ readonly AddMember: "add_member";
13950
+ readonly AddOwner: "add_owner";
13951
+ readonly Edit: "edit";
13952
+ readonly RemoveEditor: "remove_editor";
13953
+ readonly RemoveMember: "remove_member";
13954
+ readonly RemoveOwner: "remove_owner";
13955
+ readonly View: "view";
13956
+ readonly ViewMembers: "view_members";
13957
+ };
13958
+ export type TaskMcpServerIAMPermissionTestPermissionsEnum = typeof TaskMcpServerIAMPermissionTestPermissionsEnum[keyof typeof TaskMcpServerIAMPermissionTestPermissionsEnum];
13563
13959
  /**
13564
13960
  *
13565
13961
  * @export
@@ -22165,6 +22561,51 @@ export declare const MCPServersApiAxiosParamCreator: (configuration?: Configurat
22165
22561
  * @throws {RequiredError}
22166
22562
  */
22167
22563
  markMcpServerSynced: (mcpServerId: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22564
+ /**
22565
+ * Retrieve a specific member that has been granted direct access to the mcp_server.
22566
+ * @summary IAM - Lookup Mcp Server Member
22567
+ * @param {string} mcpServerId
22568
+ * @param {string} member
22569
+ * @param {string} orgId The org id
22570
+ * @param {string} projectId The project id
22571
+ * @param {*} [options] Override http request option.
22572
+ * @throws {RequiredError}
22573
+ */
22574
+ mcpServerIamOrgOrgIdProjectProjectIdMcpServerMcpServerIdIamGetMember: (mcpServerId: string, member: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22575
+ /**
22576
+ * Lists all members that have been granted direct access to the mcp_server.
22577
+ * @summary IAM - List Mcp Server Members
22578
+ * @param {string} mcpServerId
22579
+ * @param {string} orgId The org id
22580
+ * @param {string} projectId The project id
22581
+ * @param {McpServerIamOrgOrgIdProjectProjectIdMcpServerMcpServerIdIamListMembersTypeEnum} [type]
22582
+ * @param {*} [options] Override http request option.
22583
+ * @throws {RequiredError}
22584
+ */
22585
+ mcpServerIamOrgOrgIdProjectProjectIdMcpServerMcpServerIdIamListMembers: (mcpServerId: string, orgId: string, projectId: string, type?: McpServerIamOrgOrgIdProjectProjectIdMcpServerMcpServerIdIamListMembersTypeEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22586
+ /**
22587
+ * Test the permissions that the caller (or another subject) holds on the mcp_server.
22588
+ * @summary IAM - Test Mcp Server Permissions
22589
+ * @param {string} mcpServerId
22590
+ * @param {string} orgId The org id
22591
+ * @param {string} projectId The project id
22592
+ * @param {McpServerIAMPermissionTest} mcpServerIAMPermissionTest
22593
+ * @param {*} [options] Override http request option.
22594
+ * @throws {RequiredError}
22595
+ */
22596
+ mcpServerIamOrgOrgIdProjectProjectIdMcpServerMcpServerIdIamTestPermissions: (mcpServerId: string, orgId: string, projectId: string, mcpServerIAMPermissionTest: McpServerIAMPermissionTest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22597
+ /**
22598
+ * Update the roles that a member holds on the mcp_server.
22599
+ * @summary IAM - Update Mcp Server Member
22600
+ * @param {string} mcpServerId
22601
+ * @param {string} member
22602
+ * @param {string} orgId The org id
22603
+ * @param {string} projectId The project id
22604
+ * @param {McpServerIAMMemberRoleUpdate} mcpServerIAMMemberRoleUpdate
22605
+ * @param {*} [options] Override http request option.
22606
+ * @throws {RequiredError}
22607
+ */
22608
+ mcpServerIamOrgOrgIdProjectProjectIdMcpServerMcpServerIdIamUpdateMemberRoles: (mcpServerId: string, member: string, orgId: string, projectId: string, mcpServerIAMMemberRoleUpdate: McpServerIAMMemberRoleUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22168
22609
  /**
22169
22610
  * Update MCP server configuration. Modifiable fields: - Name and description - Environment variables - Connection parameters - Tool availability Note: Updating server configuration may trigger re-synchronization.
22170
22611
  * @summary Update MCP Server
@@ -22233,6 +22674,51 @@ export declare const MCPServersApiFp: (configuration?: Configuration) => {
22233
22674
  * @throws {RequiredError}
22234
22675
  */
22235
22676
  markMcpServerSynced(mcpServerId: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<McpServer>>;
22677
+ /**
22678
+ * Retrieve a specific member that has been granted direct access to the mcp_server.
22679
+ * @summary IAM - Lookup Mcp Server Member
22680
+ * @param {string} mcpServerId
22681
+ * @param {string} member
22682
+ * @param {string} orgId The org id
22683
+ * @param {string} projectId The project id
22684
+ * @param {*} [options] Override http request option.
22685
+ * @throws {RequiredError}
22686
+ */
22687
+ mcpServerIamOrgOrgIdProjectProjectIdMcpServerMcpServerIdIamGetMember(mcpServerId: string, member: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IAMMember>>;
22688
+ /**
22689
+ * Lists all members that have been granted direct access to the mcp_server.
22690
+ * @summary IAM - List Mcp Server Members
22691
+ * @param {string} mcpServerId
22692
+ * @param {string} orgId The org id
22693
+ * @param {string} projectId The project id
22694
+ * @param {McpServerIamOrgOrgIdProjectProjectIdMcpServerMcpServerIdIamListMembersTypeEnum} [type]
22695
+ * @param {*} [options] Override http request option.
22696
+ * @throws {RequiredError}
22697
+ */
22698
+ mcpServerIamOrgOrgIdProjectProjectIdMcpServerMcpServerIdIamListMembers(mcpServerId: string, orgId: string, projectId: string, type?: McpServerIamOrgOrgIdProjectProjectIdMcpServerMcpServerIdIamListMembersTypeEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResultSetIAMMember>>;
22699
+ /**
22700
+ * Test the permissions that the caller (or another subject) holds on the mcp_server.
22701
+ * @summary IAM - Test Mcp Server Permissions
22702
+ * @param {string} mcpServerId
22703
+ * @param {string} orgId The org id
22704
+ * @param {string} projectId The project id
22705
+ * @param {McpServerIAMPermissionTest} mcpServerIAMPermissionTest
22706
+ * @param {*} [options] Override http request option.
22707
+ * @throws {RequiredError}
22708
+ */
22709
+ mcpServerIamOrgOrgIdProjectProjectIdMcpServerMcpServerIdIamTestPermissions(mcpServerId: string, orgId: string, projectId: string, mcpServerIAMPermissionTest: McpServerIAMPermissionTest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IAMPermissionTest>>;
22710
+ /**
22711
+ * Update the roles that a member holds on the mcp_server.
22712
+ * @summary IAM - Update Mcp Server Member
22713
+ * @param {string} mcpServerId
22714
+ * @param {string} member
22715
+ * @param {string} orgId The org id
22716
+ * @param {string} projectId The project id
22717
+ * @param {McpServerIAMMemberRoleUpdate} mcpServerIAMMemberRoleUpdate
22718
+ * @param {*} [options] Override http request option.
22719
+ * @throws {RequiredError}
22720
+ */
22721
+ mcpServerIamOrgOrgIdProjectProjectIdMcpServerMcpServerIdIamUpdateMemberRoles(mcpServerId: string, member: string, orgId: string, projectId: string, mcpServerIAMMemberRoleUpdate: McpServerIAMMemberRoleUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IAMMember>>;
22236
22722
  /**
22237
22723
  * Update MCP server configuration. Modifiable fields: - Name and description - Environment variables - Connection parameters - Tool availability Note: Updating server configuration may trigger re-synchronization.
22238
22724
  * @summary Update MCP Server
@@ -22301,6 +22787,51 @@ export declare const MCPServersApiFactory: (configuration?: Configuration, baseP
22301
22787
  * @throws {RequiredError}
22302
22788
  */
22303
22789
  markMcpServerSynced(mcpServerId: string, orgId: string, projectId: string, options?: any): AxiosPromise<McpServer>;
22790
+ /**
22791
+ * Retrieve a specific member that has been granted direct access to the mcp_server.
22792
+ * @summary IAM - Lookup Mcp Server Member
22793
+ * @param {string} mcpServerId
22794
+ * @param {string} member
22795
+ * @param {string} orgId The org id
22796
+ * @param {string} projectId The project id
22797
+ * @param {*} [options] Override http request option.
22798
+ * @throws {RequiredError}
22799
+ */
22800
+ mcpServerIamOrgOrgIdProjectProjectIdMcpServerMcpServerIdIamGetMember(mcpServerId: string, member: string, orgId: string, projectId: string, options?: any): AxiosPromise<IAMMember>;
22801
+ /**
22802
+ * Lists all members that have been granted direct access to the mcp_server.
22803
+ * @summary IAM - List Mcp Server Members
22804
+ * @param {string} mcpServerId
22805
+ * @param {string} orgId The org id
22806
+ * @param {string} projectId The project id
22807
+ * @param {McpServerIamOrgOrgIdProjectProjectIdMcpServerMcpServerIdIamListMembersTypeEnum} [type]
22808
+ * @param {*} [options] Override http request option.
22809
+ * @throws {RequiredError}
22810
+ */
22811
+ mcpServerIamOrgOrgIdProjectProjectIdMcpServerMcpServerIdIamListMembers(mcpServerId: string, orgId: string, projectId: string, type?: McpServerIamOrgOrgIdProjectProjectIdMcpServerMcpServerIdIamListMembersTypeEnum, options?: any): AxiosPromise<PaginatedResultSetIAMMember>;
22812
+ /**
22813
+ * Test the permissions that the caller (or another subject) holds on the mcp_server.
22814
+ * @summary IAM - Test Mcp Server Permissions
22815
+ * @param {string} mcpServerId
22816
+ * @param {string} orgId The org id
22817
+ * @param {string} projectId The project id
22818
+ * @param {McpServerIAMPermissionTest} mcpServerIAMPermissionTest
22819
+ * @param {*} [options] Override http request option.
22820
+ * @throws {RequiredError}
22821
+ */
22822
+ mcpServerIamOrgOrgIdProjectProjectIdMcpServerMcpServerIdIamTestPermissions(mcpServerId: string, orgId: string, projectId: string, mcpServerIAMPermissionTest: McpServerIAMPermissionTest, options?: any): AxiosPromise<IAMPermissionTest>;
22823
+ /**
22824
+ * Update the roles that a member holds on the mcp_server.
22825
+ * @summary IAM - Update Mcp Server Member
22826
+ * @param {string} mcpServerId
22827
+ * @param {string} member
22828
+ * @param {string} orgId The org id
22829
+ * @param {string} projectId The project id
22830
+ * @param {McpServerIAMMemberRoleUpdate} mcpServerIAMMemberRoleUpdate
22831
+ * @param {*} [options] Override http request option.
22832
+ * @throws {RequiredError}
22833
+ */
22834
+ mcpServerIamOrgOrgIdProjectProjectIdMcpServerMcpServerIdIamUpdateMemberRoles(mcpServerId: string, member: string, orgId: string, projectId: string, mcpServerIAMMemberRoleUpdate: McpServerIAMMemberRoleUpdate, options?: any): AxiosPromise<IAMMember>;
22304
22835
  /**
22305
22836
  * Update MCP server configuration. Modifiable fields: - Name and description - Environment variables - Connection parameters - Tool availability Note: Updating server configuration may trigger re-synchronization.
22306
22837
  * @summary Update MCP Server
@@ -22376,6 +22907,55 @@ export declare class MCPServersApi extends BaseAPI {
22376
22907
  * @memberof MCPServersApi
22377
22908
  */
22378
22909
  markMcpServerSynced(mcpServerId: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<McpServer, any, {}>>;
22910
+ /**
22911
+ * Retrieve a specific member that has been granted direct access to the mcp_server.
22912
+ * @summary IAM - Lookup Mcp Server Member
22913
+ * @param {string} mcpServerId
22914
+ * @param {string} member
22915
+ * @param {string} orgId The org id
22916
+ * @param {string} projectId The project id
22917
+ * @param {*} [options] Override http request option.
22918
+ * @throws {RequiredError}
22919
+ * @memberof MCPServersApi
22920
+ */
22921
+ mcpServerIamOrgOrgIdProjectProjectIdMcpServerMcpServerIdIamGetMember(mcpServerId: string, member: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IAMMember, any, {}>>;
22922
+ /**
22923
+ * Lists all members that have been granted direct access to the mcp_server.
22924
+ * @summary IAM - List Mcp Server Members
22925
+ * @param {string} mcpServerId
22926
+ * @param {string} orgId The org id
22927
+ * @param {string} projectId The project id
22928
+ * @param {McpServerIamOrgOrgIdProjectProjectIdMcpServerMcpServerIdIamListMembersTypeEnum} [type]
22929
+ * @param {*} [options] Override http request option.
22930
+ * @throws {RequiredError}
22931
+ * @memberof MCPServersApi
22932
+ */
22933
+ mcpServerIamOrgOrgIdProjectProjectIdMcpServerMcpServerIdIamListMembers(mcpServerId: string, orgId: string, projectId: string, type?: McpServerIamOrgOrgIdProjectProjectIdMcpServerMcpServerIdIamListMembersTypeEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedResultSetIAMMember, any, {}>>;
22934
+ /**
22935
+ * Test the permissions that the caller (or another subject) holds on the mcp_server.
22936
+ * @summary IAM - Test Mcp Server Permissions
22937
+ * @param {string} mcpServerId
22938
+ * @param {string} orgId The org id
22939
+ * @param {string} projectId The project id
22940
+ * @param {McpServerIAMPermissionTest} mcpServerIAMPermissionTest
22941
+ * @param {*} [options] Override http request option.
22942
+ * @throws {RequiredError}
22943
+ * @memberof MCPServersApi
22944
+ */
22945
+ mcpServerIamOrgOrgIdProjectProjectIdMcpServerMcpServerIdIamTestPermissions(mcpServerId: string, orgId: string, projectId: string, mcpServerIAMPermissionTest: McpServerIAMPermissionTest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IAMPermissionTest, any, {}>>;
22946
+ /**
22947
+ * Update the roles that a member holds on the mcp_server.
22948
+ * @summary IAM - Update Mcp Server Member
22949
+ * @param {string} mcpServerId
22950
+ * @param {string} member
22951
+ * @param {string} orgId The org id
22952
+ * @param {string} projectId The project id
22953
+ * @param {McpServerIAMMemberRoleUpdate} mcpServerIAMMemberRoleUpdate
22954
+ * @param {*} [options] Override http request option.
22955
+ * @throws {RequiredError}
22956
+ * @memberof MCPServersApi
22957
+ */
22958
+ mcpServerIamOrgOrgIdProjectProjectIdMcpServerMcpServerIdIamUpdateMemberRoles(mcpServerId: string, member: string, orgId: string, projectId: string, mcpServerIAMMemberRoleUpdate: McpServerIAMMemberRoleUpdate, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IAMMember, any, {}>>;
22379
22959
  /**
22380
22960
  * Update MCP server configuration. Modifiable fields: - Name and description - Environment variables - Connection parameters - Tool availability Note: Updating server configuration may trigger re-synchronization.
22381
22961
  * @summary Update MCP Server
@@ -22389,6 +22969,15 @@ export declare class MCPServersApi extends BaseAPI {
22389
22969
  */
22390
22970
  updateMcpServer(mcpServerId: string, orgId: string, projectId: string, mcpServerUpdate: McpServerUpdate, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<McpServer, any, {}>>;
22391
22971
  }
22972
+ /**
22973
+ * @export
22974
+ */
22975
+ export declare const McpServerIamOrgOrgIdProjectProjectIdMcpServerMcpServerIdIamListMembersTypeEnum: {
22976
+ readonly User: "user";
22977
+ readonly Organization: "organization";
22978
+ readonly Project: "project";
22979
+ };
22980
+ export type McpServerIamOrgOrgIdProjectProjectIdMcpServerMcpServerIdIamListMembersTypeEnum = typeof McpServerIamOrgOrgIdProjectProjectIdMcpServerMcpServerIdIamListMembersTypeEnum[keyof typeof McpServerIamOrgOrgIdProjectProjectIdMcpServerMcpServerIdIamListMembersTypeEnum];
22392
22981
  /**
22393
22982
  * OAuthClientsApi - axios parameter creator
22394
22983
  * @export
@@ -26747,7 +27336,7 @@ export declare const TaskAgentsApiAxiosParamCreator: (configuration?: Configurat
26747
27336
  */
26748
27337
  listTaskAgents: (orgId: string, projectId: string, cursor?: string | null, pageLimit?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
26749
27338
  /**
26750
- * Execute the Task Agent with a user message. The agent will: 1. Process the message using the configured LLM 2. Reason about which task tools to invoke 3. Execute relevant Tasks as needed 4. Return a streaming response Responses are streamed using Server-Sent Events (SSE).
27339
+ * Execute the Task Agent with a user message. The agent will: 1. Process the message using the configured LLM 2. Reason about which task tools to invoke 3. Execute relevant Tasks as needed 4. Return a streaming response Responses are streamed using Server-Sent Events (SSE). The first SSE event emitted after successful stream setup is: - `event_type: \"session_id\"` with the resolved `session_id` in `metadata` Subsequent events include tool calls/results, text responses, and the terminal `done` or `error` event.
26751
27340
  * @summary Run Task Agent
26752
27341
  * @param {string} orgId The unique identifier of the organization.
26753
27342
  * @param {string} projectId The unique identifier of the project.
@@ -26999,7 +27588,7 @@ export declare const TaskAgentsApiFp: (configuration?: Configuration) => {
26999
27588
  */
27000
27589
  listTaskAgents(orgId: string, projectId: string, cursor?: string | null, pageLimit?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResultSetTaskAgentRead>>;
27001
27590
  /**
27002
- * Execute the Task Agent with a user message. The agent will: 1. Process the message using the configured LLM 2. Reason about which task tools to invoke 3. Execute relevant Tasks as needed 4. Return a streaming response Responses are streamed using Server-Sent Events (SSE).
27591
+ * Execute the Task Agent with a user message. The agent will: 1. Process the message using the configured LLM 2. Reason about which task tools to invoke 3. Execute relevant Tasks as needed 4. Return a streaming response Responses are streamed using Server-Sent Events (SSE). The first SSE event emitted after successful stream setup is: - `event_type: \"session_id\"` with the resolved `session_id` in `metadata` Subsequent events include tool calls/results, text responses, and the terminal `done` or `error` event.
27003
27592
  * @summary Run Task Agent
27004
27593
  * @param {string} orgId The unique identifier of the organization.
27005
27594
  * @param {string} projectId The unique identifier of the project.
@@ -27251,7 +27840,7 @@ export declare const TaskAgentsApiFactory: (configuration?: Configuration, baseP
27251
27840
  */
27252
27841
  listTaskAgents(orgId: string, projectId: string, cursor?: string | null, pageLimit?: number, options?: any): AxiosPromise<PaginatedResultSetTaskAgentRead>;
27253
27842
  /**
27254
- * Execute the Task Agent with a user message. The agent will: 1. Process the message using the configured LLM 2. Reason about which task tools to invoke 3. Execute relevant Tasks as needed 4. Return a streaming response Responses are streamed using Server-Sent Events (SSE).
27843
+ * Execute the Task Agent with a user message. The agent will: 1. Process the message using the configured LLM 2. Reason about which task tools to invoke 3. Execute relevant Tasks as needed 4. Return a streaming response Responses are streamed using Server-Sent Events (SSE). The first SSE event emitted after successful stream setup is: - `event_type: \"session_id\"` with the resolved `session_id` in `metadata` Subsequent events include tool calls/results, text responses, and the terminal `done` or `error` event.
27255
27844
  * @summary Run Task Agent
27256
27845
  * @param {string} orgId The unique identifier of the organization.
27257
27846
  * @param {string} projectId The unique identifier of the project.
@@ -27520,7 +28109,7 @@ export declare class TaskAgentsApi extends BaseAPI {
27520
28109
  */
27521
28110
  listTaskAgents(orgId: string, projectId: string, cursor?: string | null, pageLimit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedResultSetTaskAgentRead, any, {}>>;
27522
28111
  /**
27523
- * Execute the Task Agent with a user message. The agent will: 1. Process the message using the configured LLM 2. Reason about which task tools to invoke 3. Execute relevant Tasks as needed 4. Return a streaming response Responses are streamed using Server-Sent Events (SSE).
28112
+ * Execute the Task Agent with a user message. The agent will: 1. Process the message using the configured LLM 2. Reason about which task tools to invoke 3. Execute relevant Tasks as needed 4. Return a streaming response Responses are streamed using Server-Sent Events (SSE). The first SSE event emitted after successful stream setup is: - `event_type: \"session_id\"` with the resolved `session_id` in `metadata` Subsequent events include tool calls/results, text responses, and the terminal `done` or `error` event.
27524
28113
  * @summary Run Task Agent
27525
28114
  * @param {string} orgId The unique identifier of the organization.
27526
28115
  * @param {string} projectId The unique identifier of the project.
@@ -28575,6 +29164,51 @@ export declare const TaskMCPServersApiAxiosParamCreator: (configuration?: Config
28575
29164
  * @throws {RequiredError}
28576
29165
  */
28577
29166
  refreshTaskMcpServer: (taskMcpServerId: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
29167
+ /**
29168
+ * Retrieve a specific member that has been granted direct access to the task_mcp_server.
29169
+ * @summary IAM - Lookup Task Mcp Server Member
29170
+ * @param {string} taskMcpServerId
29171
+ * @param {string} member
29172
+ * @param {string} orgId The org id
29173
+ * @param {string} projectId The project id
29174
+ * @param {*} [options] Override http request option.
29175
+ * @throws {RequiredError}
29176
+ */
29177
+ taskMcpServerIamOrgOrgIdProjectProjectIdTaskMcpServerTaskMcpServerIdIamGetMember: (taskMcpServerId: string, member: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
29178
+ /**
29179
+ * Lists all members that have been granted direct access to the task_mcp_server.
29180
+ * @summary IAM - List Task Mcp Server Members
29181
+ * @param {string} taskMcpServerId
29182
+ * @param {string} orgId The org id
29183
+ * @param {string} projectId The project id
29184
+ * @param {TaskMcpServerIamOrgOrgIdProjectProjectIdTaskMcpServerTaskMcpServerIdIamListMembersTypeEnum} [type]
29185
+ * @param {*} [options] Override http request option.
29186
+ * @throws {RequiredError}
29187
+ */
29188
+ taskMcpServerIamOrgOrgIdProjectProjectIdTaskMcpServerTaskMcpServerIdIamListMembers: (taskMcpServerId: string, orgId: string, projectId: string, type?: TaskMcpServerIamOrgOrgIdProjectProjectIdTaskMcpServerTaskMcpServerIdIamListMembersTypeEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
29189
+ /**
29190
+ * Test the permissions that the caller (or another subject) holds on the task_mcp_server.
29191
+ * @summary IAM - Test Task Mcp Server Permissions
29192
+ * @param {string} taskMcpServerId
29193
+ * @param {string} orgId The org id
29194
+ * @param {string} projectId The project id
29195
+ * @param {TaskMcpServerIAMPermissionTest} taskMcpServerIAMPermissionTest
29196
+ * @param {*} [options] Override http request option.
29197
+ * @throws {RequiredError}
29198
+ */
29199
+ taskMcpServerIamOrgOrgIdProjectProjectIdTaskMcpServerTaskMcpServerIdIamTestPermissions: (taskMcpServerId: string, orgId: string, projectId: string, taskMcpServerIAMPermissionTest: TaskMcpServerIAMPermissionTest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
29200
+ /**
29201
+ * Update the roles that a member holds on the task_mcp_server.
29202
+ * @summary IAM - Update Task Mcp Server Member
29203
+ * @param {string} taskMcpServerId
29204
+ * @param {string} member
29205
+ * @param {string} orgId The org id
29206
+ * @param {string} projectId The project id
29207
+ * @param {TaskMcpServerIAMMemberRoleUpdate} taskMcpServerIAMMemberRoleUpdate
29208
+ * @param {*} [options] Override http request option.
29209
+ * @throws {RequiredError}
29210
+ */
29211
+ taskMcpServerIamOrgOrgIdProjectProjectIdTaskMcpServerTaskMcpServerIdIamUpdateMemberRoles: (taskMcpServerId: string, member: string, orgId: string, projectId: string, taskMcpServerIAMMemberRoleUpdate: TaskMcpServerIAMMemberRoleUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
28578
29212
  /**
28579
29213
  *
28580
29214
  * @summary Update Task Mcp Server
@@ -28703,6 +29337,51 @@ export declare const TaskMCPServersApiFp: (configuration?: Configuration) => {
28703
29337
  * @throws {RequiredError}
28704
29338
  */
28705
29339
  refreshTaskMcpServer(taskMcpServerId: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskMcpServer>>;
29340
+ /**
29341
+ * Retrieve a specific member that has been granted direct access to the task_mcp_server.
29342
+ * @summary IAM - Lookup Task Mcp Server Member
29343
+ * @param {string} taskMcpServerId
29344
+ * @param {string} member
29345
+ * @param {string} orgId The org id
29346
+ * @param {string} projectId The project id
29347
+ * @param {*} [options] Override http request option.
29348
+ * @throws {RequiredError}
29349
+ */
29350
+ taskMcpServerIamOrgOrgIdProjectProjectIdTaskMcpServerTaskMcpServerIdIamGetMember(taskMcpServerId: string, member: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IAMMember>>;
29351
+ /**
29352
+ * Lists all members that have been granted direct access to the task_mcp_server.
29353
+ * @summary IAM - List Task Mcp Server Members
29354
+ * @param {string} taskMcpServerId
29355
+ * @param {string} orgId The org id
29356
+ * @param {string} projectId The project id
29357
+ * @param {TaskMcpServerIamOrgOrgIdProjectProjectIdTaskMcpServerTaskMcpServerIdIamListMembersTypeEnum} [type]
29358
+ * @param {*} [options] Override http request option.
29359
+ * @throws {RequiredError}
29360
+ */
29361
+ taskMcpServerIamOrgOrgIdProjectProjectIdTaskMcpServerTaskMcpServerIdIamListMembers(taskMcpServerId: string, orgId: string, projectId: string, type?: TaskMcpServerIamOrgOrgIdProjectProjectIdTaskMcpServerTaskMcpServerIdIamListMembersTypeEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResultSetIAMMember>>;
29362
+ /**
29363
+ * Test the permissions that the caller (or another subject) holds on the task_mcp_server.
29364
+ * @summary IAM - Test Task Mcp Server Permissions
29365
+ * @param {string} taskMcpServerId
29366
+ * @param {string} orgId The org id
29367
+ * @param {string} projectId The project id
29368
+ * @param {TaskMcpServerIAMPermissionTest} taskMcpServerIAMPermissionTest
29369
+ * @param {*} [options] Override http request option.
29370
+ * @throws {RequiredError}
29371
+ */
29372
+ taskMcpServerIamOrgOrgIdProjectProjectIdTaskMcpServerTaskMcpServerIdIamTestPermissions(taskMcpServerId: string, orgId: string, projectId: string, taskMcpServerIAMPermissionTest: TaskMcpServerIAMPermissionTest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IAMPermissionTest>>;
29373
+ /**
29374
+ * Update the roles that a member holds on the task_mcp_server.
29375
+ * @summary IAM - Update Task Mcp Server Member
29376
+ * @param {string} taskMcpServerId
29377
+ * @param {string} member
29378
+ * @param {string} orgId The org id
29379
+ * @param {string} projectId The project id
29380
+ * @param {TaskMcpServerIAMMemberRoleUpdate} taskMcpServerIAMMemberRoleUpdate
29381
+ * @param {*} [options] Override http request option.
29382
+ * @throws {RequiredError}
29383
+ */
29384
+ taskMcpServerIamOrgOrgIdProjectProjectIdTaskMcpServerTaskMcpServerIdIamUpdateMemberRoles(taskMcpServerId: string, member: string, orgId: string, projectId: string, taskMcpServerIAMMemberRoleUpdate: TaskMcpServerIAMMemberRoleUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IAMMember>>;
28706
29385
  /**
28707
29386
  *
28708
29387
  * @summary Update Task Mcp Server
@@ -28831,6 +29510,51 @@ export declare const TaskMCPServersApiFactory: (configuration?: Configuration, b
28831
29510
  * @throws {RequiredError}
28832
29511
  */
28833
29512
  refreshTaskMcpServer(taskMcpServerId: string, orgId: string, projectId: string, options?: any): AxiosPromise<TaskMcpServer>;
29513
+ /**
29514
+ * Retrieve a specific member that has been granted direct access to the task_mcp_server.
29515
+ * @summary IAM - Lookup Task Mcp Server Member
29516
+ * @param {string} taskMcpServerId
29517
+ * @param {string} member
29518
+ * @param {string} orgId The org id
29519
+ * @param {string} projectId The project id
29520
+ * @param {*} [options] Override http request option.
29521
+ * @throws {RequiredError}
29522
+ */
29523
+ taskMcpServerIamOrgOrgIdProjectProjectIdTaskMcpServerTaskMcpServerIdIamGetMember(taskMcpServerId: string, member: string, orgId: string, projectId: string, options?: any): AxiosPromise<IAMMember>;
29524
+ /**
29525
+ * Lists all members that have been granted direct access to the task_mcp_server.
29526
+ * @summary IAM - List Task Mcp Server Members
29527
+ * @param {string} taskMcpServerId
29528
+ * @param {string} orgId The org id
29529
+ * @param {string} projectId The project id
29530
+ * @param {TaskMcpServerIamOrgOrgIdProjectProjectIdTaskMcpServerTaskMcpServerIdIamListMembersTypeEnum} [type]
29531
+ * @param {*} [options] Override http request option.
29532
+ * @throws {RequiredError}
29533
+ */
29534
+ taskMcpServerIamOrgOrgIdProjectProjectIdTaskMcpServerTaskMcpServerIdIamListMembers(taskMcpServerId: string, orgId: string, projectId: string, type?: TaskMcpServerIamOrgOrgIdProjectProjectIdTaskMcpServerTaskMcpServerIdIamListMembersTypeEnum, options?: any): AxiosPromise<PaginatedResultSetIAMMember>;
29535
+ /**
29536
+ * Test the permissions that the caller (or another subject) holds on the task_mcp_server.
29537
+ * @summary IAM - Test Task Mcp Server Permissions
29538
+ * @param {string} taskMcpServerId
29539
+ * @param {string} orgId The org id
29540
+ * @param {string} projectId The project id
29541
+ * @param {TaskMcpServerIAMPermissionTest} taskMcpServerIAMPermissionTest
29542
+ * @param {*} [options] Override http request option.
29543
+ * @throws {RequiredError}
29544
+ */
29545
+ taskMcpServerIamOrgOrgIdProjectProjectIdTaskMcpServerTaskMcpServerIdIamTestPermissions(taskMcpServerId: string, orgId: string, projectId: string, taskMcpServerIAMPermissionTest: TaskMcpServerIAMPermissionTest, options?: any): AxiosPromise<IAMPermissionTest>;
29546
+ /**
29547
+ * Update the roles that a member holds on the task_mcp_server.
29548
+ * @summary IAM - Update Task Mcp Server Member
29549
+ * @param {string} taskMcpServerId
29550
+ * @param {string} member
29551
+ * @param {string} orgId The org id
29552
+ * @param {string} projectId The project id
29553
+ * @param {TaskMcpServerIAMMemberRoleUpdate} taskMcpServerIAMMemberRoleUpdate
29554
+ * @param {*} [options] Override http request option.
29555
+ * @throws {RequiredError}
29556
+ */
29557
+ taskMcpServerIamOrgOrgIdProjectProjectIdTaskMcpServerTaskMcpServerIdIamUpdateMemberRoles(taskMcpServerId: string, member: string, orgId: string, projectId: string, taskMcpServerIAMMemberRoleUpdate: TaskMcpServerIAMMemberRoleUpdate, options?: any): AxiosPromise<IAMMember>;
28834
29558
  /**
28835
29559
  *
28836
29560
  * @summary Update Task Mcp Server
@@ -28972,6 +29696,55 @@ export declare class TaskMCPServersApi extends BaseAPI {
28972
29696
  * @memberof TaskMCPServersApi
28973
29697
  */
28974
29698
  refreshTaskMcpServer(taskMcpServerId: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaskMcpServer, any, {}>>;
29699
+ /**
29700
+ * Retrieve a specific member that has been granted direct access to the task_mcp_server.
29701
+ * @summary IAM - Lookup Task Mcp Server Member
29702
+ * @param {string} taskMcpServerId
29703
+ * @param {string} member
29704
+ * @param {string} orgId The org id
29705
+ * @param {string} projectId The project id
29706
+ * @param {*} [options] Override http request option.
29707
+ * @throws {RequiredError}
29708
+ * @memberof TaskMCPServersApi
29709
+ */
29710
+ taskMcpServerIamOrgOrgIdProjectProjectIdTaskMcpServerTaskMcpServerIdIamGetMember(taskMcpServerId: string, member: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IAMMember, any, {}>>;
29711
+ /**
29712
+ * Lists all members that have been granted direct access to the task_mcp_server.
29713
+ * @summary IAM - List Task Mcp Server Members
29714
+ * @param {string} taskMcpServerId
29715
+ * @param {string} orgId The org id
29716
+ * @param {string} projectId The project id
29717
+ * @param {TaskMcpServerIamOrgOrgIdProjectProjectIdTaskMcpServerTaskMcpServerIdIamListMembersTypeEnum} [type]
29718
+ * @param {*} [options] Override http request option.
29719
+ * @throws {RequiredError}
29720
+ * @memberof TaskMCPServersApi
29721
+ */
29722
+ taskMcpServerIamOrgOrgIdProjectProjectIdTaskMcpServerTaskMcpServerIdIamListMembers(taskMcpServerId: string, orgId: string, projectId: string, type?: TaskMcpServerIamOrgOrgIdProjectProjectIdTaskMcpServerTaskMcpServerIdIamListMembersTypeEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedResultSetIAMMember, any, {}>>;
29723
+ /**
29724
+ * Test the permissions that the caller (or another subject) holds on the task_mcp_server.
29725
+ * @summary IAM - Test Task Mcp Server Permissions
29726
+ * @param {string} taskMcpServerId
29727
+ * @param {string} orgId The org id
29728
+ * @param {string} projectId The project id
29729
+ * @param {TaskMcpServerIAMPermissionTest} taskMcpServerIAMPermissionTest
29730
+ * @param {*} [options] Override http request option.
29731
+ * @throws {RequiredError}
29732
+ * @memberof TaskMCPServersApi
29733
+ */
29734
+ taskMcpServerIamOrgOrgIdProjectProjectIdTaskMcpServerTaskMcpServerIdIamTestPermissions(taskMcpServerId: string, orgId: string, projectId: string, taskMcpServerIAMPermissionTest: TaskMcpServerIAMPermissionTest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IAMPermissionTest, any, {}>>;
29735
+ /**
29736
+ * Update the roles that a member holds on the task_mcp_server.
29737
+ * @summary IAM - Update Task Mcp Server Member
29738
+ * @param {string} taskMcpServerId
29739
+ * @param {string} member
29740
+ * @param {string} orgId The org id
29741
+ * @param {string} projectId The project id
29742
+ * @param {TaskMcpServerIAMMemberRoleUpdate} taskMcpServerIAMMemberRoleUpdate
29743
+ * @param {*} [options] Override http request option.
29744
+ * @throws {RequiredError}
29745
+ * @memberof TaskMCPServersApi
29746
+ */
29747
+ taskMcpServerIamOrgOrgIdProjectProjectIdTaskMcpServerTaskMcpServerIdIamUpdateMemberRoles(taskMcpServerId: string, member: string, orgId: string, projectId: string, taskMcpServerIAMMemberRoleUpdate: TaskMcpServerIAMMemberRoleUpdate, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IAMMember, any, {}>>;
28975
29748
  /**
28976
29749
  *
28977
29750
  * @summary Update Task Mcp Server
@@ -28985,6 +29758,15 @@ export declare class TaskMCPServersApi extends BaseAPI {
28985
29758
  */
28986
29759
  updateTaskMcpServer(taskMcpServerId: string, orgId: string, projectId: string, taskMcpServerUpdate: TaskMcpServerUpdate, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaskMcpServer, any, {}>>;
28987
29760
  }
29761
+ /**
29762
+ * @export
29763
+ */
29764
+ export declare const TaskMcpServerIamOrgOrgIdProjectProjectIdTaskMcpServerTaskMcpServerIdIamListMembersTypeEnum: {
29765
+ readonly User: "user";
29766
+ readonly Organization: "organization";
29767
+ readonly Project: "project";
29768
+ };
29769
+ export type TaskMcpServerIamOrgOrgIdProjectProjectIdTaskMcpServerTaskMcpServerIdIamListMembersTypeEnum = typeof TaskMcpServerIamOrgOrgIdProjectProjectIdTaskMcpServerTaskMcpServerIdIamListMembersTypeEnum[keyof typeof TaskMcpServerIamOrgOrgIdProjectProjectIdTaskMcpServerTaskMcpServerIdIamListMembersTypeEnum];
28988
29770
  /**
28989
29771
  * TaskMCPToolsApi - axios parameter creator
28990
29772
  * @export