@rightbrain/brain-api-client 0.0.1-dev.137.c52b325 → 0.0.1-dev.138.8c91403
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 +686 -6
- package/dist/api.d.ts +508 -9
- package/dist/api.js +480 -5
- 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<string>}
|
|
7583
|
+
* @memberof ProjectSkillRevisionContent
|
|
7584
|
+
*/
|
|
7585
|
+
'script_files'?: Array<string>;
|
|
7586
|
+
/**
|
|
7587
|
+
*
|
|
7588
|
+
* @type {Array<ProjectSkillRevisionFileContent>}
|
|
7589
|
+
* @memberof ProjectSkillRevisionContent
|
|
7590
|
+
*/
|
|
7591
|
+
'reference_file_contents'?: Array<ProjectSkillRevisionFileContent>;
|
|
7592
|
+
/**
|
|
7593
|
+
*
|
|
7594
|
+
* @type {Array<ProjectSkillRevisionFileContent>}
|
|
7595
|
+
* @memberof ProjectSkillRevisionContent
|
|
7596
|
+
*/
|
|
7597
|
+
'asset_file_contents'?: Array<ProjectSkillRevisionFileContent>;
|
|
7598
|
+
}
|
|
7456
7599
|
/**
|
|
7457
7600
|
* Schema for creating a new project-scoped skill revision.
|
|
7458
7601
|
* @export
|
|
@@ -7508,6 +7651,37 @@ export interface ProjectSkillRevisionCreate {
|
|
|
7508
7651
|
*/
|
|
7509
7652
|
'activate'?: boolean;
|
|
7510
7653
|
}
|
|
7654
|
+
/**
|
|
7655
|
+
*
|
|
7656
|
+
* @export
|
|
7657
|
+
* @interface ProjectSkillRevisionFileContent
|
|
7658
|
+
*/
|
|
7659
|
+
export interface ProjectSkillRevisionFileContent {
|
|
7660
|
+
/**
|
|
7661
|
+
*
|
|
7662
|
+
* @type {string}
|
|
7663
|
+
* @memberof ProjectSkillRevisionFileContent
|
|
7664
|
+
*/
|
|
7665
|
+
'path': string;
|
|
7666
|
+
/**
|
|
7667
|
+
*
|
|
7668
|
+
* @type {string}
|
|
7669
|
+
* @memberof ProjectSkillRevisionFileContent
|
|
7670
|
+
*/
|
|
7671
|
+
'content': string;
|
|
7672
|
+
/**
|
|
7673
|
+
* The UTF-8 encoded file size in bytes.
|
|
7674
|
+
* @type {number}
|
|
7675
|
+
* @memberof ProjectSkillRevisionFileContent
|
|
7676
|
+
*/
|
|
7677
|
+
'size_bytes': number;
|
|
7678
|
+
/**
|
|
7679
|
+
* The UTF-8 encoded file size in kilobytes, rounded to 2 decimals.
|
|
7680
|
+
* @type {number}
|
|
7681
|
+
* @memberof ProjectSkillRevisionFileContent
|
|
7682
|
+
*/
|
|
7683
|
+
'size_kb': number;
|
|
7684
|
+
}
|
|
7511
7685
|
/**
|
|
7512
7686
|
* Schema for updating project-scoped skill metadata.
|
|
7513
7687
|
* @export
|
|
@@ -8232,6 +8406,34 @@ export type Response400ProjectIntegrationIamOrgOrgIdProjectProjectIdIntegrationI
|
|
|
8232
8406
|
} & MalformedResourceIdentifierErrorResponse | {
|
|
8233
8407
|
reason: 'MULTIPLE_ROLES_NOT_ALLOWED';
|
|
8234
8408
|
} & MultipleRolesNotAllowedErrorResponse;
|
|
8409
|
+
/**
|
|
8410
|
+
* @type Response400SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamTestPermissions
|
|
8411
|
+
* @export
|
|
8412
|
+
*/
|
|
8413
|
+
export type Response400SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamTestPermissions = {
|
|
8414
|
+
reason: 'INVALID_MEMBER';
|
|
8415
|
+
} & InvalidMemberErrorResponse | {
|
|
8416
|
+
reason: 'INVALID_ROLE';
|
|
8417
|
+
} & InvalidRoleErrorResponse | {
|
|
8418
|
+
reason: 'INVALID_SUBJECT_TYPE';
|
|
8419
|
+
} & InvalidSubjectTypeErrorResponse | {
|
|
8420
|
+
reason: 'MALFORMED_RESOURCE_IDENTIFIER';
|
|
8421
|
+
} & MalformedResourceIdentifierErrorResponse;
|
|
8422
|
+
/**
|
|
8423
|
+
* @type Response400SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamUpdateMemberRoles
|
|
8424
|
+
* @export
|
|
8425
|
+
*/
|
|
8426
|
+
export type Response400SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamUpdateMemberRoles = {
|
|
8427
|
+
reason: 'INVALID_MEMBER';
|
|
8428
|
+
} & InvalidMemberErrorResponse | {
|
|
8429
|
+
reason: 'INVALID_ROLE';
|
|
8430
|
+
} & InvalidRoleErrorResponse | {
|
|
8431
|
+
reason: 'INVALID_SUBJECT_TYPE';
|
|
8432
|
+
} & InvalidSubjectTypeErrorResponse | {
|
|
8433
|
+
reason: 'MALFORMED_RESOURCE_IDENTIFIER';
|
|
8434
|
+
} & MalformedResourceIdentifierErrorResponse | {
|
|
8435
|
+
reason: 'MULTIPLE_ROLES_NOT_ALLOWED';
|
|
8436
|
+
} & MultipleRolesNotAllowedErrorResponse;
|
|
8235
8437
|
/**
|
|
8236
8438
|
* @type Response400TaskAgentIamOrgOrgIdProjectProjectIdTaskAgentTaskAgentIdIamTestPermissions
|
|
8237
8439
|
* @export
|
|
@@ -9315,6 +9517,42 @@ export type Response403Rotatewebhooksecret = {
|
|
|
9315
9517
|
} & MissingAuthenticationErrorResponse | {
|
|
9316
9518
|
reason: 'PERMISSION_CHECK_FAILED';
|
|
9317
9519
|
} & PermissionCheckFailedErrorResponse;
|
|
9520
|
+
/**
|
|
9521
|
+
* @type Response403SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamGetMember
|
|
9522
|
+
* @export
|
|
9523
|
+
*/
|
|
9524
|
+
export type Response403SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamGetMember = {
|
|
9525
|
+
reason: 'MISSING_AUTHENTICATION';
|
|
9526
|
+
} & MissingAuthenticationErrorResponse | {
|
|
9527
|
+
reason: 'PERMISSION_CHECK_FAILED';
|
|
9528
|
+
} & PermissionCheckFailedErrorResponse;
|
|
9529
|
+
/**
|
|
9530
|
+
* @type Response403SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamListMembers
|
|
9531
|
+
* @export
|
|
9532
|
+
*/
|
|
9533
|
+
export type Response403SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamListMembers = {
|
|
9534
|
+
reason: 'MISSING_AUTHENTICATION';
|
|
9535
|
+
} & MissingAuthenticationErrorResponse | {
|
|
9536
|
+
reason: 'PERMISSION_CHECK_FAILED';
|
|
9537
|
+
} & PermissionCheckFailedErrorResponse;
|
|
9538
|
+
/**
|
|
9539
|
+
* @type Response403SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamTestPermissions
|
|
9540
|
+
* @export
|
|
9541
|
+
*/
|
|
9542
|
+
export type Response403SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamTestPermissions = {
|
|
9543
|
+
reason: 'MISSING_AUTHENTICATION';
|
|
9544
|
+
} & MissingAuthenticationErrorResponse | {
|
|
9545
|
+
reason: 'PERMISSION_CHECK_FAILED';
|
|
9546
|
+
} & PermissionCheckFailedErrorResponse;
|
|
9547
|
+
/**
|
|
9548
|
+
* @type Response403SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamUpdateMemberRoles
|
|
9549
|
+
* @export
|
|
9550
|
+
*/
|
|
9551
|
+
export type Response403SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamUpdateMemberRoles = {
|
|
9552
|
+
reason: 'MISSING_AUTHENTICATION';
|
|
9553
|
+
} & MissingAuthenticationErrorResponse | {
|
|
9554
|
+
reason: 'PERMISSION_CHECK_FAILED';
|
|
9555
|
+
} & PermissionCheckFailedErrorResponse;
|
|
9318
9556
|
/**
|
|
9319
9557
|
* @type Response403Suggestprojecttopics
|
|
9320
9558
|
* @export
|
|
@@ -10273,6 +10511,74 @@ export interface SkillContentRead {
|
|
|
10273
10511
|
*/
|
|
10274
10512
|
'active_revision': SkillRevisionContent;
|
|
10275
10513
|
}
|
|
10514
|
+
/**
|
|
10515
|
+
*
|
|
10516
|
+
* @export
|
|
10517
|
+
* @interface SkillIAMMemberRoleUpdate
|
|
10518
|
+
*/
|
|
10519
|
+
export interface SkillIAMMemberRoleUpdate {
|
|
10520
|
+
/**
|
|
10521
|
+
* 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.
|
|
10522
|
+
* @type {Array<string>}
|
|
10523
|
+
* @memberof SkillIAMMemberRoleUpdate
|
|
10524
|
+
*/
|
|
10525
|
+
'add'?: Array<SkillIAMMemberRoleUpdateAddEnum>;
|
|
10526
|
+
/**
|
|
10527
|
+
* A list of skill roles to revoke from the member.
|
|
10528
|
+
* @type {Array<string>}
|
|
10529
|
+
* @memberof SkillIAMMemberRoleUpdate
|
|
10530
|
+
*/
|
|
10531
|
+
'remove'?: Array<SkillIAMMemberRoleUpdateRemoveEnum>;
|
|
10532
|
+
/**
|
|
10533
|
+
* Removes all existing roles from the member. This may be combined with `add` to replace all existing roles that the member holds.
|
|
10534
|
+
* @type {boolean}
|
|
10535
|
+
* @memberof SkillIAMMemberRoleUpdate
|
|
10536
|
+
*/
|
|
10537
|
+
'remove_all'?: boolean | null;
|
|
10538
|
+
}
|
|
10539
|
+
export declare const SkillIAMMemberRoleUpdateAddEnum: {
|
|
10540
|
+
readonly Editor: "editor";
|
|
10541
|
+
readonly Owner: "owner";
|
|
10542
|
+
readonly Viewer: "viewer";
|
|
10543
|
+
};
|
|
10544
|
+
export type SkillIAMMemberRoleUpdateAddEnum = typeof SkillIAMMemberRoleUpdateAddEnum[keyof typeof SkillIAMMemberRoleUpdateAddEnum];
|
|
10545
|
+
export declare const SkillIAMMemberRoleUpdateRemoveEnum: {
|
|
10546
|
+
readonly Editor: "editor";
|
|
10547
|
+
readonly Owner: "owner";
|
|
10548
|
+
readonly Viewer: "viewer";
|
|
10549
|
+
};
|
|
10550
|
+
export type SkillIAMMemberRoleUpdateRemoveEnum = typeof SkillIAMMemberRoleUpdateRemoveEnum[keyof typeof SkillIAMMemberRoleUpdateRemoveEnum];
|
|
10551
|
+
/**
|
|
10552
|
+
*
|
|
10553
|
+
* @export
|
|
10554
|
+
* @interface SkillIAMPermissionTest
|
|
10555
|
+
*/
|
|
10556
|
+
export interface SkillIAMPermissionTest {
|
|
10557
|
+
/**
|
|
10558
|
+
* A list of permissions to test on the skill.
|
|
10559
|
+
* @type {Array<string>}
|
|
10560
|
+
* @memberof SkillIAMPermissionTest
|
|
10561
|
+
*/
|
|
10562
|
+
'permissions': Array<SkillIAMPermissionTestPermissionsEnum>;
|
|
10563
|
+
/**
|
|
10564
|
+
*
|
|
10565
|
+
* @type {string}
|
|
10566
|
+
* @memberof SkillIAMPermissionTest
|
|
10567
|
+
*/
|
|
10568
|
+
'member'?: string | null;
|
|
10569
|
+
}
|
|
10570
|
+
export declare const SkillIAMPermissionTestPermissionsEnum: {
|
|
10571
|
+
readonly AddEditor: "add_editor";
|
|
10572
|
+
readonly AddMember: "add_member";
|
|
10573
|
+
readonly AddOwner: "add_owner";
|
|
10574
|
+
readonly Edit: "edit";
|
|
10575
|
+
readonly RemoveEditor: "remove_editor";
|
|
10576
|
+
readonly RemoveMember: "remove_member";
|
|
10577
|
+
readonly RemoveOwner: "remove_owner";
|
|
10578
|
+
readonly View: "view";
|
|
10579
|
+
readonly ViewMembers: "view_members";
|
|
10580
|
+
};
|
|
10581
|
+
export type SkillIAMPermissionTestPermissionsEnum = typeof SkillIAMPermissionTestPermissionsEnum[keyof typeof SkillIAMPermissionTestPermissionsEnum];
|
|
10276
10582
|
/**
|
|
10277
10583
|
*
|
|
10278
10584
|
* @export
|
|
@@ -24584,6 +24890,51 @@ export declare const SkillsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
24584
24890
|
* @throws {RequiredError}
|
|
24585
24891
|
*/
|
|
24586
24892
|
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>;
|
|
24893
|
+
/**
|
|
24894
|
+
* Retrieve a specific member that has been granted direct access to the skill.
|
|
24895
|
+
* @summary IAM - Lookup Skill Member
|
|
24896
|
+
* @param {string} skillId
|
|
24897
|
+
* @param {string} member
|
|
24898
|
+
* @param {string} orgId The org id
|
|
24899
|
+
* @param {string} projectId The project id
|
|
24900
|
+
* @param {*} [options] Override http request option.
|
|
24901
|
+
* @throws {RequiredError}
|
|
24902
|
+
*/
|
|
24903
|
+
skillIamOrgOrgIdProjectProjectIdSkillSkillIdIamGetMember: (skillId: string, member: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
24904
|
+
/**
|
|
24905
|
+
* Lists all members that have been granted direct access to the skill.
|
|
24906
|
+
* @summary IAM - List Skill Members
|
|
24907
|
+
* @param {string} skillId
|
|
24908
|
+
* @param {string} orgId The org id
|
|
24909
|
+
* @param {string} projectId The project id
|
|
24910
|
+
* @param {SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamListMembersTypeEnum} [type]
|
|
24911
|
+
* @param {*} [options] Override http request option.
|
|
24912
|
+
* @throws {RequiredError}
|
|
24913
|
+
*/
|
|
24914
|
+
skillIamOrgOrgIdProjectProjectIdSkillSkillIdIamListMembers: (skillId: string, orgId: string, projectId: string, type?: SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamListMembersTypeEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
24915
|
+
/**
|
|
24916
|
+
* Test the permissions that the caller (or another subject) holds on the skill.
|
|
24917
|
+
* @summary IAM - Test Skill Permissions
|
|
24918
|
+
* @param {string} skillId
|
|
24919
|
+
* @param {string} orgId The org id
|
|
24920
|
+
* @param {string} projectId The project id
|
|
24921
|
+
* @param {SkillIAMPermissionTest} skillIAMPermissionTest
|
|
24922
|
+
* @param {*} [options] Override http request option.
|
|
24923
|
+
* @throws {RequiredError}
|
|
24924
|
+
*/
|
|
24925
|
+
skillIamOrgOrgIdProjectProjectIdSkillSkillIdIamTestPermissions: (skillId: string, orgId: string, projectId: string, skillIAMPermissionTest: SkillIAMPermissionTest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
24926
|
+
/**
|
|
24927
|
+
* Update the roles that a member holds on the skill.
|
|
24928
|
+
* @summary IAM - Update Skill Member
|
|
24929
|
+
* @param {string} skillId
|
|
24930
|
+
* @param {string} member
|
|
24931
|
+
* @param {string} orgId The org id
|
|
24932
|
+
* @param {string} projectId The project id
|
|
24933
|
+
* @param {SkillIAMMemberRoleUpdate} skillIAMMemberRoleUpdate
|
|
24934
|
+
* @param {*} [options] Override http request option.
|
|
24935
|
+
* @throws {RequiredError}
|
|
24936
|
+
*/
|
|
24937
|
+
skillIamOrgOrgIdProjectProjectIdSkillSkillIdIamUpdateMemberRoles: (skillId: string, member: string, orgId: string, projectId: string, skillIAMMemberRoleUpdate: SkillIAMMemberRoleUpdate, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
24587
24938
|
/**
|
|
24588
24939
|
* Update project-scoped skill metadata.
|
|
24589
24940
|
* @summary Update Project Skill
|
|
@@ -24632,7 +24983,7 @@ export declare const SkillsApiFp: (configuration?: Configuration) => {
|
|
|
24632
24983
|
* @param {*} [options] Override http request option.
|
|
24633
24984
|
* @throws {RequiredError}
|
|
24634
24985
|
*/
|
|
24635
|
-
createProjectSkillRevision(skillId: string, orgId: string, projectId: string, projectSkillRevisionCreate: ProjectSkillRevisionCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
24986
|
+
createProjectSkillRevision(skillId: string, orgId: string, projectId: string, projectSkillRevisionCreate: ProjectSkillRevisionCreate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProjectSkillRevisionContent>>;
|
|
24636
24987
|
/**
|
|
24637
24988
|
* Soft-delete a project-scoped skill.
|
|
24638
24989
|
* @summary Delete Project Skill
|
|
@@ -24662,7 +25013,7 @@ export declare const SkillsApiFp: (configuration?: Configuration) => {
|
|
|
24662
25013
|
* @param {*} [options] Override http request option.
|
|
24663
25014
|
* @throws {RequiredError}
|
|
24664
25015
|
*/
|
|
24665
|
-
getProjectSkillContent(skillId: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
25016
|
+
getProjectSkillContent(skillId: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProjectSkillContentRead>>;
|
|
24666
25017
|
/**
|
|
24667
25018
|
* Retrieve full content for a specific project-scoped skill revision.
|
|
24668
25019
|
* @summary Get Project Skill Revision
|
|
@@ -24673,7 +25024,7 @@ export declare const SkillsApiFp: (configuration?: Configuration) => {
|
|
|
24673
25024
|
* @param {*} [options] Override http request option.
|
|
24674
25025
|
* @throws {RequiredError}
|
|
24675
25026
|
*/
|
|
24676
|
-
getProjectSkillRevision(skillId: string, revisionId: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
25027
|
+
getProjectSkillRevision(skillId: string, revisionId: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProjectSkillRevisionContent>>;
|
|
24677
25028
|
/**
|
|
24678
25029
|
* Retrieve lightweight metadata and active revision summary for a skill.
|
|
24679
25030
|
* @summary Get Skill
|
|
@@ -24770,6 +25121,51 @@ export declare const SkillsApiFp: (configuration?: Configuration) => {
|
|
|
24770
25121
|
* @throws {RequiredError}
|
|
24771
25122
|
*/
|
|
24772
25123
|
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>>;
|
|
25124
|
+
/**
|
|
25125
|
+
* Retrieve a specific member that has been granted direct access to the skill.
|
|
25126
|
+
* @summary IAM - Lookup Skill Member
|
|
25127
|
+
* @param {string} skillId
|
|
25128
|
+
* @param {string} member
|
|
25129
|
+
* @param {string} orgId The org id
|
|
25130
|
+
* @param {string} projectId The project id
|
|
25131
|
+
* @param {*} [options] Override http request option.
|
|
25132
|
+
* @throws {RequiredError}
|
|
25133
|
+
*/
|
|
25134
|
+
skillIamOrgOrgIdProjectProjectIdSkillSkillIdIamGetMember(skillId: string, member: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IAMMember>>;
|
|
25135
|
+
/**
|
|
25136
|
+
* Lists all members that have been granted direct access to the skill.
|
|
25137
|
+
* @summary IAM - List Skill Members
|
|
25138
|
+
* @param {string} skillId
|
|
25139
|
+
* @param {string} orgId The org id
|
|
25140
|
+
* @param {string} projectId The project id
|
|
25141
|
+
* @param {SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamListMembersTypeEnum} [type]
|
|
25142
|
+
* @param {*} [options] Override http request option.
|
|
25143
|
+
* @throws {RequiredError}
|
|
25144
|
+
*/
|
|
25145
|
+
skillIamOrgOrgIdProjectProjectIdSkillSkillIdIamListMembers(skillId: string, orgId: string, projectId: string, type?: SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamListMembersTypeEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaginatedResultSetIAMMember>>;
|
|
25146
|
+
/**
|
|
25147
|
+
* Test the permissions that the caller (or another subject) holds on the skill.
|
|
25148
|
+
* @summary IAM - Test Skill Permissions
|
|
25149
|
+
* @param {string} skillId
|
|
25150
|
+
* @param {string} orgId The org id
|
|
25151
|
+
* @param {string} projectId The project id
|
|
25152
|
+
* @param {SkillIAMPermissionTest} skillIAMPermissionTest
|
|
25153
|
+
* @param {*} [options] Override http request option.
|
|
25154
|
+
* @throws {RequiredError}
|
|
25155
|
+
*/
|
|
25156
|
+
skillIamOrgOrgIdProjectProjectIdSkillSkillIdIamTestPermissions(skillId: string, orgId: string, projectId: string, skillIAMPermissionTest: SkillIAMPermissionTest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IAMPermissionTest>>;
|
|
25157
|
+
/**
|
|
25158
|
+
* Update the roles that a member holds on the skill.
|
|
25159
|
+
* @summary IAM - Update Skill Member
|
|
25160
|
+
* @param {string} skillId
|
|
25161
|
+
* @param {string} member
|
|
25162
|
+
* @param {string} orgId The org id
|
|
25163
|
+
* @param {string} projectId The project id
|
|
25164
|
+
* @param {SkillIAMMemberRoleUpdate} skillIAMMemberRoleUpdate
|
|
25165
|
+
* @param {*} [options] Override http request option.
|
|
25166
|
+
* @throws {RequiredError}
|
|
25167
|
+
*/
|
|
25168
|
+
skillIamOrgOrgIdProjectProjectIdSkillSkillIdIamUpdateMemberRoles(skillId: string, member: string, orgId: string, projectId: string, skillIAMMemberRoleUpdate: SkillIAMMemberRoleUpdate, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IAMMember>>;
|
|
24773
25169
|
/**
|
|
24774
25170
|
* Update project-scoped skill metadata.
|
|
24775
25171
|
* @summary Update Project Skill
|
|
@@ -24818,7 +25214,7 @@ export declare const SkillsApiFactory: (configuration?: Configuration, basePath?
|
|
|
24818
25214
|
* @param {*} [options] Override http request option.
|
|
24819
25215
|
* @throws {RequiredError}
|
|
24820
25216
|
*/
|
|
24821
|
-
createProjectSkillRevision(skillId: string, orgId: string, projectId: string, projectSkillRevisionCreate: ProjectSkillRevisionCreate, options?: any): AxiosPromise<
|
|
25217
|
+
createProjectSkillRevision(skillId: string, orgId: string, projectId: string, projectSkillRevisionCreate: ProjectSkillRevisionCreate, options?: any): AxiosPromise<ProjectSkillRevisionContent>;
|
|
24822
25218
|
/**
|
|
24823
25219
|
* Soft-delete a project-scoped skill.
|
|
24824
25220
|
* @summary Delete Project Skill
|
|
@@ -24848,7 +25244,7 @@ export declare const SkillsApiFactory: (configuration?: Configuration, basePath?
|
|
|
24848
25244
|
* @param {*} [options] Override http request option.
|
|
24849
25245
|
* @throws {RequiredError}
|
|
24850
25246
|
*/
|
|
24851
|
-
getProjectSkillContent(skillId: string, orgId: string, projectId: string, options?: any): AxiosPromise<
|
|
25247
|
+
getProjectSkillContent(skillId: string, orgId: string, projectId: string, options?: any): AxiosPromise<ProjectSkillContentRead>;
|
|
24852
25248
|
/**
|
|
24853
25249
|
* Retrieve full content for a specific project-scoped skill revision.
|
|
24854
25250
|
* @summary Get Project Skill Revision
|
|
@@ -24859,7 +25255,7 @@ export declare const SkillsApiFactory: (configuration?: Configuration, basePath?
|
|
|
24859
25255
|
* @param {*} [options] Override http request option.
|
|
24860
25256
|
* @throws {RequiredError}
|
|
24861
25257
|
*/
|
|
24862
|
-
getProjectSkillRevision(skillId: string, revisionId: string, orgId: string, projectId: string, options?: any): AxiosPromise<
|
|
25258
|
+
getProjectSkillRevision(skillId: string, revisionId: string, orgId: string, projectId: string, options?: any): AxiosPromise<ProjectSkillRevisionContent>;
|
|
24863
25259
|
/**
|
|
24864
25260
|
* Retrieve lightweight metadata and active revision summary for a skill.
|
|
24865
25261
|
* @summary Get Skill
|
|
@@ -24956,6 +25352,51 @@ export declare const SkillsApiFactory: (configuration?: Configuration, basePath?
|
|
|
24956
25352
|
* @throws {RequiredError}
|
|
24957
25353
|
*/
|
|
24958
25354
|
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>;
|
|
25355
|
+
/**
|
|
25356
|
+
* Retrieve a specific member that has been granted direct access to the skill.
|
|
25357
|
+
* @summary IAM - Lookup Skill Member
|
|
25358
|
+
* @param {string} skillId
|
|
25359
|
+
* @param {string} member
|
|
25360
|
+
* @param {string} orgId The org id
|
|
25361
|
+
* @param {string} projectId The project id
|
|
25362
|
+
* @param {*} [options] Override http request option.
|
|
25363
|
+
* @throws {RequiredError}
|
|
25364
|
+
*/
|
|
25365
|
+
skillIamOrgOrgIdProjectProjectIdSkillSkillIdIamGetMember(skillId: string, member: string, orgId: string, projectId: string, options?: any): AxiosPromise<IAMMember>;
|
|
25366
|
+
/**
|
|
25367
|
+
* Lists all members that have been granted direct access to the skill.
|
|
25368
|
+
* @summary IAM - List Skill Members
|
|
25369
|
+
* @param {string} skillId
|
|
25370
|
+
* @param {string} orgId The org id
|
|
25371
|
+
* @param {string} projectId The project id
|
|
25372
|
+
* @param {SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamListMembersTypeEnum} [type]
|
|
25373
|
+
* @param {*} [options] Override http request option.
|
|
25374
|
+
* @throws {RequiredError}
|
|
25375
|
+
*/
|
|
25376
|
+
skillIamOrgOrgIdProjectProjectIdSkillSkillIdIamListMembers(skillId: string, orgId: string, projectId: string, type?: SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamListMembersTypeEnum, options?: any): AxiosPromise<PaginatedResultSetIAMMember>;
|
|
25377
|
+
/**
|
|
25378
|
+
* Test the permissions that the caller (or another subject) holds on the skill.
|
|
25379
|
+
* @summary IAM - Test Skill Permissions
|
|
25380
|
+
* @param {string} skillId
|
|
25381
|
+
* @param {string} orgId The org id
|
|
25382
|
+
* @param {string} projectId The project id
|
|
25383
|
+
* @param {SkillIAMPermissionTest} skillIAMPermissionTest
|
|
25384
|
+
* @param {*} [options] Override http request option.
|
|
25385
|
+
* @throws {RequiredError}
|
|
25386
|
+
*/
|
|
25387
|
+
skillIamOrgOrgIdProjectProjectIdSkillSkillIdIamTestPermissions(skillId: string, orgId: string, projectId: string, skillIAMPermissionTest: SkillIAMPermissionTest, options?: any): AxiosPromise<IAMPermissionTest>;
|
|
25388
|
+
/**
|
|
25389
|
+
* Update the roles that a member holds on the skill.
|
|
25390
|
+
* @summary IAM - Update Skill Member
|
|
25391
|
+
* @param {string} skillId
|
|
25392
|
+
* @param {string} member
|
|
25393
|
+
* @param {string} orgId The org id
|
|
25394
|
+
* @param {string} projectId The project id
|
|
25395
|
+
* @param {SkillIAMMemberRoleUpdate} skillIAMMemberRoleUpdate
|
|
25396
|
+
* @param {*} [options] Override http request option.
|
|
25397
|
+
* @throws {RequiredError}
|
|
25398
|
+
*/
|
|
25399
|
+
skillIamOrgOrgIdProjectProjectIdSkillSkillIdIamUpdateMemberRoles(skillId: string, member: string, orgId: string, projectId: string, skillIAMMemberRoleUpdate: SkillIAMMemberRoleUpdate, options?: any): AxiosPromise<IAMMember>;
|
|
24959
25400
|
/**
|
|
24960
25401
|
* Update project-scoped skill metadata.
|
|
24961
25402
|
* @summary Update Project Skill
|
|
@@ -25009,7 +25450,7 @@ export declare class SkillsApi extends BaseAPI {
|
|
|
25009
25450
|
* @throws {RequiredError}
|
|
25010
25451
|
* @memberof SkillsApi
|
|
25011
25452
|
*/
|
|
25012
|
-
createProjectSkillRevision(skillId: string, orgId: string, projectId: string, projectSkillRevisionCreate: ProjectSkillRevisionCreate, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
25453
|
+
createProjectSkillRevision(skillId: string, orgId: string, projectId: string, projectSkillRevisionCreate: ProjectSkillRevisionCreate, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectSkillRevisionContent, any, {}>>;
|
|
25013
25454
|
/**
|
|
25014
25455
|
* Soft-delete a project-scoped skill.
|
|
25015
25456
|
* @summary Delete Project Skill
|
|
@@ -25042,7 +25483,7 @@ export declare class SkillsApi extends BaseAPI {
|
|
|
25042
25483
|
* @throws {RequiredError}
|
|
25043
25484
|
* @memberof SkillsApi
|
|
25044
25485
|
*/
|
|
25045
|
-
getProjectSkillContent(skillId: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
25486
|
+
getProjectSkillContent(skillId: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectSkillContentRead, any, {}>>;
|
|
25046
25487
|
/**
|
|
25047
25488
|
* Retrieve full content for a specific project-scoped skill revision.
|
|
25048
25489
|
* @summary Get Project Skill Revision
|
|
@@ -25054,7 +25495,7 @@ export declare class SkillsApi extends BaseAPI {
|
|
|
25054
25495
|
* @throws {RequiredError}
|
|
25055
25496
|
* @memberof SkillsApi
|
|
25056
25497
|
*/
|
|
25057
|
-
getProjectSkillRevision(skillId: string, revisionId: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
25498
|
+
getProjectSkillRevision(skillId: string, revisionId: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectSkillRevisionContent, any, {}>>;
|
|
25058
25499
|
/**
|
|
25059
25500
|
* Retrieve lightweight metadata and active revision summary for a skill.
|
|
25060
25501
|
* @summary Get Skill
|
|
@@ -25161,6 +25602,55 @@ export declare class SkillsApi extends BaseAPI {
|
|
|
25161
25602
|
* @memberof SkillsApi
|
|
25162
25603
|
*/
|
|
25163
25604
|
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, {}>>;
|
|
25605
|
+
/**
|
|
25606
|
+
* Retrieve a specific member that has been granted direct access to the skill.
|
|
25607
|
+
* @summary IAM - Lookup Skill Member
|
|
25608
|
+
* @param {string} skillId
|
|
25609
|
+
* @param {string} member
|
|
25610
|
+
* @param {string} orgId The org id
|
|
25611
|
+
* @param {string} projectId The project id
|
|
25612
|
+
* @param {*} [options] Override http request option.
|
|
25613
|
+
* @throws {RequiredError}
|
|
25614
|
+
* @memberof SkillsApi
|
|
25615
|
+
*/
|
|
25616
|
+
skillIamOrgOrgIdProjectProjectIdSkillSkillIdIamGetMember(skillId: string, member: string, orgId: string, projectId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IAMMember, any, {}>>;
|
|
25617
|
+
/**
|
|
25618
|
+
* Lists all members that have been granted direct access to the skill.
|
|
25619
|
+
* @summary IAM - List Skill Members
|
|
25620
|
+
* @param {string} skillId
|
|
25621
|
+
* @param {string} orgId The org id
|
|
25622
|
+
* @param {string} projectId The project id
|
|
25623
|
+
* @param {SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamListMembersTypeEnum} [type]
|
|
25624
|
+
* @param {*} [options] Override http request option.
|
|
25625
|
+
* @throws {RequiredError}
|
|
25626
|
+
* @memberof SkillsApi
|
|
25627
|
+
*/
|
|
25628
|
+
skillIamOrgOrgIdProjectProjectIdSkillSkillIdIamListMembers(skillId: string, orgId: string, projectId: string, type?: SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamListMembersTypeEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaginatedResultSetIAMMember, any, {}>>;
|
|
25629
|
+
/**
|
|
25630
|
+
* Test the permissions that the caller (or another subject) holds on the skill.
|
|
25631
|
+
* @summary IAM - Test Skill Permissions
|
|
25632
|
+
* @param {string} skillId
|
|
25633
|
+
* @param {string} orgId The org id
|
|
25634
|
+
* @param {string} projectId The project id
|
|
25635
|
+
* @param {SkillIAMPermissionTest} skillIAMPermissionTest
|
|
25636
|
+
* @param {*} [options] Override http request option.
|
|
25637
|
+
* @throws {RequiredError}
|
|
25638
|
+
* @memberof SkillsApi
|
|
25639
|
+
*/
|
|
25640
|
+
skillIamOrgOrgIdProjectProjectIdSkillSkillIdIamTestPermissions(skillId: string, orgId: string, projectId: string, skillIAMPermissionTest: SkillIAMPermissionTest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IAMPermissionTest, any, {}>>;
|
|
25641
|
+
/**
|
|
25642
|
+
* Update the roles that a member holds on the skill.
|
|
25643
|
+
* @summary IAM - Update Skill Member
|
|
25644
|
+
* @param {string} skillId
|
|
25645
|
+
* @param {string} member
|
|
25646
|
+
* @param {string} orgId The org id
|
|
25647
|
+
* @param {string} projectId The project id
|
|
25648
|
+
* @param {SkillIAMMemberRoleUpdate} skillIAMMemberRoleUpdate
|
|
25649
|
+
* @param {*} [options] Override http request option.
|
|
25650
|
+
* @throws {RequiredError}
|
|
25651
|
+
* @memberof SkillsApi
|
|
25652
|
+
*/
|
|
25653
|
+
skillIamOrgOrgIdProjectProjectIdSkillSkillIdIamUpdateMemberRoles(skillId: string, member: string, orgId: string, projectId: string, skillIAMMemberRoleUpdate: SkillIAMMemberRoleUpdate, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IAMMember, any, {}>>;
|
|
25164
25654
|
/**
|
|
25165
25655
|
* Update project-scoped skill metadata.
|
|
25166
25656
|
* @summary Update Project Skill
|
|
@@ -25174,6 +25664,15 @@ export declare class SkillsApi extends BaseAPI {
|
|
|
25174
25664
|
*/
|
|
25175
25665
|
updateProjectSkill(skillId: string, orgId: string, projectId: string, projectSkillUpdate: ProjectSkillUpdate, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProjectSkillRead, any, {}>>;
|
|
25176
25666
|
}
|
|
25667
|
+
/**
|
|
25668
|
+
* @export
|
|
25669
|
+
*/
|
|
25670
|
+
export declare const SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamListMembersTypeEnum: {
|
|
25671
|
+
readonly User: "user";
|
|
25672
|
+
readonly Organization: "organization";
|
|
25673
|
+
readonly Project: "project";
|
|
25674
|
+
};
|
|
25675
|
+
export type SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamListMembersTypeEnum = typeof SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamListMembersTypeEnum[keyof typeof SkillIamOrgOrgIdProjectProjectIdSkillSkillIdIamListMembersTypeEnum];
|
|
25177
25676
|
/**
|
|
25178
25677
|
* SlackApi - axios parameter creator
|
|
25179
25678
|
* @export
|