@breign/client 1.0.90 → 1.0.92

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.
@@ -0,0 +1,62 @@
1
+ /**
2
+ * brain-client
3
+ * Api ands models for brain-app and brain-app
4
+ *
5
+ * The version of the OpenAPI document: 0.0.0-SNAPSHOT
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface SkillFileSummaryUio
16
+ */
17
+ export interface SkillFileSummaryUio {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof SkillFileSummaryUio
22
+ */
23
+ id: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof SkillFileSummaryUio
28
+ */
29
+ skillId: string;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof SkillFileSummaryUio
34
+ */
35
+ filename: string;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof SkillFileSummaryUio
40
+ */
41
+ mimeType: string;
42
+ /**
43
+ *
44
+ * @type {Date}
45
+ * @memberof SkillFileSummaryUio
46
+ */
47
+ createdAt: Date;
48
+ /**
49
+ *
50
+ * @type {Date}
51
+ * @memberof SkillFileSummaryUio
52
+ */
53
+ updatedAt: Date;
54
+ }
55
+ /**
56
+ * Check if a given object implements the SkillFileSummaryUio interface.
57
+ */
58
+ export declare function instanceOfSkillFileSummaryUio(value: object): value is SkillFileSummaryUio;
59
+ export declare function SkillFileSummaryUioFromJSON(json: any): SkillFileSummaryUio;
60
+ export declare function SkillFileSummaryUioFromJSONTyped(json: any, ignoreDiscriminator: boolean): SkillFileSummaryUio;
61
+ export declare function SkillFileSummaryUioToJSON(json: any): SkillFileSummaryUio;
62
+ export declare function SkillFileSummaryUioToJSONTyped(value?: SkillFileSummaryUio | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,70 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * brain-client
6
+ * Api ands models for brain-app and brain-app
7
+ *
8
+ * The version of the OpenAPI document: 0.0.0-SNAPSHOT
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.instanceOfSkillFileSummaryUio = instanceOfSkillFileSummaryUio;
17
+ exports.SkillFileSummaryUioFromJSON = SkillFileSummaryUioFromJSON;
18
+ exports.SkillFileSummaryUioFromJSONTyped = SkillFileSummaryUioFromJSONTyped;
19
+ exports.SkillFileSummaryUioToJSON = SkillFileSummaryUioToJSON;
20
+ exports.SkillFileSummaryUioToJSONTyped = SkillFileSummaryUioToJSONTyped;
21
+ /**
22
+ * Check if a given object implements the SkillFileSummaryUio interface.
23
+ */
24
+ function instanceOfSkillFileSummaryUio(value) {
25
+ if (!('id' in value) || value['id'] === undefined)
26
+ return false;
27
+ if (!('skillId' in value) || value['skillId'] === undefined)
28
+ return false;
29
+ if (!('filename' in value) || value['filename'] === undefined)
30
+ return false;
31
+ if (!('mimeType' in value) || value['mimeType'] === undefined)
32
+ return false;
33
+ if (!('createdAt' in value) || value['createdAt'] === undefined)
34
+ return false;
35
+ if (!('updatedAt' in value) || value['updatedAt'] === undefined)
36
+ return false;
37
+ return true;
38
+ }
39
+ function SkillFileSummaryUioFromJSON(json) {
40
+ return SkillFileSummaryUioFromJSONTyped(json, false);
41
+ }
42
+ function SkillFileSummaryUioFromJSONTyped(json, ignoreDiscriminator) {
43
+ if (json == null) {
44
+ return json;
45
+ }
46
+ return {
47
+ 'id': json['id'],
48
+ 'skillId': json['skillId'],
49
+ 'filename': json['filename'],
50
+ 'mimeType': json['mimeType'],
51
+ 'createdAt': (new Date(json['createdAt'])),
52
+ 'updatedAt': (new Date(json['updatedAt'])),
53
+ };
54
+ }
55
+ function SkillFileSummaryUioToJSON(json) {
56
+ return SkillFileSummaryUioToJSONTyped(json, false);
57
+ }
58
+ function SkillFileSummaryUioToJSONTyped(value, ignoreDiscriminator = false) {
59
+ if (value == null) {
60
+ return value;
61
+ }
62
+ return {
63
+ 'id': value['id'],
64
+ 'skillId': value['skillId'],
65
+ 'filename': value['filename'],
66
+ 'mimeType': value['mimeType'],
67
+ 'createdAt': ((value['createdAt']).toISOString()),
68
+ 'updatedAt': ((value['updatedAt']).toISOString()),
69
+ };
70
+ }
@@ -0,0 +1,68 @@
1
+ /**
2
+ * brain-client
3
+ * Api ands models for brain-app and brain-app
4
+ *
5
+ * The version of the OpenAPI document: 0.0.0-SNAPSHOT
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface SkillFileUio
16
+ */
17
+ export interface SkillFileUio {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof SkillFileUio
22
+ */
23
+ id: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof SkillFileUio
28
+ */
29
+ skillId: string;
30
+ /**
31
+ *
32
+ * @type {string}
33
+ * @memberof SkillFileUio
34
+ */
35
+ filename: string;
36
+ /**
37
+ *
38
+ * @type {string}
39
+ * @memberof SkillFileUio
40
+ */
41
+ mimeType: string;
42
+ /**
43
+ *
44
+ * @type {string}
45
+ * @memberof SkillFileUio
46
+ */
47
+ content: string;
48
+ /**
49
+ *
50
+ * @type {Date}
51
+ * @memberof SkillFileUio
52
+ */
53
+ createdAt: Date;
54
+ /**
55
+ *
56
+ * @type {Date}
57
+ * @memberof SkillFileUio
58
+ */
59
+ updatedAt: Date;
60
+ }
61
+ /**
62
+ * Check if a given object implements the SkillFileUio interface.
63
+ */
64
+ export declare function instanceOfSkillFileUio(value: object): value is SkillFileUio;
65
+ export declare function SkillFileUioFromJSON(json: any): SkillFileUio;
66
+ export declare function SkillFileUioFromJSONTyped(json: any, ignoreDiscriminator: boolean): SkillFileUio;
67
+ export declare function SkillFileUioToJSON(json: any): SkillFileUio;
68
+ export declare function SkillFileUioToJSONTyped(value?: SkillFileUio | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,74 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * brain-client
6
+ * Api ands models for brain-app and brain-app
7
+ *
8
+ * The version of the OpenAPI document: 0.0.0-SNAPSHOT
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.instanceOfSkillFileUio = instanceOfSkillFileUio;
17
+ exports.SkillFileUioFromJSON = SkillFileUioFromJSON;
18
+ exports.SkillFileUioFromJSONTyped = SkillFileUioFromJSONTyped;
19
+ exports.SkillFileUioToJSON = SkillFileUioToJSON;
20
+ exports.SkillFileUioToJSONTyped = SkillFileUioToJSONTyped;
21
+ /**
22
+ * Check if a given object implements the SkillFileUio interface.
23
+ */
24
+ function instanceOfSkillFileUio(value) {
25
+ if (!('id' in value) || value['id'] === undefined)
26
+ return false;
27
+ if (!('skillId' in value) || value['skillId'] === undefined)
28
+ return false;
29
+ if (!('filename' in value) || value['filename'] === undefined)
30
+ return false;
31
+ if (!('mimeType' in value) || value['mimeType'] === undefined)
32
+ return false;
33
+ if (!('content' in value) || value['content'] === undefined)
34
+ return false;
35
+ if (!('createdAt' in value) || value['createdAt'] === undefined)
36
+ return false;
37
+ if (!('updatedAt' in value) || value['updatedAt'] === undefined)
38
+ return false;
39
+ return true;
40
+ }
41
+ function SkillFileUioFromJSON(json) {
42
+ return SkillFileUioFromJSONTyped(json, false);
43
+ }
44
+ function SkillFileUioFromJSONTyped(json, ignoreDiscriminator) {
45
+ if (json == null) {
46
+ return json;
47
+ }
48
+ return {
49
+ 'id': json['id'],
50
+ 'skillId': json['skillId'],
51
+ 'filename': json['filename'],
52
+ 'mimeType': json['mimeType'],
53
+ 'content': json['content'],
54
+ 'createdAt': (new Date(json['createdAt'])),
55
+ 'updatedAt': (new Date(json['updatedAt'])),
56
+ };
57
+ }
58
+ function SkillFileUioToJSON(json) {
59
+ return SkillFileUioToJSONTyped(json, false);
60
+ }
61
+ function SkillFileUioToJSONTyped(value, ignoreDiscriminator = false) {
62
+ if (value == null) {
63
+ return value;
64
+ }
65
+ return {
66
+ 'id': value['id'],
67
+ 'skillId': value['skillId'],
68
+ 'filename': value['filename'],
69
+ 'mimeType': value['mimeType'],
70
+ 'content': value['content'],
71
+ 'createdAt': ((value['createdAt']).toISOString()),
72
+ 'updatedAt': ((value['updatedAt']).toISOString()),
73
+ };
74
+ }
@@ -0,0 +1,38 @@
1
+ /**
2
+ * brain-client
3
+ * Api ands models for brain-app and brain-app
4
+ *
5
+ * The version of the OpenAPI document: 0.0.0-SNAPSHOT
6
+ *
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ /**
13
+ *
14
+ * @export
15
+ * @interface SkillFileUpdateRequestUio
16
+ */
17
+ export interface SkillFileUpdateRequestUio {
18
+ /**
19
+ *
20
+ * @type {string}
21
+ * @memberof SkillFileUpdateRequestUio
22
+ */
23
+ filename?: string;
24
+ /**
25
+ *
26
+ * @type {string}
27
+ * @memberof SkillFileUpdateRequestUio
28
+ */
29
+ content?: string;
30
+ }
31
+ /**
32
+ * Check if a given object implements the SkillFileUpdateRequestUio interface.
33
+ */
34
+ export declare function instanceOfSkillFileUpdateRequestUio(value: object): value is SkillFileUpdateRequestUio;
35
+ export declare function SkillFileUpdateRequestUioFromJSON(json: any): SkillFileUpdateRequestUio;
36
+ export declare function SkillFileUpdateRequestUioFromJSONTyped(json: any, ignoreDiscriminator: boolean): SkillFileUpdateRequestUio;
37
+ export declare function SkillFileUpdateRequestUioToJSON(json: any): SkillFileUpdateRequestUio;
38
+ export declare function SkillFileUpdateRequestUioToJSONTyped(value?: SkillFileUpdateRequestUio | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * brain-client
6
+ * Api ands models for brain-app and brain-app
7
+ *
8
+ * The version of the OpenAPI document: 0.0.0-SNAPSHOT
9
+ *
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.instanceOfSkillFileUpdateRequestUio = instanceOfSkillFileUpdateRequestUio;
17
+ exports.SkillFileUpdateRequestUioFromJSON = SkillFileUpdateRequestUioFromJSON;
18
+ exports.SkillFileUpdateRequestUioFromJSONTyped = SkillFileUpdateRequestUioFromJSONTyped;
19
+ exports.SkillFileUpdateRequestUioToJSON = SkillFileUpdateRequestUioToJSON;
20
+ exports.SkillFileUpdateRequestUioToJSONTyped = SkillFileUpdateRequestUioToJSONTyped;
21
+ /**
22
+ * Check if a given object implements the SkillFileUpdateRequestUio interface.
23
+ */
24
+ function instanceOfSkillFileUpdateRequestUio(value) {
25
+ return true;
26
+ }
27
+ function SkillFileUpdateRequestUioFromJSON(json) {
28
+ return SkillFileUpdateRequestUioFromJSONTyped(json, false);
29
+ }
30
+ function SkillFileUpdateRequestUioFromJSONTyped(json, ignoreDiscriminator) {
31
+ if (json == null) {
32
+ return json;
33
+ }
34
+ return {
35
+ 'filename': json['filename'] == null ? undefined : json['filename'],
36
+ 'content': json['content'] == null ? undefined : json['content'],
37
+ };
38
+ }
39
+ function SkillFileUpdateRequestUioToJSON(json) {
40
+ return SkillFileUpdateRequestUioToJSONTyped(json, false);
41
+ }
42
+ function SkillFileUpdateRequestUioToJSONTyped(value, ignoreDiscriminator = false) {
43
+ if (value == null) {
44
+ return value;
45
+ }
46
+ return {
47
+ 'filename': value['filename'],
48
+ 'content': value['content'],
49
+ };
50
+ }
@@ -48,6 +48,7 @@ export * from './AppFlowCreateRequestUio';
48
48
  export * from './AppInstanceCreateRequestOneOfUio';
49
49
  export * from './AppInstanceCreateRequestUio';
50
50
  export * from './AppInstanceEphemeralCreateRequestUio';
51
+ export * from './AppInstanceListItemUio';
51
52
  export * from './AppInstancesInnerUio';
52
53
  export * from './AppLightUio';
53
54
  export * from './AppProbeRequestUio';
@@ -225,6 +226,10 @@ export * from './SetupToolRequestUio';
225
226
  export * from './SimpleAgentUio';
226
227
  export * from './SkillAssignRequestUio';
227
228
  export * from './SkillCreateRequestUio';
229
+ export * from './SkillFileCreateRequestUio';
230
+ export * from './SkillFileSummaryUio';
231
+ export * from './SkillFileUio';
232
+ export * from './SkillFileUpdateRequestUio';
228
233
  export * from './SkillUio';
229
234
  export * from './SkillUpdateRequestUio';
230
235
  export * from './SubscriptionMetricUio';
@@ -66,6 +66,7 @@ __exportStar(require("./AppFlowCreateRequestUio"), exports);
66
66
  __exportStar(require("./AppInstanceCreateRequestOneOfUio"), exports);
67
67
  __exportStar(require("./AppInstanceCreateRequestUio"), exports);
68
68
  __exportStar(require("./AppInstanceEphemeralCreateRequestUio"), exports);
69
+ __exportStar(require("./AppInstanceListItemUio"), exports);
69
70
  __exportStar(require("./AppInstancesInnerUio"), exports);
70
71
  __exportStar(require("./AppLightUio"), exports);
71
72
  __exportStar(require("./AppProbeRequestUio"), exports);
@@ -243,6 +244,10 @@ __exportStar(require("./SetupToolRequestUio"), exports);
243
244
  __exportStar(require("./SimpleAgentUio"), exports);
244
245
  __exportStar(require("./SkillAssignRequestUio"), exports);
245
246
  __exportStar(require("./SkillCreateRequestUio"), exports);
247
+ __exportStar(require("./SkillFileCreateRequestUio"), exports);
248
+ __exportStar(require("./SkillFileSummaryUio"), exports);
249
+ __exportStar(require("./SkillFileUio"), exports);
250
+ __exportStar(require("./SkillFileUpdateRequestUio"), exports);
246
251
  __exportStar(require("./SkillUio"), exports);
247
252
  __exportStar(require("./SkillUpdateRequestUio"), exports);
248
253
  __exportStar(require("./SubscriptionMetricUio"), exports);