@digipair/skill-sharp 0.95.6 → 0.96.0
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/index.cjs.js +8 -0
- package/index.esm.js +8 -1
- package/libs/skill-sharp/src/lib/skill-sharp.d.ts +1 -0
- package/package.json +1 -1
- package/schema.fr.json +406 -71
- package/schema.json +414 -73
package/schema.json
CHANGED
|
@@ -10,7 +10,9 @@
|
|
|
10
10
|
"paths": {
|
|
11
11
|
"/metadata": {
|
|
12
12
|
"post": {
|
|
13
|
-
"tags": [
|
|
13
|
+
"tags": [
|
|
14
|
+
"service"
|
|
15
|
+
],
|
|
14
16
|
"summary": "Metadata",
|
|
15
17
|
"description": "Returns image metadata (dimensions, format, EXIF, etc.)",
|
|
16
18
|
"parameters": [
|
|
@@ -18,257 +20,586 @@
|
|
|
18
20
|
"name": "content",
|
|
19
21
|
"required": true,
|
|
20
22
|
"description": "Image content as a base64-encoded string",
|
|
21
|
-
"schema": {
|
|
23
|
+
"schema": {
|
|
24
|
+
"type": "string"
|
|
25
|
+
}
|
|
22
26
|
}
|
|
23
27
|
]
|
|
24
28
|
}
|
|
25
29
|
},
|
|
26
30
|
"/stats": {
|
|
27
31
|
"post": {
|
|
28
|
-
"tags": [
|
|
32
|
+
"tags": [
|
|
33
|
+
"service"
|
|
34
|
+
],
|
|
29
35
|
"summary": "Stats",
|
|
30
36
|
"description": "Returns image statistics like mean and standard deviation",
|
|
31
37
|
"parameters": [
|
|
32
38
|
{
|
|
33
39
|
"name": "content",
|
|
34
40
|
"required": true,
|
|
35
|
-
"schema": {
|
|
41
|
+
"schema": {
|
|
42
|
+
"type": "string"
|
|
43
|
+
}
|
|
36
44
|
}
|
|
37
45
|
]
|
|
38
46
|
}
|
|
39
47
|
},
|
|
40
48
|
"/raw": {
|
|
41
49
|
"post": {
|
|
42
|
-
"tags": [
|
|
50
|
+
"tags": [
|
|
51
|
+
"service"
|
|
52
|
+
],
|
|
43
53
|
"summary": "Raw",
|
|
44
54
|
"description": "Returns raw image buffer as base64",
|
|
45
55
|
"parameters": [
|
|
46
56
|
{
|
|
47
57
|
"name": "content",
|
|
48
58
|
"required": true,
|
|
49
|
-
"schema": {
|
|
59
|
+
"schema": {
|
|
60
|
+
"type": "string"
|
|
61
|
+
}
|
|
50
62
|
}
|
|
51
63
|
]
|
|
52
64
|
}
|
|
53
65
|
},
|
|
54
66
|
"/resize": {
|
|
55
67
|
"post": {
|
|
56
|
-
"tags": [
|
|
68
|
+
"tags": [
|
|
69
|
+
"service"
|
|
70
|
+
],
|
|
57
71
|
"summary": "Resize",
|
|
58
72
|
"description": "Resizes the image",
|
|
59
73
|
"parameters": [
|
|
60
|
-
{
|
|
61
|
-
|
|
62
|
-
|
|
74
|
+
{
|
|
75
|
+
"name": "content",
|
|
76
|
+
"required": true,
|
|
77
|
+
"schema": {
|
|
78
|
+
"type": "string"
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"name": "width",
|
|
83
|
+
"required": true,
|
|
84
|
+
"schema": {
|
|
85
|
+
"type": "number"
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"name": "height",
|
|
90
|
+
"required": true,
|
|
91
|
+
"schema": {
|
|
92
|
+
"type": "number"
|
|
93
|
+
}
|
|
94
|
+
},
|
|
63
95
|
{
|
|
64
96
|
"name": "options",
|
|
65
97
|
"required": false,
|
|
66
|
-
"schema": {
|
|
98
|
+
"schema": {
|
|
99
|
+
"type": "object"
|
|
100
|
+
}
|
|
67
101
|
}
|
|
68
102
|
]
|
|
69
103
|
}
|
|
70
104
|
},
|
|
71
105
|
"/rotate": {
|
|
72
106
|
"post": {
|
|
73
|
-
"tags": [
|
|
107
|
+
"tags": [
|
|
108
|
+
"service"
|
|
109
|
+
],
|
|
74
110
|
"summary": "Rotate",
|
|
75
111
|
"description": "Rotates the image (angle optional)",
|
|
76
112
|
"parameters": [
|
|
77
|
-
{
|
|
78
|
-
|
|
113
|
+
{
|
|
114
|
+
"name": "content",
|
|
115
|
+
"required": true,
|
|
116
|
+
"schema": {
|
|
117
|
+
"type": "string"
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"name": "angle",
|
|
122
|
+
"required": false,
|
|
123
|
+
"schema": {
|
|
124
|
+
"type": "number"
|
|
125
|
+
}
|
|
126
|
+
}
|
|
79
127
|
]
|
|
80
128
|
}
|
|
81
129
|
},
|
|
82
130
|
"/extract": {
|
|
83
131
|
"post": {
|
|
84
|
-
"tags": [
|
|
132
|
+
"tags": [
|
|
133
|
+
"service"
|
|
134
|
+
],
|
|
85
135
|
"summary": "Extract",
|
|
86
136
|
"description": "Extracts a region from the image",
|
|
87
137
|
"parameters": [
|
|
88
|
-
{
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
138
|
+
{
|
|
139
|
+
"name": "content",
|
|
140
|
+
"required": true,
|
|
141
|
+
"schema": {
|
|
142
|
+
"type": "string"
|
|
143
|
+
}
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
"name": "left",
|
|
147
|
+
"required": true,
|
|
148
|
+
"schema": {
|
|
149
|
+
"type": "number"
|
|
150
|
+
}
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"name": "top",
|
|
154
|
+
"required": true,
|
|
155
|
+
"schema": {
|
|
156
|
+
"type": "number"
|
|
157
|
+
}
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"name": "width",
|
|
161
|
+
"required": true,
|
|
162
|
+
"schema": {
|
|
163
|
+
"type": "number"
|
|
164
|
+
}
|
|
165
|
+
},
|
|
166
|
+
{
|
|
167
|
+
"name": "height",
|
|
168
|
+
"required": true,
|
|
169
|
+
"schema": {
|
|
170
|
+
"type": "number"
|
|
171
|
+
}
|
|
172
|
+
}
|
|
93
173
|
]
|
|
94
174
|
}
|
|
95
175
|
},
|
|
96
176
|
"/flip": {
|
|
97
177
|
"post": {
|
|
98
|
-
"tags": [
|
|
178
|
+
"tags": [
|
|
179
|
+
"service"
|
|
180
|
+
],
|
|
99
181
|
"summary": "Flip",
|
|
100
182
|
"description": "Flips the image vertically",
|
|
101
|
-
"parameters": [
|
|
183
|
+
"parameters": [
|
|
184
|
+
{
|
|
185
|
+
"name": "content",
|
|
186
|
+
"required": true,
|
|
187
|
+
"schema": {
|
|
188
|
+
"type": "string"
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
]
|
|
102
192
|
}
|
|
103
193
|
},
|
|
104
194
|
"/flop": {
|
|
105
195
|
"post": {
|
|
106
|
-
"tags": [
|
|
196
|
+
"tags": [
|
|
197
|
+
"service"
|
|
198
|
+
],
|
|
107
199
|
"summary": "Flop",
|
|
108
200
|
"description": "Flips the image horizontally",
|
|
109
|
-
"parameters": [
|
|
201
|
+
"parameters": [
|
|
202
|
+
{
|
|
203
|
+
"name": "content",
|
|
204
|
+
"required": true,
|
|
205
|
+
"schema": {
|
|
206
|
+
"type": "string"
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
]
|
|
210
|
+
}
|
|
211
|
+
},
|
|
212
|
+
"/autoOrient": {
|
|
213
|
+
"post": {
|
|
214
|
+
"tags": [
|
|
215
|
+
"service"
|
|
216
|
+
],
|
|
217
|
+
"summary": "Auto Orient",
|
|
218
|
+
"description": "Automatically orients the image based on EXIF data",
|
|
219
|
+
"parameters": [
|
|
220
|
+
{
|
|
221
|
+
"name": "content",
|
|
222
|
+
"required": true,
|
|
223
|
+
"schema": {
|
|
224
|
+
"type": "string"
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
]
|
|
110
228
|
}
|
|
111
229
|
},
|
|
112
230
|
"/grayscale": {
|
|
113
231
|
"post": {
|
|
114
|
-
"tags": [
|
|
232
|
+
"tags": [
|
|
233
|
+
"service"
|
|
234
|
+
],
|
|
115
235
|
"summary": "Grayscale",
|
|
116
236
|
"description": "Converts the image to grayscale",
|
|
117
|
-
"parameters": [
|
|
237
|
+
"parameters": [
|
|
238
|
+
{
|
|
239
|
+
"name": "content",
|
|
240
|
+
"required": true,
|
|
241
|
+
"schema": {
|
|
242
|
+
"type": "string"
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
]
|
|
118
246
|
}
|
|
119
247
|
},
|
|
120
248
|
"/linear": {
|
|
121
249
|
"post": {
|
|
122
|
-
"tags": [
|
|
250
|
+
"tags": [
|
|
251
|
+
"service"
|
|
252
|
+
],
|
|
123
253
|
"summary": "Linear",
|
|
124
254
|
"description": "Applies a linear transformation to the image",
|
|
125
255
|
"parameters": [
|
|
126
|
-
{
|
|
127
|
-
|
|
128
|
-
|
|
256
|
+
{
|
|
257
|
+
"name": "content",
|
|
258
|
+
"required": true,
|
|
259
|
+
"schema": {
|
|
260
|
+
"type": "string"
|
|
261
|
+
}
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"name": "multiplier",
|
|
265
|
+
"required": true,
|
|
266
|
+
"schema": {
|
|
267
|
+
"type": "number"
|
|
268
|
+
}
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
"name": "offset",
|
|
272
|
+
"required": true,
|
|
273
|
+
"schema": {
|
|
274
|
+
"type": "number"
|
|
275
|
+
}
|
|
276
|
+
}
|
|
129
277
|
]
|
|
130
278
|
}
|
|
131
279
|
},
|
|
132
280
|
"/threshold": {
|
|
133
281
|
"post": {
|
|
134
|
-
"tags": [
|
|
282
|
+
"tags": [
|
|
283
|
+
"service"
|
|
284
|
+
],
|
|
135
285
|
"summary": "Threshold",
|
|
136
286
|
"description": "Applies a threshold to the image to convert it to black and white.",
|
|
137
287
|
"parameters": [
|
|
138
|
-
{
|
|
139
|
-
|
|
288
|
+
{
|
|
289
|
+
"name": "content",
|
|
290
|
+
"required": true,
|
|
291
|
+
"schema": {
|
|
292
|
+
"type": "string"
|
|
293
|
+
}
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
"name": "level",
|
|
297
|
+
"required": false,
|
|
298
|
+
"schema": {
|
|
299
|
+
"type": "number",
|
|
300
|
+
"default": 128
|
|
301
|
+
}
|
|
302
|
+
},
|
|
140
303
|
{
|
|
141
304
|
"name": "option",
|
|
142
305
|
"required": false,
|
|
143
|
-
"schema": {
|
|
306
|
+
"schema": {
|
|
307
|
+
"type": "object"
|
|
308
|
+
}
|
|
144
309
|
}
|
|
145
310
|
]
|
|
146
311
|
}
|
|
147
312
|
},
|
|
148
313
|
"/negate": {
|
|
149
314
|
"post": {
|
|
150
|
-
"tags": [
|
|
315
|
+
"tags": [
|
|
316
|
+
"service"
|
|
317
|
+
],
|
|
151
318
|
"summary": "Negate",
|
|
152
319
|
"description": "Inverts the image colors",
|
|
153
|
-
"parameters": [
|
|
320
|
+
"parameters": [
|
|
321
|
+
{
|
|
322
|
+
"name": "content",
|
|
323
|
+
"required": true,
|
|
324
|
+
"schema": {
|
|
325
|
+
"type": "string"
|
|
326
|
+
}
|
|
327
|
+
}
|
|
328
|
+
]
|
|
154
329
|
}
|
|
155
330
|
},
|
|
156
331
|
"/tint": {
|
|
157
332
|
"post": {
|
|
158
|
-
"tags": [
|
|
333
|
+
"tags": [
|
|
334
|
+
"service"
|
|
335
|
+
],
|
|
159
336
|
"summary": "Tint",
|
|
160
337
|
"description": "Applies a color tint",
|
|
161
338
|
"parameters": [
|
|
162
|
-
{
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
339
|
+
{
|
|
340
|
+
"name": "content",
|
|
341
|
+
"required": true,
|
|
342
|
+
"schema": {
|
|
343
|
+
"type": "string"
|
|
344
|
+
}
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
"name": "r",
|
|
348
|
+
"required": true,
|
|
349
|
+
"schema": {
|
|
350
|
+
"type": "number"
|
|
351
|
+
}
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
"name": "g",
|
|
355
|
+
"required": true,
|
|
356
|
+
"schema": {
|
|
357
|
+
"type": "number"
|
|
358
|
+
}
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
"name": "b",
|
|
362
|
+
"required": true,
|
|
363
|
+
"schema": {
|
|
364
|
+
"type": "number"
|
|
365
|
+
}
|
|
366
|
+
}
|
|
166
367
|
]
|
|
167
368
|
}
|
|
168
369
|
},
|
|
169
370
|
"/modulate": {
|
|
170
371
|
"post": {
|
|
171
|
-
"tags": [
|
|
372
|
+
"tags": [
|
|
373
|
+
"service"
|
|
374
|
+
],
|
|
172
375
|
"summary": "Modulate",
|
|
173
376
|
"description": "Adjusts brightness, saturation and hue",
|
|
174
377
|
"parameters": [
|
|
175
|
-
{
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
378
|
+
{
|
|
379
|
+
"name": "content",
|
|
380
|
+
"required": true,
|
|
381
|
+
"schema": {
|
|
382
|
+
"type": "string"
|
|
383
|
+
}
|
|
384
|
+
},
|
|
385
|
+
{
|
|
386
|
+
"name": "brightness",
|
|
387
|
+
"required": false,
|
|
388
|
+
"schema": {
|
|
389
|
+
"type": "number"
|
|
390
|
+
}
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
"name": "saturation",
|
|
394
|
+
"required": false,
|
|
395
|
+
"schema": {
|
|
396
|
+
"type": "number"
|
|
397
|
+
}
|
|
398
|
+
},
|
|
399
|
+
{
|
|
400
|
+
"name": "hue",
|
|
401
|
+
"required": false,
|
|
402
|
+
"schema": {
|
|
403
|
+
"type": "number"
|
|
404
|
+
}
|
|
405
|
+
}
|
|
179
406
|
]
|
|
180
407
|
}
|
|
181
408
|
},
|
|
182
409
|
"/blur": {
|
|
183
410
|
"post": {
|
|
184
|
-
"tags": [
|
|
411
|
+
"tags": [
|
|
412
|
+
"service"
|
|
413
|
+
],
|
|
185
414
|
"summary": "Blur",
|
|
186
415
|
"description": "Applies a blur effect",
|
|
187
416
|
"parameters": [
|
|
188
|
-
{
|
|
189
|
-
|
|
417
|
+
{
|
|
418
|
+
"name": "content",
|
|
419
|
+
"required": true,
|
|
420
|
+
"schema": {
|
|
421
|
+
"type": "string"
|
|
422
|
+
}
|
|
423
|
+
},
|
|
424
|
+
{
|
|
425
|
+
"name": "radius",
|
|
426
|
+
"required": false,
|
|
427
|
+
"schema": {
|
|
428
|
+
"type": "number"
|
|
429
|
+
}
|
|
430
|
+
}
|
|
190
431
|
]
|
|
191
432
|
}
|
|
192
433
|
},
|
|
193
434
|
"/sharpen": {
|
|
194
435
|
"post": {
|
|
195
|
-
"tags": [
|
|
436
|
+
"tags": [
|
|
437
|
+
"service"
|
|
438
|
+
],
|
|
196
439
|
"summary": "Sharpen",
|
|
197
440
|
"description": "Sharpens the image",
|
|
198
|
-
"parameters": [
|
|
441
|
+
"parameters": [
|
|
442
|
+
{
|
|
443
|
+
"name": "content",
|
|
444
|
+
"required": true,
|
|
445
|
+
"schema": {
|
|
446
|
+
"type": "string"
|
|
447
|
+
}
|
|
448
|
+
}
|
|
449
|
+
]
|
|
199
450
|
}
|
|
200
451
|
},
|
|
201
452
|
"/toFormat": {
|
|
202
453
|
"post": {
|
|
203
|
-
"tags": [
|
|
454
|
+
"tags": [
|
|
455
|
+
"service"
|
|
456
|
+
],
|
|
204
457
|
"summary": "To Format",
|
|
205
458
|
"description": "Converts the image to a different format",
|
|
206
459
|
"parameters": [
|
|
207
|
-
{
|
|
460
|
+
{
|
|
461
|
+
"name": "content",
|
|
462
|
+
"required": true,
|
|
463
|
+
"schema": {
|
|
464
|
+
"type": "string"
|
|
465
|
+
}
|
|
466
|
+
},
|
|
208
467
|
{
|
|
209
468
|
"name": "format",
|
|
210
469
|
"required": true,
|
|
211
470
|
"description": "jpeg, png, webp, avif",
|
|
212
|
-
"schema": {
|
|
471
|
+
"schema": {
|
|
472
|
+
"type": "string",
|
|
473
|
+
"enum": [
|
|
474
|
+
"jpeg",
|
|
475
|
+
"png",
|
|
476
|
+
"webp",
|
|
477
|
+
"avif"
|
|
478
|
+
]
|
|
479
|
+
}
|
|
213
480
|
}
|
|
214
481
|
]
|
|
215
482
|
}
|
|
216
483
|
},
|
|
217
484
|
"/jpeg": {
|
|
218
485
|
"post": {
|
|
219
|
-
"tags": [
|
|
486
|
+
"tags": [
|
|
487
|
+
"service"
|
|
488
|
+
],
|
|
220
489
|
"summary": "JPEG",
|
|
221
490
|
"description": "Exports the image as JPEG",
|
|
222
491
|
"parameters": [
|
|
223
|
-
{
|
|
224
|
-
|
|
492
|
+
{
|
|
493
|
+
"name": "content",
|
|
494
|
+
"required": true,
|
|
495
|
+
"schema": {
|
|
496
|
+
"type": "string"
|
|
497
|
+
}
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
"name": "quality",
|
|
501
|
+
"required": false,
|
|
502
|
+
"schema": {
|
|
503
|
+
"type": "number",
|
|
504
|
+
"default": 80
|
|
505
|
+
}
|
|
506
|
+
}
|
|
225
507
|
]
|
|
226
508
|
}
|
|
227
509
|
},
|
|
228
510
|
"/png": {
|
|
229
511
|
"post": {
|
|
230
|
-
"tags": [
|
|
512
|
+
"tags": [
|
|
513
|
+
"service"
|
|
514
|
+
],
|
|
231
515
|
"summary": "PNG",
|
|
232
516
|
"description": "Exports the image as PNG",
|
|
233
517
|
"parameters": [
|
|
234
|
-
{
|
|
518
|
+
{
|
|
519
|
+
"name": "content",
|
|
520
|
+
"required": true,
|
|
521
|
+
"schema": {
|
|
522
|
+
"type": "string"
|
|
523
|
+
}
|
|
524
|
+
},
|
|
235
525
|
{
|
|
236
526
|
"name": "compressionLevel",
|
|
237
527
|
"required": false,
|
|
238
|
-
"schema": {
|
|
528
|
+
"schema": {
|
|
529
|
+
"type": "number",
|
|
530
|
+
"default": 6
|
|
531
|
+
}
|
|
239
532
|
}
|
|
240
533
|
]
|
|
241
534
|
}
|
|
242
535
|
},
|
|
243
536
|
"/webp": {
|
|
244
537
|
"post": {
|
|
245
|
-
"tags": [
|
|
538
|
+
"tags": [
|
|
539
|
+
"service"
|
|
540
|
+
],
|
|
246
541
|
"summary": "WebP",
|
|
247
542
|
"description": "Exports the image as WebP",
|
|
248
543
|
"parameters": [
|
|
249
|
-
{
|
|
250
|
-
|
|
544
|
+
{
|
|
545
|
+
"name": "content",
|
|
546
|
+
"required": true,
|
|
547
|
+
"schema": {
|
|
548
|
+
"type": "string"
|
|
549
|
+
}
|
|
550
|
+
},
|
|
551
|
+
{
|
|
552
|
+
"name": "quality",
|
|
553
|
+
"required": false,
|
|
554
|
+
"schema": {
|
|
555
|
+
"type": "number",
|
|
556
|
+
"default": 80
|
|
557
|
+
}
|
|
558
|
+
}
|
|
251
559
|
]
|
|
252
560
|
}
|
|
253
561
|
},
|
|
254
562
|
"/avif": {
|
|
255
563
|
"post": {
|
|
256
|
-
"tags": [
|
|
564
|
+
"tags": [
|
|
565
|
+
"service"
|
|
566
|
+
],
|
|
257
567
|
"summary": "AVIF",
|
|
258
568
|
"description": "Exports the image as AVIF",
|
|
259
569
|
"parameters": [
|
|
260
|
-
{
|
|
261
|
-
|
|
570
|
+
{
|
|
571
|
+
"name": "content",
|
|
572
|
+
"required": true,
|
|
573
|
+
"schema": {
|
|
574
|
+
"type": "string"
|
|
575
|
+
}
|
|
576
|
+
},
|
|
577
|
+
{
|
|
578
|
+
"name": "quality",
|
|
579
|
+
"required": false,
|
|
580
|
+
"schema": {
|
|
581
|
+
"type": "number",
|
|
582
|
+
"default": 50
|
|
583
|
+
}
|
|
584
|
+
}
|
|
262
585
|
]
|
|
263
586
|
}
|
|
264
587
|
},
|
|
265
588
|
"/composite": {
|
|
266
589
|
"post": {
|
|
267
|
-
"tags": [
|
|
590
|
+
"tags": [
|
|
591
|
+
"service"
|
|
592
|
+
],
|
|
268
593
|
"summary": "Composite",
|
|
269
594
|
"description": "Overlays other images (e.g. watermark)",
|
|
270
595
|
"parameters": [
|
|
271
|
-
{
|
|
596
|
+
{
|
|
597
|
+
"name": "content",
|
|
598
|
+
"required": true,
|
|
599
|
+
"schema": {
|
|
600
|
+
"type": "string"
|
|
601
|
+
}
|
|
602
|
+
},
|
|
272
603
|
{
|
|
273
604
|
"name": "overlays",
|
|
274
605
|
"required": true,
|
|
@@ -278,11 +609,21 @@
|
|
|
278
609
|
"items": {
|
|
279
610
|
"type": "object",
|
|
280
611
|
"properties": {
|
|
281
|
-
"input": {
|
|
282
|
-
|
|
283
|
-
|
|
612
|
+
"input": {
|
|
613
|
+
"type": "string"
|
|
614
|
+
},
|
|
615
|
+
"top": {
|
|
616
|
+
"type": "number"
|
|
617
|
+
},
|
|
618
|
+
"left": {
|
|
619
|
+
"type": "number"
|
|
620
|
+
}
|
|
284
621
|
},
|
|
285
|
-
"required": [
|
|
622
|
+
"required": [
|
|
623
|
+
"input",
|
|
624
|
+
"top",
|
|
625
|
+
"left"
|
|
626
|
+
]
|
|
286
627
|
}
|
|
287
628
|
}
|
|
288
629
|
}
|
|
@@ -294,4 +635,4 @@
|
|
|
294
635
|
"schemas": {}
|
|
295
636
|
},
|
|
296
637
|
"x-scene-blocks": {}
|
|
297
|
-
}
|
|
638
|
+
}
|