@rightbrain/brain-api-client 0.0.1-dev.137.c52b325 → 0.0.1-dev.139.bbe0a46
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.
- package/api.ts +706 -14
- package/dist/api.d.ts +528 -17
- package/dist/api.js +488 -13
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -7075,6 +7075,7 @@ export declare const ProjectIAMPermissionTestPermissionsEnum: {
|
|
|
7075
7075
|
readonly CreateDocument: "create_document";
|
|
7076
7076
|
readonly CreateMcpServer: "create_mcp_server";
|
|
7077
7077
|
readonly CreateOauthClient: "create_oauth_client";
|
|
7078
|
+
readonly CreateProjectIntegration: "create_project_integration";
|
|
7078
7079
|
readonly CreateTask: "create_task";
|
|
7079
7080
|
readonly CreateTaskAgent: "create_task_agent";
|
|
7080
7081
|
readonly CreateTaskForwarder: "create_task_forwarder";
|
|
@@ -7277,6 +7278,67 @@ export declare const ProjectIntegrationReadAuthTypeEnum: {
|
|
|
7277
7278
|
readonly UserInvoker: "oauth_user_invoker";
|
|
7278
7279
|
};
|
|
7279
7280
|
export type ProjectIntegrationReadAuthTypeEnum = typeof ProjectIntegrationReadAuthTypeEnum[keyof typeof ProjectIntegrationReadAuthTypeEnum];
|
|
7281
|
+
/**
|
|
7282
|
+
*
|
|
7283
|
+
* @export
|
|
7284
|
+
* @interface ProjectSkillContentRead
|
|
7285
|
+
*/
|
|
7286
|
+
export interface ProjectSkillContentRead {
|
|
7287
|
+
/**
|
|
7288
|
+
*
|
|
7289
|
+
* @type {string}
|
|
7290
|
+
* @memberof ProjectSkillContentRead
|
|
7291
|
+
*/
|
|
7292
|
+
'id': string;
|
|
7293
|
+
/**
|
|
7294
|
+
*
|
|
7295
|
+
* @type {string}
|
|
7296
|
+
* @memberof ProjectSkillContentRead
|
|
7297
|
+
*/
|
|
7298
|
+
'slug': string;
|
|
7299
|
+
/**
|
|
7300
|
+
*
|
|
7301
|
+
* @type {string}
|
|
7302
|
+
* @memberof ProjectSkillContentRead
|
|
7303
|
+
*/
|
|
7304
|
+
'display_name': string;
|
|
7305
|
+
/**
|
|
7306
|
+
*
|
|
7307
|
+
* @type {string}
|
|
7308
|
+
* @memberof ProjectSkillContentRead
|
|
7309
|
+
*/
|
|
7310
|
+
'description': string | null;
|
|
7311
|
+
/**
|
|
7312
|
+
*
|
|
7313
|
+
* @type {string}
|
|
7314
|
+
* @memberof ProjectSkillContentRead
|
|
7315
|
+
*/
|
|
7316
|
+
'license': string | null;
|
|
7317
|
+
/**
|
|
7318
|
+
*
|
|
7319
|
+
* @type {string}
|
|
7320
|
+
* @memberof ProjectSkillContentRead
|
|
7321
|
+
*/
|
|
7322
|
+
'compatibility': string | null;
|
|
7323
|
+
/**
|
|
7324
|
+
*
|
|
7325
|
+
* @type {SkillSourceRead}
|
|
7326
|
+
* @memberof ProjectSkillContentRead
|
|
7327
|
+
*/
|
|
7328
|
+
'source': SkillSourceRead;
|
|
7329
|
+
/**
|
|
7330
|
+
*
|
|
7331
|
+
* @type {Array<string>}
|
|
7332
|
+
* @memberof ProjectSkillContentRead
|
|
7333
|
+
*/
|
|
7334
|
+
'tags': Array<string>;
|
|
7335
|
+
/**
|
|
7336
|
+
*
|
|
7337
|
+
* @type {ProjectSkillRevisionContent}
|
|
7338
|
+
* @memberof ProjectSkillContentRead
|
|
7339
|
+
*/
|
|
7340
|
+
'active_revision': ProjectSkillRevisionContent;
|
|
7341
|
+
}
|
|
7280
7342
|
/**
|
|
7281
7343
|
* Schema for creating a project-scoped skill and its initial revision.
|
|
7282
7344
|
* @export
|
|
@@ -7453,6 +7515,87 @@ export interface ProjectSkillRead {
|
|
|
7453
7515
|
*/
|
|
7454
7516
|
'created_by_user_id': string | null;
|
|
7455
7517
|
}
|
|
7518
|
+
/**
|
|
7519
|
+
*
|
|
7520
|
+
* @export
|
|
7521
|
+
* @interface ProjectSkillRevisionContent
|
|
7522
|
+
*/
|
|
7523
|
+
export interface ProjectSkillRevisionContent {
|
|
7524
|
+
/**
|
|
7525
|
+
*
|
|
7526
|
+
* @type {string}
|
|
7527
|
+
* @memberof ProjectSkillRevisionContent
|
|
7528
|
+
*/
|
|
7529
|
+
'id': string;
|
|
7530
|
+
/**
|
|
7531
|
+
*
|
|
7532
|
+
* @type {string}
|
|
7533
|
+
* @memberof ProjectSkillRevisionContent
|
|
7534
|
+
*/
|
|
7535
|
+
'skill_id': string;
|
|
7536
|
+
/**
|
|
7537
|
+
*
|
|
7538
|
+
* @type {string}
|
|
7539
|
+
* @memberof ProjectSkillRevisionContent
|
|
7540
|
+
*/
|
|
7541
|
+
'instructions': string;
|
|
7542
|
+
/**
|
|
7543
|
+
*
|
|
7544
|
+
* @type {{ [key: string]: any; }}
|
|
7545
|
+
* @memberof ProjectSkillRevisionContent
|
|
7546
|
+
*/
|
|
7547
|
+
'skill_metadata': {
|
|
7548
|
+
[key: string]: any;
|
|
7549
|
+
} | null;
|
|
7550
|
+
/**
|
|
7551
|
+
*
|
|
7552
|
+
* @type {SkillCapabilitiesOutput}
|
|
7553
|
+
* @memberof ProjectSkillRevisionContent
|
|
7554
|
+
*/
|
|
7555
|
+
'capabilities': SkillCapabilitiesOutput;
|
|
7556
|
+
/**
|
|
7557
|
+
*
|
|
7558
|
+
* @type {string}
|
|
7559
|
+
* @memberof ProjectSkillRevisionContent
|
|
7560
|
+
*/
|
|
7561
|
+
'annotation': string | null;
|
|
7562
|
+
/**
|
|
7563
|
+
*
|
|
7564
|
+
* @type {string}
|
|
7565
|
+
* @memberof ProjectSkillRevisionContent
|
|
7566
|
+
*/
|
|
7567
|
+
'created': string;
|
|
7568
|
+
/**
|
|
7569
|
+
*
|
|
7570
|
+
* @type {Array<string>}
|
|
7571
|
+
* @memberof ProjectSkillRevisionContent
|
|
7572
|
+
*/
|
|
7573
|
+
'reference_files': Array<string>;
|
|
7574
|
+
/**
|
|
7575
|
+
*
|
|
7576
|
+
* @type {Array<string>}
|
|
7577
|
+
* @memberof ProjectSkillRevisionContent
|
|
7578
|
+
*/
|
|
7579
|
+
'asset_files': Array<string>;
|
|
7580
|
+
/**
|
|
7581
|
+
*
|
|
7582
|
+
* @type {Array<SkillRevisionFileContent>}
|
|
7583
|
+
* @memberof ProjectSkillRevisionContent
|
|
7584
|
+
*/
|
|
7585
|
+
'reference_file_contents'?: Array<SkillRevisionFileContent>;
|
|
7586
|
+
/**
|
|
7587
|
+
*
|
|
7588
|
+
* @type {Array<SkillRevisionFileContent>}
|
|
7589
|
+
* @memberof ProjectSkillRevisionContent
|
|
7590
|
+
*/
|
|
7591
|
+
'asset_file_contents'?: Array<SkillRevisionFileContent>;
|
|
7592
|
+
/**
|
|
7593
|
+
*
|
|
7594
|
+
* @type {Array<string>}
|
|
7595
|
+
* @memberof ProjectSkillRevisionContent
|
|
7596
|
+
*/
|
|
7597
|
+
'script_files'?: Array<string>;
|
|
7598
|
+
}
|
|
7456
7599
|
/**
|
|
7457
7600
|
* Schema for creating a new project-scoped skill revision.
|
|
7458
7601
|
* @export
|
|
@@ -8232,6 +8375,34 @@ export type Response400ProjectIntegrationIamOrgOrgIdProjectProjectIdIntegrationI
|
|
|
8232
8375
|
} & MalformedResourceIdentifierErrorResponse | {
|
|
8233
8376
|
reason: 'MULTIPLE_ROLES_NOT_ALLOWED';
|
|
8234
8377
|
} & MultipleRolesNotAllowedErrorResponse;
|
|
8378
|
+
/**
|
|
8379
|
+
* @type Response400SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamTestPermissions
|
|
8380
|
+
* @export
|
|
8381
|
+
*/
|
|
8382
|
+
export type Response400SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamTestPermissions = {
|
|
8383
|
+
reason: 'INVALID_MEMBER';
|
|
8384
|
+
} & InvalidMemberErrorResponse | {
|
|
8385
|
+
reason: 'INVALID_ROLE';
|
|
8386
|
+
} & InvalidRoleErrorResponse | {
|
|
8387
|
+
reason: 'INVALID_SUBJECT_TYPE';
|
|
8388
|
+
} & InvalidSubjectTypeErrorResponse | {
|
|
8389
|
+
reason: 'MALFORMED_RESOURCE_IDENTIFIER';
|
|
8390
|
+
} & MalformedResourceIdentifierErrorResponse;
|
|
8391
|
+
/**
|
|
8392
|
+
* @type Response400SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamUpdateMemberRoles
|
|
8393
|
+
* @export
|
|
8394
|
+
*/
|
|
8395
|
+
export type Response400SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamUpdateMemberRoles = {
|
|
8396
|
+
reason: 'INVALID_MEMBER';
|
|
8397
|
+
} & InvalidMemberErrorResponse | {
|
|
8398
|
+
reason: 'INVALID_ROLE';
|
|
8399
|
+
} & InvalidRoleErrorResponse | {
|
|
8400
|
+
reason: 'INVALID_SUBJECT_TYPE';
|
|
8401
|
+
} & InvalidSubjectTypeErrorResponse | {
|
|
8402
|
+
reason: 'MALFORMED_RESOURCE_IDENTIFIER';
|
|
8403
|
+
} & MalformedResourceIdentifierErrorResponse | {
|
|
8404
|
+
reason: 'MULTIPLE_ROLES_NOT_ALLOWED';
|
|
8405
|
+
} & MultipleRolesNotAllowedErrorResponse;
|
|
8235
8406
|
/**
|
|
8236
8407
|
* @type Response400TaskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamTestPermissions
|
|
8237
8408
|
* @export
|
|
@@ -9315,6 +9486,42 @@ export type Response403Rotatewebhooksecret = {
|
|
|
9315
9486
|
} & MissingAuthenticationErrorResponse | {
|
|
9316
9487
|
reason: 'PERMISSION_CHECK_FAILED';
|
|
9317
9488
|
} & PermissionCheckFailedErrorResponse;
|
|
9489
|
+
/**
|
|
9490
|
+
* @type Response403SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamGetMember
|
|
9491
|
+
* @export
|
|
9492
|
+
*/
|
|
9493
|
+
export type Response403SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamGetMember = {
|
|
9494
|
+
reason: 'MISSING_AUTHENTICATION';
|
|
9495
|
+
} & MissingAuthenticationErrorResponse | {
|
|
9496
|
+
reason: 'PERMISSION_CHECK_FAILED';
|
|
9497
|
+
} & PermissionCheckFailedErrorResponse;
|
|
9498
|
+
/**
|
|
9499
|
+
* @type Response403SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamListMembers
|
|
9500
|
+
* @export
|
|
9501
|
+
*/
|
|
9502
|
+
export type Response403SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamListMembers = {
|
|
9503
|
+
reason: 'MISSING_AUTHENTICATION';
|
|
9504
|
+
} & MissingAuthenticationErrorResponse | {
|
|
9505
|
+
reason: 'PERMISSION_CHECK_FAILED';
|
|
9506
|
+
} & PermissionCheckFailedErrorResponse;
|
|
9507
|
+
/**
|
|
9508
|
+
* @type Response403SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamTestPermissions
|
|
9509
|
+
* @export
|
|
9510
|
+
*/
|
|
9511
|
+
export type Response403SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamTestPermissions = {
|
|
9512
|
+
reason: 'MISSING_AUTHENTICATION';
|
|
9513
|
+
} & MissingAuthenticationErrorResponse | {
|
|
9514
|
+
reason: 'PERMISSION_CHECK_FAILED';
|
|
9515
|
+
} & PermissionCheckFailedErrorResponse;
|
|
9516
|
+
/**
|
|
9517
|
+
* @type Response403SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamUpdateMemberRoles
|
|
9518
|
+
* @export
|
|
9519
|
+
*/
|
|
9520
|
+
export type Response403SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamUpdateMemberRoles = {
|
|
9521
|
+
reason: 'MISSING_AUTHENTICATION';
|
|
9522
|
+
} & MissingAuthenticationErrorResponse | {
|
|
9523
|
+
reason: 'PERMISSION_CHECK_FAILED';
|
|
9524
|
+
} & PermissionCheckFailedErrorResponse;
|
|
9318
9525
|
/**
|
|
9319
9526
|
* @type Response403Suggestprojecttopics
|
|
9320
9527
|
* @export
|
|
@@ -10273,6 +10480,74 @@ export interface SkillContentRead {
|
|
|
10273
10480
|
*/
|
|
10274
10481
|
'active_revision': SkillRevisionContent;
|
|
10275
10482
|
}
|
|
10483
|
+
/**
|
|
10484
|
+
*
|
|
10485
|
+
* @export
|
|
10486
|
+
* @interface SkillIAMMemberRoleUpdate
|
|
10487
|
+
*/
|
|
10488
|
+
export interface SkillIAMMemberRoleUpdate {
|
|
10489
|
+
/**
|
|
10490
|
+
* A list of skill 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.
|
|
10491
|
+
* @type {Array<string>}
|
|
10492
|
+
* @memberof SkillIAMMemberRoleUpdate
|
|
10493
|
+
*/
|
|
10494
|
+
'add'?: Array<SkillIAMMemberRoleUpdateAddEnum>;
|
|
10495
|
+
/**
|
|
10496
|
+
* A list of skill roles to revoke from the member.
|
|
10497
|
+
* @type {Array<string>}
|
|
10498
|
+
* @memberof SkillIAMMemberRoleUpdate
|
|
10499
|
+
*/
|
|
10500
|
+
'remove'?: Array<SkillIAMMemberRoleUpdateRemoveEnum>;
|
|
10501
|
+
/**
|
|
10502
|
+
* Removes all existing roles from the member. This may be combined with `add` to replace all existing roles that the member holds.
|
|
10503
|
+
* @type {boolean}
|
|
10504
|
+
* @memberof SkillIAMMemberRoleUpdate
|
|
10505
|
+
*/
|
|
10506
|
+
'remove_all'?: boolean | null;
|
|
10507
|
+
}
|
|
10508
|
+
export declare const SkillIAMMemberRoleUpdateAddEnum: {
|
|
10509
|
+
readonly Editor: "editor";
|
|
10510
|
+
readonly Owner: "owner";
|
|
10511
|
+
readonly Viewer: "viewer";
|
|
10512
|
+
};
|
|
10513
|
+
export type SkillIAMMemberRoleUpdateAddEnum = typeof SkillIAMMemberRoleUpdateAddEnum[keyof typeof SkillIAMMemberRoleUpdateAddEnum];
|
|
10514
|
+
export declare const SkillIAMMemberRoleUpdateRemoveEnum: {
|
|
10515
|
+
readonly Editor: "editor";
|
|
10516
|
+
readonly Owner: "owner";
|
|
10517
|
+
readonly Viewer: "viewer";
|
|
10518
|
+
};
|
|
10519
|
+
export type SkillIAMMemberRoleUpdateRemoveEnum = typeof SkillIAMMemberRoleUpdateRemoveEnum[keyof typeof SkillIAMMemberRoleUpdateRemoveEnum];
|
|
10520
|
+
/**
|
|
10521
|
+
*
|
|
10522
|
+
* @export
|
|
10523
|
+
* @interface SkillIAMPermissionTest
|
|
10524
|
+
*/
|
|
10525
|
+
export interface SkillIAMPermissionTest {
|
|
10526
|
+
/**
|
|
10527
|
+
* A list of permissions to test on the skill.
|
|
10528
|
+
* @type {Array<string>}
|
|
10529
|
+
* @memberof SkillIAMPermissionTest
|
|
10530
|
+
*/
|
|
10531
|
+
'permissions': Array<SkillIAMPermissionTestPermissionsEnum>;
|
|
10532
|
+
/**
|
|
10533
|
+
*
|
|
10534
|
+
* @type {string}
|
|
10535
|
+
* @memberof SkillIAMPermissionTest
|
|
10536
|
+
*/
|
|
10537
|
+
'member'?: string | null;
|
|
10538
|
+
}
|
|
10539
|
+
export declare const SkillIAMPermissionTestPermissionsEnum: {
|
|
10540
|
+
readonly AddEditor: "add_editor";
|
|
10541
|
+
readonly AddMember: "add_member";
|
|
10542
|
+
readonly AddOwner: "add_owner";
|
|
10543
|
+
readonly Edit: "edit";
|
|
10544
|
+
readonly RemoveEditor: "remove_editor";
|
|
10545
|
+
readonly RemoveMember: "remove_member";
|
|
10546
|
+
readonly RemoveOwner: "remove_owner";
|
|
10547
|
+
readonly View: "view";
|
|
10548
|
+
readonly ViewMembers: "view_members";
|
|
10549
|
+
};
|
|
10550
|
+
export type SkillIAMPermissionTestPermissionsEnum = typeof SkillIAMPermissionTestPermissionsEnum[keyof typeof SkillIAMPermissionTestPermissionsEnum];
|
|
10276
10551
|
/**
|
|
10277
10552
|
*
|
|
10278
10553
|
* @export
|
|
@@ -10426,6 +10701,18 @@ export interface SkillRevisionContent {
|
|
|
10426
10701
|
* @memberof SkillRevisionContent
|
|
10427
10702
|
*/
|
|
10428
10703
|
'asset_files': Array<string>;
|
|
10704
|
+
/**
|
|
10705
|
+
*
|
|
10706
|
+
* @type {Array<SkillRevisionFileContent>}
|
|
10707
|
+
* @memberof SkillRevisionContent
|
|
10708
|
+
*/
|
|
10709
|
+
'reference_file_contents'?: Array<SkillRevisionFileContent>;
|
|
10710
|
+
/**
|
|
10711
|
+
*
|
|
10712
|
+
* @type {Array<SkillRevisionFileContent>}
|
|
10713
|
+
* @memberof SkillRevisionContent
|
|
10714
|
+
*/
|
|
10715
|
+
'asset_file_contents'?: Array<SkillRevisionFileContent>;
|
|
10429
10716
|
/**
|
|
10430
10717
|
*
|
|
10431
10718
|
* @type {Array<string>}
|
|
@@ -10433,6 +10720,37 @@ export interface SkillRevisionContent {
|
|
|
10433
10720
|
*/
|
|
10434
10721
|
'script_files'?: Array<string>;
|
|
10435
10722
|
}
|
|
10723
|
+
/**
|
|
10724
|
+
*
|
|
10725
|
+
* @export
|
|
10726
|
+
* @interface SkillRevisionFileContent
|
|
10727
|
+
*/
|
|
10728
|
+
export interface SkillRevisionFileContent {
|
|
10729
|
+
/**
|
|
10730
|
+
*
|
|
10731
|
+
* @type {string}
|
|
10732
|
+
* @memberof SkillRevisionFileContent
|
|
10733
|
+
*/
|
|
10734
|
+
'path': string;
|
|
10735
|
+
/**
|
|
10736
|
+
*
|
|
10737
|
+
* @type {string}
|
|
10738
|
+
* @memberof SkillRevisionFileContent
|
|
10739
|
+
*/
|
|
10740
|
+
'content': string;
|
|
10741
|
+
/**
|
|
10742
|
+
* The UTF-8 encoded file size in bytes.
|
|
10743
|
+
* @type {number}
|
|
10744
|
+
* @memberof SkillRevisionFileContent
|
|
10745
|
+
*/
|
|
10746
|
+
'size_bytes': number;
|
|
10747
|
+
/**
|
|
10748
|
+
* The UTF-8 encoded file size in kilobytes, rounded to 2 decimals.
|
|
10749
|
+
* @type {number}
|
|
10750
|
+
* @memberof SkillRevisionFileContent
|
|
10751
|
+
*/
|
|
10752
|
+
'size_kb': number;
|
|
10753
|
+
}
|
|
10436
10754
|
/**
|
|
10437
10755
|
*
|
|
10438
10756
|
* @export
|
|
@@ -24497,7 +24815,7 @@ export declare const SkillsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
24497
24815
|
*/
|
|
24498
24816
|
getSkill: (skillId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
24499
24817
|
/**
|
|
24500
|
-
* Retrieve the active revision content for a skill, including instructions, metadata,
|
|
24818
|
+
* Retrieve the active revision content for a skill, including instructions, metadata, available reference or asset filenames, and structured file content entries with body size.
|
|
24501
24819
|
* @summary Get Skill Content
|
|
24502
24820
|
* @param {string} skillId
|
|
24503
24821
|
* @param {*} [options] Override http request option.
|
|
@@ -24505,7 +24823,7 @@ export declare const SkillsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
24505
24823
|
*/
|
|
24506
24824
|
getSkillContent: (skillId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
24507
24825
|
/**
|
|
24508
|
-
* Retrieve full content for a specific skill revision.
|
|
24826
|
+
* Retrieve full content for a specific skill revision, including structured reference and asset file bodies with size metadata.
|
|
24509
24827
|
* @summary Get Skill Revision
|
|
24510
24828
|
* @param {string} skillId
|
|
24511
24829
|
* @param {string} revisionId
|
|
@@ -24584,6 +24902,51 @@ export declare const SkillsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
24584
24902
|
* @throws {RequiredError}
|
|
24585
24903
|
*/
|
|
24586
24904
|
listSkills: (pageLimit?: number | null, cursor?: string | null, source?: string | null, search?: string | null, tag?: Array<string> | null, tags?: Array<string> | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
24905
|
+
/**
|
|
24906
|
+
* Retrieve a specific member that has been granted direct access to the skill.
|
|
24907
|
+
* @summary IAM - Lookup Skill Member
|
|
24908
|
+
* @param {string} skillId
|
|
24909
|
+
* @param {string} member
|
|
24910
|
+
* @param {string} orgId The org id
|
|
24911
|
+
* @param {string} projectId The project id
|
|
24912
|
+
* @param {*} [options] Override http request option.
|
|
24913
|
+
* @throws {RequiredError}
|
|
24914
|
+
*/
|
|
24915
|
+
skillIamOrgOrgIdProjectProjectIdSkillSkillIdIamGetMember: (skillId: string, member: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
24916
|
+
/**
|
|
24917
|
+
* Lists all members that have been granted direct access to the skill.
|
|
24918
|
+
* @summary IAM - List Skill Members
|
|
24919
|
+
* @param {string} skillId
|
|
24920
|
+
* @param {string} orgId The org id
|
|
24921
|
+
* @param {string} projectId The project id
|
|
24922
|
+
* @param {SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamListMembersTypeEnum} [type]
|
|
24923
|
+
* @param {*} [options] Override http request option.
|
|
24924
|
+
* @throws {RequiredError}
|
|
24925
|
+
*/
|
|
24926
|
+
skillIamOrgOrgIdProjectProjectIdSkillSkillIdIamListMembers: (skillId: string, orgId: string, projectId: string, type?: SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamListMembersTypeEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
24927
|
+
/**
|
|
24928
|
+
* Test the permissions that the caller (or another subject) holds on the skill.
|
|
24929
|
+
* @summary IAM - Test Skill Permissions
|
|
24930
|
+
* @param {string} skillId
|
|
24931
|
+
* @param {string} orgId The org id
|
|
24932
|
+
* @param {string} projectId The project id
|
|
24933
|
+
* @param {SkillIAMPermissionTest} skillIAMPermissionTest
|
|
24934
|
+
* @param {*} [options] Override http request option.
|
|
24935
|
+
* @throws {RequiredError}
|
|
24936
|
+
*/
|
|
24937
|
+
skillIamOrgOrgIdProjectProjectIdSkillSkillIdIamTestPermissions: (skillId: string, orgId: string, projectId: string, skillIAMPermissionTest: SkillIAMPermissionTest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
24938
|
+
/**
|
|
24939
|
+
* Update the roles that a member holds on the skill.
|
|
24940
|
+
* @summary IAM - Update Skill Member
|
|
24941
|
+
* @param {string} skillId
|
|
24942
|
+
* @param {string} member
|
|
24943
|
+
* @param {string} orgId The org id
|
|
24944
|
+
* @param {string} projectId The project id
|
|
24945
|
+
* @param {SkillIAMMemberRoleUpdate} skillIAMMemberRoleUpdate
|
|
24946
|
+
* @param {*} [options] Override http request option.
|
|
24947
|
+
* @throws {RequiredError}
|
|
24948
|
+
*/
|
|
24949
|
+
skillIamOrgOrgIdProjectProjectIdSkillSkillIdIamUpdateMemberRoles: (skillId: string, member: string, orgId: string, projectId: string, skillIAMMemberRoleUpdate: SkillIAMMemberRoleUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
24587
24950
|
/**
|
|
24588
24951
|
* Update project-scoped skill metadata.
|
|
24589
24952
|
* @summary Update Project Skill
|
|
@@ -24632,7 +24995,7 @@ export declare const SkillsApiFp: (configuration?: Configuration) => {
|
|
|
24632
24995
|
* @param {*} [options] Override http request option.
|
|
24633
24996
|
* @throws {RequiredError}
|
|
24634
24997
|
*/
|
|
24635
|
-
createProjectSkillRevision(skillId: string, orgId: string, projectId: string, projectSkillRevisionCreate: ProjectSkillRevisionCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
24998
|
+
createProjectSkillRevision(skillId: string, orgId: string, projectId: string, projectSkillRevisionCreate: ProjectSkillRevisionCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProjectSkillRevisionContent>>;
|
|
24636
24999
|
/**
|
|
24637
25000
|
* Soft-delete a project-scoped skill.
|
|
24638
25001
|
* @summary Delete Project Skill
|
|
@@ -24662,7 +25025,7 @@ export declare const SkillsApiFp: (configuration?: Configuration) => {
|
|
|
24662
25025
|
* @param {*} [options] Override http request option.
|
|
24663
25026
|
* @throws {RequiredError}
|
|
24664
25027
|
*/
|
|
24665
|
-
getProjectSkillContent(skillId: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
25028
|
+
getProjectSkillContent(skillId: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProjectSkillContentRead>>;
|
|
24666
25029
|
/**
|
|
24667
25030
|
* Retrieve full content for a specific project-scoped skill revision.
|
|
24668
25031
|
* @summary Get Project Skill Revision
|
|
@@ -24673,7 +25036,7 @@ export declare const SkillsApiFp: (configuration?: Configuration) => {
|
|
|
24673
25036
|
* @param {*} [options] Override http request option.
|
|
24674
25037
|
* @throws {RequiredError}
|
|
24675
25038
|
*/
|
|
24676
|
-
getProjectSkillRevision(skillId: string, revisionId: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
25039
|
+
getProjectSkillRevision(skillId: string, revisionId: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProjectSkillRevisionContent>>;
|
|
24677
25040
|
/**
|
|
24678
25041
|
* Retrieve lightweight metadata and active revision summary for a skill.
|
|
24679
25042
|
* @summary Get Skill
|
|
@@ -24683,7 +25046,7 @@ export declare const SkillsApiFp: (configuration?: Configuration) => {
|
|
|
24683
25046
|
*/
|
|
24684
25047
|
getSkill(skillId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SkillRead>>;
|
|
24685
25048
|
/**
|
|
24686
|
-
* Retrieve the active revision content for a skill, including instructions, metadata,
|
|
25049
|
+
* Retrieve the active revision content for a skill, including instructions, metadata, available reference or asset filenames, and structured file content entries with body size.
|
|
24687
25050
|
* @summary Get Skill Content
|
|
24688
25051
|
* @param {string} skillId
|
|
24689
25052
|
* @param {*} [options] Override http request option.
|
|
@@ -24691,7 +25054,7 @@ export declare const SkillsApiFp: (configuration?: Configuration) => {
|
|
|
24691
25054
|
*/
|
|
24692
25055
|
getSkillContent(skillId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SkillContentRead>>;
|
|
24693
25056
|
/**
|
|
24694
|
-
* Retrieve full content for a specific skill revision.
|
|
25057
|
+
* Retrieve full content for a specific skill revision, including structured reference and asset file bodies with size metadata.
|
|
24695
25058
|
* @summary Get Skill Revision
|
|
24696
25059
|
* @param {string} skillId
|
|
24697
25060
|
* @param {string} revisionId
|
|
@@ -24770,6 +25133,51 @@ export declare const SkillsApiFp: (configuration?: Configuration) => {
|
|
|
24770
25133
|
* @throws {RequiredError}
|
|
24771
25134
|
*/
|
|
24772
25135
|
listSkills(pageLimit?: number | null, cursor?: string | null, source?: string | null, search?: string | null, tag?: Array<string> | null, tags?: Array<string> | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResultSetSkillRead>>;
|
|
25136
|
+
/**
|
|
25137
|
+
* Retrieve a specific member that has been granted direct access to the skill.
|
|
25138
|
+
* @summary IAM - Lookup Skill Member
|
|
25139
|
+
* @param {string} skillId
|
|
25140
|
+
* @param {string} member
|
|
25141
|
+
* @param {string} orgId The org id
|
|
25142
|
+
* @param {string} projectId The project id
|
|
25143
|
+
* @param {*} [options] Override http request option.
|
|
25144
|
+
* @throws {RequiredError}
|
|
25145
|
+
*/
|
|
25146
|
+
skillIamOrgOrgIdProjectProjectIdSkillSkillIdIamGetMember(skillId: string, member: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IAMMember>>;
|
|
25147
|
+
/**
|
|
25148
|
+
* Lists all members that have been granted direct access to the skill.
|
|
25149
|
+
* @summary IAM - List Skill Members
|
|
25150
|
+
* @param {string} skillId
|
|
25151
|
+
* @param {string} orgId The org id
|
|
25152
|
+
* @param {string} projectId The project id
|
|
25153
|
+
* @param {SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamListMembersTypeEnum} [type]
|
|
25154
|
+
* @param {*} [options] Override http request option.
|
|
25155
|
+
* @throws {RequiredError}
|
|
25156
|
+
*/
|
|
25157
|
+
skillIamOrgOrgIdProjectProjectIdSkillSkillIdIamListMembers(skillId: string, orgId: string, projectId: string, type?: SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamListMembersTypeEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResultSetIAMMember>>;
|
|
25158
|
+
/**
|
|
25159
|
+
* Test the permissions that the caller (or another subject) holds on the skill.
|
|
25160
|
+
* @summary IAM - Test Skill Permissions
|
|
25161
|
+
* @param {string} skillId
|
|
25162
|
+
* @param {string} orgId The org id
|
|
25163
|
+
* @param {string} projectId The project id
|
|
25164
|
+
* @param {SkillIAMPermissionTest} skillIAMPermissionTest
|
|
25165
|
+
* @param {*} [options] Override http request option.
|
|
25166
|
+
* @throws {RequiredError}
|
|
25167
|
+
*/
|
|
25168
|
+
skillIamOrgOrgIdProjectProjectIdSkillSkillIdIamTestPermissions(skillId: string, orgId: string, projectId: string, skillIAMPermissionTest: SkillIAMPermissionTest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IAMPermissionTest>>;
|
|
25169
|
+
/**
|
|
25170
|
+
* Update the roles that a member holds on the skill.
|
|
25171
|
+
* @summary IAM - Update Skill Member
|
|
25172
|
+
* @param {string} skillId
|
|
25173
|
+
* @param {string} member
|
|
25174
|
+
* @param {string} orgId The org id
|
|
25175
|
+
* @param {string} projectId The project id
|
|
25176
|
+
* @param {SkillIAMMemberRoleUpdate} skillIAMMemberRoleUpdate
|
|
25177
|
+
* @param {*} [options] Override http request option.
|
|
25178
|
+
* @throws {RequiredError}
|
|
25179
|
+
*/
|
|
25180
|
+
skillIamOrgOrgIdProjectProjectIdSkillSkillIdIamUpdateMemberRoles(skillId: string, member: string, orgId: string, projectId: string, skillIAMMemberRoleUpdate: SkillIAMMemberRoleUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IAMMember>>;
|
|
24773
25181
|
/**
|
|
24774
25182
|
* Update project-scoped skill metadata.
|
|
24775
25183
|
* @summary Update Project Skill
|
|
@@ -24818,7 +25226,7 @@ export declare const SkillsApiFactory: (configuration?: Configuration, basePath?
|
|
|
24818
25226
|
* @param {*} [options] Override http request option.
|
|
24819
25227
|
* @throws {RequiredError}
|
|
24820
25228
|
*/
|
|
24821
|
-
createProjectSkillRevision(skillId: string, orgId: string, projectId: string, projectSkillRevisionCreate: ProjectSkillRevisionCreate, options?: any): AxiosPromise<
|
|
25229
|
+
createProjectSkillRevision(skillId: string, orgId: string, projectId: string, projectSkillRevisionCreate: ProjectSkillRevisionCreate, options?: any): AxiosPromise<ProjectSkillRevisionContent>;
|
|
24822
25230
|
/**
|
|
24823
25231
|
* Soft-delete a project-scoped skill.
|
|
24824
25232
|
* @summary Delete Project Skill
|
|
@@ -24848,7 +25256,7 @@ export declare const SkillsApiFactory: (configuration?: Configuration, basePath?
|
|
|
24848
25256
|
* @param {*} [options] Override http request option.
|
|
24849
25257
|
* @throws {RequiredError}
|
|
24850
25258
|
*/
|
|
24851
|
-
getProjectSkillContent(skillId: string, orgId: string, projectId: string, options?: any): AxiosPromise<
|
|
25259
|
+
getProjectSkillContent(skillId: string, orgId: string, projectId: string, options?: any): AxiosPromise<ProjectSkillContentRead>;
|
|
24852
25260
|
/**
|
|
24853
25261
|
* Retrieve full content for a specific project-scoped skill revision.
|
|
24854
25262
|
* @summary Get Project Skill Revision
|
|
@@ -24859,7 +25267,7 @@ export declare const SkillsApiFactory: (configuration?: Configuration, basePath?
|
|
|
24859
25267
|
* @param {*} [options] Override http request option.
|
|
24860
25268
|
* @throws {RequiredError}
|
|
24861
25269
|
*/
|
|
24862
|
-
getProjectSkillRevision(skillId: string, revisionId: string, orgId: string, projectId: string, options?: any): AxiosPromise<
|
|
25270
|
+
getProjectSkillRevision(skillId: string, revisionId: string, orgId: string, projectId: string, options?: any): AxiosPromise<ProjectSkillRevisionContent>;
|
|
24863
25271
|
/**
|
|
24864
25272
|
* Retrieve lightweight metadata and active revision summary for a skill.
|
|
24865
25273
|
* @summary Get Skill
|
|
@@ -24869,7 +25277,7 @@ export declare const SkillsApiFactory: (configuration?: Configuration, basePath?
|
|
|
24869
25277
|
*/
|
|
24870
25278
|
getSkill(skillId: string, options?: any): AxiosPromise<SkillRead>;
|
|
24871
25279
|
/**
|
|
24872
|
-
* Retrieve the active revision content for a skill, including instructions, metadata,
|
|
25280
|
+
* Retrieve the active revision content for a skill, including instructions, metadata, available reference or asset filenames, and structured file content entries with body size.
|
|
24873
25281
|
* @summary Get Skill Content
|
|
24874
25282
|
* @param {string} skillId
|
|
24875
25283
|
* @param {*} [options] Override http request option.
|
|
@@ -24877,7 +25285,7 @@ export declare const SkillsApiFactory: (configuration?: Configuration, basePath?
|
|
|
24877
25285
|
*/
|
|
24878
25286
|
getSkillContent(skillId: string, options?: any): AxiosPromise<SkillContentRead>;
|
|
24879
25287
|
/**
|
|
24880
|
-
* Retrieve full content for a specific skill revision.
|
|
25288
|
+
* Retrieve full content for a specific skill revision, including structured reference and asset file bodies with size metadata.
|
|
24881
25289
|
* @summary Get Skill Revision
|
|
24882
25290
|
* @param {string} skillId
|
|
24883
25291
|
* @param {string} revisionId
|
|
@@ -24956,6 +25364,51 @@ export declare const SkillsApiFactory: (configuration?: Configuration, basePath?
|
|
|
24956
25364
|
* @throws {RequiredError}
|
|
24957
25365
|
*/
|
|
24958
25366
|
listSkills(pageLimit?: number | null, cursor?: string | null, source?: string | null, search?: string | null, tag?: Array<string> | null, tags?: Array<string> | null, options?: any): AxiosPromise<PaginatedResultSetSkillRead>;
|
|
25367
|
+
/**
|
|
25368
|
+
* Retrieve a specific member that has been granted direct access to the skill.
|
|
25369
|
+
* @summary IAM - Lookup Skill Member
|
|
25370
|
+
* @param {string} skillId
|
|
25371
|
+
* @param {string} member
|
|
25372
|
+
* @param {string} orgId The org id
|
|
25373
|
+
* @param {string} projectId The project id
|
|
25374
|
+
* @param {*} [options] Override http request option.
|
|
25375
|
+
* @throws {RequiredError}
|
|
25376
|
+
*/
|
|
25377
|
+
skillIamOrgOrgIdProjectProjectIdSkillSkillIdIamGetMember(skillId: string, member: string, orgId: string, projectId: string, options?: any): AxiosPromise<IAMMember>;
|
|
25378
|
+
/**
|
|
25379
|
+
* Lists all members that have been granted direct access to the skill.
|
|
25380
|
+
* @summary IAM - List Skill Members
|
|
25381
|
+
* @param {string} skillId
|
|
25382
|
+
* @param {string} orgId The org id
|
|
25383
|
+
* @param {string} projectId The project id
|
|
25384
|
+
* @param {SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamListMembersTypeEnum} [type]
|
|
25385
|
+
* @param {*} [options] Override http request option.
|
|
25386
|
+
* @throws {RequiredError}
|
|
25387
|
+
*/
|
|
25388
|
+
skillIamOrgOrgIdProjectProjectIdSkillSkillIdIamListMembers(skillId: string, orgId: string, projectId: string, type?: SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamListMembersTypeEnum, options?: any): AxiosPromise<PaginatedResultSetIAMMember>;
|
|
25389
|
+
/**
|
|
25390
|
+
* Test the permissions that the caller (or another subject) holds on the skill.
|
|
25391
|
+
* @summary IAM - Test Skill Permissions
|
|
25392
|
+
* @param {string} skillId
|
|
25393
|
+
* @param {string} orgId The org id
|
|
25394
|
+
* @param {string} projectId The project id
|
|
25395
|
+
* @param {SkillIAMPermissionTest} skillIAMPermissionTest
|
|
25396
|
+
* @param {*} [options] Override http request option.
|
|
25397
|
+
* @throws {RequiredError}
|
|
25398
|
+
*/
|
|
25399
|
+
skillIamOrgOrgIdProjectProjectIdSkillSkillIdIamTestPermissions(skillId: string, orgId: string, projectId: string, skillIAMPermissionTest: SkillIAMPermissionTest, options?: any): AxiosPromise<IAMPermissionTest>;
|
|
25400
|
+
/**
|
|
25401
|
+
* Update the roles that a member holds on the skill.
|
|
25402
|
+
* @summary IAM - Update Skill Member
|
|
25403
|
+
* @param {string} skillId
|
|
25404
|
+
* @param {string} member
|
|
25405
|
+
* @param {string} orgId The org id
|
|
25406
|
+
* @param {string} projectId The project id
|
|
25407
|
+
* @param {SkillIAMMemberRoleUpdate} skillIAMMemberRoleUpdate
|
|
25408
|
+
* @param {*} [options] Override http request option.
|
|
25409
|
+
* @throws {RequiredError}
|
|
25410
|
+
*/
|
|
25411
|
+
skillIamOrgOrgIdProjectProjectIdSkillSkillIdIamUpdateMemberRoles(skillId: string, member: string, orgId: string, projectId: string, skillIAMMemberRoleUpdate: SkillIAMMemberRoleUpdate, options?: any): AxiosPromise<IAMMember>;
|
|
24959
25412
|
/**
|
|
24960
25413
|
* Update project-scoped skill metadata.
|
|
24961
25414
|
* @summary Update Project Skill
|
|
@@ -25009,7 +25462,7 @@ export declare class SkillsApi extends BaseAPI {
|
|
|
25009
25462
|
* @throws {RequiredError}
|
|
25010
25463
|
* @memberof SkillsApi
|
|
25011
25464
|
*/
|
|
25012
|
-
createProjectSkillRevision(skillId: string, orgId: string, projectId: string, projectSkillRevisionCreate: ProjectSkillRevisionCreate, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
25465
|
+
createProjectSkillRevision(skillId: string, orgId: string, projectId: string, projectSkillRevisionCreate: ProjectSkillRevisionCreate, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectSkillRevisionContent, any, {}>>;
|
|
25013
25466
|
/**
|
|
25014
25467
|
* Soft-delete a project-scoped skill.
|
|
25015
25468
|
* @summary Delete Project Skill
|
|
@@ -25042,7 +25495,7 @@ export declare class SkillsApi extends BaseAPI {
|
|
|
25042
25495
|
* @throws {RequiredError}
|
|
25043
25496
|
* @memberof SkillsApi
|
|
25044
25497
|
*/
|
|
25045
|
-
getProjectSkillContent(skillId: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
25498
|
+
getProjectSkillContent(skillId: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectSkillContentRead, any, {}>>;
|
|
25046
25499
|
/**
|
|
25047
25500
|
* Retrieve full content for a specific project-scoped skill revision.
|
|
25048
25501
|
* @summary Get Project Skill Revision
|
|
@@ -25054,7 +25507,7 @@ export declare class SkillsApi extends BaseAPI {
|
|
|
25054
25507
|
* @throws {RequiredError}
|
|
25055
25508
|
* @memberof SkillsApi
|
|
25056
25509
|
*/
|
|
25057
|
-
getProjectSkillRevision(skillId: string, revisionId: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
25510
|
+
getProjectSkillRevision(skillId: string, revisionId: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectSkillRevisionContent, any, {}>>;
|
|
25058
25511
|
/**
|
|
25059
25512
|
* Retrieve lightweight metadata and active revision summary for a skill.
|
|
25060
25513
|
* @summary Get Skill
|
|
@@ -25065,7 +25518,7 @@ export declare class SkillsApi extends BaseAPI {
|
|
|
25065
25518
|
*/
|
|
25066
25519
|
getSkill(skillId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SkillRead, any, {}>>;
|
|
25067
25520
|
/**
|
|
25068
|
-
* Retrieve the active revision content for a skill, including instructions, metadata,
|
|
25521
|
+
* Retrieve the active revision content for a skill, including instructions, metadata, available reference or asset filenames, and structured file content entries with body size.
|
|
25069
25522
|
* @summary Get Skill Content
|
|
25070
25523
|
* @param {string} skillId
|
|
25071
25524
|
* @param {*} [options] Override http request option.
|
|
@@ -25074,7 +25527,7 @@ export declare class SkillsApi extends BaseAPI {
|
|
|
25074
25527
|
*/
|
|
25075
25528
|
getSkillContent(skillId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SkillContentRead, any, {}>>;
|
|
25076
25529
|
/**
|
|
25077
|
-
* Retrieve full content for a specific skill revision.
|
|
25530
|
+
* Retrieve full content for a specific skill revision, including structured reference and asset file bodies with size metadata.
|
|
25078
25531
|
* @summary Get Skill Revision
|
|
25079
25532
|
* @param {string} skillId
|
|
25080
25533
|
* @param {string} revisionId
|
|
@@ -25161,6 +25614,55 @@ export declare class SkillsApi extends BaseAPI {
|
|
|
25161
25614
|
* @memberof SkillsApi
|
|
25162
25615
|
*/
|
|
25163
25616
|
listSkills(pageLimit?: number | null, cursor?: string | null, source?: string | null, search?: string | null, tag?: Array<string> | null, tags?: Array<string> | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedResultSetSkillRead, any, {}>>;
|
|
25617
|
+
/**
|
|
25618
|
+
* Retrieve a specific member that has been granted direct access to the skill.
|
|
25619
|
+
* @summary IAM - Lookup Skill Member
|
|
25620
|
+
* @param {string} skillId
|
|
25621
|
+
* @param {string} member
|
|
25622
|
+
* @param {string} orgId The org id
|
|
25623
|
+
* @param {string} projectId The project id
|
|
25624
|
+
* @param {*} [options] Override http request option.
|
|
25625
|
+
* @throws {RequiredError}
|
|
25626
|
+
* @memberof SkillsApi
|
|
25627
|
+
*/
|
|
25628
|
+
skillIamOrgOrgIdProjectProjectIdSkillSkillIdIamGetMember(skillId: string, member: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IAMMember, any, {}>>;
|
|
25629
|
+
/**
|
|
25630
|
+
* Lists all members that have been granted direct access to the skill.
|
|
25631
|
+
* @summary IAM - List Skill Members
|
|
25632
|
+
* @param {string} skillId
|
|
25633
|
+
* @param {string} orgId The org id
|
|
25634
|
+
* @param {string} projectId The project id
|
|
25635
|
+
* @param {SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamListMembersTypeEnum} [type]
|
|
25636
|
+
* @param {*} [options] Override http request option.
|
|
25637
|
+
* @throws {RequiredError}
|
|
25638
|
+
* @memberof SkillsApi
|
|
25639
|
+
*/
|
|
25640
|
+
skillIamOrgOrgIdProjectProjectIdSkillSkillIdIamListMembers(skillId: string, orgId: string, projectId: string, type?: SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamListMembersTypeEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedResultSetIAMMember, any, {}>>;
|
|
25641
|
+
/**
|
|
25642
|
+
* Test the permissions that the caller (or another subject) holds on the skill.
|
|
25643
|
+
* @summary IAM - Test Skill Permissions
|
|
25644
|
+
* @param {string} skillId
|
|
25645
|
+
* @param {string} orgId The org id
|
|
25646
|
+
* @param {string} projectId The project id
|
|
25647
|
+
* @param {SkillIAMPermissionTest} skillIAMPermissionTest
|
|
25648
|
+
* @param {*} [options] Override http request option.
|
|
25649
|
+
* @throws {RequiredError}
|
|
25650
|
+
* @memberof SkillsApi
|
|
25651
|
+
*/
|
|
25652
|
+
skillIamOrgOrgIdProjectProjectIdSkillSkillIdIamTestPermissions(skillId: string, orgId: string, projectId: string, skillIAMPermissionTest: SkillIAMPermissionTest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IAMPermissionTest, any, {}>>;
|
|
25653
|
+
/**
|
|
25654
|
+
* Update the roles that a member holds on the skill.
|
|
25655
|
+
* @summary IAM - Update Skill Member
|
|
25656
|
+
* @param {string} skillId
|
|
25657
|
+
* @param {string} member
|
|
25658
|
+
* @param {string} orgId The org id
|
|
25659
|
+
* @param {string} projectId The project id
|
|
25660
|
+
* @param {SkillIAMMemberRoleUpdate} skillIAMMemberRoleUpdate
|
|
25661
|
+
* @param {*} [options] Override http request option.
|
|
25662
|
+
* @throws {RequiredError}
|
|
25663
|
+
* @memberof SkillsApi
|
|
25664
|
+
*/
|
|
25665
|
+
skillIamOrgOrgIdProjectProjectIdSkillSkillIdIamUpdateMemberRoles(skillId: string, member: string, orgId: string, projectId: string, skillIAMMemberRoleUpdate: SkillIAMMemberRoleUpdate, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IAMMember, any, {}>>;
|
|
25164
25666
|
/**
|
|
25165
25667
|
* Update project-scoped skill metadata.
|
|
25166
25668
|
* @summary Update Project Skill
|
|
@@ -25174,6 +25676,15 @@ export declare class SkillsApi extends BaseAPI {
|
|
|
25174
25676
|
*/
|
|
25175
25677
|
updateProjectSkill(skillId: string, orgId: string, projectId: string, projectSkillUpdate: ProjectSkillUpdate, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectSkillRead, any, {}>>;
|
|
25176
25678
|
}
|
|
25679
|
+
/**
|
|
25680
|
+
* @export
|
|
25681
|
+
*/
|
|
25682
|
+
export declare const SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamListMembersTypeEnum: {
|
|
25683
|
+
readonly User: "user";
|
|
25684
|
+
readonly Organization: "organization";
|
|
25685
|
+
readonly Project: "project";
|
|
25686
|
+
};
|
|
25687
|
+
export type SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamListMembersTypeEnum = typeof SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamListMembersTypeEnum[keyof typeof SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamListMembersTypeEnum];
|
|
25177
25688
|
/**
|
|
25178
25689
|
* SlackApi - axios parameter creator
|
|
25179
25690
|
* @export
|