@redotech/redo-api-schema 2.2.153 → 2.2.155
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/lib/openapi.d.ts +2 -2
- package/lib/openapi.yaml +8 -2
- package/package.json +1 -1
package/lib/openapi.d.ts
CHANGED
|
@@ -265,13 +265,13 @@ export interface components {
|
|
|
265
265
|
* Image
|
|
266
266
|
* @description Base64-encoded image
|
|
267
267
|
*/
|
|
268
|
-
image
|
|
268
|
+
image: string;
|
|
269
269
|
}, {
|
|
270
270
|
/**
|
|
271
271
|
* Message
|
|
272
272
|
* @description Message.
|
|
273
273
|
*/
|
|
274
|
-
message
|
|
274
|
+
message: string;
|
|
275
275
|
}]>;
|
|
276
276
|
/**
|
|
277
277
|
* Coverage product
|
package/lib/openapi.yaml
CHANGED
|
@@ -139,19 +139,25 @@ components:
|
|
|
139
139
|
- message: Item is worn.
|
|
140
140
|
- image: eJxiYAEAAAD//wMAAAYABQ==
|
|
141
141
|
oneOf:
|
|
142
|
-
-
|
|
142
|
+
- additionalProperties: false
|
|
143
|
+
properties:
|
|
143
144
|
image:
|
|
144
145
|
contentEncoding: base64
|
|
145
146
|
description: Base64-encoded image
|
|
146
147
|
title: Image
|
|
147
148
|
type: string
|
|
149
|
+
required:
|
|
150
|
+
- image
|
|
148
151
|
title: Image comment
|
|
149
152
|
type: object
|
|
150
|
-
-
|
|
153
|
+
- additionalProperties: false
|
|
154
|
+
properties:
|
|
151
155
|
message:
|
|
152
156
|
description: Message.
|
|
153
157
|
title: Message
|
|
154
158
|
type: string
|
|
159
|
+
required:
|
|
160
|
+
- message
|
|
155
161
|
title: Message comment
|
|
156
162
|
type: object
|
|
157
163
|
title: Comment
|
package/package.json
CHANGED