@digipair/skill-sharp 0.95.6 → 0.95.7
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/package.json +1 -1
- package/schema.fr.json +388 -71
- package/schema.json +396 -73
package/package.json
CHANGED
package/schema.fr.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": "Métadonnées",
|
|
15
17
|
"description": "Retourne les métadonnées de l’image (dimensions, format, EXIF, etc.).",
|
|
16
18
|
"parameters": [
|
|
@@ -18,245 +20,550 @@
|
|
|
18
20
|
"name": "content",
|
|
19
21
|
"required": true,
|
|
20
22
|
"description": "Image encodée en base64",
|
|
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": "Statistiques",
|
|
30
36
|
"description": "Retourne des statistiques sur l’image comme la moyenne ou l’écart-type.",
|
|
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": "Brut (RAW)",
|
|
44
54
|
"description": "Retourne le buffer brut de l’image en 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": "Redimensionner",
|
|
58
72
|
"description": "Redimensionne l’image selon la largeur et la hauteur spécifiées.",
|
|
59
73
|
"parameters": [
|
|
60
|
-
{
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
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
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"name": "options",
|
|
97
|
+
"required": false,
|
|
98
|
+
"schema": {
|
|
99
|
+
"type": "object"
|
|
100
|
+
}
|
|
101
|
+
}
|
|
64
102
|
]
|
|
65
103
|
}
|
|
66
104
|
},
|
|
67
105
|
"/rotate": {
|
|
68
106
|
"post": {
|
|
69
|
-
"tags": [
|
|
107
|
+
"tags": [
|
|
108
|
+
"service"
|
|
109
|
+
],
|
|
70
110
|
"summary": "Rotation",
|
|
71
111
|
"description": "Fait pivoter l’image (angle optionnel, utilise EXIF si absent).",
|
|
72
112
|
"parameters": [
|
|
73
|
-
{
|
|
74
|
-
|
|
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
|
+
}
|
|
75
127
|
]
|
|
76
128
|
}
|
|
77
129
|
},
|
|
78
130
|
"/extract": {
|
|
79
131
|
"post": {
|
|
80
|
-
"tags": [
|
|
132
|
+
"tags": [
|
|
133
|
+
"service"
|
|
134
|
+
],
|
|
81
135
|
"summary": "Rogner",
|
|
82
136
|
"description": "Extrait une portion de l’image.",
|
|
83
137
|
"parameters": [
|
|
84
|
-
{
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
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
|
+
}
|
|
89
173
|
]
|
|
90
174
|
}
|
|
91
175
|
},
|
|
92
176
|
"/flip": {
|
|
93
177
|
"post": {
|
|
94
|
-
"tags": [
|
|
178
|
+
"tags": [
|
|
179
|
+
"service"
|
|
180
|
+
],
|
|
95
181
|
"summary": "Miroir vertical",
|
|
96
182
|
"description": "Retourne l’image verticalement.",
|
|
97
|
-
"parameters": [
|
|
183
|
+
"parameters": [
|
|
184
|
+
{
|
|
185
|
+
"name": "content",
|
|
186
|
+
"required": true,
|
|
187
|
+
"schema": {
|
|
188
|
+
"type": "string"
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
]
|
|
98
192
|
}
|
|
99
193
|
},
|
|
100
194
|
"/flop": {
|
|
101
195
|
"post": {
|
|
102
|
-
"tags": [
|
|
196
|
+
"tags": [
|
|
197
|
+
"service"
|
|
198
|
+
],
|
|
103
199
|
"summary": "Miroir horizontal",
|
|
104
200
|
"description": "Retourne l’image horizontalement.",
|
|
105
|
-
"parameters": [
|
|
201
|
+
"parameters": [
|
|
202
|
+
{
|
|
203
|
+
"name": "content",
|
|
204
|
+
"required": true,
|
|
205
|
+
"schema": {
|
|
206
|
+
"type": "string"
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
]
|
|
106
210
|
}
|
|
107
211
|
},
|
|
108
212
|
"/grayscale": {
|
|
109
213
|
"post": {
|
|
110
|
-
"tags": [
|
|
214
|
+
"tags": [
|
|
215
|
+
"service"
|
|
216
|
+
],
|
|
111
217
|
"summary": "Niveaux de gris",
|
|
112
218
|
"description": "Convertit l’image en niveaux de gris.",
|
|
113
|
-
"parameters": [
|
|
219
|
+
"parameters": [
|
|
220
|
+
{
|
|
221
|
+
"name": "content",
|
|
222
|
+
"required": true,
|
|
223
|
+
"schema": {
|
|
224
|
+
"type": "string"
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
]
|
|
114
228
|
}
|
|
115
229
|
},
|
|
116
230
|
"/linear": {
|
|
117
231
|
"post": {
|
|
118
|
-
"tags": [
|
|
232
|
+
"tags": [
|
|
233
|
+
"service"
|
|
234
|
+
],
|
|
119
235
|
"summary": "Linéaire",
|
|
120
236
|
"description": "Applique une transformation linéaire à l’image.",
|
|
121
237
|
"parameters": [
|
|
122
|
-
{
|
|
123
|
-
|
|
124
|
-
|
|
238
|
+
{
|
|
239
|
+
"name": "content",
|
|
240
|
+
"required": true,
|
|
241
|
+
"schema": {
|
|
242
|
+
"type": "string"
|
|
243
|
+
}
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"name": "multiplier",
|
|
247
|
+
"required": true,
|
|
248
|
+
"schema": {
|
|
249
|
+
"type": "number"
|
|
250
|
+
}
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
"name": "offset",
|
|
254
|
+
"required": true,
|
|
255
|
+
"schema": {
|
|
256
|
+
"type": "number"
|
|
257
|
+
}
|
|
258
|
+
}
|
|
125
259
|
]
|
|
126
260
|
}
|
|
127
261
|
},
|
|
128
262
|
"/threshold": {
|
|
129
263
|
"post": {
|
|
130
|
-
"tags": [
|
|
264
|
+
"tags": [
|
|
265
|
+
"service"
|
|
266
|
+
],
|
|
131
267
|
"summary": "Seuil",
|
|
132
268
|
"description": "Applique un seuil à l’image pour la convertir en noir et blanc.",
|
|
133
269
|
"parameters": [
|
|
134
|
-
{
|
|
135
|
-
|
|
270
|
+
{
|
|
271
|
+
"name": "content",
|
|
272
|
+
"required": true,
|
|
273
|
+
"schema": {
|
|
274
|
+
"type": "string"
|
|
275
|
+
}
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"name": "level",
|
|
279
|
+
"required": false,
|
|
280
|
+
"schema": {
|
|
281
|
+
"type": "number",
|
|
282
|
+
"default": 128
|
|
283
|
+
}
|
|
284
|
+
},
|
|
136
285
|
{
|
|
137
286
|
"name": "option",
|
|
138
287
|
"required": false,
|
|
139
|
-
"schema": {
|
|
288
|
+
"schema": {
|
|
289
|
+
"type": "object"
|
|
290
|
+
}
|
|
140
291
|
}
|
|
141
292
|
]
|
|
142
293
|
}
|
|
143
294
|
},
|
|
144
295
|
"/tint": {
|
|
145
296
|
"post": {
|
|
146
|
-
"tags": [
|
|
297
|
+
"tags": [
|
|
298
|
+
"service"
|
|
299
|
+
],
|
|
147
300
|
"summary": "Teinte",
|
|
148
301
|
"description": "Applique une teinte colorée à l’image.",
|
|
149
302
|
"parameters": [
|
|
150
|
-
{
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
303
|
+
{
|
|
304
|
+
"name": "content",
|
|
305
|
+
"required": true,
|
|
306
|
+
"schema": {
|
|
307
|
+
"type": "string"
|
|
308
|
+
}
|
|
309
|
+
},
|
|
310
|
+
{
|
|
311
|
+
"name": "r",
|
|
312
|
+
"required": true,
|
|
313
|
+
"schema": {
|
|
314
|
+
"type": "number"
|
|
315
|
+
}
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"name": "g",
|
|
319
|
+
"required": true,
|
|
320
|
+
"schema": {
|
|
321
|
+
"type": "number"
|
|
322
|
+
}
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
"name": "b",
|
|
326
|
+
"required": true,
|
|
327
|
+
"schema": {
|
|
328
|
+
"type": "number"
|
|
329
|
+
}
|
|
330
|
+
}
|
|
154
331
|
]
|
|
155
332
|
}
|
|
156
333
|
},
|
|
157
334
|
"/modulate": {
|
|
158
335
|
"post": {
|
|
159
|
-
"tags": [
|
|
336
|
+
"tags": [
|
|
337
|
+
"service"
|
|
338
|
+
],
|
|
160
339
|
"summary": "Modulation",
|
|
161
340
|
"description": "Ajuste la luminosité, la saturation et la teinte.",
|
|
162
341
|
"parameters": [
|
|
163
|
-
{
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
342
|
+
{
|
|
343
|
+
"name": "content",
|
|
344
|
+
"required": true,
|
|
345
|
+
"schema": {
|
|
346
|
+
"type": "string"
|
|
347
|
+
}
|
|
348
|
+
},
|
|
349
|
+
{
|
|
350
|
+
"name": "brightness",
|
|
351
|
+
"required": false,
|
|
352
|
+
"schema": {
|
|
353
|
+
"type": "number"
|
|
354
|
+
}
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
"name": "saturation",
|
|
358
|
+
"required": false,
|
|
359
|
+
"schema": {
|
|
360
|
+
"type": "number"
|
|
361
|
+
}
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
"name": "hue",
|
|
365
|
+
"required": false,
|
|
366
|
+
"schema": {
|
|
367
|
+
"type": "number"
|
|
368
|
+
}
|
|
369
|
+
}
|
|
167
370
|
]
|
|
168
371
|
}
|
|
169
372
|
},
|
|
170
373
|
"/blur": {
|
|
171
374
|
"post": {
|
|
172
|
-
"tags": [
|
|
375
|
+
"tags": [
|
|
376
|
+
"service"
|
|
377
|
+
],
|
|
173
378
|
"summary": "Flou",
|
|
174
379
|
"description": "Applique un flou à l’image.",
|
|
175
380
|
"parameters": [
|
|
176
|
-
{
|
|
177
|
-
|
|
381
|
+
{
|
|
382
|
+
"name": "content",
|
|
383
|
+
"required": true,
|
|
384
|
+
"schema": {
|
|
385
|
+
"type": "string"
|
|
386
|
+
}
|
|
387
|
+
},
|
|
388
|
+
{
|
|
389
|
+
"name": "radius",
|
|
390
|
+
"required": false,
|
|
391
|
+
"schema": {
|
|
392
|
+
"type": "number"
|
|
393
|
+
}
|
|
394
|
+
}
|
|
178
395
|
]
|
|
179
396
|
}
|
|
180
397
|
},
|
|
181
398
|
"/sharpen": {
|
|
182
399
|
"post": {
|
|
183
|
-
"tags": [
|
|
400
|
+
"tags": [
|
|
401
|
+
"service"
|
|
402
|
+
],
|
|
184
403
|
"summary": "Netteté",
|
|
185
404
|
"description": "Accentue les contours de l’image.",
|
|
186
|
-
"parameters": [
|
|
405
|
+
"parameters": [
|
|
406
|
+
{
|
|
407
|
+
"name": "content",
|
|
408
|
+
"required": true,
|
|
409
|
+
"schema": {
|
|
410
|
+
"type": "string"
|
|
411
|
+
}
|
|
412
|
+
}
|
|
413
|
+
]
|
|
187
414
|
}
|
|
188
415
|
},
|
|
189
416
|
"/toFormat": {
|
|
190
417
|
"post": {
|
|
191
|
-
"tags": [
|
|
418
|
+
"tags": [
|
|
419
|
+
"service"
|
|
420
|
+
],
|
|
192
421
|
"summary": "Conversion de format",
|
|
193
422
|
"description": "Convertit l’image vers un autre format.",
|
|
194
423
|
"parameters": [
|
|
195
|
-
{
|
|
424
|
+
{
|
|
425
|
+
"name": "content",
|
|
426
|
+
"required": true,
|
|
427
|
+
"schema": {
|
|
428
|
+
"type": "string"
|
|
429
|
+
}
|
|
430
|
+
},
|
|
196
431
|
{
|
|
197
432
|
"name": "format",
|
|
198
433
|
"required": true,
|
|
199
434
|
"description": "jpeg, png, webp, avif",
|
|
200
|
-
"schema": {
|
|
435
|
+
"schema": {
|
|
436
|
+
"type": "string",
|
|
437
|
+
"enum": [
|
|
438
|
+
"jpeg",
|
|
439
|
+
"png",
|
|
440
|
+
"webp",
|
|
441
|
+
"avif"
|
|
442
|
+
]
|
|
443
|
+
}
|
|
201
444
|
}
|
|
202
445
|
]
|
|
203
446
|
}
|
|
204
447
|
},
|
|
205
448
|
"/jpeg": {
|
|
206
449
|
"post": {
|
|
207
|
-
"tags": [
|
|
450
|
+
"tags": [
|
|
451
|
+
"service"
|
|
452
|
+
],
|
|
208
453
|
"summary": "Exporter en JPEG",
|
|
209
454
|
"description": "Convertit l’image en format JPEG avec qualité personnalisable.",
|
|
210
455
|
"parameters": [
|
|
211
|
-
{
|
|
212
|
-
|
|
456
|
+
{
|
|
457
|
+
"name": "content",
|
|
458
|
+
"required": true,
|
|
459
|
+
"schema": {
|
|
460
|
+
"type": "string"
|
|
461
|
+
}
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
"name": "quality",
|
|
465
|
+
"required": false,
|
|
466
|
+
"schema": {
|
|
467
|
+
"type": "number",
|
|
468
|
+
"default": 80
|
|
469
|
+
}
|
|
470
|
+
}
|
|
213
471
|
]
|
|
214
472
|
}
|
|
215
473
|
},
|
|
216
474
|
"/png": {
|
|
217
475
|
"post": {
|
|
218
|
-
"tags": [
|
|
476
|
+
"tags": [
|
|
477
|
+
"service"
|
|
478
|
+
],
|
|
219
479
|
"summary": "Exporter en PNG",
|
|
220
480
|
"description": "Convertit l’image en format PNG avec niveau de compression personnalisé.",
|
|
221
481
|
"parameters": [
|
|
222
|
-
{
|
|
482
|
+
{
|
|
483
|
+
"name": "content",
|
|
484
|
+
"required": true,
|
|
485
|
+
"schema": {
|
|
486
|
+
"type": "string"
|
|
487
|
+
}
|
|
488
|
+
},
|
|
223
489
|
{
|
|
224
490
|
"name": "compressionLevel",
|
|
225
491
|
"required": false,
|
|
226
|
-
"schema": {
|
|
492
|
+
"schema": {
|
|
493
|
+
"type": "number",
|
|
494
|
+
"default": 6
|
|
495
|
+
}
|
|
227
496
|
}
|
|
228
497
|
]
|
|
229
498
|
}
|
|
230
499
|
},
|
|
231
500
|
"/webp": {
|
|
232
501
|
"post": {
|
|
233
|
-
"tags": [
|
|
502
|
+
"tags": [
|
|
503
|
+
"service"
|
|
504
|
+
],
|
|
234
505
|
"summary": "Exporter en WebP",
|
|
235
506
|
"description": "Convertit l’image en format WebP avec qualité personnalisable.",
|
|
236
507
|
"parameters": [
|
|
237
|
-
{
|
|
238
|
-
|
|
508
|
+
{
|
|
509
|
+
"name": "content",
|
|
510
|
+
"required": true,
|
|
511
|
+
"schema": {
|
|
512
|
+
"type": "string"
|
|
513
|
+
}
|
|
514
|
+
},
|
|
515
|
+
{
|
|
516
|
+
"name": "quality",
|
|
517
|
+
"required": false,
|
|
518
|
+
"schema": {
|
|
519
|
+
"type": "number",
|
|
520
|
+
"default": 80
|
|
521
|
+
}
|
|
522
|
+
}
|
|
239
523
|
]
|
|
240
524
|
}
|
|
241
525
|
},
|
|
242
526
|
"/avif": {
|
|
243
527
|
"post": {
|
|
244
|
-
"tags": [
|
|
528
|
+
"tags": [
|
|
529
|
+
"service"
|
|
530
|
+
],
|
|
245
531
|
"summary": "Exporter en AVIF",
|
|
246
532
|
"description": "Convertit l’image en format AVIF avec qualité personnalisable.",
|
|
247
533
|
"parameters": [
|
|
248
|
-
{
|
|
249
|
-
|
|
534
|
+
{
|
|
535
|
+
"name": "content",
|
|
536
|
+
"required": true,
|
|
537
|
+
"schema": {
|
|
538
|
+
"type": "string"
|
|
539
|
+
}
|
|
540
|
+
},
|
|
541
|
+
{
|
|
542
|
+
"name": "quality",
|
|
543
|
+
"required": false,
|
|
544
|
+
"schema": {
|
|
545
|
+
"type": "number",
|
|
546
|
+
"default": 50
|
|
547
|
+
}
|
|
548
|
+
}
|
|
250
549
|
]
|
|
251
550
|
}
|
|
252
551
|
},
|
|
253
552
|
"/composite": {
|
|
254
553
|
"post": {
|
|
255
|
-
"tags": [
|
|
554
|
+
"tags": [
|
|
555
|
+
"service"
|
|
556
|
+
],
|
|
256
557
|
"summary": "Superposition",
|
|
257
558
|
"description": "Superpose une ou plusieurs images (ex. : watermark).",
|
|
258
559
|
"parameters": [
|
|
259
|
-
{
|
|
560
|
+
{
|
|
561
|
+
"name": "content",
|
|
562
|
+
"required": true,
|
|
563
|
+
"schema": {
|
|
564
|
+
"type": "string"
|
|
565
|
+
}
|
|
566
|
+
},
|
|
260
567
|
{
|
|
261
568
|
"name": "overlays",
|
|
262
569
|
"required": true,
|
|
@@ -266,11 +573,21 @@
|
|
|
266
573
|
"items": {
|
|
267
574
|
"type": "object",
|
|
268
575
|
"properties": {
|
|
269
|
-
"input": {
|
|
270
|
-
|
|
271
|
-
|
|
576
|
+
"input": {
|
|
577
|
+
"type": "string"
|
|
578
|
+
},
|
|
579
|
+
"top": {
|
|
580
|
+
"type": "number"
|
|
581
|
+
},
|
|
582
|
+
"left": {
|
|
583
|
+
"type": "number"
|
|
584
|
+
}
|
|
272
585
|
},
|
|
273
|
-
"required": [
|
|
586
|
+
"required": [
|
|
587
|
+
"input",
|
|
588
|
+
"top",
|
|
589
|
+
"left"
|
|
590
|
+
]
|
|
274
591
|
}
|
|
275
592
|
}
|
|
276
593
|
}
|
|
@@ -282,4 +599,4 @@
|
|
|
282
599
|
"schemas": {}
|
|
283
600
|
},
|
|
284
601
|
"x-scene-blocks": {}
|
|
285
|
-
}
|
|
602
|
+
}
|
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,568 @@
|
|
|
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
|
+
]
|
|
110
210
|
}
|
|
111
211
|
},
|
|
112
212
|
"/grayscale": {
|
|
113
213
|
"post": {
|
|
114
|
-
"tags": [
|
|
214
|
+
"tags": [
|
|
215
|
+
"service"
|
|
216
|
+
],
|
|
115
217
|
"summary": "Grayscale",
|
|
116
218
|
"description": "Converts the image to grayscale",
|
|
117
|
-
"parameters": [
|
|
219
|
+
"parameters": [
|
|
220
|
+
{
|
|
221
|
+
"name": "content",
|
|
222
|
+
"required": true,
|
|
223
|
+
"schema": {
|
|
224
|
+
"type": "string"
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
]
|
|
118
228
|
}
|
|
119
229
|
},
|
|
120
230
|
"/linear": {
|
|
121
231
|
"post": {
|
|
122
|
-
"tags": [
|
|
232
|
+
"tags": [
|
|
233
|
+
"service"
|
|
234
|
+
],
|
|
123
235
|
"summary": "Linear",
|
|
124
236
|
"description": "Applies a linear transformation to the image",
|
|
125
237
|
"parameters": [
|
|
126
|
-
{
|
|
127
|
-
|
|
128
|
-
|
|
238
|
+
{
|
|
239
|
+
"name": "content",
|
|
240
|
+
"required": true,
|
|
241
|
+
"schema": {
|
|
242
|
+
"type": "string"
|
|
243
|
+
}
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"name": "multiplier",
|
|
247
|
+
"required": true,
|
|
248
|
+
"schema": {
|
|
249
|
+
"type": "number"
|
|
250
|
+
}
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
"name": "offset",
|
|
254
|
+
"required": true,
|
|
255
|
+
"schema": {
|
|
256
|
+
"type": "number"
|
|
257
|
+
}
|
|
258
|
+
}
|
|
129
259
|
]
|
|
130
260
|
}
|
|
131
261
|
},
|
|
132
262
|
"/threshold": {
|
|
133
263
|
"post": {
|
|
134
|
-
"tags": [
|
|
264
|
+
"tags": [
|
|
265
|
+
"service"
|
|
266
|
+
],
|
|
135
267
|
"summary": "Threshold",
|
|
136
268
|
"description": "Applies a threshold to the image to convert it to black and white.",
|
|
137
269
|
"parameters": [
|
|
138
|
-
{
|
|
139
|
-
|
|
270
|
+
{
|
|
271
|
+
"name": "content",
|
|
272
|
+
"required": true,
|
|
273
|
+
"schema": {
|
|
274
|
+
"type": "string"
|
|
275
|
+
}
|
|
276
|
+
},
|
|
277
|
+
{
|
|
278
|
+
"name": "level",
|
|
279
|
+
"required": false,
|
|
280
|
+
"schema": {
|
|
281
|
+
"type": "number",
|
|
282
|
+
"default": 128
|
|
283
|
+
}
|
|
284
|
+
},
|
|
140
285
|
{
|
|
141
286
|
"name": "option",
|
|
142
287
|
"required": false,
|
|
143
|
-
"schema": {
|
|
288
|
+
"schema": {
|
|
289
|
+
"type": "object"
|
|
290
|
+
}
|
|
144
291
|
}
|
|
145
292
|
]
|
|
146
293
|
}
|
|
147
294
|
},
|
|
148
295
|
"/negate": {
|
|
149
296
|
"post": {
|
|
150
|
-
"tags": [
|
|
297
|
+
"tags": [
|
|
298
|
+
"service"
|
|
299
|
+
],
|
|
151
300
|
"summary": "Negate",
|
|
152
301
|
"description": "Inverts the image colors",
|
|
153
|
-
"parameters": [
|
|
302
|
+
"parameters": [
|
|
303
|
+
{
|
|
304
|
+
"name": "content",
|
|
305
|
+
"required": true,
|
|
306
|
+
"schema": {
|
|
307
|
+
"type": "string"
|
|
308
|
+
}
|
|
309
|
+
}
|
|
310
|
+
]
|
|
154
311
|
}
|
|
155
312
|
},
|
|
156
313
|
"/tint": {
|
|
157
314
|
"post": {
|
|
158
|
-
"tags": [
|
|
315
|
+
"tags": [
|
|
316
|
+
"service"
|
|
317
|
+
],
|
|
159
318
|
"summary": "Tint",
|
|
160
319
|
"description": "Applies a color tint",
|
|
161
320
|
"parameters": [
|
|
162
|
-
{
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
321
|
+
{
|
|
322
|
+
"name": "content",
|
|
323
|
+
"required": true,
|
|
324
|
+
"schema": {
|
|
325
|
+
"type": "string"
|
|
326
|
+
}
|
|
327
|
+
},
|
|
328
|
+
{
|
|
329
|
+
"name": "r",
|
|
330
|
+
"required": true,
|
|
331
|
+
"schema": {
|
|
332
|
+
"type": "number"
|
|
333
|
+
}
|
|
334
|
+
},
|
|
335
|
+
{
|
|
336
|
+
"name": "g",
|
|
337
|
+
"required": true,
|
|
338
|
+
"schema": {
|
|
339
|
+
"type": "number"
|
|
340
|
+
}
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
"name": "b",
|
|
344
|
+
"required": true,
|
|
345
|
+
"schema": {
|
|
346
|
+
"type": "number"
|
|
347
|
+
}
|
|
348
|
+
}
|
|
166
349
|
]
|
|
167
350
|
}
|
|
168
351
|
},
|
|
169
352
|
"/modulate": {
|
|
170
353
|
"post": {
|
|
171
|
-
"tags": [
|
|
354
|
+
"tags": [
|
|
355
|
+
"service"
|
|
356
|
+
],
|
|
172
357
|
"summary": "Modulate",
|
|
173
358
|
"description": "Adjusts brightness, saturation and hue",
|
|
174
359
|
"parameters": [
|
|
175
|
-
{
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
360
|
+
{
|
|
361
|
+
"name": "content",
|
|
362
|
+
"required": true,
|
|
363
|
+
"schema": {
|
|
364
|
+
"type": "string"
|
|
365
|
+
}
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"name": "brightness",
|
|
369
|
+
"required": false,
|
|
370
|
+
"schema": {
|
|
371
|
+
"type": "number"
|
|
372
|
+
}
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
"name": "saturation",
|
|
376
|
+
"required": false,
|
|
377
|
+
"schema": {
|
|
378
|
+
"type": "number"
|
|
379
|
+
}
|
|
380
|
+
},
|
|
381
|
+
{
|
|
382
|
+
"name": "hue",
|
|
383
|
+
"required": false,
|
|
384
|
+
"schema": {
|
|
385
|
+
"type": "number"
|
|
386
|
+
}
|
|
387
|
+
}
|
|
179
388
|
]
|
|
180
389
|
}
|
|
181
390
|
},
|
|
182
391
|
"/blur": {
|
|
183
392
|
"post": {
|
|
184
|
-
"tags": [
|
|
393
|
+
"tags": [
|
|
394
|
+
"service"
|
|
395
|
+
],
|
|
185
396
|
"summary": "Blur",
|
|
186
397
|
"description": "Applies a blur effect",
|
|
187
398
|
"parameters": [
|
|
188
|
-
{
|
|
189
|
-
|
|
399
|
+
{
|
|
400
|
+
"name": "content",
|
|
401
|
+
"required": true,
|
|
402
|
+
"schema": {
|
|
403
|
+
"type": "string"
|
|
404
|
+
}
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
"name": "radius",
|
|
408
|
+
"required": false,
|
|
409
|
+
"schema": {
|
|
410
|
+
"type": "number"
|
|
411
|
+
}
|
|
412
|
+
}
|
|
190
413
|
]
|
|
191
414
|
}
|
|
192
415
|
},
|
|
193
416
|
"/sharpen": {
|
|
194
417
|
"post": {
|
|
195
|
-
"tags": [
|
|
418
|
+
"tags": [
|
|
419
|
+
"service"
|
|
420
|
+
],
|
|
196
421
|
"summary": "Sharpen",
|
|
197
422
|
"description": "Sharpens the image",
|
|
198
|
-
"parameters": [
|
|
423
|
+
"parameters": [
|
|
424
|
+
{
|
|
425
|
+
"name": "content",
|
|
426
|
+
"required": true,
|
|
427
|
+
"schema": {
|
|
428
|
+
"type": "string"
|
|
429
|
+
}
|
|
430
|
+
}
|
|
431
|
+
]
|
|
199
432
|
}
|
|
200
433
|
},
|
|
201
434
|
"/toFormat": {
|
|
202
435
|
"post": {
|
|
203
|
-
"tags": [
|
|
436
|
+
"tags": [
|
|
437
|
+
"service"
|
|
438
|
+
],
|
|
204
439
|
"summary": "To Format",
|
|
205
440
|
"description": "Converts the image to a different format",
|
|
206
441
|
"parameters": [
|
|
207
|
-
{
|
|
442
|
+
{
|
|
443
|
+
"name": "content",
|
|
444
|
+
"required": true,
|
|
445
|
+
"schema": {
|
|
446
|
+
"type": "string"
|
|
447
|
+
}
|
|
448
|
+
},
|
|
208
449
|
{
|
|
209
450
|
"name": "format",
|
|
210
451
|
"required": true,
|
|
211
452
|
"description": "jpeg, png, webp, avif",
|
|
212
|
-
"schema": {
|
|
453
|
+
"schema": {
|
|
454
|
+
"type": "string",
|
|
455
|
+
"enum": [
|
|
456
|
+
"jpeg",
|
|
457
|
+
"png",
|
|
458
|
+
"webp",
|
|
459
|
+
"avif"
|
|
460
|
+
]
|
|
461
|
+
}
|
|
213
462
|
}
|
|
214
463
|
]
|
|
215
464
|
}
|
|
216
465
|
},
|
|
217
466
|
"/jpeg": {
|
|
218
467
|
"post": {
|
|
219
|
-
"tags": [
|
|
468
|
+
"tags": [
|
|
469
|
+
"service"
|
|
470
|
+
],
|
|
220
471
|
"summary": "JPEG",
|
|
221
472
|
"description": "Exports the image as JPEG",
|
|
222
473
|
"parameters": [
|
|
223
|
-
{
|
|
224
|
-
|
|
474
|
+
{
|
|
475
|
+
"name": "content",
|
|
476
|
+
"required": true,
|
|
477
|
+
"schema": {
|
|
478
|
+
"type": "string"
|
|
479
|
+
}
|
|
480
|
+
},
|
|
481
|
+
{
|
|
482
|
+
"name": "quality",
|
|
483
|
+
"required": false,
|
|
484
|
+
"schema": {
|
|
485
|
+
"type": "number",
|
|
486
|
+
"default": 80
|
|
487
|
+
}
|
|
488
|
+
}
|
|
225
489
|
]
|
|
226
490
|
}
|
|
227
491
|
},
|
|
228
492
|
"/png": {
|
|
229
493
|
"post": {
|
|
230
|
-
"tags": [
|
|
494
|
+
"tags": [
|
|
495
|
+
"service"
|
|
496
|
+
],
|
|
231
497
|
"summary": "PNG",
|
|
232
498
|
"description": "Exports the image as PNG",
|
|
233
499
|
"parameters": [
|
|
234
|
-
{
|
|
500
|
+
{
|
|
501
|
+
"name": "content",
|
|
502
|
+
"required": true,
|
|
503
|
+
"schema": {
|
|
504
|
+
"type": "string"
|
|
505
|
+
}
|
|
506
|
+
},
|
|
235
507
|
{
|
|
236
508
|
"name": "compressionLevel",
|
|
237
509
|
"required": false,
|
|
238
|
-
"schema": {
|
|
510
|
+
"schema": {
|
|
511
|
+
"type": "number",
|
|
512
|
+
"default": 6
|
|
513
|
+
}
|
|
239
514
|
}
|
|
240
515
|
]
|
|
241
516
|
}
|
|
242
517
|
},
|
|
243
518
|
"/webp": {
|
|
244
519
|
"post": {
|
|
245
|
-
"tags": [
|
|
520
|
+
"tags": [
|
|
521
|
+
"service"
|
|
522
|
+
],
|
|
246
523
|
"summary": "WebP",
|
|
247
524
|
"description": "Exports the image as WebP",
|
|
248
525
|
"parameters": [
|
|
249
|
-
{
|
|
250
|
-
|
|
526
|
+
{
|
|
527
|
+
"name": "content",
|
|
528
|
+
"required": true,
|
|
529
|
+
"schema": {
|
|
530
|
+
"type": "string"
|
|
531
|
+
}
|
|
532
|
+
},
|
|
533
|
+
{
|
|
534
|
+
"name": "quality",
|
|
535
|
+
"required": false,
|
|
536
|
+
"schema": {
|
|
537
|
+
"type": "number",
|
|
538
|
+
"default": 80
|
|
539
|
+
}
|
|
540
|
+
}
|
|
251
541
|
]
|
|
252
542
|
}
|
|
253
543
|
},
|
|
254
544
|
"/avif": {
|
|
255
545
|
"post": {
|
|
256
|
-
"tags": [
|
|
546
|
+
"tags": [
|
|
547
|
+
"service"
|
|
548
|
+
],
|
|
257
549
|
"summary": "AVIF",
|
|
258
550
|
"description": "Exports the image as AVIF",
|
|
259
551
|
"parameters": [
|
|
260
|
-
{
|
|
261
|
-
|
|
552
|
+
{
|
|
553
|
+
"name": "content",
|
|
554
|
+
"required": true,
|
|
555
|
+
"schema": {
|
|
556
|
+
"type": "string"
|
|
557
|
+
}
|
|
558
|
+
},
|
|
559
|
+
{
|
|
560
|
+
"name": "quality",
|
|
561
|
+
"required": false,
|
|
562
|
+
"schema": {
|
|
563
|
+
"type": "number",
|
|
564
|
+
"default": 50
|
|
565
|
+
}
|
|
566
|
+
}
|
|
262
567
|
]
|
|
263
568
|
}
|
|
264
569
|
},
|
|
265
570
|
"/composite": {
|
|
266
571
|
"post": {
|
|
267
|
-
"tags": [
|
|
572
|
+
"tags": [
|
|
573
|
+
"service"
|
|
574
|
+
],
|
|
268
575
|
"summary": "Composite",
|
|
269
576
|
"description": "Overlays other images (e.g. watermark)",
|
|
270
577
|
"parameters": [
|
|
271
|
-
{
|
|
578
|
+
{
|
|
579
|
+
"name": "content",
|
|
580
|
+
"required": true,
|
|
581
|
+
"schema": {
|
|
582
|
+
"type": "string"
|
|
583
|
+
}
|
|
584
|
+
},
|
|
272
585
|
{
|
|
273
586
|
"name": "overlays",
|
|
274
587
|
"required": true,
|
|
@@ -278,11 +591,21 @@
|
|
|
278
591
|
"items": {
|
|
279
592
|
"type": "object",
|
|
280
593
|
"properties": {
|
|
281
|
-
"input": {
|
|
282
|
-
|
|
283
|
-
|
|
594
|
+
"input": {
|
|
595
|
+
"type": "string"
|
|
596
|
+
},
|
|
597
|
+
"top": {
|
|
598
|
+
"type": "number"
|
|
599
|
+
},
|
|
600
|
+
"left": {
|
|
601
|
+
"type": "number"
|
|
602
|
+
}
|
|
284
603
|
},
|
|
285
|
-
"required": [
|
|
604
|
+
"required": [
|
|
605
|
+
"input",
|
|
606
|
+
"top",
|
|
607
|
+
"left"
|
|
608
|
+
]
|
|
286
609
|
}
|
|
287
610
|
}
|
|
288
611
|
}
|
|
@@ -294,4 +617,4 @@
|
|
|
294
617
|
"schemas": {}
|
|
295
618
|
},
|
|
296
619
|
"x-scene-blocks": {}
|
|
297
|
-
}
|
|
620
|
+
}
|