@rightbrain/brain-api-client 0.0.1-dev.138.8c91403 → 0.0.1-dev.140.ad06cf1

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 CHANGED
@@ -7202,6 +7202,7 @@ export const ProjectIAMPermissionTestPermissionsEnum = {
7202
7202
  CreateMcpServer: 'create_mcp_server',
7203
7203
  CreateOauthClient: 'create_oauth_client',
7204
7204
  CreateProjectIntegration: 'create_project_integration',
7205
+ CreateSkill: 'create_skill',
7205
7206
  CreateTask: 'create_task',
7206
7207
  CreateTaskAgent: 'create_task_agent',
7207
7208
  CreateTaskForwarder: 'create_task_forwarder',
@@ -7709,22 +7710,22 @@ export interface ProjectSkillRevisionContent {
7709
7710
  'asset_files': Array<string>;
7710
7711
  /**
7711
7712
  *
7712
- * @type {Array<string>}
7713
+ * @type {Array<SkillRevisionFileContent>}
7713
7714
  * @memberof ProjectSkillRevisionContent
7714
7715
  */
7715
- 'script_files'?: Array<string>;
7716
+ 'reference_file_contents'?: Array<SkillRevisionFileContent>;
7716
7717
  /**
7717
7718
  *
7718
- * @type {Array<ProjectSkillRevisionFileContent>}
7719
+ * @type {Array<SkillRevisionFileContent>}
7719
7720
  * @memberof ProjectSkillRevisionContent
7720
7721
  */
7721
- 'reference_file_contents'?: Array<ProjectSkillRevisionFileContent>;
7722
+ 'asset_file_contents'?: Array<SkillRevisionFileContent>;
7722
7723
  /**
7723
7724
  *
7724
- * @type {Array<ProjectSkillRevisionFileContent>}
7725
+ * @type {Array<string>}
7725
7726
  * @memberof ProjectSkillRevisionContent
7726
7727
  */
7727
- 'asset_file_contents'?: Array<ProjectSkillRevisionFileContent>;
7728
+ 'script_files'?: Array<string>;
7728
7729
  }
7729
7730
  /**
7730
7731
  * Schema for creating a new project-scoped skill revision.
@@ -7775,37 +7776,6 @@ export interface ProjectSkillRevisionCreate {
7775
7776
  */
7776
7777
  'activate'?: boolean;
7777
7778
  }
7778
- /**
7779
- *
7780
- * @export
7781
- * @interface ProjectSkillRevisionFileContent
7782
- */
7783
- export interface ProjectSkillRevisionFileContent {
7784
- /**
7785
- *
7786
- * @type {string}
7787
- * @memberof ProjectSkillRevisionFileContent
7788
- */
7789
- 'path': string;
7790
- /**
7791
- *
7792
- * @type {string}
7793
- * @memberof ProjectSkillRevisionFileContent
7794
- */
7795
- 'content': string;
7796
- /**
7797
- * The UTF-8 encoded file size in bytes.
7798
- * @type {number}
7799
- * @memberof ProjectSkillRevisionFileContent
7800
- */
7801
- 'size_bytes': number;
7802
- /**
7803
- * The UTF-8 encoded file size in kilobytes, rounded to 2 decimals.
7804
- * @type {number}
7805
- * @memberof ProjectSkillRevisionFileContent
7806
- */
7807
- 'size_kb': number;
7808
- }
7809
7779
  /**
7810
7780
  * Schema for updating project-scoped skill metadata.
7811
7781
  * @export
@@ -10263,6 +10233,18 @@ export interface SkillRevisionContent {
10263
10233
  * @memberof SkillRevisionContent
10264
10234
  */
10265
10235
  'asset_files': Array<string>;
10236
+ /**
10237
+ *
10238
+ * @type {Array<SkillRevisionFileContent>}
10239
+ * @memberof SkillRevisionContent
10240
+ */
10241
+ 'reference_file_contents'?: Array<SkillRevisionFileContent>;
10242
+ /**
10243
+ *
10244
+ * @type {Array<SkillRevisionFileContent>}
10245
+ * @memberof SkillRevisionContent
10246
+ */
10247
+ 'asset_file_contents'?: Array<SkillRevisionFileContent>;
10266
10248
  /**
10267
10249
  *
10268
10250
  * @type {Array<string>}
@@ -10270,6 +10252,37 @@ export interface SkillRevisionContent {
10270
10252
  */
10271
10253
  'script_files'?: Array<string>;
10272
10254
  }
10255
+ /**
10256
+ *
10257
+ * @export
10258
+ * @interface SkillRevisionFileContent
10259
+ */
10260
+ export interface SkillRevisionFileContent {
10261
+ /**
10262
+ *
10263
+ * @type {string}
10264
+ * @memberof SkillRevisionFileContent
10265
+ */
10266
+ 'path': string;
10267
+ /**
10268
+ *
10269
+ * @type {string}
10270
+ * @memberof SkillRevisionFileContent
10271
+ */
10272
+ 'content': string;
10273
+ /**
10274
+ * The UTF-8 encoded file size in bytes.
10275
+ * @type {number}
10276
+ * @memberof SkillRevisionFileContent
10277
+ */
10278
+ 'size_bytes': number;
10279
+ /**
10280
+ * The UTF-8 encoded file size in kilobytes, rounded to 2 decimals.
10281
+ * @type {number}
10282
+ * @memberof SkillRevisionFileContent
10283
+ */
10284
+ 'size_kb': number;
10285
+ }
10273
10286
  /**
10274
10287
  *
10275
10288
  * @export
@@ -33676,7 +33689,7 @@ export const SkillsApiAxiosParamCreator = function (configuration?: Configuratio
33676
33689
  };
33677
33690
  },
33678
33691
  /**
33679
- * Retrieve the active revision content for a skill, including instructions, metadata, and available reference or asset filenames.
33692
+ * Retrieve the active revision content for a skill, including instructions, metadata, available reference or asset filenames, and structured file content entries with body size.
33680
33693
  * @summary Get Skill Content
33681
33694
  * @param {string} skillId
33682
33695
  * @param {*} [options] Override http request option.
@@ -33714,7 +33727,7 @@ export const SkillsApiAxiosParamCreator = function (configuration?: Configuratio
33714
33727
  };
33715
33728
  },
33716
33729
  /**
33717
- * Retrieve full content for a specific skill revision.
33730
+ * Retrieve full content for a specific skill revision, including structured reference and asset file bodies with size metadata.
33718
33731
  * @summary Get Skill Revision
33719
33732
  * @param {string} skillId
33720
33733
  * @param {string} revisionId
@@ -34488,7 +34501,7 @@ export const SkillsApiFp = function(configuration?: Configuration) {
34488
34501
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
34489
34502
  },
34490
34503
  /**
34491
- * Retrieve the active revision content for a skill, including instructions, metadata, and available reference or asset filenames.
34504
+ * Retrieve the active revision content for a skill, including instructions, metadata, available reference or asset filenames, and structured file content entries with body size.
34492
34505
  * @summary Get Skill Content
34493
34506
  * @param {string} skillId
34494
34507
  * @param {*} [options] Override http request option.
@@ -34501,7 +34514,7 @@ export const SkillsApiFp = function(configuration?: Configuration) {
34501
34514
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
34502
34515
  },
34503
34516
  /**
34504
- * Retrieve full content for a specific skill revision.
34517
+ * Retrieve full content for a specific skill revision, including structured reference and asset file bodies with size metadata.
34505
34518
  * @summary Get Skill Revision
34506
34519
  * @param {string} skillId
34507
34520
  * @param {string} revisionId
@@ -34809,7 +34822,7 @@ export const SkillsApiFactory = function (configuration?: Configuration, basePat
34809
34822
  return localVarFp.getSkill(skillId, options).then((request) => request(axios, basePath));
34810
34823
  },
34811
34824
  /**
34812
- * Retrieve the active revision content for a skill, including instructions, metadata, and available reference or asset filenames.
34825
+ * Retrieve the active revision content for a skill, including instructions, metadata, available reference or asset filenames, and structured file content entries with body size.
34813
34826
  * @summary Get Skill Content
34814
34827
  * @param {string} skillId
34815
34828
  * @param {*} [options] Override http request option.
@@ -34819,7 +34832,7 @@ export const SkillsApiFactory = function (configuration?: Configuration, basePat
34819
34832
  return localVarFp.getSkillContent(skillId, options).then((request) => request(axios, basePath));
34820
34833
  },
34821
34834
  /**
34822
- * Retrieve full content for a specific skill revision.
34835
+ * Retrieve full content for a specific skill revision, including structured reference and asset file bodies with size metadata.
34823
34836
  * @summary Get Skill Revision
34824
34837
  * @param {string} skillId
34825
34838
  * @param {string} revisionId
@@ -35104,7 +35117,7 @@ export class SkillsApi extends BaseAPI {
35104
35117
  }
35105
35118
 
35106
35119
  /**
35107
- * Retrieve the active revision content for a skill, including instructions, metadata, and available reference or asset filenames.
35120
+ * Retrieve the active revision content for a skill, including instructions, metadata, available reference or asset filenames, and structured file content entries with body size.
35108
35121
  * @summary Get Skill Content
35109
35122
  * @param {string} skillId
35110
35123
  * @param {*} [options] Override http request option.
@@ -35116,7 +35129,7 @@ export class SkillsApi extends BaseAPI {
35116
35129
  }
35117
35130
 
35118
35131
  /**
35119
- * Retrieve full content for a specific skill revision.
35132
+ * Retrieve full content for a specific skill revision, including structured reference and asset file bodies with size metadata.
35120
35133
  * @summary Get Skill Revision
35121
35134
  * @param {string} skillId
35122
35135
  * @param {string} revisionId
package/dist/api.d.ts CHANGED
@@ -7076,6 +7076,7 @@ export declare const ProjectIAMPermissionTestPermissionsEnum: {
7076
7076
  readonly CreateMcpServer: "create_mcp_server";
7077
7077
  readonly CreateOauthClient: "create_oauth_client";
7078
7078
  readonly CreateProjectIntegration: "create_project_integration";
7079
+ readonly CreateSkill: "create_skill";
7079
7080
  readonly CreateTask: "create_task";
7080
7081
  readonly CreateTaskAgent: "create_task_agent";
7081
7082
  readonly CreateTaskForwarder: "create_task_forwarder";
@@ -7579,22 +7580,22 @@ export interface ProjectSkillRevisionContent {
7579
7580
  'asset_files': Array<string>;
7580
7581
  /**
7581
7582
  *
7582
- * @type {Array<string>}
7583
+ * @type {Array<SkillRevisionFileContent>}
7583
7584
  * @memberof ProjectSkillRevisionContent
7584
7585
  */
7585
- 'script_files'?: Array<string>;
7586
+ 'reference_file_contents'?: Array<SkillRevisionFileContent>;
7586
7587
  /**
7587
7588
  *
7588
- * @type {Array<ProjectSkillRevisionFileContent>}
7589
+ * @type {Array<SkillRevisionFileContent>}
7589
7590
  * @memberof ProjectSkillRevisionContent
7590
7591
  */
7591
- 'reference_file_contents'?: Array<ProjectSkillRevisionFileContent>;
7592
+ 'asset_file_contents'?: Array<SkillRevisionFileContent>;
7592
7593
  /**
7593
7594
  *
7594
- * @type {Array<ProjectSkillRevisionFileContent>}
7595
+ * @type {Array<string>}
7595
7596
  * @memberof ProjectSkillRevisionContent
7596
7597
  */
7597
- 'asset_file_contents'?: Array<ProjectSkillRevisionFileContent>;
7598
+ 'script_files'?: Array<string>;
7598
7599
  }
7599
7600
  /**
7600
7601
  * Schema for creating a new project-scoped skill revision.
@@ -7651,37 +7652,6 @@ export interface ProjectSkillRevisionCreate {
7651
7652
  */
7652
7653
  'activate'?: boolean;
7653
7654
  }
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
- }
7685
7655
  /**
7686
7656
  * Schema for updating project-scoped skill metadata.
7687
7657
  * @export
@@ -10732,6 +10702,18 @@ export interface SkillRevisionContent {
10732
10702
  * @memberof SkillRevisionContent
10733
10703
  */
10734
10704
  'asset_files': Array<string>;
10705
+ /**
10706
+ *
10707
+ * @type {Array<SkillRevisionFileContent>}
10708
+ * @memberof SkillRevisionContent
10709
+ */
10710
+ 'reference_file_contents'?: Array<SkillRevisionFileContent>;
10711
+ /**
10712
+ *
10713
+ * @type {Array<SkillRevisionFileContent>}
10714
+ * @memberof SkillRevisionContent
10715
+ */
10716
+ 'asset_file_contents'?: Array<SkillRevisionFileContent>;
10735
10717
  /**
10736
10718
  *
10737
10719
  * @type {Array<string>}
@@ -10739,6 +10721,37 @@ export interface SkillRevisionContent {
10739
10721
  */
10740
10722
  'script_files'?: Array<string>;
10741
10723
  }
10724
+ /**
10725
+ *
10726
+ * @export
10727
+ * @interface SkillRevisionFileContent
10728
+ */
10729
+ export interface SkillRevisionFileContent {
10730
+ /**
10731
+ *
10732
+ * @type {string}
10733
+ * @memberof SkillRevisionFileContent
10734
+ */
10735
+ 'path': string;
10736
+ /**
10737
+ *
10738
+ * @type {string}
10739
+ * @memberof SkillRevisionFileContent
10740
+ */
10741
+ 'content': string;
10742
+ /**
10743
+ * The UTF-8 encoded file size in bytes.
10744
+ * @type {number}
10745
+ * @memberof SkillRevisionFileContent
10746
+ */
10747
+ 'size_bytes': number;
10748
+ /**
10749
+ * The UTF-8 encoded file size in kilobytes, rounded to 2 decimals.
10750
+ * @type {number}
10751
+ * @memberof SkillRevisionFileContent
10752
+ */
10753
+ 'size_kb': number;
10754
+ }
10742
10755
  /**
10743
10756
  *
10744
10757
  * @export
@@ -24803,7 +24816,7 @@ export declare const SkillsApiAxiosParamCreator: (configuration?: Configuration)
24803
24816
  */
24804
24817
  getSkill: (skillId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
24805
24818
  /**
24806
- * Retrieve the active revision content for a skill, including instructions, metadata, and available reference or asset filenames.
24819
+ * Retrieve the active revision content for a skill, including instructions, metadata, available reference or asset filenames, and structured file content entries with body size.
24807
24820
  * @summary Get Skill Content
24808
24821
  * @param {string} skillId
24809
24822
  * @param {*} [options] Override http request option.
@@ -24811,7 +24824,7 @@ export declare const SkillsApiAxiosParamCreator: (configuration?: Configuration)
24811
24824
  */
24812
24825
  getSkillContent: (skillId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
24813
24826
  /**
24814
- * Retrieve full content for a specific skill revision.
24827
+ * Retrieve full content for a specific skill revision, including structured reference and asset file bodies with size metadata.
24815
24828
  * @summary Get Skill Revision
24816
24829
  * @param {string} skillId
24817
24830
  * @param {string} revisionId
@@ -25034,7 +25047,7 @@ export declare const SkillsApiFp: (configuration?: Configuration) => {
25034
25047
  */
25035
25048
  getSkill(skillId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SkillRead>>;
25036
25049
  /**
25037
- * Retrieve the active revision content for a skill, including instructions, metadata, and available reference or asset filenames.
25050
+ * Retrieve the active revision content for a skill, including instructions, metadata, available reference or asset filenames, and structured file content entries with body size.
25038
25051
  * @summary Get Skill Content
25039
25052
  * @param {string} skillId
25040
25053
  * @param {*} [options] Override http request option.
@@ -25042,7 +25055,7 @@ export declare const SkillsApiFp: (configuration?: Configuration) => {
25042
25055
  */
25043
25056
  getSkillContent(skillId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SkillContentRead>>;
25044
25057
  /**
25045
- * Retrieve full content for a specific skill revision.
25058
+ * Retrieve full content for a specific skill revision, including structured reference and asset file bodies with size metadata.
25046
25059
  * @summary Get Skill Revision
25047
25060
  * @param {string} skillId
25048
25061
  * @param {string} revisionId
@@ -25265,7 +25278,7 @@ export declare const SkillsApiFactory: (configuration?: Configuration, basePath?
25265
25278
  */
25266
25279
  getSkill(skillId: string, options?: any): AxiosPromise<SkillRead>;
25267
25280
  /**
25268
- * Retrieve the active revision content for a skill, including instructions, metadata, and available reference or asset filenames.
25281
+ * Retrieve the active revision content for a skill, including instructions, metadata, available reference or asset filenames, and structured file content entries with body size.
25269
25282
  * @summary Get Skill Content
25270
25283
  * @param {string} skillId
25271
25284
  * @param {*} [options] Override http request option.
@@ -25273,7 +25286,7 @@ export declare const SkillsApiFactory: (configuration?: Configuration, basePath?
25273
25286
  */
25274
25287
  getSkillContent(skillId: string, options?: any): AxiosPromise<SkillContentRead>;
25275
25288
  /**
25276
- * Retrieve full content for a specific skill revision.
25289
+ * Retrieve full content for a specific skill revision, including structured reference and asset file bodies with size metadata.
25277
25290
  * @summary Get Skill Revision
25278
25291
  * @param {string} skillId
25279
25292
  * @param {string} revisionId
@@ -25506,7 +25519,7 @@ export declare class SkillsApi extends BaseAPI {
25506
25519
  */
25507
25520
  getSkill(skillId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SkillRead, any, {}>>;
25508
25521
  /**
25509
- * Retrieve the active revision content for a skill, including instructions, metadata, and available reference or asset filenames.
25522
+ * Retrieve the active revision content for a skill, including instructions, metadata, available reference or asset filenames, and structured file content entries with body size.
25510
25523
  * @summary Get Skill Content
25511
25524
  * @param {string} skillId
25512
25525
  * @param {*} [options] Override http request option.
@@ -25515,7 +25528,7 @@ export declare class SkillsApi extends BaseAPI {
25515
25528
  */
25516
25529
  getSkillContent(skillId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SkillContentRead, any, {}>>;
25517
25530
  /**
25518
- * Retrieve full content for a specific skill revision.
25531
+ * Retrieve full content for a specific skill revision, including structured reference and asset file bodies with size metadata.
25519
25532
  * @summary Get Skill Revision
25520
25533
  * @param {string} skillId
25521
25534
  * @param {string} revisionId
package/dist/api.js CHANGED
@@ -522,6 +522,7 @@ exports.ProjectIAMPermissionTestPermissionsEnum = {
522
522
  CreateMcpServer: 'create_mcp_server',
523
523
  CreateOauthClient: 'create_oauth_client',
524
524
  CreateProjectIntegration: 'create_project_integration',
525
+ CreateSkill: 'create_skill',
525
526
  CreateTask: 'create_task',
526
527
  CreateTaskAgent: 'create_task_agent',
527
528
  CreateTaskForwarder: 'create_task_forwarder',
@@ -21530,7 +21531,7 @@ var SkillsApiAxiosParamCreator = function (configuration) {
21530
21531
  });
21531
21532
  },
21532
21533
  /**
21533
- * Retrieve the active revision content for a skill, including instructions, metadata, and available reference or asset filenames.
21534
+ * Retrieve the active revision content for a skill, including instructions, metadata, available reference or asset filenames, and structured file content entries with body size.
21534
21535
  * @summary Get Skill Content
21535
21536
  * @param {string} skillId
21536
21537
  * @param {*} [options] Override http request option.
@@ -21573,7 +21574,7 @@ var SkillsApiAxiosParamCreator = function (configuration) {
21573
21574
  });
21574
21575
  },
21575
21576
  /**
21576
- * Retrieve full content for a specific skill revision.
21577
+ * Retrieve full content for a specific skill revision, including structured reference and asset file bodies with size metadata.
21577
21578
  * @summary Get Skill Revision
21578
21579
  * @param {string} skillId
21579
21580
  * @param {string} revisionId
@@ -22474,7 +22475,7 @@ var SkillsApiFp = function (configuration) {
22474
22475
  });
22475
22476
  },
22476
22477
  /**
22477
- * Retrieve the active revision content for a skill, including instructions, metadata, and available reference or asset filenames.
22478
+ * Retrieve the active revision content for a skill, including instructions, metadata, available reference or asset filenames, and structured file content entries with body size.
22478
22479
  * @summary Get Skill Content
22479
22480
  * @param {string} skillId
22480
22481
  * @param {*} [options] Override http request option.
@@ -22497,7 +22498,7 @@ var SkillsApiFp = function (configuration) {
22497
22498
  });
22498
22499
  },
22499
22500
  /**
22500
- * Retrieve full content for a specific skill revision.
22501
+ * Retrieve full content for a specific skill revision, including structured reference and asset file bodies with size metadata.
22501
22502
  * @summary Get Skill Revision
22502
22503
  * @param {string} skillId
22503
22504
  * @param {string} revisionId
@@ -22935,7 +22936,7 @@ var SkillsApiFactory = function (configuration, basePath, axios) {
22935
22936
  return localVarFp.getSkill(skillId, options).then(function (request) { return request(axios, basePath); });
22936
22937
  },
22937
22938
  /**
22938
- * Retrieve the active revision content for a skill, including instructions, metadata, and available reference or asset filenames.
22939
+ * Retrieve the active revision content for a skill, including instructions, metadata, available reference or asset filenames, and structured file content entries with body size.
22939
22940
  * @summary Get Skill Content
22940
22941
  * @param {string} skillId
22941
22942
  * @param {*} [options] Override http request option.
@@ -22945,7 +22946,7 @@ var SkillsApiFactory = function (configuration, basePath, axios) {
22945
22946
  return localVarFp.getSkillContent(skillId, options).then(function (request) { return request(axios, basePath); });
22946
22947
  },
22947
22948
  /**
22948
- * Retrieve full content for a specific skill revision.
22949
+ * Retrieve full content for a specific skill revision, including structured reference and asset file bodies with size metadata.
22949
22950
  * @summary Get Skill Revision
22950
22951
  * @param {string} skillId
22951
22952
  * @param {string} revisionId
@@ -23234,7 +23235,7 @@ var SkillsApi = /** @class */ (function (_super) {
23234
23235
  return (0, exports.SkillsApiFp)(this.configuration).getSkill(skillId, options).then(function (request) { return request(_this.axios, _this.basePath); });
23235
23236
  };
23236
23237
  /**
23237
- * Retrieve the active revision content for a skill, including instructions, metadata, and available reference or asset filenames.
23238
+ * Retrieve the active revision content for a skill, including instructions, metadata, available reference or asset filenames, and structured file content entries with body size.
23238
23239
  * @summary Get Skill Content
23239
23240
  * @param {string} skillId
23240
23241
  * @param {*} [options] Override http request option.
@@ -23246,7 +23247,7 @@ var SkillsApi = /** @class */ (function (_super) {
23246
23247
  return (0, exports.SkillsApiFp)(this.configuration).getSkillContent(skillId, options).then(function (request) { return request(_this.axios, _this.basePath); });
23247
23248
  };
23248
23249
  /**
23249
- * Retrieve full content for a specific skill revision.
23250
+ * Retrieve full content for a specific skill revision, including structured reference and asset file bodies with size metadata.
23250
23251
  * @summary Get Skill Revision
23251
23252
  * @param {string} skillId
23252
23253
  * @param {string} revisionId
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rightbrain/brain-api-client",
3
- "version": "0.0.1-dev.138.8c91403",
3
+ "version": "0.0.1-dev.140.ad06cf1",
4
4
  "description": "OpenAPI client for brain-api",
5
5
  "keywords": [
6
6
  "axios",