@breign/client 1.0.17 → 1.0.19

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.
@@ -78,6 +78,12 @@ export interface FileCreationResponseUio {
78
78
  * @memberof FileCreationResponseUio
79
79
  */
80
80
  status?: FileStatusUio;
81
+ /**
82
+ *
83
+ * @type {boolean}
84
+ * @memberof FileCreationResponseUio
85
+ */
86
+ isActive?: boolean;
81
87
  }
82
88
  /**
83
89
  * Check if a given object implements the FileCreationResponseUio interface.
@@ -49,6 +49,7 @@ function FileCreationResponseUioFromJSONTyped(json, ignoreDiscriminator) {
49
49
  'formData': json['formData'],
50
50
  'createdAt': json['createdAt'] == null ? undefined : json['createdAt'],
51
51
  'status': json['status'] == null ? undefined : (0, FileStatusUio_1.FileStatusUioFromJSON)(json['status']),
52
+ 'isActive': json['isActive'] == null ? undefined : json['isActive'],
52
53
  };
53
54
  }
54
55
  function FileCreationResponseUioToJSON(json) {
@@ -69,5 +70,6 @@ function FileCreationResponseUioToJSONTyped(value, ignoreDiscriminator = false)
69
70
  'formData': value['formData'],
70
71
  'createdAt': value['createdAt'],
71
72
  'status': (0, FileStatusUio_1.FileStatusUioToJSON)(value['status']),
73
+ 'isActive': value['isActive'],
72
74
  };
73
75
  }
@@ -77,6 +77,12 @@ export interface FileUio {
77
77
  * @memberof FileUio
78
78
  */
79
79
  status?: FileStatusUio;
80
+ /**
81
+ *
82
+ * @type {boolean}
83
+ * @memberof FileUio
84
+ */
85
+ isActive?: boolean;
80
86
  }
81
87
  /**
82
88
  * Check if a given object implements the FileUio interface.
@@ -46,6 +46,7 @@ function FileUioFromJSONTyped(json, ignoreDiscriminator) {
46
46
  'formData': json['formData'] == null ? undefined : (0, FileFormDataUio_1.FileFormDataUioFromJSON)(json['formData']),
47
47
  'createdAt': json['createdAt'] == null ? undefined : json['createdAt'],
48
48
  'status': json['status'] == null ? undefined : (0, FileStatusUio_1.FileStatusUioFromJSON)(json['status']),
49
+ 'isActive': json['isActive'] == null ? undefined : json['isActive'],
49
50
  };
50
51
  }
51
52
  function FileUioToJSON(json) {
@@ -66,5 +67,6 @@ function FileUioToJSONTyped(value, ignoreDiscriminator = false) {
66
67
  'formData': (0, FileFormDataUio_1.FileFormDataUioToJSON)(value['formData']),
67
68
  'createdAt': value['createdAt'],
68
69
  'status': (0, FileStatusUio_1.FileStatusUioToJSON)(value['status']),
70
+ 'isActive': value['isActive'],
69
71
  };
70
72
  }
@@ -77,6 +77,12 @@ export interface FileWithDownloadUrlUio {
77
77
  * @memberof FileWithDownloadUrlUio
78
78
  */
79
79
  status?: FileStatusUio;
80
+ /**
81
+ *
82
+ * @type {boolean}
83
+ * @memberof FileWithDownloadUrlUio
84
+ */
85
+ isActive?: boolean;
80
86
  /**
81
87
  * Temporary URL to download the file
82
88
  * @type {string}
@@ -48,6 +48,7 @@ function FileWithDownloadUrlUioFromJSONTyped(json, ignoreDiscriminator) {
48
48
  'formData': json['formData'] == null ? undefined : (0, FileFormDataUio_1.FileFormDataUioFromJSON)(json['formData']),
49
49
  'createdAt': json['createdAt'] == null ? undefined : json['createdAt'],
50
50
  'status': json['status'] == null ? undefined : (0, FileStatusUio_1.FileStatusUioFromJSON)(json['status']),
51
+ 'isActive': json['isActive'] == null ? undefined : json['isActive'],
51
52
  'downloadURL': json['downloadURL'],
52
53
  };
53
54
  }
@@ -69,6 +70,7 @@ function FileWithDownloadUrlUioToJSONTyped(value, ignoreDiscriminator = false) {
69
70
  'formData': (0, FileFormDataUio_1.FileFormDataUioToJSON)(value['formData']),
70
71
  'createdAt': value['createdAt'],
71
72
  'status': (0, FileStatusUio_1.FileStatusUioToJSON)(value['status']),
73
+ 'isActive': value['isActive'],
72
74
  'downloadURL': value['downloadURL'],
73
75
  };
74
76
  }
package/dist/openapi.json CHANGED
@@ -6015,6 +6015,9 @@
6015
6015
  },
6016
6016
  "status" : {
6017
6017
  "$ref" : "#/components/schemas/FileStatus"
6018
+ },
6019
+ "isActive" : {
6020
+ "type" : "boolean"
6018
6021
  }
6019
6022
  },
6020
6023
  "required" : [ "id" ],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@breign/client",
3
- "version": "1.0.17",
3
+ "version": "1.0.19",
4
4
  "main": "dist/index.js",
5
5
  "exports": {
6
6
  ".": "./dist/index.js",