@redotech/redo-api-schema 2.2.153 → 2.2.158
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 +10 -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
|
@@ -33,6 +33,8 @@ components:
|
|
|
33
33
|
in: header
|
|
34
34
|
name: X-Page-Size
|
|
35
35
|
schema:
|
|
36
|
+
maximum: 500
|
|
37
|
+
minimum: 1
|
|
36
38
|
type: integer
|
|
37
39
|
return-id.param:
|
|
38
40
|
description: Return ID
|
|
@@ -139,19 +141,25 @@ components:
|
|
|
139
141
|
- message: Item is worn.
|
|
140
142
|
- image: eJxiYAEAAAD//wMAAAYABQ==
|
|
141
143
|
oneOf:
|
|
142
|
-
-
|
|
144
|
+
- additionalProperties: false
|
|
145
|
+
properties:
|
|
143
146
|
image:
|
|
144
147
|
contentEncoding: base64
|
|
145
148
|
description: Base64-encoded image
|
|
146
149
|
title: Image
|
|
147
150
|
type: string
|
|
151
|
+
required:
|
|
152
|
+
- image
|
|
148
153
|
title: Image comment
|
|
149
154
|
type: object
|
|
150
|
-
-
|
|
155
|
+
- additionalProperties: false
|
|
156
|
+
properties:
|
|
151
157
|
message:
|
|
152
158
|
description: Message.
|
|
153
159
|
title: Message
|
|
154
160
|
type: string
|
|
161
|
+
required:
|
|
162
|
+
- message
|
|
155
163
|
title: Message comment
|
|
156
164
|
type: object
|
|
157
165
|
title: Comment
|
package/package.json
CHANGED