@breign/client 1.0.57 → 1.0.59

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/dist/apis/AppApi.d.ts +48 -1
  2. package/dist/apis/AppApi.js +110 -0
  3. package/dist/apis/ConversationsApi.d.ts +5 -5
  4. package/dist/apis/ConversationsApi.js +4 -3
  5. package/dist/models/AttachmentCreateRequestUio.d.ts +5 -39
  6. package/dist/models/AttachmentCreateRequestUio.js +22 -32
  7. package/dist/models/AttachmentCreateResponseUio.d.ts +24 -0
  8. package/dist/models/AttachmentCreateResponseUio.js +64 -0
  9. package/dist/models/AttachmentDetailsResponseUio.d.ts +23 -0
  10. package/dist/models/AttachmentDetailsResponseUio.js +57 -0
  11. package/dist/models/AttachmentTypeUio.d.ts +1 -0
  12. package/dist/models/AttachmentTypeUio.js +2 -1
  13. package/dist/models/AudioFillerExistsResponseUio.d.ts +32 -0
  14. package/dist/models/AudioFillerExistsResponseUio.js +50 -0
  15. package/dist/models/ChatContextAttachmentUio.d.ts +23 -0
  16. package/dist/models/ChatContextAttachmentUio.js +57 -0
  17. package/dist/models/ContextUio.d.ts +3 -3
  18. package/dist/models/ContextUio.js +3 -3
  19. package/dist/models/FileAttachmentCreateRequestUio.d.ts +63 -0
  20. package/dist/models/FileAttachmentCreateRequestUio.js +73 -0
  21. package/dist/models/FileAttachmentDetailsResponseUio.d.ts +89 -0
  22. package/dist/models/FileAttachmentDetailsResponseUio.js +85 -0
  23. package/dist/models/FileAttachmentProcessedOneOfUio.d.ts +9 -3
  24. package/dist/models/FileAttachmentProcessedOneOfUio.js +9 -3
  25. package/dist/models/FileAttachmentUio.d.ts +1 -1
  26. package/dist/models/FileAttachmentUploadResponseUio.d.ts +103 -0
  27. package/dist/models/FileAttachmentUploadResponseUio.js +93 -0
  28. package/dist/models/ImageAttachment1Uio.d.ts +94 -0
  29. package/dist/models/ImageAttachment1Uio.js +90 -0
  30. package/dist/models/ImageAttachmentCreateRequestUio.d.ts +69 -0
  31. package/dist/models/ImageAttachmentCreateRequestUio.js +75 -0
  32. package/dist/models/ImageAttachmentDetailsResponseUio.d.ts +94 -0
  33. package/dist/models/ImageAttachmentDetailsResponseUio.js +90 -0
  34. package/dist/models/ImageAttachmentUio.d.ts +94 -0
  35. package/dist/models/ImageAttachmentUio.js +90 -0
  36. package/dist/models/ImageAttachmentUploadResponseUio.d.ts +108 -0
  37. package/dist/models/ImageAttachmentUploadResponseUio.js +98 -0
  38. package/dist/models/index.d.ts +12 -0
  39. package/dist/models/index.js +12 -0
  40. package/dist/openapi.json +425 -6
  41. package/package.json +1 -1
@@ -0,0 +1,94 @@
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
+ import type { FileAttachmentStatusUio } from './FileAttachmentStatusUio';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface ImageAttachmentUio
17
+ */
18
+ export interface ImageAttachmentUio {
19
+ /**
20
+ *
21
+ * @type {string}
22
+ * @memberof ImageAttachmentUio
23
+ */
24
+ type: ImageAttachmentUioTypeEnum;
25
+ /**
26
+ *
27
+ * @type {string}
28
+ * @memberof ImageAttachmentUio
29
+ */
30
+ id: string;
31
+ /**
32
+ *
33
+ * @type {string}
34
+ * @memberof ImageAttachmentUio
35
+ */
36
+ name: string;
37
+ /**
38
+ *
39
+ * @type {string}
40
+ * @memberof ImageAttachmentUio
41
+ */
42
+ mimeType: string;
43
+ /**
44
+ *
45
+ * @type {string}
46
+ * @memberof ImageAttachmentUio
47
+ */
48
+ ext: string;
49
+ /**
50
+ *
51
+ * @type {number}
52
+ * @memberof ImageAttachmentUio
53
+ */
54
+ size: number;
55
+ /**
56
+ *
57
+ * @type {string}
58
+ * @memberof ImageAttachmentUio
59
+ */
60
+ key: string;
61
+ /**
62
+ * Presigned URL to access the image
63
+ * @type {string}
64
+ * @memberof ImageAttachmentUio
65
+ */
66
+ url?: string;
67
+ /**
68
+ * Base64 inline data URL (optional)
69
+ * @type {string}
70
+ * @memberof ImageAttachmentUio
71
+ */
72
+ inlineDataUrl?: string;
73
+ /**
74
+ *
75
+ * @type {FileAttachmentStatusUio}
76
+ * @memberof ImageAttachmentUio
77
+ */
78
+ status: FileAttachmentStatusUio;
79
+ }
80
+ /**
81
+ * @export
82
+ */
83
+ export declare const ImageAttachmentUioTypeEnum: {
84
+ readonly Image: "image";
85
+ };
86
+ export type ImageAttachmentUioTypeEnum = typeof ImageAttachmentUioTypeEnum[keyof typeof ImageAttachmentUioTypeEnum];
87
+ /**
88
+ * Check if a given object implements the ImageAttachmentUio interface.
89
+ */
90
+ export declare function instanceOfImageAttachmentUio(value: object): value is ImageAttachmentUio;
91
+ export declare function ImageAttachmentUioFromJSON(json: any): ImageAttachmentUio;
92
+ export declare function ImageAttachmentUioFromJSONTyped(json: any, ignoreDiscriminator: boolean): ImageAttachmentUio;
93
+ export declare function ImageAttachmentUioToJSON(json: any): ImageAttachmentUio;
94
+ export declare function ImageAttachmentUioToJSONTyped(value?: ImageAttachmentUio | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,90 @@
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.ImageAttachmentUioTypeEnum = void 0;
17
+ exports.instanceOfImageAttachmentUio = instanceOfImageAttachmentUio;
18
+ exports.ImageAttachmentUioFromJSON = ImageAttachmentUioFromJSON;
19
+ exports.ImageAttachmentUioFromJSONTyped = ImageAttachmentUioFromJSONTyped;
20
+ exports.ImageAttachmentUioToJSON = ImageAttachmentUioToJSON;
21
+ exports.ImageAttachmentUioToJSONTyped = ImageAttachmentUioToJSONTyped;
22
+ const FileAttachmentStatusUio_1 = require("./FileAttachmentStatusUio");
23
+ /**
24
+ * @export
25
+ */
26
+ exports.ImageAttachmentUioTypeEnum = {
27
+ Image: 'image'
28
+ };
29
+ /**
30
+ * Check if a given object implements the ImageAttachmentUio interface.
31
+ */
32
+ function instanceOfImageAttachmentUio(value) {
33
+ if (!('type' in value) || value['type'] === undefined)
34
+ return false;
35
+ if (!('id' in value) || value['id'] === undefined)
36
+ return false;
37
+ if (!('name' in value) || value['name'] === undefined)
38
+ return false;
39
+ if (!('mimeType' in value) || value['mimeType'] === undefined)
40
+ return false;
41
+ if (!('ext' in value) || value['ext'] === undefined)
42
+ return false;
43
+ if (!('size' in value) || value['size'] === undefined)
44
+ return false;
45
+ if (!('key' in value) || value['key'] === undefined)
46
+ return false;
47
+ if (!('status' in value) || value['status'] === undefined)
48
+ return false;
49
+ return true;
50
+ }
51
+ function ImageAttachmentUioFromJSON(json) {
52
+ return ImageAttachmentUioFromJSONTyped(json, false);
53
+ }
54
+ function ImageAttachmentUioFromJSONTyped(json, ignoreDiscriminator) {
55
+ if (json == null) {
56
+ return json;
57
+ }
58
+ return {
59
+ 'type': json['type'],
60
+ 'id': json['id'],
61
+ 'name': json['name'],
62
+ 'mimeType': json['mimeType'],
63
+ 'ext': json['ext'],
64
+ 'size': json['size'],
65
+ 'key': json['key'],
66
+ 'url': json['url'] == null ? undefined : json['url'],
67
+ 'inlineDataUrl': json['inlineDataUrl'] == null ? undefined : json['inlineDataUrl'],
68
+ 'status': (0, FileAttachmentStatusUio_1.FileAttachmentStatusUioFromJSON)(json['status']),
69
+ };
70
+ }
71
+ function ImageAttachmentUioToJSON(json) {
72
+ return ImageAttachmentUioToJSONTyped(json, false);
73
+ }
74
+ function ImageAttachmentUioToJSONTyped(value, ignoreDiscriminator = false) {
75
+ if (value == null) {
76
+ return value;
77
+ }
78
+ return {
79
+ 'type': value['type'],
80
+ 'id': value['id'],
81
+ 'name': value['name'],
82
+ 'mimeType': value['mimeType'],
83
+ 'ext': value['ext'],
84
+ 'size': value['size'],
85
+ 'key': value['key'],
86
+ 'url': value['url'],
87
+ 'inlineDataUrl': value['inlineDataUrl'],
88
+ 'status': (0, FileAttachmentStatusUio_1.FileAttachmentStatusUioToJSON)(value['status']),
89
+ };
90
+ }
@@ -0,0 +1,108 @@
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
+ import type { FileAttachmentStatusUio } from './FileAttachmentStatusUio';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface ImageAttachmentUploadResponseUio
17
+ */
18
+ export interface ImageAttachmentUploadResponseUio {
19
+ /**
20
+ *
21
+ * @type {string}
22
+ * @memberof ImageAttachmentUploadResponseUio
23
+ */
24
+ type: ImageAttachmentUploadResponseUioTypeEnum;
25
+ /**
26
+ *
27
+ * @type {string}
28
+ * @memberof ImageAttachmentUploadResponseUio
29
+ */
30
+ id: string;
31
+ /**
32
+ *
33
+ * @type {string}
34
+ * @memberof ImageAttachmentUploadResponseUio
35
+ */
36
+ name: string;
37
+ /**
38
+ *
39
+ * @type {string}
40
+ * @memberof ImageAttachmentUploadResponseUio
41
+ */
42
+ mimeType: string;
43
+ /**
44
+ *
45
+ * @type {string}
46
+ * @memberof ImageAttachmentUploadResponseUio
47
+ */
48
+ ext: string;
49
+ /**
50
+ *
51
+ * @type {number}
52
+ * @memberof ImageAttachmentUploadResponseUio
53
+ */
54
+ size: number;
55
+ /**
56
+ *
57
+ * @type {string}
58
+ * @memberof ImageAttachmentUploadResponseUio
59
+ */
60
+ key: string;
61
+ /**
62
+ * Presigned URL to access the image
63
+ * @type {string}
64
+ * @memberof ImageAttachmentUploadResponseUio
65
+ */
66
+ url?: string;
67
+ /**
68
+ * Base64 inline data URL (optional)
69
+ * @type {string}
70
+ * @memberof ImageAttachmentUploadResponseUio
71
+ */
72
+ inlineDataUrl?: string;
73
+ /**
74
+ *
75
+ * @type {FileAttachmentStatusUio}
76
+ * @memberof ImageAttachmentUploadResponseUio
77
+ */
78
+ status: FileAttachmentStatusUio;
79
+ /**
80
+ *
81
+ * @type {string}
82
+ * @memberof ImageAttachmentUploadResponseUio
83
+ */
84
+ postURL: string;
85
+ /**
86
+ *
87
+ * @type {{ [key: string]: any; }}
88
+ * @memberof ImageAttachmentUploadResponseUio
89
+ */
90
+ formData: {
91
+ [key: string]: any;
92
+ };
93
+ }
94
+ /**
95
+ * @export
96
+ */
97
+ export declare const ImageAttachmentUploadResponseUioTypeEnum: {
98
+ readonly Image: "image";
99
+ };
100
+ export type ImageAttachmentUploadResponseUioTypeEnum = typeof ImageAttachmentUploadResponseUioTypeEnum[keyof typeof ImageAttachmentUploadResponseUioTypeEnum];
101
+ /**
102
+ * Check if a given object implements the ImageAttachmentUploadResponseUio interface.
103
+ */
104
+ export declare function instanceOfImageAttachmentUploadResponseUio(value: object): value is ImageAttachmentUploadResponseUio;
105
+ export declare function ImageAttachmentUploadResponseUioFromJSON(json: any): ImageAttachmentUploadResponseUio;
106
+ export declare function ImageAttachmentUploadResponseUioFromJSONTyped(json: any, ignoreDiscriminator: boolean): ImageAttachmentUploadResponseUio;
107
+ export declare function ImageAttachmentUploadResponseUioToJSON(json: any): ImageAttachmentUploadResponseUio;
108
+ export declare function ImageAttachmentUploadResponseUioToJSONTyped(value?: ImageAttachmentUploadResponseUio | null, ignoreDiscriminator?: boolean): any;
@@ -0,0 +1,98 @@
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.ImageAttachmentUploadResponseUioTypeEnum = void 0;
17
+ exports.instanceOfImageAttachmentUploadResponseUio = instanceOfImageAttachmentUploadResponseUio;
18
+ exports.ImageAttachmentUploadResponseUioFromJSON = ImageAttachmentUploadResponseUioFromJSON;
19
+ exports.ImageAttachmentUploadResponseUioFromJSONTyped = ImageAttachmentUploadResponseUioFromJSONTyped;
20
+ exports.ImageAttachmentUploadResponseUioToJSON = ImageAttachmentUploadResponseUioToJSON;
21
+ exports.ImageAttachmentUploadResponseUioToJSONTyped = ImageAttachmentUploadResponseUioToJSONTyped;
22
+ const FileAttachmentStatusUio_1 = require("./FileAttachmentStatusUio");
23
+ /**
24
+ * @export
25
+ */
26
+ exports.ImageAttachmentUploadResponseUioTypeEnum = {
27
+ Image: 'image'
28
+ };
29
+ /**
30
+ * Check if a given object implements the ImageAttachmentUploadResponseUio interface.
31
+ */
32
+ function instanceOfImageAttachmentUploadResponseUio(value) {
33
+ if (!('type' in value) || value['type'] === undefined)
34
+ return false;
35
+ if (!('id' in value) || value['id'] === undefined)
36
+ return false;
37
+ if (!('name' in value) || value['name'] === undefined)
38
+ return false;
39
+ if (!('mimeType' in value) || value['mimeType'] === undefined)
40
+ return false;
41
+ if (!('ext' in value) || value['ext'] === undefined)
42
+ return false;
43
+ if (!('size' in value) || value['size'] === undefined)
44
+ return false;
45
+ if (!('key' in value) || value['key'] === undefined)
46
+ return false;
47
+ if (!('status' in value) || value['status'] === undefined)
48
+ return false;
49
+ if (!('postURL' in value) || value['postURL'] === undefined)
50
+ return false;
51
+ if (!('formData' in value) || value['formData'] === undefined)
52
+ return false;
53
+ return true;
54
+ }
55
+ function ImageAttachmentUploadResponseUioFromJSON(json) {
56
+ return ImageAttachmentUploadResponseUioFromJSONTyped(json, false);
57
+ }
58
+ function ImageAttachmentUploadResponseUioFromJSONTyped(json, ignoreDiscriminator) {
59
+ if (json == null) {
60
+ return json;
61
+ }
62
+ return {
63
+ 'type': json['type'],
64
+ 'id': json['id'],
65
+ 'name': json['name'],
66
+ 'mimeType': json['mimeType'],
67
+ 'ext': json['ext'],
68
+ 'size': json['size'],
69
+ 'key': json['key'],
70
+ 'url': json['url'] == null ? undefined : json['url'],
71
+ 'inlineDataUrl': json['inlineDataUrl'] == null ? undefined : json['inlineDataUrl'],
72
+ 'status': (0, FileAttachmentStatusUio_1.FileAttachmentStatusUioFromJSON)(json['status']),
73
+ 'postURL': json['postURL'],
74
+ 'formData': json['formData'],
75
+ };
76
+ }
77
+ function ImageAttachmentUploadResponseUioToJSON(json) {
78
+ return ImageAttachmentUploadResponseUioToJSONTyped(json, false);
79
+ }
80
+ function ImageAttachmentUploadResponseUioToJSONTyped(value, ignoreDiscriminator = false) {
81
+ if (value == null) {
82
+ return value;
83
+ }
84
+ return {
85
+ 'type': value['type'],
86
+ 'id': value['id'],
87
+ 'name': value['name'],
88
+ 'mimeType': value['mimeType'],
89
+ 'ext': value['ext'],
90
+ 'size': value['size'],
91
+ 'key': value['key'],
92
+ 'url': value['url'],
93
+ 'inlineDataUrl': value['inlineDataUrl'],
94
+ 'status': (0, FileAttachmentStatusUio_1.FileAttachmentStatusUioToJSON)(value['status']),
95
+ 'postURL': value['postURL'],
96
+ 'formData': value['formData'],
97
+ };
98
+ }
@@ -50,11 +50,14 @@ export * from './AppTextToSpeechResponseUio';
50
50
  export * from './AppUio';
51
51
  export * from './AppUpdateRequestUio';
52
52
  export * from './AttachmentCreateRequestUio';
53
+ export * from './AttachmentCreateResponseUio';
54
+ export * from './AttachmentDetailsResponseUio';
53
55
  export * from './AttachmentTypeUio';
54
56
  export * from './AudioFile1Uio';
55
57
  export * from './AudioFileOrBufferUio';
56
58
  export * from './AudioFileTypeUio';
57
59
  export * from './AudioFileUio';
60
+ export * from './AudioFillerExistsResponseUio';
58
61
  export * from './AuthCodeConfirmRequestUio';
59
62
  export * from './AuthCodeConfirmResponseUio';
60
63
  export * from './AuthCodeRequestUio';
@@ -62,6 +65,7 @@ export * from './AuthCodeResponseUio';
62
65
  export * from './AuthTypeUio';
63
66
  export * from './BodyWithIdUio';
64
67
  export * from './BodyWithMessageUio';
68
+ export * from './ChatContextAttachmentUio';
65
69
  export * from './ChatContextLocationUio';
66
70
  export * from './ChatContextUio';
67
71
  export * from './ChatMessageAudioInnerUio';
@@ -93,11 +97,14 @@ export * from './DocumentAddRequestUio';
93
97
  export * from './EngineOptionsUio';
94
98
  export * from './EngineUio';
95
99
  export * from './EphemeralInstanceUio';
100
+ export * from './FileAttachmentCreateRequestUio';
101
+ export * from './FileAttachmentDetailsResponseUio';
96
102
  export * from './FileAttachmentProcessedOneOf1Uio';
97
103
  export * from './FileAttachmentProcessedOneOfUio';
98
104
  export * from './FileAttachmentProcessedUio';
99
105
  export * from './FileAttachmentStatusUio';
100
106
  export * from './FileAttachmentUio';
107
+ export * from './FileAttachmentUploadResponseUio';
101
108
  export * from './FileCreationRequestUio';
102
109
  export * from './FileCreationResponseUio';
103
110
  export * from './FileFormDataUio';
@@ -121,6 +128,11 @@ export * from './HealthCheckResponseComponentsApiUio';
121
128
  export * from './HealthCheckResponseComponentsUio';
122
129
  export * from './HealthCheckResponseUio';
123
130
  export * from './HealthStatusUio';
131
+ export * from './ImageAttachment1Uio';
132
+ export * from './ImageAttachmentCreateRequestUio';
133
+ export * from './ImageAttachmentDetailsResponseUio';
134
+ export * from './ImageAttachmentUio';
135
+ export * from './ImageAttachmentUploadResponseUio';
124
136
  export * from './ImageKnowledgeUio';
125
137
  export * from './ImportFileToAgentKnowledge200ResponseUio';
126
138
  export * from './InputUio';
@@ -68,11 +68,14 @@ __exportStar(require("./AppTextToSpeechResponseUio"), exports);
68
68
  __exportStar(require("./AppUio"), exports);
69
69
  __exportStar(require("./AppUpdateRequestUio"), exports);
70
70
  __exportStar(require("./AttachmentCreateRequestUio"), exports);
71
+ __exportStar(require("./AttachmentCreateResponseUio"), exports);
72
+ __exportStar(require("./AttachmentDetailsResponseUio"), exports);
71
73
  __exportStar(require("./AttachmentTypeUio"), exports);
72
74
  __exportStar(require("./AudioFile1Uio"), exports);
73
75
  __exportStar(require("./AudioFileOrBufferUio"), exports);
74
76
  __exportStar(require("./AudioFileTypeUio"), exports);
75
77
  __exportStar(require("./AudioFileUio"), exports);
78
+ __exportStar(require("./AudioFillerExistsResponseUio"), exports);
76
79
  __exportStar(require("./AuthCodeConfirmRequestUio"), exports);
77
80
  __exportStar(require("./AuthCodeConfirmResponseUio"), exports);
78
81
  __exportStar(require("./AuthCodeRequestUio"), exports);
@@ -80,6 +83,7 @@ __exportStar(require("./AuthCodeResponseUio"), exports);
80
83
  __exportStar(require("./AuthTypeUio"), exports);
81
84
  __exportStar(require("./BodyWithIdUio"), exports);
82
85
  __exportStar(require("./BodyWithMessageUio"), exports);
86
+ __exportStar(require("./ChatContextAttachmentUio"), exports);
83
87
  __exportStar(require("./ChatContextLocationUio"), exports);
84
88
  __exportStar(require("./ChatContextUio"), exports);
85
89
  __exportStar(require("./ChatMessageAudioInnerUio"), exports);
@@ -111,11 +115,14 @@ __exportStar(require("./DocumentAddRequestUio"), exports);
111
115
  __exportStar(require("./EngineOptionsUio"), exports);
112
116
  __exportStar(require("./EngineUio"), exports);
113
117
  __exportStar(require("./EphemeralInstanceUio"), exports);
118
+ __exportStar(require("./FileAttachmentCreateRequestUio"), exports);
119
+ __exportStar(require("./FileAttachmentDetailsResponseUio"), exports);
114
120
  __exportStar(require("./FileAttachmentProcessedOneOf1Uio"), exports);
115
121
  __exportStar(require("./FileAttachmentProcessedOneOfUio"), exports);
116
122
  __exportStar(require("./FileAttachmentProcessedUio"), exports);
117
123
  __exportStar(require("./FileAttachmentStatusUio"), exports);
118
124
  __exportStar(require("./FileAttachmentUio"), exports);
125
+ __exportStar(require("./FileAttachmentUploadResponseUio"), exports);
119
126
  __exportStar(require("./FileCreationRequestUio"), exports);
120
127
  __exportStar(require("./FileCreationResponseUio"), exports);
121
128
  __exportStar(require("./FileFormDataUio"), exports);
@@ -139,6 +146,11 @@ __exportStar(require("./HealthCheckResponseComponentsApiUio"), exports);
139
146
  __exportStar(require("./HealthCheckResponseComponentsUio"), exports);
140
147
  __exportStar(require("./HealthCheckResponseUio"), exports);
141
148
  __exportStar(require("./HealthStatusUio"), exports);
149
+ __exportStar(require("./ImageAttachment1Uio"), exports);
150
+ __exportStar(require("./ImageAttachmentCreateRequestUio"), exports);
151
+ __exportStar(require("./ImageAttachmentDetailsResponseUio"), exports);
152
+ __exportStar(require("./ImageAttachmentUio"), exports);
153
+ __exportStar(require("./ImageAttachmentUploadResponseUio"), exports);
142
154
  __exportStar(require("./ImageKnowledgeUio"), exports);
143
155
  __exportStar(require("./ImportFileToAgentKnowledge200ResponseUio"), exports);
144
156
  __exportStar(require("./InputUio"), exports);