@digipair/skill-sharp 0.95.5 → 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/index.cjs.js +18 -2
- package/index.esm.js +17 -3
- package/libs/skill-sharp/src/lib/skill-sharp.d.ts +2 -0
- package/package.json +1 -1
- package/schema.fr.json +399 -67
- package/schema.json +414 -64
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,230 +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
|
-
|
|
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
|
+
}
|
|
63
102
|
]
|
|
64
103
|
}
|
|
65
104
|
},
|
|
66
105
|
"/rotate": {
|
|
67
106
|
"post": {
|
|
68
|
-
"tags": [
|
|
107
|
+
"tags": [
|
|
108
|
+
"service"
|
|
109
|
+
],
|
|
69
110
|
"summary": "Rotation",
|
|
70
111
|
"description": "Fait pivoter l’image (angle optionnel, utilise EXIF si absent).",
|
|
71
112
|
"parameters": [
|
|
72
|
-
{
|
|
73
|
-
|
|
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
|
+
}
|
|
74
127
|
]
|
|
75
128
|
}
|
|
76
129
|
},
|
|
77
130
|
"/extract": {
|
|
78
131
|
"post": {
|
|
79
|
-
"tags": [
|
|
132
|
+
"tags": [
|
|
133
|
+
"service"
|
|
134
|
+
],
|
|
80
135
|
"summary": "Rogner",
|
|
81
136
|
"description": "Extrait une portion de l’image.",
|
|
82
137
|
"parameters": [
|
|
83
|
-
{
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
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
|
+
}
|
|
88
173
|
]
|
|
89
174
|
}
|
|
90
175
|
},
|
|
91
176
|
"/flip": {
|
|
92
177
|
"post": {
|
|
93
|
-
"tags": [
|
|
178
|
+
"tags": [
|
|
179
|
+
"service"
|
|
180
|
+
],
|
|
94
181
|
"summary": "Miroir vertical",
|
|
95
182
|
"description": "Retourne l’image verticalement.",
|
|
96
183
|
"parameters": [
|
|
97
|
-
{
|
|
184
|
+
{
|
|
185
|
+
"name": "content",
|
|
186
|
+
"required": true,
|
|
187
|
+
"schema": {
|
|
188
|
+
"type": "string"
|
|
189
|
+
}
|
|
190
|
+
}
|
|
98
191
|
]
|
|
99
192
|
}
|
|
100
193
|
},
|
|
101
194
|
"/flop": {
|
|
102
195
|
"post": {
|
|
103
|
-
"tags": [
|
|
196
|
+
"tags": [
|
|
197
|
+
"service"
|
|
198
|
+
],
|
|
104
199
|
"summary": "Miroir horizontal",
|
|
105
200
|
"description": "Retourne l’image horizontalement.",
|
|
106
201
|
"parameters": [
|
|
107
|
-
{
|
|
202
|
+
{
|
|
203
|
+
"name": "content",
|
|
204
|
+
"required": true,
|
|
205
|
+
"schema": {
|
|
206
|
+
"type": "string"
|
|
207
|
+
}
|
|
208
|
+
}
|
|
108
209
|
]
|
|
109
210
|
}
|
|
110
211
|
},
|
|
111
212
|
"/grayscale": {
|
|
112
213
|
"post": {
|
|
113
|
-
"tags": [
|
|
214
|
+
"tags": [
|
|
215
|
+
"service"
|
|
216
|
+
],
|
|
114
217
|
"summary": "Niveaux de gris",
|
|
115
218
|
"description": "Convertit l’image en niveaux de gris.",
|
|
116
219
|
"parameters": [
|
|
117
|
-
{
|
|
220
|
+
{
|
|
221
|
+
"name": "content",
|
|
222
|
+
"required": true,
|
|
223
|
+
"schema": {
|
|
224
|
+
"type": "string"
|
|
225
|
+
}
|
|
226
|
+
}
|
|
118
227
|
]
|
|
119
228
|
}
|
|
120
229
|
},
|
|
121
|
-
"/
|
|
230
|
+
"/linear": {
|
|
122
231
|
"post": {
|
|
123
|
-
"tags": [
|
|
124
|
-
|
|
125
|
-
|
|
232
|
+
"tags": [
|
|
233
|
+
"service"
|
|
234
|
+
],
|
|
235
|
+
"summary": "Linéaire",
|
|
236
|
+
"description": "Applique une transformation linéaire à l’image.",
|
|
126
237
|
"parameters": [
|
|
127
|
-
{
|
|
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
|
+
}
|
|
259
|
+
]
|
|
260
|
+
}
|
|
261
|
+
},
|
|
262
|
+
"/threshold": {
|
|
263
|
+
"post": {
|
|
264
|
+
"tags": [
|
|
265
|
+
"service"
|
|
266
|
+
],
|
|
267
|
+
"summary": "Seuil",
|
|
268
|
+
"description": "Applique un seuil à l’image pour la convertir en noir et blanc.",
|
|
269
|
+
"parameters": [
|
|
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
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"name": "option",
|
|
287
|
+
"required": false,
|
|
288
|
+
"schema": {
|
|
289
|
+
"type": "object"
|
|
290
|
+
}
|
|
291
|
+
}
|
|
128
292
|
]
|
|
129
293
|
}
|
|
130
294
|
},
|
|
131
295
|
"/tint": {
|
|
132
296
|
"post": {
|
|
133
|
-
"tags": [
|
|
297
|
+
"tags": [
|
|
298
|
+
"service"
|
|
299
|
+
],
|
|
134
300
|
"summary": "Teinte",
|
|
135
301
|
"description": "Applique une teinte colorée à l’image.",
|
|
136
302
|
"parameters": [
|
|
137
|
-
{
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
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
|
+
}
|
|
141
331
|
]
|
|
142
332
|
}
|
|
143
333
|
},
|
|
144
334
|
"/modulate": {
|
|
145
335
|
"post": {
|
|
146
|
-
"tags": [
|
|
336
|
+
"tags": [
|
|
337
|
+
"service"
|
|
338
|
+
],
|
|
147
339
|
"summary": "Modulation",
|
|
148
340
|
"description": "Ajuste la luminosité, la saturation et la teinte.",
|
|
149
341
|
"parameters": [
|
|
150
|
-
{
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
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
|
+
}
|
|
154
370
|
]
|
|
155
371
|
}
|
|
156
372
|
},
|
|
157
373
|
"/blur": {
|
|
158
374
|
"post": {
|
|
159
|
-
"tags": [
|
|
375
|
+
"tags": [
|
|
376
|
+
"service"
|
|
377
|
+
],
|
|
160
378
|
"summary": "Flou",
|
|
161
379
|
"description": "Applique un flou à l’image.",
|
|
162
380
|
"parameters": [
|
|
163
|
-
{
|
|
164
|
-
|
|
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
|
+
}
|
|
165
395
|
]
|
|
166
396
|
}
|
|
167
397
|
},
|
|
168
398
|
"/sharpen": {
|
|
169
399
|
"post": {
|
|
170
|
-
"tags": [
|
|
400
|
+
"tags": [
|
|
401
|
+
"service"
|
|
402
|
+
],
|
|
171
403
|
"summary": "Netteté",
|
|
172
404
|
"description": "Accentue les contours de l’image.",
|
|
173
405
|
"parameters": [
|
|
174
|
-
{
|
|
406
|
+
{
|
|
407
|
+
"name": "content",
|
|
408
|
+
"required": true,
|
|
409
|
+
"schema": {
|
|
410
|
+
"type": "string"
|
|
411
|
+
}
|
|
412
|
+
}
|
|
175
413
|
]
|
|
176
414
|
}
|
|
177
415
|
},
|
|
178
416
|
"/toFormat": {
|
|
179
417
|
"post": {
|
|
180
|
-
"tags": [
|
|
418
|
+
"tags": [
|
|
419
|
+
"service"
|
|
420
|
+
],
|
|
181
421
|
"summary": "Conversion de format",
|
|
182
422
|
"description": "Convertit l’image vers un autre format.",
|
|
183
423
|
"parameters": [
|
|
184
|
-
{
|
|
424
|
+
{
|
|
425
|
+
"name": "content",
|
|
426
|
+
"required": true,
|
|
427
|
+
"schema": {
|
|
428
|
+
"type": "string"
|
|
429
|
+
}
|
|
430
|
+
},
|
|
185
431
|
{
|
|
186
432
|
"name": "format",
|
|
187
433
|
"required": true,
|
|
188
434
|
"description": "jpeg, png, webp, avif",
|
|
189
|
-
"schema": {
|
|
435
|
+
"schema": {
|
|
436
|
+
"type": "string",
|
|
437
|
+
"enum": [
|
|
438
|
+
"jpeg",
|
|
439
|
+
"png",
|
|
440
|
+
"webp",
|
|
441
|
+
"avif"
|
|
442
|
+
]
|
|
443
|
+
}
|
|
190
444
|
}
|
|
191
445
|
]
|
|
192
446
|
}
|
|
193
447
|
},
|
|
194
448
|
"/jpeg": {
|
|
195
449
|
"post": {
|
|
196
|
-
"tags": [
|
|
450
|
+
"tags": [
|
|
451
|
+
"service"
|
|
452
|
+
],
|
|
197
453
|
"summary": "Exporter en JPEG",
|
|
198
454
|
"description": "Convertit l’image en format JPEG avec qualité personnalisable.",
|
|
199
455
|
"parameters": [
|
|
200
|
-
{
|
|
201
|
-
|
|
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
|
+
}
|
|
202
471
|
]
|
|
203
472
|
}
|
|
204
473
|
},
|
|
205
474
|
"/png": {
|
|
206
475
|
"post": {
|
|
207
|
-
"tags": [
|
|
476
|
+
"tags": [
|
|
477
|
+
"service"
|
|
478
|
+
],
|
|
208
479
|
"summary": "Exporter en PNG",
|
|
209
480
|
"description": "Convertit l’image en format PNG avec niveau de compression personnalisé.",
|
|
210
481
|
"parameters": [
|
|
211
|
-
{
|
|
212
|
-
|
|
482
|
+
{
|
|
483
|
+
"name": "content",
|
|
484
|
+
"required": true,
|
|
485
|
+
"schema": {
|
|
486
|
+
"type": "string"
|
|
487
|
+
}
|
|
488
|
+
},
|
|
489
|
+
{
|
|
490
|
+
"name": "compressionLevel",
|
|
491
|
+
"required": false,
|
|
492
|
+
"schema": {
|
|
493
|
+
"type": "number",
|
|
494
|
+
"default": 6
|
|
495
|
+
}
|
|
496
|
+
}
|
|
213
497
|
]
|
|
214
498
|
}
|
|
215
499
|
},
|
|
216
500
|
"/webp": {
|
|
217
501
|
"post": {
|
|
218
|
-
"tags": [
|
|
502
|
+
"tags": [
|
|
503
|
+
"service"
|
|
504
|
+
],
|
|
219
505
|
"summary": "Exporter en WebP",
|
|
220
506
|
"description": "Convertit l’image en format WebP avec qualité personnalisable.",
|
|
221
507
|
"parameters": [
|
|
222
|
-
{
|
|
223
|
-
|
|
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
|
+
}
|
|
224
523
|
]
|
|
225
524
|
}
|
|
226
525
|
},
|
|
227
526
|
"/avif": {
|
|
228
527
|
"post": {
|
|
229
|
-
"tags": [
|
|
528
|
+
"tags": [
|
|
529
|
+
"service"
|
|
530
|
+
],
|
|
230
531
|
"summary": "Exporter en AVIF",
|
|
231
532
|
"description": "Convertit l’image en format AVIF avec qualité personnalisable.",
|
|
232
533
|
"parameters": [
|
|
233
|
-
{
|
|
234
|
-
|
|
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
|
+
}
|
|
235
549
|
]
|
|
236
550
|
}
|
|
237
551
|
},
|
|
238
552
|
"/composite": {
|
|
239
553
|
"post": {
|
|
240
|
-
"tags": [
|
|
554
|
+
"tags": [
|
|
555
|
+
"service"
|
|
556
|
+
],
|
|
241
557
|
"summary": "Superposition",
|
|
242
558
|
"description": "Superpose une ou plusieurs images (ex. : watermark).",
|
|
243
559
|
"parameters": [
|
|
244
|
-
{
|
|
560
|
+
{
|
|
561
|
+
"name": "content",
|
|
562
|
+
"required": true,
|
|
563
|
+
"schema": {
|
|
564
|
+
"type": "string"
|
|
565
|
+
}
|
|
566
|
+
},
|
|
245
567
|
{
|
|
246
568
|
"name": "overlays",
|
|
247
569
|
"required": true,
|
|
@@ -251,11 +573,21 @@
|
|
|
251
573
|
"items": {
|
|
252
574
|
"type": "object",
|
|
253
575
|
"properties": {
|
|
254
|
-
"input": {
|
|
255
|
-
|
|
256
|
-
|
|
576
|
+
"input": {
|
|
577
|
+
"type": "string"
|
|
578
|
+
},
|
|
579
|
+
"top": {
|
|
580
|
+
"type": "number"
|
|
581
|
+
},
|
|
582
|
+
"left": {
|
|
583
|
+
"type": "number"
|
|
584
|
+
}
|
|
257
585
|
},
|
|
258
|
-
"required": [
|
|
586
|
+
"required": [
|
|
587
|
+
"input",
|
|
588
|
+
"top",
|
|
589
|
+
"left"
|
|
590
|
+
]
|
|
259
591
|
}
|
|
260
592
|
}
|
|
261
593
|
}
|
|
@@ -267,4 +599,4 @@
|
|
|
267
599
|
"schemas": {}
|
|
268
600
|
},
|
|
269
601
|
"x-scene-blocks": {}
|
|
270
|
-
}
|
|
602
|
+
}
|