@prismicio/types-internal 1.1.1 → 1.2.0-alpha.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.
Files changed (51) hide show
  1. package/lib/customtypes/Comparators/Changes.d.ts +17 -0
  2. package/lib/customtypes/Comparators/Changes.js +9 -0
  3. package/lib/customtypes/Comparators/SharedSlice.d.ts +679 -0
  4. package/lib/customtypes/Comparators/SharedSlice.js +55 -0
  5. package/lib/customtypes/Comparators/Variation.d.ts +662 -0
  6. package/lib/customtypes/Comparators/Variation.js +75 -0
  7. package/lib/customtypes/Comparators/index.d.ts +3 -0
  8. package/lib/customtypes/Comparators/index.js +6 -0
  9. package/lib/customtypes/CustomType.d.ts +932 -932
  10. package/lib/customtypes/Format.d.ts +4 -0
  11. package/lib/customtypes/Format.js +8 -0
  12. package/lib/customtypes/Section.d.ts +932 -932
  13. package/lib/customtypes/comp/Changes.d.ts +17 -0
  14. package/lib/customtypes/comp/Changes.js +9 -0
  15. package/lib/customtypes/comp/SharedSlice.d.ts +679 -0
  16. package/lib/customtypes/comp/SharedSlice.js +55 -0
  17. package/lib/customtypes/comp/Variation.d.ts +662 -0
  18. package/lib/customtypes/comp/Variation.js +76 -0
  19. package/lib/customtypes/comp/index.d.ts +3 -0
  20. package/lib/customtypes/comp/index.js +6 -0
  21. package/lib/customtypes/index.d.ts +1 -0
  22. package/lib/customtypes/index.js +2 -1
  23. package/lib/customtypes/utils/Comparator.d.ts +1353 -0
  24. package/lib/customtypes/utils/Comparator.js +59 -0
  25. package/lib/customtypes/utils/index.d.ts +1 -0
  26. package/lib/customtypes/utils/index.js +4 -0
  27. package/lib/customtypes/widgets/Widget.d.ts +664 -664
  28. package/lib/customtypes/widgets/slices/Slices.d.ts +792 -792
  29. package/lib/documents/widgets/nestable/EmbedContent.d.ts +4 -4
  30. package/lib/documents/widgets/nestable/ImageContent.d.ts +14 -14
  31. package/lib/documents/widgets/nestable/Link/ExternalLink.d.ts +4 -4
  32. package/lib/documents/widgets/nestable/Link/LinkContent.d.ts +2 -2
  33. package/lib/documents/widgets/nestable/Link/index.d.ts +4 -4
  34. package/lib/documents/widgets/nestable/StructuredTextContent/Block.d.ts +8 -8
  35. package/lib/utils/Arrays.d.ts +1 -0
  36. package/lib/utils/Arrays.js +13 -0
  37. package/lib/utils/Objects.d.ts +5 -0
  38. package/lib/utils/Objects.js +21 -0
  39. package/lib/utils/index.d.ts +2 -0
  40. package/lib/utils/index.js +6 -0
  41. package/package.json +2 -2
  42. package/src/customtypes/comparators/Changes.ts +21 -0
  43. package/src/customtypes/comparators/SharedSlice.ts +77 -0
  44. package/src/customtypes/comparators/Variation.ts +101 -0
  45. package/src/customtypes/comparators/index.ts +3 -0
  46. package/src/customtypes/index.ts +1 -0
  47. package/src/documents/widgets/index.ts +4 -2
  48. package/src/utils/Arrays.ts +12 -0
  49. package/src/utils/Objects.ts +24 -0
  50. package/src/utils/index.ts +2 -0
  51. package/CHANGELOG.md +0 -13
@@ -0,0 +1,662 @@
1
+ import type { Variation } from "../widgets/slices";
2
+ import { type DiffChange } from './Changes';
3
+ declare type VariationMetadata = Omit<Variation, "primary" | "items">;
4
+ export declare type VariationDiff = DiffChange<Variation, Partial<VariationMetadata>>;
5
+ export declare const VariationComparator: {
6
+ compare(variationA?: ({
7
+ id: string;
8
+ name: string;
9
+ description: string;
10
+ imageUrl: string;
11
+ docURL: string;
12
+ version: string;
13
+ } & {
14
+ display?: string | undefined;
15
+ primary?: {
16
+ [x: string]: ({
17
+ type: "Color";
18
+ } & {
19
+ fieldset?: string | null | undefined;
20
+ config?: {
21
+ label?: string | null | undefined;
22
+ placeholder?: string | undefined;
23
+ } | undefined;
24
+ }) | ({
25
+ type: "Boolean";
26
+ } & {
27
+ config?: {
28
+ label?: string | null | undefined;
29
+ default_value?: boolean | undefined;
30
+ placeholder_true?: string | undefined;
31
+ placeholder_false?: string | undefined;
32
+ } | undefined;
33
+ }) | ({
34
+ type: "Embed";
35
+ } & {
36
+ fieldset?: string | null | undefined;
37
+ config?: {
38
+ label?: string | null | undefined;
39
+ placeholder?: string | undefined;
40
+ useAsTitle?: boolean | undefined;
41
+ } | undefined;
42
+ }) | ({
43
+ type: "GeoPoint";
44
+ } & {
45
+ fieldset?: string | null | undefined;
46
+ config?: {
47
+ label?: string | null | undefined;
48
+ } | undefined;
49
+ }) | ({
50
+ type: "Date";
51
+ } & {
52
+ fieldset?: string | null | undefined;
53
+ config?: {
54
+ label?: string | null | undefined;
55
+ placeholder?: string | undefined;
56
+ default?: string | undefined;
57
+ } | undefined;
58
+ }) | ({
59
+ type: "Number";
60
+ } & {
61
+ fieldset?: string | null | undefined;
62
+ config?: {
63
+ label?: string | null | undefined;
64
+ placeholder?: string | undefined;
65
+ min?: number | undefined;
66
+ max?: number | undefined;
67
+ step?: number | undefined;
68
+ } | undefined;
69
+ }) | ({
70
+ type: "Range";
71
+ } & {
72
+ fieldset?: string | null | undefined;
73
+ config?: {
74
+ label?: string | null | undefined;
75
+ placeholder?: string | undefined;
76
+ min?: number | undefined;
77
+ max?: number | undefined;
78
+ step?: number | undefined;
79
+ } | undefined;
80
+ }) | ({
81
+ type: "StructuredText";
82
+ } & {
83
+ fieldset?: string | null | undefined;
84
+ config?: {
85
+ label?: string | null | undefined;
86
+ placeholder?: string | undefined;
87
+ useAsTitle?: boolean | undefined;
88
+ single?: string | undefined;
89
+ multi?: string | undefined;
90
+ imageConstraint?: {
91
+ width?: number | null | undefined;
92
+ height?: number | null | undefined;
93
+ } | undefined;
94
+ labels?: readonly string[] | undefined;
95
+ allowTargetBlank?: boolean | undefined;
96
+ } | undefined;
97
+ }) | ({
98
+ type: "Select";
99
+ } & {
100
+ fieldset?: string | null | undefined;
101
+ config?: {
102
+ label?: string | null | undefined;
103
+ placeholder?: string | undefined;
104
+ default_value?: string | undefined;
105
+ options?: readonly string[] | undefined;
106
+ } | undefined;
107
+ }) | ({
108
+ type: "Separator";
109
+ } & {
110
+ config?: {
111
+ label?: string | null | undefined;
112
+ } | undefined;
113
+ }) | ({
114
+ type: "Text";
115
+ } & {
116
+ fieldset?: string | null | undefined;
117
+ config?: {
118
+ label?: string | null | undefined;
119
+ useAsTitle?: boolean | undefined;
120
+ placeholder?: string | undefined;
121
+ } | undefined;
122
+ }) | ({
123
+ type: "Timestamp";
124
+ } & {
125
+ fieldset?: string | null | undefined;
126
+ config?: {
127
+ label?: string | null | undefined;
128
+ placeholder?: string | undefined;
129
+ default?: string | undefined;
130
+ } | undefined;
131
+ }) | ({
132
+ type: "Link";
133
+ } & {
134
+ fieldset?: string | null | undefined;
135
+ config?: {
136
+ label?: string | null | undefined;
137
+ useAsTitle?: boolean | undefined;
138
+ placeholder?: string | undefined;
139
+ select?: "media" | "document" | "web" | null | undefined;
140
+ customtypes?: readonly string[] | undefined;
141
+ masks?: readonly string[] | undefined;
142
+ tags?: readonly string[] | undefined;
143
+ allowTargetBlank?: boolean | undefined;
144
+ } | undefined;
145
+ }) | ({
146
+ type: "Image";
147
+ } & {
148
+ fieldset?: string | null | undefined;
149
+ config?: {
150
+ label?: string | null | undefined;
151
+ placeholder?: string | undefined;
152
+ constraint?: {
153
+ width?: number | null | undefined;
154
+ height?: number | null | undefined;
155
+ } | undefined;
156
+ thumbnails?: readonly ({
157
+ name: string;
158
+ } & {
159
+ width?: number | null | undefined;
160
+ height?: number | null | undefined;
161
+ })[] | undefined;
162
+ } | undefined;
163
+ }) | ({
164
+ type: "IntegrationFields";
165
+ } & {
166
+ fieldset?: string | null | undefined;
167
+ config?: {
168
+ label?: string | null | undefined;
169
+ placeholder?: string | undefined;
170
+ catalog?: string | undefined;
171
+ } | undefined;
172
+ });
173
+ } | undefined;
174
+ items?: {
175
+ [x: string]: ({
176
+ type: "Color";
177
+ } & {
178
+ fieldset?: string | null | undefined;
179
+ config?: {
180
+ label?: string | null | undefined;
181
+ placeholder?: string | undefined;
182
+ } | undefined;
183
+ }) | ({
184
+ type: "Boolean";
185
+ } & {
186
+ config?: {
187
+ label?: string | null | undefined;
188
+ default_value?: boolean | undefined;
189
+ placeholder_true?: string | undefined;
190
+ placeholder_false?: string | undefined;
191
+ } | undefined;
192
+ }) | ({
193
+ type: "Embed";
194
+ } & {
195
+ fieldset?: string | null | undefined;
196
+ config?: {
197
+ label?: string | null | undefined;
198
+ placeholder?: string | undefined;
199
+ useAsTitle?: boolean | undefined;
200
+ } | undefined;
201
+ }) | ({
202
+ type: "GeoPoint";
203
+ } & {
204
+ fieldset?: string | null | undefined;
205
+ config?: {
206
+ label?: string | null | undefined;
207
+ } | undefined;
208
+ }) | ({
209
+ type: "Date";
210
+ } & {
211
+ fieldset?: string | null | undefined;
212
+ config?: {
213
+ label?: string | null | undefined;
214
+ placeholder?: string | undefined;
215
+ default?: string | undefined;
216
+ } | undefined;
217
+ }) | ({
218
+ type: "Number";
219
+ } & {
220
+ fieldset?: string | null | undefined;
221
+ config?: {
222
+ label?: string | null | undefined;
223
+ placeholder?: string | undefined;
224
+ min?: number | undefined;
225
+ max?: number | undefined;
226
+ step?: number | undefined;
227
+ } | undefined;
228
+ }) | ({
229
+ type: "Range";
230
+ } & {
231
+ fieldset?: string | null | undefined;
232
+ config?: {
233
+ label?: string | null | undefined;
234
+ placeholder?: string | undefined;
235
+ min?: number | undefined;
236
+ max?: number | undefined;
237
+ step?: number | undefined;
238
+ } | undefined;
239
+ }) | ({
240
+ type: "StructuredText";
241
+ } & {
242
+ fieldset?: string | null | undefined;
243
+ config?: {
244
+ label?: string | null | undefined;
245
+ placeholder?: string | undefined;
246
+ useAsTitle?: boolean | undefined;
247
+ single?: string | undefined;
248
+ multi?: string | undefined;
249
+ imageConstraint?: {
250
+ width?: number | null | undefined;
251
+ height?: number | null | undefined;
252
+ } | undefined;
253
+ labels?: readonly string[] | undefined;
254
+ allowTargetBlank?: boolean | undefined;
255
+ } | undefined;
256
+ }) | ({
257
+ type: "Select";
258
+ } & {
259
+ fieldset?: string | null | undefined;
260
+ config?: {
261
+ label?: string | null | undefined;
262
+ placeholder?: string | undefined;
263
+ default_value?: string | undefined;
264
+ options?: readonly string[] | undefined;
265
+ } | undefined;
266
+ }) | ({
267
+ type: "Separator";
268
+ } & {
269
+ config?: {
270
+ label?: string | null | undefined;
271
+ } | undefined;
272
+ }) | ({
273
+ type: "Text";
274
+ } & {
275
+ fieldset?: string | null | undefined;
276
+ config?: {
277
+ label?: string | null | undefined;
278
+ useAsTitle?: boolean | undefined;
279
+ placeholder?: string | undefined;
280
+ } | undefined;
281
+ }) | ({
282
+ type: "Timestamp";
283
+ } & {
284
+ fieldset?: string | null | undefined;
285
+ config?: {
286
+ label?: string | null | undefined;
287
+ placeholder?: string | undefined;
288
+ default?: string | undefined;
289
+ } | undefined;
290
+ }) | ({
291
+ type: "Link";
292
+ } & {
293
+ fieldset?: string | null | undefined;
294
+ config?: {
295
+ label?: string | null | undefined;
296
+ useAsTitle?: boolean | undefined;
297
+ placeholder?: string | undefined;
298
+ select?: "media" | "document" | "web" | null | undefined;
299
+ customtypes?: readonly string[] | undefined;
300
+ masks?: readonly string[] | undefined;
301
+ tags?: readonly string[] | undefined;
302
+ allowTargetBlank?: boolean | undefined;
303
+ } | undefined;
304
+ }) | ({
305
+ type: "Image";
306
+ } & {
307
+ fieldset?: string | null | undefined;
308
+ config?: {
309
+ label?: string | null | undefined;
310
+ placeholder?: string | undefined;
311
+ constraint?: {
312
+ width?: number | null | undefined;
313
+ height?: number | null | undefined;
314
+ } | undefined;
315
+ thumbnails?: readonly ({
316
+ name: string;
317
+ } & {
318
+ width?: number | null | undefined;
319
+ height?: number | null | undefined;
320
+ })[] | undefined;
321
+ } | undefined;
322
+ }) | ({
323
+ type: "IntegrationFields";
324
+ } & {
325
+ fieldset?: string | null | undefined;
326
+ config?: {
327
+ label?: string | null | undefined;
328
+ placeholder?: string | undefined;
329
+ catalog?: string | undefined;
330
+ } | undefined;
331
+ });
332
+ } | undefined;
333
+ }) | undefined, variationB?: ({
334
+ id: string;
335
+ name: string;
336
+ description: string;
337
+ imageUrl: string;
338
+ docURL: string;
339
+ version: string;
340
+ } & {
341
+ display?: string | undefined;
342
+ primary?: {
343
+ [x: string]: ({
344
+ type: "Color";
345
+ } & {
346
+ fieldset?: string | null | undefined;
347
+ config?: {
348
+ label?: string | null | undefined;
349
+ placeholder?: string | undefined;
350
+ } | undefined;
351
+ }) | ({
352
+ type: "Boolean";
353
+ } & {
354
+ config?: {
355
+ label?: string | null | undefined;
356
+ default_value?: boolean | undefined;
357
+ placeholder_true?: string | undefined;
358
+ placeholder_false?: string | undefined;
359
+ } | undefined;
360
+ }) | ({
361
+ type: "Embed";
362
+ } & {
363
+ fieldset?: string | null | undefined;
364
+ config?: {
365
+ label?: string | null | undefined;
366
+ placeholder?: string | undefined;
367
+ useAsTitle?: boolean | undefined;
368
+ } | undefined;
369
+ }) | ({
370
+ type: "GeoPoint";
371
+ } & {
372
+ fieldset?: string | null | undefined;
373
+ config?: {
374
+ label?: string | null | undefined;
375
+ } | undefined;
376
+ }) | ({
377
+ type: "Date";
378
+ } & {
379
+ fieldset?: string | null | undefined;
380
+ config?: {
381
+ label?: string | null | undefined;
382
+ placeholder?: string | undefined;
383
+ default?: string | undefined;
384
+ } | undefined;
385
+ }) | ({
386
+ type: "Number";
387
+ } & {
388
+ fieldset?: string | null | undefined;
389
+ config?: {
390
+ label?: string | null | undefined;
391
+ placeholder?: string | undefined;
392
+ min?: number | undefined;
393
+ max?: number | undefined;
394
+ step?: number | undefined;
395
+ } | undefined;
396
+ }) | ({
397
+ type: "Range";
398
+ } & {
399
+ fieldset?: string | null | undefined;
400
+ config?: {
401
+ label?: string | null | undefined;
402
+ placeholder?: string | undefined;
403
+ min?: number | undefined;
404
+ max?: number | undefined;
405
+ step?: number | undefined;
406
+ } | undefined;
407
+ }) | ({
408
+ type: "StructuredText";
409
+ } & {
410
+ fieldset?: string | null | undefined;
411
+ config?: {
412
+ label?: string | null | undefined;
413
+ placeholder?: string | undefined;
414
+ useAsTitle?: boolean | undefined;
415
+ single?: string | undefined;
416
+ multi?: string | undefined;
417
+ imageConstraint?: {
418
+ width?: number | null | undefined;
419
+ height?: number | null | undefined;
420
+ } | undefined;
421
+ labels?: readonly string[] | undefined;
422
+ allowTargetBlank?: boolean | undefined;
423
+ } | undefined;
424
+ }) | ({
425
+ type: "Select";
426
+ } & {
427
+ fieldset?: string | null | undefined;
428
+ config?: {
429
+ label?: string | null | undefined;
430
+ placeholder?: string | undefined;
431
+ default_value?: string | undefined;
432
+ options?: readonly string[] | undefined;
433
+ } | undefined;
434
+ }) | ({
435
+ type: "Separator";
436
+ } & {
437
+ config?: {
438
+ label?: string | null | undefined;
439
+ } | undefined;
440
+ }) | ({
441
+ type: "Text";
442
+ } & {
443
+ fieldset?: string | null | undefined;
444
+ config?: {
445
+ label?: string | null | undefined;
446
+ useAsTitle?: boolean | undefined;
447
+ placeholder?: string | undefined;
448
+ } | undefined;
449
+ }) | ({
450
+ type: "Timestamp";
451
+ } & {
452
+ fieldset?: string | null | undefined;
453
+ config?: {
454
+ label?: string | null | undefined;
455
+ placeholder?: string | undefined;
456
+ default?: string | undefined;
457
+ } | undefined;
458
+ }) | ({
459
+ type: "Link";
460
+ } & {
461
+ fieldset?: string | null | undefined;
462
+ config?: {
463
+ label?: string | null | undefined;
464
+ useAsTitle?: boolean | undefined;
465
+ placeholder?: string | undefined;
466
+ select?: "media" | "document" | "web" | null | undefined;
467
+ customtypes?: readonly string[] | undefined;
468
+ masks?: readonly string[] | undefined;
469
+ tags?: readonly string[] | undefined;
470
+ allowTargetBlank?: boolean | undefined;
471
+ } | undefined;
472
+ }) | ({
473
+ type: "Image";
474
+ } & {
475
+ fieldset?: string | null | undefined;
476
+ config?: {
477
+ label?: string | null | undefined;
478
+ placeholder?: string | undefined;
479
+ constraint?: {
480
+ width?: number | null | undefined;
481
+ height?: number | null | undefined;
482
+ } | undefined;
483
+ thumbnails?: readonly ({
484
+ name: string;
485
+ } & {
486
+ width?: number | null | undefined;
487
+ height?: number | null | undefined;
488
+ })[] | undefined;
489
+ } | undefined;
490
+ }) | ({
491
+ type: "IntegrationFields";
492
+ } & {
493
+ fieldset?: string | null | undefined;
494
+ config?: {
495
+ label?: string | null | undefined;
496
+ placeholder?: string | undefined;
497
+ catalog?: string | undefined;
498
+ } | undefined;
499
+ });
500
+ } | undefined;
501
+ items?: {
502
+ [x: string]: ({
503
+ type: "Color";
504
+ } & {
505
+ fieldset?: string | null | undefined;
506
+ config?: {
507
+ label?: string | null | undefined;
508
+ placeholder?: string | undefined;
509
+ } | undefined;
510
+ }) | ({
511
+ type: "Boolean";
512
+ } & {
513
+ config?: {
514
+ label?: string | null | undefined;
515
+ default_value?: boolean | undefined;
516
+ placeholder_true?: string | undefined;
517
+ placeholder_false?: string | undefined;
518
+ } | undefined;
519
+ }) | ({
520
+ type: "Embed";
521
+ } & {
522
+ fieldset?: string | null | undefined;
523
+ config?: {
524
+ label?: string | null | undefined;
525
+ placeholder?: string | undefined;
526
+ useAsTitle?: boolean | undefined;
527
+ } | undefined;
528
+ }) | ({
529
+ type: "GeoPoint";
530
+ } & {
531
+ fieldset?: string | null | undefined;
532
+ config?: {
533
+ label?: string | null | undefined;
534
+ } | undefined;
535
+ }) | ({
536
+ type: "Date";
537
+ } & {
538
+ fieldset?: string | null | undefined;
539
+ config?: {
540
+ label?: string | null | undefined;
541
+ placeholder?: string | undefined;
542
+ default?: string | undefined;
543
+ } | undefined;
544
+ }) | ({
545
+ type: "Number";
546
+ } & {
547
+ fieldset?: string | null | undefined;
548
+ config?: {
549
+ label?: string | null | undefined;
550
+ placeholder?: string | undefined;
551
+ min?: number | undefined;
552
+ max?: number | undefined;
553
+ step?: number | undefined;
554
+ } | undefined;
555
+ }) | ({
556
+ type: "Range";
557
+ } & {
558
+ fieldset?: string | null | undefined;
559
+ config?: {
560
+ label?: string | null | undefined;
561
+ placeholder?: string | undefined;
562
+ min?: number | undefined;
563
+ max?: number | undefined;
564
+ step?: number | undefined;
565
+ } | undefined;
566
+ }) | ({
567
+ type: "StructuredText";
568
+ } & {
569
+ fieldset?: string | null | undefined;
570
+ config?: {
571
+ label?: string | null | undefined;
572
+ placeholder?: string | undefined;
573
+ useAsTitle?: boolean | undefined;
574
+ single?: string | undefined;
575
+ multi?: string | undefined;
576
+ imageConstraint?: {
577
+ width?: number | null | undefined;
578
+ height?: number | null | undefined;
579
+ } | undefined;
580
+ labels?: readonly string[] | undefined;
581
+ allowTargetBlank?: boolean | undefined;
582
+ } | undefined;
583
+ }) | ({
584
+ type: "Select";
585
+ } & {
586
+ fieldset?: string | null | undefined;
587
+ config?: {
588
+ label?: string | null | undefined;
589
+ placeholder?: string | undefined;
590
+ default_value?: string | undefined;
591
+ options?: readonly string[] | undefined;
592
+ } | undefined;
593
+ }) | ({
594
+ type: "Separator";
595
+ } & {
596
+ config?: {
597
+ label?: string | null | undefined;
598
+ } | undefined;
599
+ }) | ({
600
+ type: "Text";
601
+ } & {
602
+ fieldset?: string | null | undefined;
603
+ config?: {
604
+ label?: string | null | undefined;
605
+ useAsTitle?: boolean | undefined;
606
+ placeholder?: string | undefined;
607
+ } | undefined;
608
+ }) | ({
609
+ type: "Timestamp";
610
+ } & {
611
+ fieldset?: string | null | undefined;
612
+ config?: {
613
+ label?: string | null | undefined;
614
+ placeholder?: string | undefined;
615
+ default?: string | undefined;
616
+ } | undefined;
617
+ }) | ({
618
+ type: "Link";
619
+ } & {
620
+ fieldset?: string | null | undefined;
621
+ config?: {
622
+ label?: string | null | undefined;
623
+ useAsTitle?: boolean | undefined;
624
+ placeholder?: string | undefined;
625
+ select?: "media" | "document" | "web" | null | undefined;
626
+ customtypes?: readonly string[] | undefined;
627
+ masks?: readonly string[] | undefined;
628
+ tags?: readonly string[] | undefined;
629
+ allowTargetBlank?: boolean | undefined;
630
+ } | undefined;
631
+ }) | ({
632
+ type: "Image";
633
+ } & {
634
+ fieldset?: string | null | undefined;
635
+ config?: {
636
+ label?: string | null | undefined;
637
+ placeholder?: string | undefined;
638
+ constraint?: {
639
+ width?: number | null | undefined;
640
+ height?: number | null | undefined;
641
+ } | undefined;
642
+ thumbnails?: readonly ({
643
+ name: string;
644
+ } & {
645
+ width?: number | null | undefined;
646
+ height?: number | null | undefined;
647
+ })[] | undefined;
648
+ } | undefined;
649
+ }) | ({
650
+ type: "IntegrationFields";
651
+ } & {
652
+ fieldset?: string | null | undefined;
653
+ config?: {
654
+ label?: string | null | undefined;
655
+ placeholder?: string | undefined;
656
+ catalog?: string | undefined;
657
+ } | undefined;
658
+ });
659
+ } | undefined;
660
+ }) | undefined): VariationDiff | undefined;
661
+ };
662
+ export {};