@breign/client 1.0.22 → 1.0.24

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.
@@ -72,6 +72,12 @@ export interface FileCreationResponseUio {
72
72
  * @memberof FileCreationResponseUio
73
73
  */
74
74
  createdAt?: string;
75
+ /**
76
+ *
77
+ * @type {string}
78
+ * @memberof FileCreationResponseUio
79
+ */
80
+ updatedAt?: string;
75
81
  /**
76
82
  *
77
83
  * @type {FileStatusUio}
@@ -48,6 +48,7 @@ function FileCreationResponseUioFromJSONTyped(json, ignoreDiscriminator) {
48
48
  'postURL': json['postURL'],
49
49
  'formData': json['formData'],
50
50
  'createdAt': json['createdAt'] == null ? undefined : json['createdAt'],
51
+ 'updatedAt': json['updatedAt'] == null ? undefined : json['updatedAt'],
51
52
  'status': json['status'] == null ? undefined : (0, FileStatusUio_1.FileStatusUioFromJSON)(json['status']),
52
53
  'isActive': json['isActive'] == null ? undefined : json['isActive'],
53
54
  };
@@ -69,6 +70,7 @@ function FileCreationResponseUioToJSONTyped(value, ignoreDiscriminator = false)
69
70
  'postURL': value['postURL'],
70
71
  'formData': value['formData'],
71
72
  'createdAt': value['createdAt'],
73
+ 'updatedAt': value['updatedAt'],
72
74
  'status': (0, FileStatusUio_1.FileStatusUioToJSON)(value['status']),
73
75
  'isActive': value['isActive'],
74
76
  };
@@ -71,6 +71,12 @@ export interface FileUio {
71
71
  * @memberof FileUio
72
72
  */
73
73
  createdAt?: string;
74
+ /**
75
+ *
76
+ * @type {string}
77
+ * @memberof FileUio
78
+ */
79
+ updatedAt?: string;
74
80
  /**
75
81
  *
76
82
  * @type {FileStatusUio}
@@ -45,6 +45,7 @@ function FileUioFromJSONTyped(json, ignoreDiscriminator) {
45
45
  'postURL': json['postURL'] == null ? undefined : json['postURL'],
46
46
  'formData': json['formData'] == null ? undefined : (0, FileFormDataUio_1.FileFormDataUioFromJSON)(json['formData']),
47
47
  'createdAt': json['createdAt'] == null ? undefined : json['createdAt'],
48
+ 'updatedAt': json['updatedAt'] == null ? undefined : json['updatedAt'],
48
49
  'status': json['status'] == null ? undefined : (0, FileStatusUio_1.FileStatusUioFromJSON)(json['status']),
49
50
  'isActive': json['isActive'] == null ? undefined : json['isActive'],
50
51
  };
@@ -66,6 +67,7 @@ function FileUioToJSONTyped(value, ignoreDiscriminator = false) {
66
67
  'postURL': value['postURL'],
67
68
  'formData': (0, FileFormDataUio_1.FileFormDataUioToJSON)(value['formData']),
68
69
  'createdAt': value['createdAt'],
70
+ 'updatedAt': value['updatedAt'],
69
71
  'status': (0, FileStatusUio_1.FileStatusUioToJSON)(value['status']),
70
72
  'isActive': value['isActive'],
71
73
  };
@@ -71,6 +71,12 @@ export interface FileWithDownloadUrlUio {
71
71
  * @memberof FileWithDownloadUrlUio
72
72
  */
73
73
  createdAt?: string;
74
+ /**
75
+ *
76
+ * @type {string}
77
+ * @memberof FileWithDownloadUrlUio
78
+ */
79
+ updatedAt?: string;
74
80
  /**
75
81
  *
76
82
  * @type {FileStatusUio}
@@ -47,6 +47,7 @@ function FileWithDownloadUrlUioFromJSONTyped(json, ignoreDiscriminator) {
47
47
  'postURL': json['postURL'] == null ? undefined : json['postURL'],
48
48
  'formData': json['formData'] == null ? undefined : (0, FileFormDataUio_1.FileFormDataUioFromJSON)(json['formData']),
49
49
  'createdAt': json['createdAt'] == null ? undefined : json['createdAt'],
50
+ 'updatedAt': json['updatedAt'] == null ? undefined : json['updatedAt'],
50
51
  'status': json['status'] == null ? undefined : (0, FileStatusUio_1.FileStatusUioFromJSON)(json['status']),
51
52
  'isActive': json['isActive'] == null ? undefined : json['isActive'],
52
53
  'downloadURL': json['downloadURL'],
@@ -69,6 +70,7 @@ function FileWithDownloadUrlUioToJSONTyped(value, ignoreDiscriminator = false) {
69
70
  'postURL': value['postURL'],
70
71
  'formData': (0, FileFormDataUio_1.FileFormDataUioToJSON)(value['formData']),
71
72
  'createdAt': value['createdAt'],
73
+ 'updatedAt': value['updatedAt'],
72
74
  'status': (0, FileStatusUio_1.FileStatusUioToJSON)(value['status']),
73
75
  'isActive': value['isActive'],
74
76
  'downloadURL': value['downloadURL'],
@@ -47,6 +47,14 @@ export interface ToolCreateRequestUio {
47
47
  configuration: {
48
48
  [key: string]: any;
49
49
  };
50
+ /**
51
+ *
52
+ * @type {{ [key: string]: any; }}
53
+ * @memberof ToolCreateRequestUio
54
+ */
55
+ manifest?: {
56
+ [key: string]: any;
57
+ };
50
58
  /**
51
59
  *
52
60
  * @type {{ [key: string]: any; }}
@@ -45,6 +45,7 @@ function ToolCreateRequestUioFromJSONTyped(json, ignoreDiscriminator) {
45
45
  'description': json['description'] == null ? undefined : json['description'],
46
46
  'type': json['type'],
47
47
  'configuration': json['configuration'],
48
+ 'manifest': json['manifest'] == null ? undefined : json['manifest'],
48
49
  'mcp': json['mcp'] == null ? undefined : json['mcp'],
49
50
  };
50
51
  }
@@ -61,6 +62,7 @@ function ToolCreateRequestUioToJSONTyped(value, ignoreDiscriminator = false) {
61
62
  'description': value['description'],
62
63
  'type': value['type'],
63
64
  'configuration': value['configuration'],
65
+ 'manifest': value['manifest'],
64
66
  'mcp': value['mcp'],
65
67
  };
66
68
  }
package/dist/openapi.json CHANGED
@@ -6334,6 +6334,9 @@
6334
6334
  "createdAt" : {
6335
6335
  "type" : "string"
6336
6336
  },
6337
+ "updatedAt" : {
6338
+ "type" : "string"
6339
+ },
6337
6340
  "status" : {
6338
6341
  "$ref" : "#/components/schemas/FileStatus"
6339
6342
  },
@@ -7868,6 +7871,10 @@
7868
7871
  "additionalProperties" : true,
7869
7872
  "type" : "object"
7870
7873
  },
7874
+ "manifest" : {
7875
+ "additionalProperties" : true,
7876
+ "type" : "object"
7877
+ },
7871
7878
  "mcp" : {
7872
7879
  "additionalProperties" : true,
7873
7880
  "type" : "object"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@breign/client",
3
- "version": "1.0.22",
3
+ "version": "1.0.24",
4
4
  "main": "dist/index.js",
5
5
  "exports": {
6
6
  ".": "./dist/index.js",