@rightbrain/brain-api-client 0.0.1-dev.135.b0b3ef9 → 0.0.1-dev.137.c52b325

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 +1781 -54
  2. package/dist/api.d.ts +1350 -75
  3. package/dist/api.js +1418 -253
  4. package/package.json +1 -1
package/dist/api.d.ts CHANGED
@@ -343,6 +343,18 @@ export interface AvailableSkillRead {
343
343
  * @memberof AvailableSkillRead
344
344
  */
345
345
  'has_active_revision': boolean;
346
+ /**
347
+ *
348
+ * @type {boolean}
349
+ * @memberof AvailableSkillRead
350
+ */
351
+ 'has_capabilities': boolean;
352
+ /**
353
+ *
354
+ * @type {boolean}
355
+ * @memberof AvailableSkillRead
356
+ */
357
+ 'requires_prerequisites': boolean;
346
358
  /**
347
359
  *
348
360
  * @type {SkillRevisionSummary}
@@ -1309,6 +1321,19 @@ export declare const DatasourceSyncRunStatusEnum: {
1309
1321
  readonly Progress: "progress";
1310
1322
  };
1311
1323
  export type DatasourceSyncRunStatusEnum = typeof DatasourceSyncRunStatusEnum[keyof typeof DatasourceSyncRunStatusEnum];
1324
+ /**
1325
+ * @type DependenciesInner
1326
+ * @export
1327
+ */
1328
+ export type DependenciesInner = {
1329
+ type: 'integration';
1330
+ } & IntegrationSkillDependency | {
1331
+ type: 'mcp_server';
1332
+ } & McpServerSkillDependency | {
1333
+ type: 'mcp_tool';
1334
+ } & McpToolSkillDependency | {
1335
+ type: 'registered_tool';
1336
+ } & RegisteredToolSkillDependency;
1312
1337
  /**
1313
1338
  *
1314
1339
  * @export
@@ -2706,6 +2731,25 @@ export declare const IntegrationAuthStatusReadAuthTypeEnum: {
2706
2731
  readonly UserInvoker: "oauth_user_invoker";
2707
2732
  };
2708
2733
  export type IntegrationAuthStatusReadAuthTypeEnum = typeof IntegrationAuthStatusReadAuthTypeEnum[keyof typeof IntegrationAuthStatusReadAuthTypeEnum];
2734
+ /**
2735
+ *
2736
+ * @export
2737
+ * @interface IntegrationCapabilitySelector
2738
+ */
2739
+ export interface IntegrationCapabilitySelector {
2740
+ /**
2741
+ * Stable integration type identifier required by the skill.
2742
+ * @type {string}
2743
+ * @memberof IntegrationCapabilitySelector
2744
+ */
2745
+ 'integration_type': string;
2746
+ /**
2747
+ * Integration tool name required by the skill.
2748
+ * @type {string}
2749
+ * @memberof IntegrationCapabilitySelector
2750
+ */
2751
+ 'tool_name': string;
2752
+ }
2709
2753
  /**
2710
2754
  *
2711
2755
  * @export
@@ -2781,6 +2825,37 @@ export interface IntegrationCatalogToolRead {
2781
2825
  */
2782
2826
  'description'?: string | null;
2783
2827
  }
2828
+ /**
2829
+ *
2830
+ * @export
2831
+ * @interface IntegrationSkillDependency
2832
+ */
2833
+ export interface IntegrationSkillDependency {
2834
+ /**
2835
+ * Stable identifier for this dependency within the capability set.
2836
+ * @type {string}
2837
+ * @memberof IntegrationSkillDependency
2838
+ */
2839
+ 'id': string;
2840
+ /**
2841
+ *
2842
+ * @type {string}
2843
+ * @memberof IntegrationSkillDependency
2844
+ */
2845
+ 'type': string;
2846
+ /**
2847
+ * Whether the dependency must be resolvable for the skill to function.
2848
+ * @type {boolean}
2849
+ * @memberof IntegrationSkillDependency
2850
+ */
2851
+ 'required': boolean;
2852
+ /**
2853
+ *
2854
+ * @type {IntegrationCapabilitySelector}
2855
+ * @memberof IntegrationSkillDependency
2856
+ */
2857
+ 'selector': IntegrationCapabilitySelector;
2858
+ }
2784
2859
  /**
2785
2860
  * Schema for an individual integration tool invocation during a run.
2786
2861
  * @export
@@ -4397,6 +4472,19 @@ export interface McpServer {
4397
4472
  */
4398
4473
  'modified': string;
4399
4474
  }
4475
+ /**
4476
+ *
4477
+ * @export
4478
+ * @interface McpServerCapabilitySelector
4479
+ */
4480
+ export interface McpServerCapabilitySelector {
4481
+ /**
4482
+ * Canonical MCP server slug required by the skill.
4483
+ * @type {string}
4484
+ * @memberof McpServerCapabilitySelector
4485
+ */
4486
+ 'mcp_server_slug': string;
4487
+ }
4400
4488
  /**
4401
4489
  * Attributes a user can submit to create an instance of McpServer.
4402
4490
  * @export
@@ -4490,6 +4578,37 @@ export interface McpServerDiscoveryResponse {
4490
4578
  */
4491
4579
  'transport'?: TaskMcpTransport;
4492
4580
  }
4581
+ /**
4582
+ *
4583
+ * @export
4584
+ * @interface McpServerSkillDependency
4585
+ */
4586
+ export interface McpServerSkillDependency {
4587
+ /**
4588
+ * Stable identifier for this dependency within the capability set.
4589
+ * @type {string}
4590
+ * @memberof McpServerSkillDependency
4591
+ */
4592
+ 'id': string;
4593
+ /**
4594
+ *
4595
+ * @type {string}
4596
+ * @memberof McpServerSkillDependency
4597
+ */
4598
+ 'type': string;
4599
+ /**
4600
+ * Whether the dependency must be resolvable for the skill to function.
4601
+ * @type {boolean}
4602
+ * @memberof McpServerSkillDependency
4603
+ */
4604
+ 'required': boolean;
4605
+ /**
4606
+ *
4607
+ * @type {McpServerCapabilitySelector}
4608
+ * @memberof McpServerSkillDependency
4609
+ */
4610
+ 'selector': McpServerCapabilitySelector;
4611
+ }
4493
4612
  /**
4494
4613
  * Attributes a user can update.
4495
4614
  * @export
@@ -4515,6 +4634,25 @@ export interface McpServerUpdate {
4515
4634
  */
4516
4635
  'url'?: string | null;
4517
4636
  }
4637
+ /**
4638
+ *
4639
+ * @export
4640
+ * @interface McpToolCapabilitySelector
4641
+ */
4642
+ export interface McpToolCapabilitySelector {
4643
+ /**
4644
+ * Canonical MCP server slug required by the skill.
4645
+ * @type {string}
4646
+ * @memberof McpToolCapabilitySelector
4647
+ */
4648
+ 'mcp_server_slug': string;
4649
+ /**
4650
+ * MCP tool name required by the skill.
4651
+ * @type {string}
4652
+ * @memberof McpToolCapabilitySelector
4653
+ */
4654
+ 'tool_name': string;
4655
+ }
4518
4656
  /**
4519
4657
  * Schema for an individual MCP tool invocation during a run.
4520
4658
  * @export
@@ -4558,6 +4696,37 @@ export interface McpToolInvocationRead {
4558
4696
  */
4559
4697
  'error_message'?: string | null;
4560
4698
  }
4699
+ /**
4700
+ *
4701
+ * @export
4702
+ * @interface McpToolSkillDependency
4703
+ */
4704
+ export interface McpToolSkillDependency {
4705
+ /**
4706
+ * Stable identifier for this dependency within the capability set.
4707
+ * @type {string}
4708
+ * @memberof McpToolSkillDependency
4709
+ */
4710
+ 'id': string;
4711
+ /**
4712
+ *
4713
+ * @type {string}
4714
+ * @memberof McpToolSkillDependency
4715
+ */
4716
+ 'type': string;
4717
+ /**
4718
+ * Whether the dependency must be resolvable for the skill to function.
4719
+ * @type {boolean}
4720
+ * @memberof McpToolSkillDependency
4721
+ */
4722
+ 'required': boolean;
4723
+ /**
4724
+ *
4725
+ * @type {McpToolCapabilitySelector}
4726
+ * @memberof McpToolSkillDependency
4727
+ */
4728
+ 'selector': McpToolCapabilitySelector;
4729
+ }
4561
4730
  /**
4562
4731
  *
4563
4732
  * @export
@@ -6957,6 +7126,75 @@ export declare const ProjectIntegrationCreateTypeEnum: {
6957
7126
  readonly Gmail: "google_gmail";
6958
7127
  };
6959
7128
  export type ProjectIntegrationCreateTypeEnum = typeof ProjectIntegrationCreateTypeEnum[keyof typeof ProjectIntegrationCreateTypeEnum];
7129
+ /**
7130
+ *
7131
+ * @export
7132
+ * @interface ProjectIntegrationIAMMemberRoleUpdate
7133
+ */
7134
+ export interface ProjectIntegrationIAMMemberRoleUpdate {
7135
+ /**
7136
+ * A list of project_integration 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.
7137
+ * @type {Array<string>}
7138
+ * @memberof ProjectIntegrationIAMMemberRoleUpdate
7139
+ */
7140
+ 'add'?: Array<ProjectIntegrationIAMMemberRoleUpdateAddEnum>;
7141
+ /**
7142
+ * A list of project_integration roles to revoke from the member.
7143
+ * @type {Array<string>}
7144
+ * @memberof ProjectIntegrationIAMMemberRoleUpdate
7145
+ */
7146
+ 'remove'?: Array<ProjectIntegrationIAMMemberRoleUpdateRemoveEnum>;
7147
+ /**
7148
+ * Removes all existing roles from the member. This may be combined with `add` to replace all existing roles that the member holds.
7149
+ * @type {boolean}
7150
+ * @memberof ProjectIntegrationIAMMemberRoleUpdate
7151
+ */
7152
+ 'remove_all'?: boolean | null;
7153
+ }
7154
+ export declare const ProjectIntegrationIAMMemberRoleUpdateAddEnum: {
7155
+ readonly Editor: "editor";
7156
+ readonly Owner: "owner";
7157
+ readonly Viewer: "viewer";
7158
+ };
7159
+ export type ProjectIntegrationIAMMemberRoleUpdateAddEnum = typeof ProjectIntegrationIAMMemberRoleUpdateAddEnum[keyof typeof ProjectIntegrationIAMMemberRoleUpdateAddEnum];
7160
+ export declare const ProjectIntegrationIAMMemberRoleUpdateRemoveEnum: {
7161
+ readonly Editor: "editor";
7162
+ readonly Owner: "owner";
7163
+ readonly Viewer: "viewer";
7164
+ };
7165
+ export type ProjectIntegrationIAMMemberRoleUpdateRemoveEnum = typeof ProjectIntegrationIAMMemberRoleUpdateRemoveEnum[keyof typeof ProjectIntegrationIAMMemberRoleUpdateRemoveEnum];
7166
+ /**
7167
+ *
7168
+ * @export
7169
+ * @interface ProjectIntegrationIAMPermissionTest
7170
+ */
7171
+ export interface ProjectIntegrationIAMPermissionTest {
7172
+ /**
7173
+ * A list of permissions to test on the project_integration.
7174
+ * @type {Array<string>}
7175
+ * @memberof ProjectIntegrationIAMPermissionTest
7176
+ */
7177
+ 'permissions': Array<ProjectIntegrationIAMPermissionTestPermissionsEnum>;
7178
+ /**
7179
+ *
7180
+ * @type {string}
7181
+ * @memberof ProjectIntegrationIAMPermissionTest
7182
+ */
7183
+ 'member'?: string | null;
7184
+ }
7185
+ export declare const ProjectIntegrationIAMPermissionTestPermissionsEnum: {
7186
+ readonly AddEditor: "add_editor";
7187
+ readonly AddMember: "add_member";
7188
+ readonly AddOwner: "add_owner";
7189
+ readonly Delete: "delete";
7190
+ readonly Edit: "edit";
7191
+ readonly RemoveEditor: "remove_editor";
7192
+ readonly RemoveMember: "remove_member";
7193
+ readonly RemoveOwner: "remove_owner";
7194
+ readonly View: "view";
7195
+ readonly ViewMembers: "view_members";
7196
+ };
7197
+ export type ProjectIntegrationIAMPermissionTestPermissionsEnum = typeof ProjectIntegrationIAMPermissionTestPermissionsEnum[keyof typeof ProjectIntegrationIAMPermissionTestPermissionsEnum];
6960
7198
  /**
6961
7199
  *
6962
7200
  * @export
@@ -7045,12 +7283,6 @@ export type ProjectIntegrationReadAuthTypeEnum = typeof ProjectIntegrationReadAu
7045
7283
  * @interface ProjectSkillCreate
7046
7284
  */
7047
7285
  export interface ProjectSkillCreate {
7048
- /**
7049
- * Stable lowercase kebab-case identifier for the skill.
7050
- * @type {string}
7051
- * @memberof ProjectSkillCreate
7052
- */
7053
- 'slug': string;
7054
7286
  /**
7055
7287
  * Human-readable name of the skill.
7056
7288
  * @type {string}
@@ -7075,6 +7307,12 @@ export interface ProjectSkillCreate {
7075
7307
  * @memberof ProjectSkillCreate
7076
7308
  */
7077
7309
  'compatibility'?: string | null;
7310
+ /**
7311
+ * Stable lowercase kebab-case identifier for the skill.
7312
+ * @type {string}
7313
+ * @memberof ProjectSkillCreate
7314
+ */
7315
+ 'slug'?: string | null;
7078
7316
  /**
7079
7317
  * The primary instructions for this skill.
7080
7318
  * @type {string}
@@ -7105,6 +7343,12 @@ export interface ProjectSkillCreate {
7105
7343
  'skill_metadata'?: {
7106
7344
  [key: string]: any;
7107
7345
  } | null;
7346
+ /**
7347
+ *
7348
+ * @type {SkillCapabilitiesInput}
7349
+ * @memberof ProjectSkillCreate
7350
+ */
7351
+ 'capabilities'?: SkillCapabilitiesInput;
7108
7352
  }
7109
7353
  /**
7110
7354
  *
@@ -7166,6 +7410,18 @@ export interface ProjectSkillRead {
7166
7410
  * @memberof ProjectSkillRead
7167
7411
  */
7168
7412
  'has_active_revision': boolean;
7413
+ /**
7414
+ *
7415
+ * @type {boolean}
7416
+ * @memberof ProjectSkillRead
7417
+ */
7418
+ 'has_capabilities': boolean;
7419
+ /**
7420
+ *
7421
+ * @type {boolean}
7422
+ * @memberof ProjectSkillRead
7423
+ */
7424
+ 'requires_prerequisites': boolean;
7169
7425
  /**
7170
7426
  *
7171
7427
  * @type {SkillRevisionSummary}
@@ -7233,6 +7489,12 @@ export interface ProjectSkillRevisionCreate {
7233
7489
  'skill_metadata'?: {
7234
7490
  [key: string]: any;
7235
7491
  } | null;
7492
+ /**
7493
+ *
7494
+ * @type {SkillCapabilitiesInput}
7495
+ * @memberof ProjectSkillRevisionCreate
7496
+ */
7497
+ 'capabilities'?: SkillCapabilitiesInput;
7236
7498
  /**
7237
7499
  * Optional human note describing this revision.
7238
7500
  * @type {string}
@@ -7621,6 +7883,56 @@ export interface PurgeOrgCacheResponse {
7621
7883
  */
7622
7884
  'message': string;
7623
7885
  }
7886
+ /**
7887
+ *
7888
+ * @export
7889
+ * @interface RegisteredToolCapabilitySelector
7890
+ */
7891
+ export interface RegisteredToolCapabilitySelector {
7892
+ /**
7893
+ * Selector kind for a platform-registered tool capability.
7894
+ * @type {string}
7895
+ * @memberof RegisteredToolCapabilitySelector
7896
+ */
7897
+ 'kind'?: string;
7898
+ /**
7899
+ * Stable registered tool key for the required capability.
7900
+ * @type {string}
7901
+ * @memberof RegisteredToolCapabilitySelector
7902
+ */
7903
+ 'value': string;
7904
+ }
7905
+ /**
7906
+ *
7907
+ * @export
7908
+ * @interface RegisteredToolSkillDependency
7909
+ */
7910
+ export interface RegisteredToolSkillDependency {
7911
+ /**
7912
+ * Stable identifier for this dependency within the capability set.
7913
+ * @type {string}
7914
+ * @memberof RegisteredToolSkillDependency
7915
+ */
7916
+ 'id': string;
7917
+ /**
7918
+ *
7919
+ * @type {string}
7920
+ * @memberof RegisteredToolSkillDependency
7921
+ */
7922
+ 'type': string;
7923
+ /**
7924
+ * Whether the dependency must be resolvable for the skill to function.
7925
+ * @type {boolean}
7926
+ * @memberof RegisteredToolSkillDependency
7927
+ */
7928
+ 'required': boolean;
7929
+ /**
7930
+ *
7931
+ * @type {RegisteredToolCapabilitySelector}
7932
+ * @memberof RegisteredToolSkillDependency
7933
+ */
7934
+ 'selector': RegisteredToolCapabilitySelector;
7935
+ }
7624
7936
  /**
7625
7937
  * Schema for reporting group responses.
7626
7938
  * @export
@@ -7893,10 +8205,10 @@ export type Response400ProjectIamOrgOrgIdProjectProjectIdOauthClientOauthClientI
7893
8205
  reason: 'MULTIPLE_ROLES_NOT_ALLOWED';
7894
8206
  } & MultipleRolesNotAllowedErrorResponse;
7895
8207
  /**
7896
- * @type Response400TaskForwarderIamOrgOrgIdProjectProjectIdTaskForwarderTaskForwarderIdIamTestPermissions
8208
+ * @type Response400ProjectIntegrationIamOrgOrgIdProjectProjectIdIntegrationIntegrationIdIamTestPermissions
7897
8209
  * @export
7898
8210
  */
7899
- export type Response400TaskForwarderIamOrgOrgIdProjectProjectIdTaskForwarderTaskForwarderIdIamTestPermissions = {
8211
+ export type Response400ProjectIntegrationIamOrgOrgIdProjectProjectIdIntegrationIntegrationIdIamTestPermissions = {
7900
8212
  reason: 'INVALID_MEMBER';
7901
8213
  } & InvalidMemberErrorResponse | {
7902
8214
  reason: 'INVALID_ROLE';
@@ -7906,10 +8218,10 @@ export type Response400TaskForwarderIamOrgOrgIdProjectProjectIdTaskForwarderTask
7906
8218
  reason: 'MALFORMED_RESOURCE_IDENTIFIER';
7907
8219
  } & MalformedResourceIdentifierErrorResponse;
7908
8220
  /**
7909
- * @type Response400TaskForwarderIamOrgOrgIdProjectProjectIdTaskForwarderTaskForwarderIdIamUpdateMemberRoles
8221
+ * @type Response400ProjectIntegrationIamOrgOrgIdProjectProjectIdIntegrationIntegrationIdIamUpdateMemberRoles
7910
8222
  * @export
7911
8223
  */
7912
- export type Response400TaskForwarderIamOrgOrgIdProjectProjectIdTaskForwarderTaskForwarderIdIamUpdateMemberRoles = {
8224
+ export type Response400ProjectIntegrationIamOrgOrgIdProjectProjectIdIntegrationIntegrationIdIamUpdateMemberRoles = {
7913
8225
  reason: 'INVALID_MEMBER';
7914
8226
  } & InvalidMemberErrorResponse | {
7915
8227
  reason: 'INVALID_ROLE';
@@ -7921,10 +8233,10 @@ export type Response400TaskForwarderIamOrgOrgIdProjectProjectIdTaskForwarderTask
7921
8233
  reason: 'MULTIPLE_ROLES_NOT_ALLOWED';
7922
8234
  } & MultipleRolesNotAllowedErrorResponse;
7923
8235
  /**
7924
- * @type Response400TaskIamOrgOrgIdProjectProjectIdTaskTaskIdIamTestPermissions
8236
+ * @type Response400TaskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamTestPermissions
7925
8237
  * @export
7926
8238
  */
7927
- export type Response400TaskIamOrgOrgIdProjectProjectIdTaskTaskIdIamTestPermissions = {
8239
+ export type Response400TaskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamTestPermissions = {
7928
8240
  reason: 'INVALID_MEMBER';
7929
8241
  } & InvalidMemberErrorResponse | {
7930
8242
  reason: 'INVALID_ROLE';
@@ -7934,10 +8246,10 @@ export type Response400TaskIamOrgOrgIdProjectProjectIdTaskTaskIdIamTestPermissio
7934
8246
  reason: 'MALFORMED_RESOURCE_IDENTIFIER';
7935
8247
  } & MalformedResourceIdentifierErrorResponse;
7936
8248
  /**
7937
- * @type Response400TaskIamOrgOrgIdProjectProjectIdTaskTaskIdIamUpdateMemberRoles
8249
+ * @type Response400TaskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamUpdateMemberRoles
7938
8250
  * @export
7939
8251
  */
7940
- export type Response400TaskIamOrgOrgIdProjectProjectIdTaskTaskIdIamUpdateMemberRoles = {
8252
+ export type Response400TaskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamUpdateMemberRoles = {
7941
8253
  reason: 'INVALID_MEMBER';
7942
8254
  } & InvalidMemberErrorResponse | {
7943
8255
  reason: 'INVALID_ROLE';
@@ -7949,23 +8261,79 @@ export type Response400TaskIamOrgOrgIdProjectProjectIdTaskTaskIdIamUpdateMemberR
7949
8261
  reason: 'MULTIPLE_ROLES_NOT_ALLOWED';
7950
8262
  } & MultipleRolesNotAllowedErrorResponse;
7951
8263
  /**
7952
- * @type Response403Addtoprojectcollection
8264
+ * @type Response400TaskForwarderIamOrgOrgIdProjectProjectIdTaskForwarderTaskForwarderIdIamTestPermissions
7953
8265
  * @export
7954
8266
  */
7955
- export type Response403Addtoprojectcollection = {
7956
- reason: 'MISSING_AUTHENTICATION';
7957
- } & MissingAuthenticationErrorResponse | {
7958
- reason: 'PERMISSION_CHECK_FAILED';
7959
- } & PermissionCheckFailedErrorResponse;
8267
+ export type Response400TaskForwarderIamOrgOrgIdProjectProjectIdTaskForwarderTaskForwarderIdIamTestPermissions = {
8268
+ reason: 'INVALID_MEMBER';
8269
+ } & InvalidMemberErrorResponse | {
8270
+ reason: 'INVALID_ROLE';
8271
+ } & InvalidRoleErrorResponse | {
8272
+ reason: 'INVALID_SUBJECT_TYPE';
8273
+ } & InvalidSubjectTypeErrorResponse | {
8274
+ reason: 'MALFORMED_RESOURCE_IDENTIFIER';
8275
+ } & MalformedResourceIdentifierErrorResponse;
7960
8276
  /**
7961
- * @type Response403Authorizemcpserver
8277
+ * @type Response400TaskForwarderIamOrgOrgIdProjectProjectIdTaskForwarderTaskForwarderIdIamUpdateMemberRoles
7962
8278
  * @export
7963
8279
  */
7964
- export type Response403Authorizemcpserver = {
7965
- reason: 'MISSING_AUTHENTICATION';
7966
- } & MissingAuthenticationErrorResponse | {
7967
- reason: 'PERMISSION_CHECK_FAILED';
7968
- } & PermissionCheckFailedErrorResponse;
8280
+ export type Response400TaskForwarderIamOrgOrgIdProjectProjectIdTaskForwarderTaskForwarderIdIamUpdateMemberRoles = {
8281
+ reason: 'INVALID_MEMBER';
8282
+ } & InvalidMemberErrorResponse | {
8283
+ reason: 'INVALID_ROLE';
8284
+ } & InvalidRoleErrorResponse | {
8285
+ reason: 'INVALID_SUBJECT_TYPE';
8286
+ } & InvalidSubjectTypeErrorResponse | {
8287
+ reason: 'MALFORMED_RESOURCE_IDENTIFIER';
8288
+ } & MalformedResourceIdentifierErrorResponse | {
8289
+ reason: 'MULTIPLE_ROLES_NOT_ALLOWED';
8290
+ } & MultipleRolesNotAllowedErrorResponse;
8291
+ /**
8292
+ * @type Response400TaskIamOrgOrgIdProjectProjectIdTaskTaskIdIamTestPermissions
8293
+ * @export
8294
+ */
8295
+ export type Response400TaskIamOrgOrgIdProjectProjectIdTaskTaskIdIamTestPermissions = {
8296
+ reason: 'INVALID_MEMBER';
8297
+ } & InvalidMemberErrorResponse | {
8298
+ reason: 'INVALID_ROLE';
8299
+ } & InvalidRoleErrorResponse | {
8300
+ reason: 'INVALID_SUBJECT_TYPE';
8301
+ } & InvalidSubjectTypeErrorResponse | {
8302
+ reason: 'MALFORMED_RESOURCE_IDENTIFIER';
8303
+ } & MalformedResourceIdentifierErrorResponse;
8304
+ /**
8305
+ * @type Response400TaskIamOrgOrgIdProjectProjectIdTaskTaskIdIamUpdateMemberRoles
8306
+ * @export
8307
+ */
8308
+ export type Response400TaskIamOrgOrgIdProjectProjectIdTaskTaskIdIamUpdateMemberRoles = {
8309
+ reason: 'INVALID_MEMBER';
8310
+ } & InvalidMemberErrorResponse | {
8311
+ reason: 'INVALID_ROLE';
8312
+ } & InvalidRoleErrorResponse | {
8313
+ reason: 'INVALID_SUBJECT_TYPE';
8314
+ } & InvalidSubjectTypeErrorResponse | {
8315
+ reason: 'MALFORMED_RESOURCE_IDENTIFIER';
8316
+ } & MalformedResourceIdentifierErrorResponse | {
8317
+ reason: 'MULTIPLE_ROLES_NOT_ALLOWED';
8318
+ } & MultipleRolesNotAllowedErrorResponse;
8319
+ /**
8320
+ * @type Response403Addtoprojectcollection
8321
+ * @export
8322
+ */
8323
+ export type Response403Addtoprojectcollection = {
8324
+ reason: 'MISSING_AUTHENTICATION';
8325
+ } & MissingAuthenticationErrorResponse | {
8326
+ reason: 'PERMISSION_CHECK_FAILED';
8327
+ } & PermissionCheckFailedErrorResponse;
8328
+ /**
8329
+ * @type Response403Authorizemcpserver
8330
+ * @export
8331
+ */
8332
+ export type Response403Authorizemcpserver = {
8333
+ reason: 'MISSING_AUTHENTICATION';
8334
+ } & MissingAuthenticationErrorResponse | {
8335
+ reason: 'PERMISSION_CHECK_FAILED';
8336
+ } & PermissionCheckFailedErrorResponse;
7969
8337
  /**
7970
8338
  * @type Response403Authorizeslackinstallation
7971
8339
  * @export
@@ -8488,6 +8856,15 @@ export type Response403Gettaskmcpserver = {
8488
8856
  } & MissingAuthenticationErrorResponse | {
8489
8857
  reason: 'PERMISSION_CHECK_FAILED';
8490
8858
  } & PermissionCheckFailedErrorResponse;
8859
+ /**
8860
+ * @type Response403Gettaskmcpservercatalog
8861
+ * @export
8862
+ */
8863
+ export type Response403Gettaskmcpservercatalog = {
8864
+ reason: 'MISSING_AUTHENTICATION';
8865
+ } & MissingAuthenticationErrorResponse | {
8866
+ reason: 'PERMISSION_CHECK_FAILED';
8867
+ } & PermissionCheckFailedErrorResponse;
8491
8868
  /**
8492
8869
  * @type Response403Gettaskmcptool
8493
8870
  * @export
@@ -8668,6 +9045,15 @@ export type Response403Listslackinstallations = {
8668
9045
  } & MissingAuthenticationErrorResponse | {
8669
9046
  reason: 'PERMISSION_CHECK_FAILED';
8670
9047
  } & PermissionCheckFailedErrorResponse;
9048
+ /**
9049
+ * @type Response403Listtaskmcpservercatalog
9050
+ * @export
9051
+ */
9052
+ export type Response403Listtaskmcpservercatalog = {
9053
+ reason: 'MISSING_AUTHENTICATION';
9054
+ } & MissingAuthenticationErrorResponse | {
9055
+ reason: 'PERMISSION_CHECK_FAILED';
9056
+ } & PermissionCheckFailedErrorResponse;
8671
9057
  /**
8672
9058
  * @type Response403Listtaskmcpservers
8673
9059
  * @export
@@ -8812,6 +9198,42 @@ export type Response403ProjectIamOrgOrgIdProjectProjectIdOauthClientOauthClientI
8812
9198
  } & MissingAuthenticationErrorResponse | {
8813
9199
  reason: 'PERMISSION_CHECK_FAILED';
8814
9200
  } & PermissionCheckFailedErrorResponse;
9201
+ /**
9202
+ * @type Response403ProjectIntegrationIamOrgOrgIdProjectProjectIdIntegrationIntegrationIdIamGetMember
9203
+ * @export
9204
+ */
9205
+ export type Response403ProjectIntegrationIamOrgOrgIdProjectProjectIdIntegrationIntegrationIdIamGetMember = {
9206
+ reason: 'MISSING_AUTHENTICATION';
9207
+ } & MissingAuthenticationErrorResponse | {
9208
+ reason: 'PERMISSION_CHECK_FAILED';
9209
+ } & PermissionCheckFailedErrorResponse;
9210
+ /**
9211
+ * @type Response403ProjectIntegrationIamOrgOrgIdProjectProjectIdIntegrationIntegrationIdIamListMembers
9212
+ * @export
9213
+ */
9214
+ export type Response403ProjectIntegrationIamOrgOrgIdProjectProjectIdIntegrationIntegrationIdIamListMembers = {
9215
+ reason: 'MISSING_AUTHENTICATION';
9216
+ } & MissingAuthenticationErrorResponse | {
9217
+ reason: 'PERMISSION_CHECK_FAILED';
9218
+ } & PermissionCheckFailedErrorResponse;
9219
+ /**
9220
+ * @type Response403ProjectIntegrationIamOrgOrgIdProjectProjectIdIntegrationIntegrationIdIamTestPermissions
9221
+ * @export
9222
+ */
9223
+ export type Response403ProjectIntegrationIamOrgOrgIdProjectProjectIdIntegrationIntegrationIdIamTestPermissions = {
9224
+ reason: 'MISSING_AUTHENTICATION';
9225
+ } & MissingAuthenticationErrorResponse | {
9226
+ reason: 'PERMISSION_CHECK_FAILED';
9227
+ } & PermissionCheckFailedErrorResponse;
9228
+ /**
9229
+ * @type Response403ProjectIntegrationIamOrgOrgIdProjectProjectIdIntegrationIntegrationIdIamUpdateMemberRoles
9230
+ * @export
9231
+ */
9232
+ export type Response403ProjectIntegrationIamOrgOrgIdProjectProjectIdIntegrationIntegrationIdIamUpdateMemberRoles = {
9233
+ reason: 'MISSING_AUTHENTICATION';
9234
+ } & MissingAuthenticationErrorResponse | {
9235
+ reason: 'PERMISSION_CHECK_FAILED';
9236
+ } & PermissionCheckFailedErrorResponse;
8815
9237
  /**
8816
9238
  * @type Response403Queryprojectcollection
8817
9239
  * @export
@@ -8902,6 +9324,42 @@ export type Response403Suggestprojecttopics = {
8902
9324
  } & MissingAuthenticationErrorResponse | {
8903
9325
  reason: 'PERMISSION_CHECK_FAILED';
8904
9326
  } & PermissionCheckFailedErrorResponse;
9327
+ /**
9328
+ * @type Response403TaskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamGetMember
9329
+ * @export
9330
+ */
9331
+ export type Response403TaskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamGetMember = {
9332
+ reason: 'MISSING_AUTHENTICATION';
9333
+ } & MissingAuthenticationErrorResponse | {
9334
+ reason: 'PERMISSION_CHECK_FAILED';
9335
+ } & PermissionCheckFailedErrorResponse;
9336
+ /**
9337
+ * @type Response403TaskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamListMembers
9338
+ * @export
9339
+ */
9340
+ export type Response403TaskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamListMembers = {
9341
+ reason: 'MISSING_AUTHENTICATION';
9342
+ } & MissingAuthenticationErrorResponse | {
9343
+ reason: 'PERMISSION_CHECK_FAILED';
9344
+ } & PermissionCheckFailedErrorResponse;
9345
+ /**
9346
+ * @type Response403TaskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamTestPermissions
9347
+ * @export
9348
+ */
9349
+ export type Response403TaskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamTestPermissions = {
9350
+ reason: 'MISSING_AUTHENTICATION';
9351
+ } & MissingAuthenticationErrorResponse | {
9352
+ reason: 'PERMISSION_CHECK_FAILED';
9353
+ } & PermissionCheckFailedErrorResponse;
9354
+ /**
9355
+ * @type Response403TaskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamUpdateMemberRoles
9356
+ * @export
9357
+ */
9358
+ export type Response403TaskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamUpdateMemberRoles = {
9359
+ reason: 'MISSING_AUTHENTICATION';
9360
+ } & MissingAuthenticationErrorResponse | {
9361
+ reason: 'PERMISSION_CHECK_FAILED';
9362
+ } & PermissionCheckFailedErrorResponse;
8905
9363
  /**
8906
9364
  * @type Response403TaskForwarderIamOrgOrgIdProjectProjectIdTaskForwarderTaskForwarderIdIamGetMember
8907
9365
  * @export
@@ -9716,6 +10174,44 @@ export interface SkillActivationRead {
9716
10174
  */
9717
10175
  'activated': boolean;
9718
10176
  }
10177
+ /**
10178
+ *
10179
+ * @export
10180
+ * @interface SkillCapabilitiesInput
10181
+ */
10182
+ export interface SkillCapabilitiesInput {
10183
+ /**
10184
+ * Versioned schema identifier for the capability contract.
10185
+ * @type {string}
10186
+ * @memberof SkillCapabilitiesInput
10187
+ */
10188
+ 'schema_version': string;
10189
+ /**
10190
+ * Declarative dependency requirements for this skill revision.
10191
+ * @type {Array<DependenciesInner>}
10192
+ * @memberof SkillCapabilitiesInput
10193
+ */
10194
+ 'dependencies': Array<DependenciesInner>;
10195
+ }
10196
+ /**
10197
+ *
10198
+ * @export
10199
+ * @interface SkillCapabilitiesOutput
10200
+ */
10201
+ export interface SkillCapabilitiesOutput {
10202
+ /**
10203
+ * Versioned schema identifier for the capability contract.
10204
+ * @type {string}
10205
+ * @memberof SkillCapabilitiesOutput
10206
+ */
10207
+ 'schema_version': string;
10208
+ /**
10209
+ * Declarative dependency requirements for this skill revision.
10210
+ * @type {Array<DependenciesInner>}
10211
+ * @memberof SkillCapabilitiesOutput
10212
+ */
10213
+ 'dependencies': Array<DependenciesInner>;
10214
+ }
9719
10215
  /**
9720
10216
  *
9721
10217
  * @export
@@ -9837,6 +10333,18 @@ export interface SkillRead {
9837
10333
  * @memberof SkillRead
9838
10334
  */
9839
10335
  'has_active_revision': boolean;
10336
+ /**
10337
+ *
10338
+ * @type {boolean}
10339
+ * @memberof SkillRead
10340
+ */
10341
+ 'has_capabilities': boolean;
10342
+ /**
10343
+ *
10344
+ * @type {boolean}
10345
+ * @memberof SkillRead
10346
+ */
10347
+ 'requires_prerequisites': boolean;
9840
10348
  /**
9841
10349
  *
9842
10350
  * @type {SkillRevisionSummary}
@@ -9888,6 +10396,12 @@ export interface SkillRevisionContent {
9888
10396
  'skill_metadata': {
9889
10397
  [key: string]: any;
9890
10398
  } | null;
10399
+ /**
10400
+ *
10401
+ * @type {SkillCapabilitiesOutput}
10402
+ * @memberof SkillRevisionContent
10403
+ */
10404
+ 'capabilities': SkillCapabilitiesOutput;
9891
10405
  /**
9892
10406
  *
9893
10407
  * @type {string}
@@ -10569,7 +11083,7 @@ export interface TaskActiveRevision {
10569
11083
  'weight'?: number | null;
10570
11084
  }
10571
11085
  /**
10572
- * Schema for creating a TaskAgent.
11086
+ * Schema for creating a TaskAgent. ``registered_tools`` are intentionally omitted from the public write contract. They remain skill-managed and internal-only.
10573
11087
  * @export
10574
11088
  * @interface TaskAgentCreate
10575
11089
  */
@@ -10814,6 +11328,75 @@ export declare const TaskAgentFileMetadataSourceEnum: {
10814
11328
  readonly Generated: "generated";
10815
11329
  };
10816
11330
  export type TaskAgentFileMetadataSourceEnum = typeof TaskAgentFileMetadataSourceEnum[keyof typeof TaskAgentFileMetadataSourceEnum];
11331
+ /**
11332
+ *
11333
+ * @export
11334
+ * @interface TaskAgentIAMMemberRoleUpdate
11335
+ */
11336
+ export interface TaskAgentIAMMemberRoleUpdate {
11337
+ /**
11338
+ * A list of task_agent 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.
11339
+ * @type {Array<string>}
11340
+ * @memberof TaskAgentIAMMemberRoleUpdate
11341
+ */
11342
+ 'add'?: Array<TaskAgentIAMMemberRoleUpdateAddEnum>;
11343
+ /**
11344
+ * A list of task_agent roles to revoke from the member.
11345
+ * @type {Array<string>}
11346
+ * @memberof TaskAgentIAMMemberRoleUpdate
11347
+ */
11348
+ 'remove'?: Array<TaskAgentIAMMemberRoleUpdateRemoveEnum>;
11349
+ /**
11350
+ * Removes all existing roles from the member. This may be combined with `add` to replace all existing roles that the member holds.
11351
+ * @type {boolean}
11352
+ * @memberof TaskAgentIAMMemberRoleUpdate
11353
+ */
11354
+ 'remove_all'?: boolean | null;
11355
+ }
11356
+ export declare const TaskAgentIAMMemberRoleUpdateAddEnum: {
11357
+ readonly Editor: "editor";
11358
+ readonly Owner: "owner";
11359
+ readonly Viewer: "viewer";
11360
+ };
11361
+ export type TaskAgentIAMMemberRoleUpdateAddEnum = typeof TaskAgentIAMMemberRoleUpdateAddEnum[keyof typeof TaskAgentIAMMemberRoleUpdateAddEnum];
11362
+ export declare const TaskAgentIAMMemberRoleUpdateRemoveEnum: {
11363
+ readonly Editor: "editor";
11364
+ readonly Owner: "owner";
11365
+ readonly Viewer: "viewer";
11366
+ };
11367
+ export type TaskAgentIAMMemberRoleUpdateRemoveEnum = typeof TaskAgentIAMMemberRoleUpdateRemoveEnum[keyof typeof TaskAgentIAMMemberRoleUpdateRemoveEnum];
11368
+ /**
11369
+ *
11370
+ * @export
11371
+ * @interface TaskAgentIAMPermissionTest
11372
+ */
11373
+ export interface TaskAgentIAMPermissionTest {
11374
+ /**
11375
+ * A list of permissions to test on the task_agent.
11376
+ * @type {Array<string>}
11377
+ * @memberof TaskAgentIAMPermissionTest
11378
+ */
11379
+ 'permissions': Array<TaskAgentIAMPermissionTestPermissionsEnum>;
11380
+ /**
11381
+ *
11382
+ * @type {string}
11383
+ * @memberof TaskAgentIAMPermissionTest
11384
+ */
11385
+ 'member'?: string | null;
11386
+ }
11387
+ export declare const TaskAgentIAMPermissionTestPermissionsEnum: {
11388
+ readonly AddEditor: "add_editor";
11389
+ readonly AddMember: "add_member";
11390
+ readonly AddOwner: "add_owner";
11391
+ readonly Edit: "edit";
11392
+ readonly RemoveEditor: "remove_editor";
11393
+ readonly RemoveMember: "remove_member";
11394
+ readonly RemoveOwner: "remove_owner";
11395
+ readonly Run: "run";
11396
+ readonly View: "view";
11397
+ readonly ViewMembers: "view_members";
11398
+ };
11399
+ export type TaskAgentIAMPermissionTestPermissionsEnum = typeof TaskAgentIAMPermissionTestPermissionsEnum[keyof typeof TaskAgentIAMPermissionTestPermissionsEnum];
10817
11400
  /**
10818
11401
  *
10819
11402
  * @export
@@ -10887,6 +11470,30 @@ export interface TaskAgentIntegrationRead {
10887
11470
  * @memberof TaskAgentIntegrationRead
10888
11471
  */
10889
11472
  'tool_count': number;
11473
+ /**
11474
+ *
11475
+ * @type {string}
11476
+ * @memberof TaskAgentIntegrationRead
11477
+ */
11478
+ 'provision_source': TaskAgentIntegrationReadProvisionSourceEnum;
11479
+ /**
11480
+ *
11481
+ * @type {string}
11482
+ * @memberof TaskAgentIntegrationRead
11483
+ */
11484
+ 'source_skill_id'?: string | null;
11485
+ /**
11486
+ *
11487
+ * @type {string}
11488
+ * @memberof TaskAgentIntegrationRead
11489
+ */
11490
+ 'source_skill_revision_id'?: string | null;
11491
+ /**
11492
+ *
11493
+ * @type {string}
11494
+ * @memberof TaskAgentIntegrationRead
11495
+ */
11496
+ 'source_capability_id'?: string | null;
10890
11497
  }
10891
11498
  export declare const TaskAgentIntegrationReadIntegrationTypeEnum: {
10892
11499
  readonly Sheets: "google_sheets";
@@ -10896,6 +11503,11 @@ export declare const TaskAgentIntegrationReadIntegrationTypeEnum: {
10896
11503
  readonly Gmail: "google_gmail";
10897
11504
  };
10898
11505
  export type TaskAgentIntegrationReadIntegrationTypeEnum = typeof TaskAgentIntegrationReadIntegrationTypeEnum[keyof typeof TaskAgentIntegrationReadIntegrationTypeEnum];
11506
+ export declare const TaskAgentIntegrationReadProvisionSourceEnum: {
11507
+ readonly Manual: "manual";
11508
+ readonly SkillCapability: "skill_capability";
11509
+ };
11510
+ export type TaskAgentIntegrationReadProvisionSourceEnum = typeof TaskAgentIntegrationReadProvisionSourceEnum[keyof typeof TaskAgentIntegrationReadProvisionSourceEnum];
10899
11511
  /**
10900
11512
  * MCP server to attach to a TaskAgent.
10901
11513
  * @export
@@ -10963,7 +11575,36 @@ export interface TaskAgentMcpServerRead {
10963
11575
  * @memberof TaskAgentMcpServerRead
10964
11576
  */
10965
11577
  'tool_count': number;
11578
+ /**
11579
+ *
11580
+ * @type {string}
11581
+ * @memberof TaskAgentMcpServerRead
11582
+ */
11583
+ 'provision_source': TaskAgentMcpServerReadProvisionSourceEnum;
11584
+ /**
11585
+ *
11586
+ * @type {string}
11587
+ * @memberof TaskAgentMcpServerRead
11588
+ */
11589
+ 'source_skill_id'?: string | null;
11590
+ /**
11591
+ *
11592
+ * @type {string}
11593
+ * @memberof TaskAgentMcpServerRead
11594
+ */
11595
+ 'source_skill_revision_id'?: string | null;
11596
+ /**
11597
+ *
11598
+ * @type {string}
11599
+ * @memberof TaskAgentMcpServerRead
11600
+ */
11601
+ 'source_capability_id'?: string | null;
10966
11602
  }
11603
+ export declare const TaskAgentMcpServerReadProvisionSourceEnum: {
11604
+ readonly Manual: "manual";
11605
+ readonly SkillCapability: "skill_capability";
11606
+ };
11607
+ export type TaskAgentMcpServerReadProvisionSourceEnum = typeof TaskAgentMcpServerReadProvisionSourceEnum[keyof typeof TaskAgentMcpServerReadProvisionSourceEnum];
10967
11608
  /**
10968
11609
  * Execution mode for TaskAgent.
10969
11610
  * @export
@@ -11046,6 +11687,12 @@ export interface TaskAgentRead {
11046
11687
  * @memberof TaskAgentRead
11047
11688
  */
11048
11689
  'mcp_servers'?: Array<TaskAgentMcpServerRead>;
11690
+ /**
11691
+ *
11692
+ * @type {Array<TaskAgentRegisteredToolRead>}
11693
+ * @memberof TaskAgentRead
11694
+ */
11695
+ 'registered_tools'?: Array<TaskAgentRegisteredToolRead>;
11049
11696
  /**
11050
11697
  *
11051
11698
  * @type {string}
@@ -11097,6 +11744,90 @@ export declare const TaskAgentReadTaskAgentRunVisibilityEnum: {
11097
11744
  readonly AllViewers: "all_viewers";
11098
11745
  };
11099
11746
  export type TaskAgentReadTaskAgentRunVisibilityEnum = typeof TaskAgentReadTaskAgentRunVisibilityEnum[keyof typeof TaskAgentReadTaskAgentRunVisibilityEnum];
11747
+ /**
11748
+ * Registered first-party tool association in a TaskAgent read response.
11749
+ * @export
11750
+ * @interface TaskAgentRegisteredToolRead
11751
+ */
11752
+ export interface TaskAgentRegisteredToolRead {
11753
+ /**
11754
+ *
11755
+ * @type {string}
11756
+ * @memberof TaskAgentRegisteredToolRead
11757
+ */
11758
+ 'id': string;
11759
+ /**
11760
+ *
11761
+ * @type {string}
11762
+ * @memberof TaskAgentRegisteredToolRead
11763
+ */
11764
+ 'registered_tool_key': string;
11765
+ /**
11766
+ * Pinned immutable runtime implementation version.
11767
+ * @type {string}
11768
+ * @memberof TaskAgentRegisteredToolRead
11769
+ */
11770
+ 'registered_tool_version': string;
11771
+ /**
11772
+ * Human-readable name of the registered first-party tool.
11773
+ * @type {string}
11774
+ * @memberof TaskAgentRegisteredToolRead
11775
+ */
11776
+ 'name': string;
11777
+ /**
11778
+ * Attachment order (0-indexed).
11779
+ * @type {number}
11780
+ * @memberof TaskAgentRegisteredToolRead
11781
+ */
11782
+ 'order': number;
11783
+ /**
11784
+ * Whether this registered tool is enabled.
11785
+ * @type {boolean}
11786
+ * @memberof TaskAgentRegisteredToolRead
11787
+ */
11788
+ 'enabled': boolean;
11789
+ /**
11790
+ * Concrete tool names reserved by this registered tool.
11791
+ * @type {Array<string>}
11792
+ * @memberof TaskAgentRegisteredToolRead
11793
+ */
11794
+ 'tool_names'?: Array<string>;
11795
+ /**
11796
+ * Optional description of the registered tool capability.
11797
+ * @type {string}
11798
+ * @memberof TaskAgentRegisteredToolRead
11799
+ */
11800
+ 'description'?: string | null;
11801
+ /**
11802
+ *
11803
+ * @type {string}
11804
+ * @memberof TaskAgentRegisteredToolRead
11805
+ */
11806
+ 'provision_source': TaskAgentRegisteredToolReadProvisionSourceEnum;
11807
+ /**
11808
+ *
11809
+ * @type {string}
11810
+ * @memberof TaskAgentRegisteredToolRead
11811
+ */
11812
+ 'source_skill_id'?: string | null;
11813
+ /**
11814
+ *
11815
+ * @type {string}
11816
+ * @memberof TaskAgentRegisteredToolRead
11817
+ */
11818
+ 'source_skill_revision_id'?: string | null;
11819
+ /**
11820
+ *
11821
+ * @type {string}
11822
+ * @memberof TaskAgentRegisteredToolRead
11823
+ */
11824
+ 'source_capability_id'?: string | null;
11825
+ }
11826
+ export declare const TaskAgentRegisteredToolReadProvisionSourceEnum: {
11827
+ readonly Manual: "manual";
11828
+ readonly SkillCapability: "skill_capability";
11829
+ };
11830
+ export type TaskAgentRegisteredToolReadProvisionSourceEnum = typeof TaskAgentRegisteredToolReadProvisionSourceEnum[keyof typeof TaskAgentRegisteredToolReadProvisionSourceEnum];
11100
11831
  /**
11101
11832
  * Response containing events for a TaskAgentRun.
11102
11833
  * @export
@@ -11419,7 +12150,7 @@ export interface TaskAgentSkillInput {
11419
12150
  */
11420
12151
  'skill_id': string;
11421
12152
  /**
11422
- * Pinned skill revision. None uses the skill\'s active revision at runtime.
12153
+ * Pinned skill revision. None is only valid for non-capability skills; skills with capabilities must be pinned to a concrete revision.
11423
12154
  * @type {string}
11424
12155
  * @memberof TaskAgentSkillInput
11425
12156
  */
@@ -11456,7 +12187,7 @@ export interface TaskAgentSkillRead {
11456
12187
  */
11457
12188
  'skill_display_name': string;
11458
12189
  /**
11459
- * Pinned revision ID, or None when the agent follows the active revision.
12190
+ * Pinned revision ID. None is only valid for non-capability skills; skills with capabilities must be pinned to a concrete revision.
11460
12191
  * @type {string}
11461
12192
  * @memberof TaskAgentSkillRead
11462
12193
  */
@@ -11641,7 +12372,7 @@ export interface TaskAgentTokenReport {
11641
12372
  'total_runs': number;
11642
12373
  }
11643
12374
  /**
11644
- * Schema for updating a TaskAgent.
12375
+ * Schema for updating a TaskAgent. ``registered_tools`` are intentionally omitted from the public write contract. They remain skill-managed and internal-only.
11645
12376
  * @export
11646
12377
  * @interface TaskAgentUpdate
11647
12378
  */
@@ -12294,6 +13025,18 @@ export interface TaskMcpServer {
12294
13025
  * @memberof TaskMcpServer
12295
13026
  */
12296
13027
  'id': string;
13028
+ /**
13029
+ *
13030
+ * @type {string}
13031
+ * @memberof TaskMcpServer
13032
+ */
13033
+ 'catalog_server_id'?: string | null;
13034
+ /**
13035
+ *
13036
+ * @type {string}
13037
+ * @memberof TaskMcpServer
13038
+ */
13039
+ 'catalog_server_slug'?: string | null;
12297
13040
  /**
12298
13041
  *
12299
13042
  * @type {string}
@@ -12369,6 +13112,74 @@ export declare const TaskMcpServerAuthStateReasonEnum: {
12369
13112
  readonly ServerUnreachable: "server_unreachable";
12370
13113
  };
12371
13114
  export type TaskMcpServerAuthStateReasonEnum = typeof TaskMcpServerAuthStateReasonEnum[keyof typeof TaskMcpServerAuthStateReasonEnum];
13115
+ /**
13116
+ *
13117
+ * @export
13118
+ * @interface TaskMcpServerCatalogRead
13119
+ */
13120
+ export interface TaskMcpServerCatalogRead {
13121
+ /**
13122
+ *
13123
+ * @type {string}
13124
+ * @memberof TaskMcpServerCatalogRead
13125
+ */
13126
+ 'id': string;
13127
+ /**
13128
+ *
13129
+ * @type {string}
13130
+ * @memberof TaskMcpServerCatalogRead
13131
+ */
13132
+ 'slug': string;
13133
+ /**
13134
+ *
13135
+ * @type {string}
13136
+ * @memberof TaskMcpServerCatalogRead
13137
+ */
13138
+ 'display_name': string;
13139
+ /**
13140
+ *
13141
+ * @type {string}
13142
+ * @memberof TaskMcpServerCatalogRead
13143
+ */
13144
+ 'description'?: string | null;
13145
+ /**
13146
+ *
13147
+ * @type {string}
13148
+ * @memberof TaskMcpServerCatalogRead
13149
+ */
13150
+ 'canonical_resource': string;
13151
+ /**
13152
+ *
13153
+ * @type {string}
13154
+ * @memberof TaskMcpServerCatalogRead
13155
+ */
13156
+ 'default_server_url': string;
13157
+ /**
13158
+ *
13159
+ * @type {TaskMcpTransport}
13160
+ * @memberof TaskMcpServerCatalogRead
13161
+ */
13162
+ 'default_transport': TaskMcpTransport;
13163
+ /**
13164
+ *
13165
+ * @type {string}
13166
+ * @memberof TaskMcpServerCatalogRead
13167
+ */
13168
+ 'auth_mode': TaskMcpServerCatalogReadAuthModeEnum;
13169
+ /**
13170
+ *
13171
+ * @type {boolean}
13172
+ * @memberof TaskMcpServerCatalogRead
13173
+ */
13174
+ 'enabled': boolean;
13175
+ }
13176
+ export declare const TaskMcpServerCatalogReadAuthModeEnum: {
13177
+ readonly None: "none";
13178
+ readonly Oauth: "oauth";
13179
+ readonly ApiKey: "api_key";
13180
+ readonly OauthOrApiKey: "oauth_or_api_key";
13181
+ };
13182
+ export type TaskMcpServerCatalogReadAuthModeEnum = typeof TaskMcpServerCatalogReadAuthModeEnum[keyof typeof TaskMcpServerCatalogReadAuthModeEnum];
12372
13183
  /**
12373
13184
  *
12374
13185
  * @export
@@ -15436,8 +16247,8 @@ export declare const AuditEventsApiAxiosParamCreator: (configuration?: Configura
15436
16247
  /**
15437
16248
  * Export project audit events as NDJSON. Each line is a full audit event detail record, including the decrypted payload.
15438
16249
  * @summary Export Project Audit Events
15439
- * @param {string} orgId The unique identifier of the organization.
15440
- * @param {string} projectId The unique identifier of the project.
16250
+ * @param {string} orgId The organization ID
16251
+ * @param {string} projectId The project ID
15441
16252
  * @param {Array<string> | null} [eventType] Filter by one or more audit event types.
15442
16253
  * @param {string | null} [actorUserId] Filter by the acting user.
15443
16254
  * @param {string | null} [resourceType] Filter by resource type.
@@ -15452,8 +16263,8 @@ export declare const AuditEventsApiAxiosParamCreator: (configuration?: Configura
15452
16263
  * Retrieve a single audit event for the project. The detail response includes the decrypted payload captured for the event.
15453
16264
  * @summary Get Project Audit Event
15454
16265
  * @param {string} auditEventId
15455
- * @param {string} orgId The unique identifier of the organization.
15456
- * @param {string} projectId The unique identifier of the project.
16266
+ * @param {string} orgId The organization ID
16267
+ * @param {string} projectId The project ID
15457
16268
  * @param {*} [options] Override http request option.
15458
16269
  * @throws {RequiredError}
15459
16270
  */
@@ -15461,8 +16272,8 @@ export declare const AuditEventsApiAxiosParamCreator: (configuration?: Configura
15461
16272
  /**
15462
16273
  * List immutable audit events recorded for a project. Results are ordered by `occurred_at` descending, then `id` descending. The `cursor` parameter is an opaque pagination token and must be treated as an unreadable value by clients. Use the filters to narrow the feed by event type, actor, or resource identifiers.
15463
16274
  * @summary List Project Audit Events
15464
- * @param {string} orgId The unique identifier of the organization.
15465
- * @param {string} projectId The unique identifier of the project.
16275
+ * @param {string} orgId The organization ID
16276
+ * @param {string} projectId The project ID
15466
16277
  * @param {string | null} [cursor] A cursor for pagination. Use the &#x60;next_cursor&#x60; value from the previous response to get the next page of results.
15467
16278
  * @param {number} [pageLimit] The maximum number of items to return per page. Defaults to &#x60;100&#x60; if not specified.
15468
16279
  * @param {Array<string> | null} [eventType] Filter by one or more audit event types.
@@ -15484,8 +16295,8 @@ export declare const AuditEventsApiFp: (configuration?: Configuration) => {
15484
16295
  /**
15485
16296
  * Export project audit events as NDJSON. Each line is a full audit event detail record, including the decrypted payload.
15486
16297
  * @summary Export Project Audit Events
15487
- * @param {string} orgId The unique identifier of the organization.
15488
- * @param {string} projectId The unique identifier of the project.
16298
+ * @param {string} orgId The organization ID
16299
+ * @param {string} projectId The project ID
15489
16300
  * @param {Array<string> | null} [eventType] Filter by one or more audit event types.
15490
16301
  * @param {string | null} [actorUserId] Filter by the acting user.
15491
16302
  * @param {string | null} [resourceType] Filter by resource type.
@@ -15500,8 +16311,8 @@ export declare const AuditEventsApiFp: (configuration?: Configuration) => {
15500
16311
  * Retrieve a single audit event for the project. The detail response includes the decrypted payload captured for the event.
15501
16312
  * @summary Get Project Audit Event
15502
16313
  * @param {string} auditEventId
15503
- * @param {string} orgId The unique identifier of the organization.
15504
- * @param {string} projectId The unique identifier of the project.
16314
+ * @param {string} orgId The organization ID
16315
+ * @param {string} projectId The project ID
15505
16316
  * @param {*} [options] Override http request option.
15506
16317
  * @throws {RequiredError}
15507
16318
  */
@@ -15509,8 +16320,8 @@ export declare const AuditEventsApiFp: (configuration?: Configuration) => {
15509
16320
  /**
15510
16321
  * List immutable audit events recorded for a project. Results are ordered by `occurred_at` descending, then `id` descending. The `cursor` parameter is an opaque pagination token and must be treated as an unreadable value by clients. Use the filters to narrow the feed by event type, actor, or resource identifiers.
15511
16322
  * @summary List Project Audit Events
15512
- * @param {string} orgId The unique identifier of the organization.
15513
- * @param {string} projectId The unique identifier of the project.
16323
+ * @param {string} orgId The organization ID
16324
+ * @param {string} projectId The project ID
15514
16325
  * @param {string | null} [cursor] A cursor for pagination. Use the &#x60;next_cursor&#x60; value from the previous response to get the next page of results.
15515
16326
  * @param {number} [pageLimit] The maximum number of items to return per page. Defaults to &#x60;100&#x60; if not specified.
15516
16327
  * @param {Array<string> | null} [eventType] Filter by one or more audit event types.
@@ -15532,8 +16343,8 @@ export declare const AuditEventsApiFactory: (configuration?: Configuration, base
15532
16343
  /**
15533
16344
  * Export project audit events as NDJSON. Each line is a full audit event detail record, including the decrypted payload.
15534
16345
  * @summary Export Project Audit Events
15535
- * @param {string} orgId The unique identifier of the organization.
15536
- * @param {string} projectId The unique identifier of the project.
16346
+ * @param {string} orgId The organization ID
16347
+ * @param {string} projectId The project ID
15537
16348
  * @param {Array<string> | null} [eventType] Filter by one or more audit event types.
15538
16349
  * @param {string | null} [actorUserId] Filter by the acting user.
15539
16350
  * @param {string | null} [resourceType] Filter by resource type.
@@ -15548,8 +16359,8 @@ export declare const AuditEventsApiFactory: (configuration?: Configuration, base
15548
16359
  * Retrieve a single audit event for the project. The detail response includes the decrypted payload captured for the event.
15549
16360
  * @summary Get Project Audit Event
15550
16361
  * @param {string} auditEventId
15551
- * @param {string} orgId The unique identifier of the organization.
15552
- * @param {string} projectId The unique identifier of the project.
16362
+ * @param {string} orgId The organization ID
16363
+ * @param {string} projectId The project ID
15553
16364
  * @param {*} [options] Override http request option.
15554
16365
  * @throws {RequiredError}
15555
16366
  */
@@ -15557,8 +16368,8 @@ export declare const AuditEventsApiFactory: (configuration?: Configuration, base
15557
16368
  /**
15558
16369
  * List immutable audit events recorded for a project. Results are ordered by `occurred_at` descending, then `id` descending. The `cursor` parameter is an opaque pagination token and must be treated as an unreadable value by clients. Use the filters to narrow the feed by event type, actor, or resource identifiers.
15559
16370
  * @summary List Project Audit Events
15560
- * @param {string} orgId The unique identifier of the organization.
15561
- * @param {string} projectId The unique identifier of the project.
16371
+ * @param {string} orgId The organization ID
16372
+ * @param {string} projectId The project ID
15562
16373
  * @param {string | null} [cursor] A cursor for pagination. Use the &#x60;next_cursor&#x60; value from the previous response to get the next page of results.
15563
16374
  * @param {number} [pageLimit] The maximum number of items to return per page. Defaults to &#x60;100&#x60; if not specified.
15564
16375
  * @param {Array<string> | null} [eventType] Filter by one or more audit event types.
@@ -15582,8 +16393,8 @@ export declare class AuditEventsApi extends BaseAPI {
15582
16393
  /**
15583
16394
  * Export project audit events as NDJSON. Each line is a full audit event detail record, including the decrypted payload.
15584
16395
  * @summary Export Project Audit Events
15585
- * @param {string} orgId The unique identifier of the organization.
15586
- * @param {string} projectId The unique identifier of the project.
16396
+ * @param {string} orgId The organization ID
16397
+ * @param {string} projectId The project ID
15587
16398
  * @param {Array<string> | null} [eventType] Filter by one or more audit event types.
15588
16399
  * @param {string | null} [actorUserId] Filter by the acting user.
15589
16400
  * @param {string | null} [resourceType] Filter by resource type.
@@ -15599,8 +16410,8 @@ export declare class AuditEventsApi extends BaseAPI {
15599
16410
  * Retrieve a single audit event for the project. The detail response includes the decrypted payload captured for the event.
15600
16411
  * @summary Get Project Audit Event
15601
16412
  * @param {string} auditEventId
15602
- * @param {string} orgId The unique identifier of the organization.
15603
- * @param {string} projectId The unique identifier of the project.
16413
+ * @param {string} orgId The organization ID
16414
+ * @param {string} projectId The project ID
15604
16415
  * @param {*} [options] Override http request option.
15605
16416
  * @throws {RequiredError}
15606
16417
  * @memberof AuditEventsApi
@@ -15609,8 +16420,8 @@ export declare class AuditEventsApi extends BaseAPI {
15609
16420
  /**
15610
16421
  * List immutable audit events recorded for a project. Results are ordered by `occurred_at` descending, then `id` descending. The `cursor` parameter is an opaque pagination token and must be treated as an unreadable value by clients. Use the filters to narrow the feed by event type, actor, or resource identifiers.
15611
16422
  * @summary List Project Audit Events
15612
- * @param {string} orgId The unique identifier of the organization.
15613
- * @param {string} projectId The unique identifier of the project.
16423
+ * @param {string} orgId The organization ID
16424
+ * @param {string} projectId The project ID
15614
16425
  * @param {string | null} [cursor] A cursor for pagination. Use the &#x60;next_cursor&#x60; value from the previous response to get the next page of results.
15615
16426
  * @param {number} [pageLimit] The maximum number of items to return per page. Defaults to &#x60;100&#x60; if not specified.
15616
16427
  * @param {Array<string> | null} [eventType] Filter by one or more audit event types.
@@ -18378,6 +19189,51 @@ export declare const IntegrationsApiAxiosParamCreator: (configuration?: Configur
18378
19189
  * @throws {RequiredError}
18379
19190
  */
18380
19191
  listIntegrations: (orgId: string, projectId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19192
+ /**
19193
+ * Retrieve a specific member that has been granted direct access to the project_integration.
19194
+ * @summary IAM - Lookup Project Integration Member
19195
+ * @param {string} integrationId
19196
+ * @param {string} member
19197
+ * @param {string} orgId The org id
19198
+ * @param {string} projectId The project id
19199
+ * @param {*} [options] Override http request option.
19200
+ * @throws {RequiredError}
19201
+ */
19202
+ projectIntegrationIamOrgOrgIdProjectProjectIdIntegrationIntegrationIdIamGetMember: (integrationId: string, member: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19203
+ /**
19204
+ * Lists all members that have been granted direct access to the project_integration.
19205
+ * @summary IAM - List Project Integration Members
19206
+ * @param {string} integrationId
19207
+ * @param {string} orgId The org id
19208
+ * @param {string} projectId The project id
19209
+ * @param {ProjectIntegrationIamOrgOrgIdProjectProjectIdIntegrationIntegrationIdIamListMembersTypeEnum} [type]
19210
+ * @param {*} [options] Override http request option.
19211
+ * @throws {RequiredError}
19212
+ */
19213
+ projectIntegrationIamOrgOrgIdProjectProjectIdIntegrationIntegrationIdIamListMembers: (integrationId: string, orgId: string, projectId: string, type?: ProjectIntegrationIamOrgOrgIdProjectProjectIdIntegrationIntegrationIdIamListMembersTypeEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19214
+ /**
19215
+ * Test the permissions that the caller (or another subject) holds on the project_integration.
19216
+ * @summary IAM - Test Project Integration Permissions
19217
+ * @param {string} integrationId
19218
+ * @param {string} orgId The org id
19219
+ * @param {string} projectId The project id
19220
+ * @param {ProjectIntegrationIAMPermissionTest} projectIntegrationIAMPermissionTest
19221
+ * @param {*} [options] Override http request option.
19222
+ * @throws {RequiredError}
19223
+ */
19224
+ projectIntegrationIamOrgOrgIdProjectProjectIdIntegrationIntegrationIdIamTestPermissions: (integrationId: string, orgId: string, projectId: string, projectIntegrationIAMPermissionTest: ProjectIntegrationIAMPermissionTest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19225
+ /**
19226
+ * Update the roles that a member holds on the project_integration.
19227
+ * @summary IAM - Update Project Integration Member
19228
+ * @param {string} integrationId
19229
+ * @param {string} member
19230
+ * @param {string} orgId The org id
19231
+ * @param {string} projectId The project id
19232
+ * @param {ProjectIntegrationIAMMemberRoleUpdate} projectIntegrationIAMMemberRoleUpdate
19233
+ * @param {*} [options] Override http request option.
19234
+ * @throws {RequiredError}
19235
+ */
19236
+ projectIntegrationIamOrgOrgIdProjectProjectIdIntegrationIntegrationIdIamUpdateMemberRoles: (integrationId: string, member: string, orgId: string, projectId: string, projectIntegrationIAMMemberRoleUpdate: ProjectIntegrationIAMMemberRoleUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
18381
19237
  };
18382
19238
  /**
18383
19239
  * IntegrationsApi - functional programming interface
@@ -18472,6 +19328,51 @@ export declare const IntegrationsApiFp: (configuration?: Configuration) => {
18472
19328
  * @throws {RequiredError}
18473
19329
  */
18474
19330
  listIntegrations(orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ProjectIntegrationRead>>>;
19331
+ /**
19332
+ * Retrieve a specific member that has been granted direct access to the project_integration.
19333
+ * @summary IAM - Lookup Project Integration Member
19334
+ * @param {string} integrationId
19335
+ * @param {string} member
19336
+ * @param {string} orgId The org id
19337
+ * @param {string} projectId The project id
19338
+ * @param {*} [options] Override http request option.
19339
+ * @throws {RequiredError}
19340
+ */
19341
+ projectIntegrationIamOrgOrgIdProjectProjectIdIntegrationIntegrationIdIamGetMember(integrationId: string, member: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IAMMember>>;
19342
+ /**
19343
+ * Lists all members that have been granted direct access to the project_integration.
19344
+ * @summary IAM - List Project Integration Members
19345
+ * @param {string} integrationId
19346
+ * @param {string} orgId The org id
19347
+ * @param {string} projectId The project id
19348
+ * @param {ProjectIntegrationIamOrgOrgIdProjectProjectIdIntegrationIntegrationIdIamListMembersTypeEnum} [type]
19349
+ * @param {*} [options] Override http request option.
19350
+ * @throws {RequiredError}
19351
+ */
19352
+ projectIntegrationIamOrgOrgIdProjectProjectIdIntegrationIntegrationIdIamListMembers(integrationId: string, orgId: string, projectId: string, type?: ProjectIntegrationIamOrgOrgIdProjectProjectIdIntegrationIntegrationIdIamListMembersTypeEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResultSetIAMMember>>;
19353
+ /**
19354
+ * Test the permissions that the caller (or another subject) holds on the project_integration.
19355
+ * @summary IAM - Test Project Integration Permissions
19356
+ * @param {string} integrationId
19357
+ * @param {string} orgId The org id
19358
+ * @param {string} projectId The project id
19359
+ * @param {ProjectIntegrationIAMPermissionTest} projectIntegrationIAMPermissionTest
19360
+ * @param {*} [options] Override http request option.
19361
+ * @throws {RequiredError}
19362
+ */
19363
+ projectIntegrationIamOrgOrgIdProjectProjectIdIntegrationIntegrationIdIamTestPermissions(integrationId: string, orgId: string, projectId: string, projectIntegrationIAMPermissionTest: ProjectIntegrationIAMPermissionTest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IAMPermissionTest>>;
19364
+ /**
19365
+ * Update the roles that a member holds on the project_integration.
19366
+ * @summary IAM - Update Project Integration Member
19367
+ * @param {string} integrationId
19368
+ * @param {string} member
19369
+ * @param {string} orgId The org id
19370
+ * @param {string} projectId The project id
19371
+ * @param {ProjectIntegrationIAMMemberRoleUpdate} projectIntegrationIAMMemberRoleUpdate
19372
+ * @param {*} [options] Override http request option.
19373
+ * @throws {RequiredError}
19374
+ */
19375
+ projectIntegrationIamOrgOrgIdProjectProjectIdIntegrationIntegrationIdIamUpdateMemberRoles(integrationId: string, member: string, orgId: string, projectId: string, projectIntegrationIAMMemberRoleUpdate: ProjectIntegrationIAMMemberRoleUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IAMMember>>;
18475
19376
  };
18476
19377
  /**
18477
19378
  * IntegrationsApi - factory interface
@@ -18565,7 +19466,52 @@ export declare const IntegrationsApiFactory: (configuration?: Configuration, bas
18565
19466
  * @param {*} [options] Override http request option.
18566
19467
  * @throws {RequiredError}
18567
19468
  */
18568
- listIntegrations(orgId: string, projectId: string, options?: any): AxiosPromise<Array<ProjectIntegrationRead>>;
19469
+ listIntegrations(orgId: string, projectId: string, options?: any): AxiosPromise<Array<ProjectIntegrationRead>>;
19470
+ /**
19471
+ * Retrieve a specific member that has been granted direct access to the project_integration.
19472
+ * @summary IAM - Lookup Project Integration Member
19473
+ * @param {string} integrationId
19474
+ * @param {string} member
19475
+ * @param {string} orgId The org id
19476
+ * @param {string} projectId The project id
19477
+ * @param {*} [options] Override http request option.
19478
+ * @throws {RequiredError}
19479
+ */
19480
+ projectIntegrationIamOrgOrgIdProjectProjectIdIntegrationIntegrationIdIamGetMember(integrationId: string, member: string, orgId: string, projectId: string, options?: any): AxiosPromise<IAMMember>;
19481
+ /**
19482
+ * Lists all members that have been granted direct access to the project_integration.
19483
+ * @summary IAM - List Project Integration Members
19484
+ * @param {string} integrationId
19485
+ * @param {string} orgId The org id
19486
+ * @param {string} projectId The project id
19487
+ * @param {ProjectIntegrationIamOrgOrgIdProjectProjectIdIntegrationIntegrationIdIamListMembersTypeEnum} [type]
19488
+ * @param {*} [options] Override http request option.
19489
+ * @throws {RequiredError}
19490
+ */
19491
+ projectIntegrationIamOrgOrgIdProjectProjectIdIntegrationIntegrationIdIamListMembers(integrationId: string, orgId: string, projectId: string, type?: ProjectIntegrationIamOrgOrgIdProjectProjectIdIntegrationIntegrationIdIamListMembersTypeEnum, options?: any): AxiosPromise<PaginatedResultSetIAMMember>;
19492
+ /**
19493
+ * Test the permissions that the caller (or another subject) holds on the project_integration.
19494
+ * @summary IAM - Test Project Integration Permissions
19495
+ * @param {string} integrationId
19496
+ * @param {string} orgId The org id
19497
+ * @param {string} projectId The project id
19498
+ * @param {ProjectIntegrationIAMPermissionTest} projectIntegrationIAMPermissionTest
19499
+ * @param {*} [options] Override http request option.
19500
+ * @throws {RequiredError}
19501
+ */
19502
+ projectIntegrationIamOrgOrgIdProjectProjectIdIntegrationIntegrationIdIamTestPermissions(integrationId: string, orgId: string, projectId: string, projectIntegrationIAMPermissionTest: ProjectIntegrationIAMPermissionTest, options?: any): AxiosPromise<IAMPermissionTest>;
19503
+ /**
19504
+ * Update the roles that a member holds on the project_integration.
19505
+ * @summary IAM - Update Project Integration Member
19506
+ * @param {string} integrationId
19507
+ * @param {string} member
19508
+ * @param {string} orgId The org id
19509
+ * @param {string} projectId The project id
19510
+ * @param {ProjectIntegrationIAMMemberRoleUpdate} projectIntegrationIAMMemberRoleUpdate
19511
+ * @param {*} [options] Override http request option.
19512
+ * @throws {RequiredError}
19513
+ */
19514
+ projectIntegrationIamOrgOrgIdProjectProjectIdIntegrationIntegrationIdIamUpdateMemberRoles(integrationId: string, member: string, orgId: string, projectId: string, projectIntegrationIAMMemberRoleUpdate: ProjectIntegrationIAMMemberRoleUpdate, options?: any): AxiosPromise<IAMMember>;
18569
19515
  };
18570
19516
  /**
18571
19517
  * IntegrationsApi - object-oriented interface
@@ -18671,7 +19617,65 @@ export declare class IntegrationsApi extends BaseAPI {
18671
19617
  * @memberof IntegrationsApi
18672
19618
  */
18673
19619
  listIntegrations(orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectIntegrationRead[], any, {}>>;
19620
+ /**
19621
+ * Retrieve a specific member that has been granted direct access to the project_integration.
19622
+ * @summary IAM - Lookup Project Integration Member
19623
+ * @param {string} integrationId
19624
+ * @param {string} member
19625
+ * @param {string} orgId The org id
19626
+ * @param {string} projectId The project id
19627
+ * @param {*} [options] Override http request option.
19628
+ * @throws {RequiredError}
19629
+ * @memberof IntegrationsApi
19630
+ */
19631
+ projectIntegrationIamOrgOrgIdProjectProjectIdIntegrationIntegrationIdIamGetMember(integrationId: string, member: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IAMMember, any, {}>>;
19632
+ /**
19633
+ * Lists all members that have been granted direct access to the project_integration.
19634
+ * @summary IAM - List Project Integration Members
19635
+ * @param {string} integrationId
19636
+ * @param {string} orgId The org id
19637
+ * @param {string} projectId The project id
19638
+ * @param {ProjectIntegrationIamOrgOrgIdProjectProjectIdIntegrationIntegrationIdIamListMembersTypeEnum} [type]
19639
+ * @param {*} [options] Override http request option.
19640
+ * @throws {RequiredError}
19641
+ * @memberof IntegrationsApi
19642
+ */
19643
+ projectIntegrationIamOrgOrgIdProjectProjectIdIntegrationIntegrationIdIamListMembers(integrationId: string, orgId: string, projectId: string, type?: ProjectIntegrationIamOrgOrgIdProjectProjectIdIntegrationIntegrationIdIamListMembersTypeEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedResultSetIAMMember, any, {}>>;
19644
+ /**
19645
+ * Test the permissions that the caller (or another subject) holds on the project_integration.
19646
+ * @summary IAM - Test Project Integration Permissions
19647
+ * @param {string} integrationId
19648
+ * @param {string} orgId The org id
19649
+ * @param {string} projectId The project id
19650
+ * @param {ProjectIntegrationIAMPermissionTest} projectIntegrationIAMPermissionTest
19651
+ * @param {*} [options] Override http request option.
19652
+ * @throws {RequiredError}
19653
+ * @memberof IntegrationsApi
19654
+ */
19655
+ projectIntegrationIamOrgOrgIdProjectProjectIdIntegrationIntegrationIdIamTestPermissions(integrationId: string, orgId: string, projectId: string, projectIntegrationIAMPermissionTest: ProjectIntegrationIAMPermissionTest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IAMPermissionTest, any, {}>>;
19656
+ /**
19657
+ * Update the roles that a member holds on the project_integration.
19658
+ * @summary IAM - Update Project Integration Member
19659
+ * @param {string} integrationId
19660
+ * @param {string} member
19661
+ * @param {string} orgId The org id
19662
+ * @param {string} projectId The project id
19663
+ * @param {ProjectIntegrationIAMMemberRoleUpdate} projectIntegrationIAMMemberRoleUpdate
19664
+ * @param {*} [options] Override http request option.
19665
+ * @throws {RequiredError}
19666
+ * @memberof IntegrationsApi
19667
+ */
19668
+ projectIntegrationIamOrgOrgIdProjectProjectIdIntegrationIntegrationIdIamUpdateMemberRoles(integrationId: string, member: string, orgId: string, projectId: string, projectIntegrationIAMMemberRoleUpdate: ProjectIntegrationIAMMemberRoleUpdate, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IAMMember, any, {}>>;
18674
19669
  }
19670
+ /**
19671
+ * @export
19672
+ */
19673
+ export declare const ProjectIntegrationIamOrgOrgIdProjectProjectIdIntegrationIntegrationIdIamListMembersTypeEnum: {
19674
+ readonly User: "user";
19675
+ readonly Organization: "organization";
19676
+ readonly Project: "project";
19677
+ };
19678
+ export type ProjectIntegrationIamOrgOrgIdProjectProjectIdIntegrationIntegrationIdIamListMembersTypeEnum = typeof ProjectIntegrationIamOrgOrgIdProjectProjectIdIntegrationIntegrationIdIamListMembersTypeEnum[keyof typeof ProjectIntegrationIamOrgOrgIdProjectProjectIdIntegrationIntegrationIdIamListMembersTypeEnum];
18675
19679
  /**
18676
19680
  * InternalApi - axios parameter creator
18677
19681
  * @export
@@ -25053,8 +26057,8 @@ export declare const TaskAgentsApiAxiosParamCreator: (configuration?: Configurat
25053
26057
  /**
25054
26058
  * Create a new Task Agent for the project. Task Agents orchestrate multiple Tasks as task tools using LLM-powered reasoning. Configure: - System instruction (prompt) - LLM model for reasoning - Initial task tools (Tasks to add) - Optional MCP server bindings - Execution mode (agentic/sequential)
25055
26059
  * @summary Create Task Agent
25056
- * @param {string} orgId The unique identifier of the organization.
25057
- * @param {string} projectId The unique identifier of the project.
26060
+ * @param {string} orgId The organization ID
26061
+ * @param {string} projectId The project ID
25058
26062
  * @param {TaskAgentCreate} taskAgentCreate
25059
26063
  * @param {*} [options] Override http request option.
25060
26064
  * @throws {RequiredError}
@@ -25240,12 +26244,57 @@ export declare const TaskAgentsApiAxiosParamCreator: (configuration?: Configurat
25240
26244
  * @throws {RequiredError}
25241
26245
  */
25242
26246
  runTaskAgent: (orgId: string, projectId: string, taskAgentId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
26247
+ /**
26248
+ * Retrieve a specific member that has been granted direct access to the task_agent.
26249
+ * @summary IAM - Lookup Task Agent Member
26250
+ * @param {string} taskAgentId
26251
+ * @param {string} member
26252
+ * @param {string} orgId The org id
26253
+ * @param {string} projectId The project id
26254
+ * @param {*} [options] Override http request option.
26255
+ * @throws {RequiredError}
26256
+ */
26257
+ taskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamGetMember: (taskAgentId: string, member: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
26258
+ /**
26259
+ * Lists all members that have been granted direct access to the task_agent.
26260
+ * @summary IAM - List Task Agent Members
26261
+ * @param {string} taskAgentId
26262
+ * @param {string} orgId The org id
26263
+ * @param {string} projectId The project id
26264
+ * @param {TaskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamListMembersTypeEnum} [type]
26265
+ * @param {*} [options] Override http request option.
26266
+ * @throws {RequiredError}
26267
+ */
26268
+ taskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamListMembers: (taskAgentId: string, orgId: string, projectId: string, type?: TaskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamListMembersTypeEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
26269
+ /**
26270
+ * Test the permissions that the caller (or another subject) holds on the task_agent.
26271
+ * @summary IAM - Test Task Agent Permissions
26272
+ * @param {string} taskAgentId
26273
+ * @param {string} orgId The org id
26274
+ * @param {string} projectId The project id
26275
+ * @param {TaskAgentIAMPermissionTest} taskAgentIAMPermissionTest
26276
+ * @param {*} [options] Override http request option.
26277
+ * @throws {RequiredError}
26278
+ */
26279
+ taskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamTestPermissions: (taskAgentId: string, orgId: string, projectId: string, taskAgentIAMPermissionTest: TaskAgentIAMPermissionTest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
26280
+ /**
26281
+ * Update the roles that a member holds on the task_agent.
26282
+ * @summary IAM - Update Task Agent Member
26283
+ * @param {string} taskAgentId
26284
+ * @param {string} member
26285
+ * @param {string} orgId The org id
26286
+ * @param {string} projectId The project id
26287
+ * @param {TaskAgentIAMMemberRoleUpdate} taskAgentIAMMemberRoleUpdate
26288
+ * @param {*} [options] Override http request option.
26289
+ * @throws {RequiredError}
26290
+ */
26291
+ taskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamUpdateMemberRoles: (taskAgentId: string, member: string, orgId: string, projectId: string, taskAgentIAMMemberRoleUpdate: TaskAgentIAMMemberRoleUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25243
26292
  /**
25244
26293
  * Update Task Agent configuration. Modifiable fields: - Name and description - System instruction - LLM model - Execution mode - Task tools (full replacement) - MCP servers (full replacement) To update task tools, pass a `task_tools` array. This performs a full replacement: - Omit the field to leave task tools unchanged - Pass an empty array to remove all task tools - Pass a new array to replace all task tools (array order = execution order)
25245
26294
  * @summary Update Task Agent
25246
- * @param {string} orgId The unique identifier of the organization.
25247
- * @param {string} projectId The unique identifier of the project.
25248
- * @param {string} taskAgentId The specific Task Agent to reference.
26295
+ * @param {string} orgId The organization ID
26296
+ * @param {string} projectId The project ID
26297
+ * @param {string} taskAgentId The task agent ID
25249
26298
  * @param {TaskAgentUpdate} taskAgentUpdate
25250
26299
  * @param {*} [options] Override http request option.
25251
26300
  * @throws {RequiredError}
@@ -25260,8 +26309,8 @@ export declare const TaskAgentsApiFp: (configuration?: Configuration) => {
25260
26309
  /**
25261
26310
  * Create a new Task Agent for the project. Task Agents orchestrate multiple Tasks as task tools using LLM-powered reasoning. Configure: - System instruction (prompt) - LLM model for reasoning - Initial task tools (Tasks to add) - Optional MCP server bindings - Execution mode (agentic/sequential)
25262
26311
  * @summary Create Task Agent
25263
- * @param {string} orgId The unique identifier of the organization.
25264
- * @param {string} projectId The unique identifier of the project.
26312
+ * @param {string} orgId The organization ID
26313
+ * @param {string} projectId The project ID
25265
26314
  * @param {TaskAgentCreate} taskAgentCreate
25266
26315
  * @param {*} [options] Override http request option.
25267
26316
  * @throws {RequiredError}
@@ -25447,12 +26496,57 @@ export declare const TaskAgentsApiFp: (configuration?: Configuration) => {
25447
26496
  * @throws {RequiredError}
25448
26497
  */
25449
26498
  runTaskAgent(orgId: string, projectId: string, taskAgentId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<any>>;
26499
+ /**
26500
+ * Retrieve a specific member that has been granted direct access to the task_agent.
26501
+ * @summary IAM - Lookup Task Agent Member
26502
+ * @param {string} taskAgentId
26503
+ * @param {string} member
26504
+ * @param {string} orgId The org id
26505
+ * @param {string} projectId The project id
26506
+ * @param {*} [options] Override http request option.
26507
+ * @throws {RequiredError}
26508
+ */
26509
+ taskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamGetMember(taskAgentId: string, member: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IAMMember>>;
26510
+ /**
26511
+ * Lists all members that have been granted direct access to the task_agent.
26512
+ * @summary IAM - List Task Agent Members
26513
+ * @param {string} taskAgentId
26514
+ * @param {string} orgId The org id
26515
+ * @param {string} projectId The project id
26516
+ * @param {TaskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamListMembersTypeEnum} [type]
26517
+ * @param {*} [options] Override http request option.
26518
+ * @throws {RequiredError}
26519
+ */
26520
+ taskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamListMembers(taskAgentId: string, orgId: string, projectId: string, type?: TaskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamListMembersTypeEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResultSetIAMMember>>;
26521
+ /**
26522
+ * Test the permissions that the caller (or another subject) holds on the task_agent.
26523
+ * @summary IAM - Test Task Agent Permissions
26524
+ * @param {string} taskAgentId
26525
+ * @param {string} orgId The org id
26526
+ * @param {string} projectId The project id
26527
+ * @param {TaskAgentIAMPermissionTest} taskAgentIAMPermissionTest
26528
+ * @param {*} [options] Override http request option.
26529
+ * @throws {RequiredError}
26530
+ */
26531
+ taskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamTestPermissions(taskAgentId: string, orgId: string, projectId: string, taskAgentIAMPermissionTest: TaskAgentIAMPermissionTest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IAMPermissionTest>>;
26532
+ /**
26533
+ * Update the roles that a member holds on the task_agent.
26534
+ * @summary IAM - Update Task Agent Member
26535
+ * @param {string} taskAgentId
26536
+ * @param {string} member
26537
+ * @param {string} orgId The org id
26538
+ * @param {string} projectId The project id
26539
+ * @param {TaskAgentIAMMemberRoleUpdate} taskAgentIAMMemberRoleUpdate
26540
+ * @param {*} [options] Override http request option.
26541
+ * @throws {RequiredError}
26542
+ */
26543
+ taskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamUpdateMemberRoles(taskAgentId: string, member: string, orgId: string, projectId: string, taskAgentIAMMemberRoleUpdate: TaskAgentIAMMemberRoleUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IAMMember>>;
25450
26544
  /**
25451
26545
  * Update Task Agent configuration. Modifiable fields: - Name and description - System instruction - LLM model - Execution mode - Task tools (full replacement) - MCP servers (full replacement) To update task tools, pass a `task_tools` array. This performs a full replacement: - Omit the field to leave task tools unchanged - Pass an empty array to remove all task tools - Pass a new array to replace all task tools (array order = execution order)
25452
26546
  * @summary Update Task Agent
25453
- * @param {string} orgId The unique identifier of the organization.
25454
- * @param {string} projectId The unique identifier of the project.
25455
- * @param {string} taskAgentId The specific Task Agent to reference.
26547
+ * @param {string} orgId The organization ID
26548
+ * @param {string} projectId The project ID
26549
+ * @param {string} taskAgentId The task agent ID
25456
26550
  * @param {TaskAgentUpdate} taskAgentUpdate
25457
26551
  * @param {*} [options] Override http request option.
25458
26552
  * @throws {RequiredError}
@@ -25467,8 +26561,8 @@ export declare const TaskAgentsApiFactory: (configuration?: Configuration, baseP
25467
26561
  /**
25468
26562
  * Create a new Task Agent for the project. Task Agents orchestrate multiple Tasks as task tools using LLM-powered reasoning. Configure: - System instruction (prompt) - LLM model for reasoning - Initial task tools (Tasks to add) - Optional MCP server bindings - Execution mode (agentic/sequential)
25469
26563
  * @summary Create Task Agent
25470
- * @param {string} orgId The unique identifier of the organization.
25471
- * @param {string} projectId The unique identifier of the project.
26564
+ * @param {string} orgId The organization ID
26565
+ * @param {string} projectId The project ID
25472
26566
  * @param {TaskAgentCreate} taskAgentCreate
25473
26567
  * @param {*} [options] Override http request option.
25474
26568
  * @throws {RequiredError}
@@ -25654,12 +26748,57 @@ export declare const TaskAgentsApiFactory: (configuration?: Configuration, baseP
25654
26748
  * @throws {RequiredError}
25655
26749
  */
25656
26750
  runTaskAgent(orgId: string, projectId: string, taskAgentId: string, options?: any): AxiosPromise<any>;
26751
+ /**
26752
+ * Retrieve a specific member that has been granted direct access to the task_agent.
26753
+ * @summary IAM - Lookup Task Agent Member
26754
+ * @param {string} taskAgentId
26755
+ * @param {string} member
26756
+ * @param {string} orgId The org id
26757
+ * @param {string} projectId The project id
26758
+ * @param {*} [options] Override http request option.
26759
+ * @throws {RequiredError}
26760
+ */
26761
+ taskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamGetMember(taskAgentId: string, member: string, orgId: string, projectId: string, options?: any): AxiosPromise<IAMMember>;
26762
+ /**
26763
+ * Lists all members that have been granted direct access to the task_agent.
26764
+ * @summary IAM - List Task Agent Members
26765
+ * @param {string} taskAgentId
26766
+ * @param {string} orgId The org id
26767
+ * @param {string} projectId The project id
26768
+ * @param {TaskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamListMembersTypeEnum} [type]
26769
+ * @param {*} [options] Override http request option.
26770
+ * @throws {RequiredError}
26771
+ */
26772
+ taskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamListMembers(taskAgentId: string, orgId: string, projectId: string, type?: TaskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamListMembersTypeEnum, options?: any): AxiosPromise<PaginatedResultSetIAMMember>;
26773
+ /**
26774
+ * Test the permissions that the caller (or another subject) holds on the task_agent.
26775
+ * @summary IAM - Test Task Agent Permissions
26776
+ * @param {string} taskAgentId
26777
+ * @param {string} orgId The org id
26778
+ * @param {string} projectId The project id
26779
+ * @param {TaskAgentIAMPermissionTest} taskAgentIAMPermissionTest
26780
+ * @param {*} [options] Override http request option.
26781
+ * @throws {RequiredError}
26782
+ */
26783
+ taskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamTestPermissions(taskAgentId: string, orgId: string, projectId: string, taskAgentIAMPermissionTest: TaskAgentIAMPermissionTest, options?: any): AxiosPromise<IAMPermissionTest>;
26784
+ /**
26785
+ * Update the roles that a member holds on the task_agent.
26786
+ * @summary IAM - Update Task Agent Member
26787
+ * @param {string} taskAgentId
26788
+ * @param {string} member
26789
+ * @param {string} orgId The org id
26790
+ * @param {string} projectId The project id
26791
+ * @param {TaskAgentIAMMemberRoleUpdate} taskAgentIAMMemberRoleUpdate
26792
+ * @param {*} [options] Override http request option.
26793
+ * @throws {RequiredError}
26794
+ */
26795
+ taskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamUpdateMemberRoles(taskAgentId: string, member: string, orgId: string, projectId: string, taskAgentIAMMemberRoleUpdate: TaskAgentIAMMemberRoleUpdate, options?: any): AxiosPromise<IAMMember>;
25657
26796
  /**
25658
26797
  * Update Task Agent configuration. Modifiable fields: - Name and description - System instruction - LLM model - Execution mode - Task tools (full replacement) - MCP servers (full replacement) To update task tools, pass a `task_tools` array. This performs a full replacement: - Omit the field to leave task tools unchanged - Pass an empty array to remove all task tools - Pass a new array to replace all task tools (array order = execution order)
25659
26798
  * @summary Update Task Agent
25660
- * @param {string} orgId The unique identifier of the organization.
25661
- * @param {string} projectId The unique identifier of the project.
25662
- * @param {string} taskAgentId The specific Task Agent to reference.
26799
+ * @param {string} orgId The organization ID
26800
+ * @param {string} projectId The project ID
26801
+ * @param {string} taskAgentId The task agent ID
25663
26802
  * @param {TaskAgentUpdate} taskAgentUpdate
25664
26803
  * @param {*} [options] Override http request option.
25665
26804
  * @throws {RequiredError}
@@ -25676,8 +26815,8 @@ export declare class TaskAgentsApi extends BaseAPI {
25676
26815
  /**
25677
26816
  * Create a new Task Agent for the project. Task Agents orchestrate multiple Tasks as task tools using LLM-powered reasoning. Configure: - System instruction (prompt) - LLM model for reasoning - Initial task tools (Tasks to add) - Optional MCP server bindings - Execution mode (agentic/sequential)
25678
26817
  * @summary Create Task Agent
25679
- * @param {string} orgId The unique identifier of the organization.
25680
- * @param {string} projectId The unique identifier of the project.
26818
+ * @param {string} orgId The organization ID
26819
+ * @param {string} projectId The project ID
25681
26820
  * @param {TaskAgentCreate} taskAgentCreate
25682
26821
  * @param {*} [options] Override http request option.
25683
26822
  * @throws {RequiredError}
@@ -25879,12 +27018,61 @@ export declare class TaskAgentsApi extends BaseAPI {
25879
27018
  * @memberof TaskAgentsApi
25880
27019
  */
25881
27020
  runTaskAgent(orgId: string, projectId: string, taskAgentId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<any, any, {}>>;
27021
+ /**
27022
+ * Retrieve a specific member that has been granted direct access to the task_agent.
27023
+ * @summary IAM - Lookup Task Agent Member
27024
+ * @param {string} taskAgentId
27025
+ * @param {string} member
27026
+ * @param {string} orgId The org id
27027
+ * @param {string} projectId The project id
27028
+ * @param {*} [options] Override http request option.
27029
+ * @throws {RequiredError}
27030
+ * @memberof TaskAgentsApi
27031
+ */
27032
+ taskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamGetMember(taskAgentId: string, member: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IAMMember, any, {}>>;
27033
+ /**
27034
+ * Lists all members that have been granted direct access to the task_agent.
27035
+ * @summary IAM - List Task Agent Members
27036
+ * @param {string} taskAgentId
27037
+ * @param {string} orgId The org id
27038
+ * @param {string} projectId The project id
27039
+ * @param {TaskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamListMembersTypeEnum} [type]
27040
+ * @param {*} [options] Override http request option.
27041
+ * @throws {RequiredError}
27042
+ * @memberof TaskAgentsApi
27043
+ */
27044
+ taskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamListMembers(taskAgentId: string, orgId: string, projectId: string, type?: TaskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamListMembersTypeEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedResultSetIAMMember, any, {}>>;
27045
+ /**
27046
+ * Test the permissions that the caller (or another subject) holds on the task_agent.
27047
+ * @summary IAM - Test Task Agent Permissions
27048
+ * @param {string} taskAgentId
27049
+ * @param {string} orgId The org id
27050
+ * @param {string} projectId The project id
27051
+ * @param {TaskAgentIAMPermissionTest} taskAgentIAMPermissionTest
27052
+ * @param {*} [options] Override http request option.
27053
+ * @throws {RequiredError}
27054
+ * @memberof TaskAgentsApi
27055
+ */
27056
+ taskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamTestPermissions(taskAgentId: string, orgId: string, projectId: string, taskAgentIAMPermissionTest: TaskAgentIAMPermissionTest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IAMPermissionTest, any, {}>>;
27057
+ /**
27058
+ * Update the roles that a member holds on the task_agent.
27059
+ * @summary IAM - Update Task Agent Member
27060
+ * @param {string} taskAgentId
27061
+ * @param {string} member
27062
+ * @param {string} orgId The org id
27063
+ * @param {string} projectId The project id
27064
+ * @param {TaskAgentIAMMemberRoleUpdate} taskAgentIAMMemberRoleUpdate
27065
+ * @param {*} [options] Override http request option.
27066
+ * @throws {RequiredError}
27067
+ * @memberof TaskAgentsApi
27068
+ */
27069
+ taskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamUpdateMemberRoles(taskAgentId: string, member: string, orgId: string, projectId: string, taskAgentIAMMemberRoleUpdate: TaskAgentIAMMemberRoleUpdate, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IAMMember, any, {}>>;
25882
27070
  /**
25883
27071
  * Update Task Agent configuration. Modifiable fields: - Name and description - System instruction - LLM model - Execution mode - Task tools (full replacement) - MCP servers (full replacement) To update task tools, pass a `task_tools` array. This performs a full replacement: - Omit the field to leave task tools unchanged - Pass an empty array to remove all task tools - Pass a new array to replace all task tools (array order = execution order)
25884
27072
  * @summary Update Task Agent
25885
- * @param {string} orgId The unique identifier of the organization.
25886
- * @param {string} projectId The unique identifier of the project.
25887
- * @param {string} taskAgentId The specific Task Agent to reference.
27073
+ * @param {string} orgId The organization ID
27074
+ * @param {string} projectId The project ID
27075
+ * @param {string} taskAgentId The task agent ID
25888
27076
  * @param {TaskAgentUpdate} taskAgentUpdate
25889
27077
  * @param {*} [options] Override http request option.
25890
27078
  * @throws {RequiredError}
@@ -25924,6 +27112,15 @@ export declare const GetTaskAgentUsageReportAggregationEnum: {
25924
27112
  readonly Week: "week";
25925
27113
  };
25926
27114
  export type GetTaskAgentUsageReportAggregationEnum = typeof GetTaskAgentUsageReportAggregationEnum[keyof typeof GetTaskAgentUsageReportAggregationEnum];
27115
+ /**
27116
+ * @export
27117
+ */
27118
+ export declare const TaskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamListMembersTypeEnum: {
27119
+ readonly User: "user";
27120
+ readonly Organization: "organization";
27121
+ readonly Project: "project";
27122
+ };
27123
+ export type TaskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamListMembersTypeEnum = typeof TaskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamListMembersTypeEnum[keyof typeof TaskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamListMembersTypeEnum];
25927
27124
  /**
25928
27125
  * TaskEvalsApi - axios parameter creator
25929
27126
  * @export
@@ -26815,6 +28012,25 @@ export declare const TaskMCPServersApiAxiosParamCreator: (configuration?: Config
26815
28012
  * @throws {RequiredError}
26816
28013
  */
26817
28014
  getTaskMcpServer: (taskMcpServerId: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
28015
+ /**
28016
+ *
28017
+ * @summary Get Task Mcp Server Catalog
28018
+ * @param {string} slug The canonical MCP server catalog slug
28019
+ * @param {string} orgId The organization ID
28020
+ * @param {string} projectId The project ID
28021
+ * @param {*} [options] Override http request option.
28022
+ * @throws {RequiredError}
28023
+ */
28024
+ getTaskMcpServerCatalog: (slug: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
28025
+ /**
28026
+ *
28027
+ * @summary List Task Mcp Server Catalog
28028
+ * @param {string} orgId The organization ID
28029
+ * @param {string} projectId The project ID
28030
+ * @param {*} [options] Override http request option.
28031
+ * @throws {RequiredError}
28032
+ */
28033
+ listTaskMcpServerCatalog: (orgId: string, projectId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
26818
28034
  /**
26819
28035
  *
26820
28036
  * @summary List Task Mcp Servers
@@ -26924,6 +28140,25 @@ export declare const TaskMCPServersApiFp: (configuration?: Configuration) => {
26924
28140
  * @throws {RequiredError}
26925
28141
  */
26926
28142
  getTaskMcpServer(taskMcpServerId: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskMcpServer>>;
28143
+ /**
28144
+ *
28145
+ * @summary Get Task Mcp Server Catalog
28146
+ * @param {string} slug The canonical MCP server catalog slug
28147
+ * @param {string} orgId The organization ID
28148
+ * @param {string} projectId The project ID
28149
+ * @param {*} [options] Override http request option.
28150
+ * @throws {RequiredError}
28151
+ */
28152
+ getTaskMcpServerCatalog(slug: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TaskMcpServerCatalogRead>>;
28153
+ /**
28154
+ *
28155
+ * @summary List Task Mcp Server Catalog
28156
+ * @param {string} orgId The organization ID
28157
+ * @param {string} projectId The project ID
28158
+ * @param {*} [options] Override http request option.
28159
+ * @throws {RequiredError}
28160
+ */
28161
+ listTaskMcpServerCatalog(orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TaskMcpServerCatalogRead>>>;
26927
28162
  /**
26928
28163
  *
26929
28164
  * @summary List Task Mcp Servers
@@ -27033,6 +28268,25 @@ export declare const TaskMCPServersApiFactory: (configuration?: Configuration, b
27033
28268
  * @throws {RequiredError}
27034
28269
  */
27035
28270
  getTaskMcpServer(taskMcpServerId: string, orgId: string, projectId: string, options?: any): AxiosPromise<TaskMcpServer>;
28271
+ /**
28272
+ *
28273
+ * @summary Get Task Mcp Server Catalog
28274
+ * @param {string} slug The canonical MCP server catalog slug
28275
+ * @param {string} orgId The organization ID
28276
+ * @param {string} projectId The project ID
28277
+ * @param {*} [options] Override http request option.
28278
+ * @throws {RequiredError}
28279
+ */
28280
+ getTaskMcpServerCatalog(slug: string, orgId: string, projectId: string, options?: any): AxiosPromise<TaskMcpServerCatalogRead>;
28281
+ /**
28282
+ *
28283
+ * @summary List Task Mcp Server Catalog
28284
+ * @param {string} orgId The organization ID
28285
+ * @param {string} projectId The project ID
28286
+ * @param {*} [options] Override http request option.
28287
+ * @throws {RequiredError}
28288
+ */
28289
+ listTaskMcpServerCatalog(orgId: string, projectId: string, options?: any): AxiosPromise<Array<TaskMcpServerCatalogRead>>;
27036
28290
  /**
27037
28291
  *
27038
28292
  * @summary List Task Mcp Servers
@@ -27150,6 +28404,27 @@ export declare class TaskMCPServersApi extends BaseAPI {
27150
28404
  * @memberof TaskMCPServersApi
27151
28405
  */
27152
28406
  getTaskMcpServer(taskMcpServerId: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaskMcpServer, any, {}>>;
28407
+ /**
28408
+ *
28409
+ * @summary Get Task Mcp Server Catalog
28410
+ * @param {string} slug The canonical MCP server catalog slug
28411
+ * @param {string} orgId The organization ID
28412
+ * @param {string} projectId The project ID
28413
+ * @param {*} [options] Override http request option.
28414
+ * @throws {RequiredError}
28415
+ * @memberof TaskMCPServersApi
28416
+ */
28417
+ getTaskMcpServerCatalog(slug: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaskMcpServerCatalogRead, any, {}>>;
28418
+ /**
28419
+ *
28420
+ * @summary List Task Mcp Server Catalog
28421
+ * @param {string} orgId The organization ID
28422
+ * @param {string} projectId The project ID
28423
+ * @param {*} [options] Override http request option.
28424
+ * @throws {RequiredError}
28425
+ * @memberof TaskMCPServersApi
28426
+ */
28427
+ listTaskMcpServerCatalog(orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TaskMcpServerCatalogRead[], any, {}>>;
27153
28428
  /**
27154
28429
  *
27155
28430
  * @summary List Task Mcp Servers