@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.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,230 +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
|
+
},
|
|
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": "Rotate",
|
|
70
111
|
"description": "Rotates the image (angle optional)",
|
|
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": "Extract",
|
|
81
136
|
"description": "Extracts a region from the 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": "Flip",
|
|
95
182
|
"description": "Flips the image vertically",
|
|
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": "Flop",
|
|
105
200
|
"description": "Flips the image horizontally",
|
|
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": "Grayscale",
|
|
115
218
|
"description": "Converts the image to grayscale",
|
|
116
219
|
"parameters": [
|
|
117
|
-
{
|
|
220
|
+
{
|
|
221
|
+
"name": "content",
|
|
222
|
+
"required": true,
|
|
223
|
+
"schema": {
|
|
224
|
+
"type": "string"
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
]
|
|
228
|
+
}
|
|
229
|
+
},
|
|
230
|
+
"/linear": {
|
|
231
|
+
"post": {
|
|
232
|
+
"tags": [
|
|
233
|
+
"service"
|
|
234
|
+
],
|
|
235
|
+
"summary": "Linear",
|
|
236
|
+
"description": "Applies a linear transformation to the image",
|
|
237
|
+
"parameters": [
|
|
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": "Threshold",
|
|
268
|
+
"description": "Applies a threshold to the image to convert it to black and white.",
|
|
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
|
+
}
|
|
118
292
|
]
|
|
119
293
|
}
|
|
120
294
|
},
|
|
121
295
|
"/negate": {
|
|
122
296
|
"post": {
|
|
123
|
-
"tags": [
|
|
297
|
+
"tags": [
|
|
298
|
+
"service"
|
|
299
|
+
],
|
|
124
300
|
"summary": "Negate",
|
|
125
301
|
"description": "Inverts the image colors",
|
|
126
302
|
"parameters": [
|
|
127
|
-
{
|
|
303
|
+
{
|
|
304
|
+
"name": "content",
|
|
305
|
+
"required": true,
|
|
306
|
+
"schema": {
|
|
307
|
+
"type": "string"
|
|
308
|
+
}
|
|
309
|
+
}
|
|
128
310
|
]
|
|
129
311
|
}
|
|
130
312
|
},
|
|
131
313
|
"/tint": {
|
|
132
314
|
"post": {
|
|
133
|
-
"tags": [
|
|
315
|
+
"tags": [
|
|
316
|
+
"service"
|
|
317
|
+
],
|
|
134
318
|
"summary": "Tint",
|
|
135
319
|
"description": "Applies a color tint",
|
|
136
320
|
"parameters": [
|
|
137
|
-
{
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
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
|
+
}
|
|
141
349
|
]
|
|
142
350
|
}
|
|
143
351
|
},
|
|
144
352
|
"/modulate": {
|
|
145
353
|
"post": {
|
|
146
|
-
"tags": [
|
|
354
|
+
"tags": [
|
|
355
|
+
"service"
|
|
356
|
+
],
|
|
147
357
|
"summary": "Modulate",
|
|
148
358
|
"description": "Adjusts brightness, saturation and hue",
|
|
149
359
|
"parameters": [
|
|
150
|
-
{
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
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
|
+
}
|
|
154
388
|
]
|
|
155
389
|
}
|
|
156
390
|
},
|
|
157
391
|
"/blur": {
|
|
158
392
|
"post": {
|
|
159
|
-
"tags": [
|
|
393
|
+
"tags": [
|
|
394
|
+
"service"
|
|
395
|
+
],
|
|
160
396
|
"summary": "Blur",
|
|
161
397
|
"description": "Applies a blur effect",
|
|
162
398
|
"parameters": [
|
|
163
|
-
{
|
|
164
|
-
|
|
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
|
+
}
|
|
165
413
|
]
|
|
166
414
|
}
|
|
167
415
|
},
|
|
168
416
|
"/sharpen": {
|
|
169
417
|
"post": {
|
|
170
|
-
"tags": [
|
|
418
|
+
"tags": [
|
|
419
|
+
"service"
|
|
420
|
+
],
|
|
171
421
|
"summary": "Sharpen",
|
|
172
422
|
"description": "Sharpens the image",
|
|
173
423
|
"parameters": [
|
|
174
|
-
{
|
|
424
|
+
{
|
|
425
|
+
"name": "content",
|
|
426
|
+
"required": true,
|
|
427
|
+
"schema": {
|
|
428
|
+
"type": "string"
|
|
429
|
+
}
|
|
430
|
+
}
|
|
175
431
|
]
|
|
176
432
|
}
|
|
177
433
|
},
|
|
178
434
|
"/toFormat": {
|
|
179
435
|
"post": {
|
|
180
|
-
"tags": [
|
|
436
|
+
"tags": [
|
|
437
|
+
"service"
|
|
438
|
+
],
|
|
181
439
|
"summary": "To Format",
|
|
182
440
|
"description": "Converts the image to a different format",
|
|
183
441
|
"parameters": [
|
|
184
|
-
{
|
|
442
|
+
{
|
|
443
|
+
"name": "content",
|
|
444
|
+
"required": true,
|
|
445
|
+
"schema": {
|
|
446
|
+
"type": "string"
|
|
447
|
+
}
|
|
448
|
+
},
|
|
185
449
|
{
|
|
186
450
|
"name": "format",
|
|
187
451
|
"required": true,
|
|
188
452
|
"description": "jpeg, png, webp, avif",
|
|
189
|
-
"schema": {
|
|
453
|
+
"schema": {
|
|
454
|
+
"type": "string",
|
|
455
|
+
"enum": [
|
|
456
|
+
"jpeg",
|
|
457
|
+
"png",
|
|
458
|
+
"webp",
|
|
459
|
+
"avif"
|
|
460
|
+
]
|
|
461
|
+
}
|
|
190
462
|
}
|
|
191
463
|
]
|
|
192
464
|
}
|
|
193
465
|
},
|
|
194
466
|
"/jpeg": {
|
|
195
467
|
"post": {
|
|
196
|
-
"tags": [
|
|
468
|
+
"tags": [
|
|
469
|
+
"service"
|
|
470
|
+
],
|
|
197
471
|
"summary": "JPEG",
|
|
198
472
|
"description": "Exports the image as JPEG",
|
|
199
473
|
"parameters": [
|
|
200
|
-
{
|
|
201
|
-
|
|
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
|
+
}
|
|
202
489
|
]
|
|
203
490
|
}
|
|
204
491
|
},
|
|
205
492
|
"/png": {
|
|
206
493
|
"post": {
|
|
207
|
-
"tags": [
|
|
494
|
+
"tags": [
|
|
495
|
+
"service"
|
|
496
|
+
],
|
|
208
497
|
"summary": "PNG",
|
|
209
498
|
"description": "Exports the image as PNG",
|
|
210
499
|
"parameters": [
|
|
211
|
-
{
|
|
212
|
-
|
|
500
|
+
{
|
|
501
|
+
"name": "content",
|
|
502
|
+
"required": true,
|
|
503
|
+
"schema": {
|
|
504
|
+
"type": "string"
|
|
505
|
+
}
|
|
506
|
+
},
|
|
507
|
+
{
|
|
508
|
+
"name": "compressionLevel",
|
|
509
|
+
"required": false,
|
|
510
|
+
"schema": {
|
|
511
|
+
"type": "number",
|
|
512
|
+
"default": 6
|
|
513
|
+
}
|
|
514
|
+
}
|
|
213
515
|
]
|
|
214
516
|
}
|
|
215
517
|
},
|
|
216
518
|
"/webp": {
|
|
217
519
|
"post": {
|
|
218
|
-
"tags": [
|
|
520
|
+
"tags": [
|
|
521
|
+
"service"
|
|
522
|
+
],
|
|
219
523
|
"summary": "WebP",
|
|
220
524
|
"description": "Exports the image as WebP",
|
|
221
525
|
"parameters": [
|
|
222
|
-
{
|
|
223
|
-
|
|
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
|
+
}
|
|
224
541
|
]
|
|
225
542
|
}
|
|
226
543
|
},
|
|
227
544
|
"/avif": {
|
|
228
545
|
"post": {
|
|
229
|
-
"tags": [
|
|
546
|
+
"tags": [
|
|
547
|
+
"service"
|
|
548
|
+
],
|
|
230
549
|
"summary": "AVIF",
|
|
231
550
|
"description": "Exports the image as AVIF",
|
|
232
551
|
"parameters": [
|
|
233
|
-
{
|
|
234
|
-
|
|
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
|
+
}
|
|
235
567
|
]
|
|
236
568
|
}
|
|
237
569
|
},
|
|
238
570
|
"/composite": {
|
|
239
571
|
"post": {
|
|
240
|
-
"tags": [
|
|
572
|
+
"tags": [
|
|
573
|
+
"service"
|
|
574
|
+
],
|
|
241
575
|
"summary": "Composite",
|
|
242
576
|
"description": "Overlays other images (e.g. watermark)",
|
|
243
577
|
"parameters": [
|
|
244
|
-
{
|
|
578
|
+
{
|
|
579
|
+
"name": "content",
|
|
580
|
+
"required": true,
|
|
581
|
+
"schema": {
|
|
582
|
+
"type": "string"
|
|
583
|
+
}
|
|
584
|
+
},
|
|
245
585
|
{
|
|
246
586
|
"name": "overlays",
|
|
247
587
|
"required": true,
|
|
@@ -251,11 +591,21 @@
|
|
|
251
591
|
"items": {
|
|
252
592
|
"type": "object",
|
|
253
593
|
"properties": {
|
|
254
|
-
"input": {
|
|
255
|
-
|
|
256
|
-
|
|
594
|
+
"input": {
|
|
595
|
+
"type": "string"
|
|
596
|
+
},
|
|
597
|
+
"top": {
|
|
598
|
+
"type": "number"
|
|
599
|
+
},
|
|
600
|
+
"left": {
|
|
601
|
+
"type": "number"
|
|
602
|
+
}
|
|
257
603
|
},
|
|
258
|
-
"required": [
|
|
604
|
+
"required": [
|
|
605
|
+
"input",
|
|
606
|
+
"top",
|
|
607
|
+
"left"
|
|
608
|
+
]
|
|
259
609
|
}
|
|
260
610
|
}
|
|
261
611
|
}
|
|
@@ -267,4 +617,4 @@
|
|
|
267
617
|
"schemas": {}
|
|
268
618
|
},
|
|
269
619
|
"x-scene-blocks": {}
|
|
270
|
-
}
|
|
620
|
+
}
|