@wix/pro-gallery 1.0.63 → 1.0.65
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/build/cjs/context.js +1 -0
- package/build/cjs/context.js.map +1 -0
- package/build/cjs/index.js +1 -0
- package/build/cjs/index.js.map +1 -0
- package/build/cjs/meta.js +1 -0
- package/build/cjs/meta.js.map +1 -0
- package/build/es/context.js +1 -0
- package/build/es/context.js.map +1 -0
- package/build/es/index.js +1 -0
- package/build/es/index.js.map +1 -0
- package/build/es/meta.js +1 -0
- package/build/es/meta.js.map +1 -0
- package/package.json +3 -3
- package/type-bundles/context.bundle.d.ts +252 -194
- package/type-bundles/index.bundle.d.ts +252 -194
- package/type-bundles/meta.bundle.d.ts +22 -14
@@ -23,7 +23,7 @@ interface Gallery$1 {
|
|
23
23
|
* Date and time the gallery was created.
|
24
24
|
* @readonly
|
25
25
|
*/
|
26
|
-
createdDate?: Date;
|
26
|
+
createdDate?: Date | null;
|
27
27
|
}
|
28
28
|
interface Item$1 extends ItemMetadataOneOf$1 {
|
29
29
|
/** Details about the image. */
|
@@ -51,18 +51,21 @@ interface Item$1 extends ItemMetadataOneOf$1 {
|
|
51
51
|
description?: string | null;
|
52
52
|
/** Link from the item. You can link to Wix sites or external URLs. */
|
53
53
|
link?: Link$1;
|
54
|
-
/**
|
54
|
+
/**
|
55
|
+
* Type of item.
|
56
|
+
* @readonly
|
57
|
+
*/
|
55
58
|
type?: Type$1;
|
56
59
|
/**
|
57
60
|
* Date and time the item was created.
|
58
61
|
* @readonly
|
59
62
|
*/
|
60
|
-
createdDate?: Date;
|
63
|
+
createdDate?: Date | null;
|
61
64
|
/**
|
62
65
|
* Date and time the item was last updated.
|
63
66
|
* @readonly
|
64
67
|
*/
|
65
|
-
updatedDate?: Date;
|
68
|
+
updatedDate?: Date | null;
|
66
69
|
/** Item tags. */
|
67
70
|
tags?: Tags$1;
|
68
71
|
}
|
@@ -83,9 +86,9 @@ interface Link$1 {
|
|
83
86
|
}
|
84
87
|
declare enum LinkType$1 {
|
85
88
|
UNDEFINED = "UNDEFINED",
|
86
|
-
/**
|
89
|
+
/** External link. */
|
87
90
|
EXTERNAL = "EXTERNAL",
|
88
|
-
/**
|
91
|
+
/** For internal usage using wixLinkData. */
|
89
92
|
INTERNAL = "INTERNAL"
|
90
93
|
}
|
91
94
|
/**
|
@@ -167,7 +170,7 @@ interface UnsharpMasking$1 {
|
|
167
170
|
/** Unsharp masking radius in pixels. Controls the sharpening width. */
|
168
171
|
radius?: number | null;
|
169
172
|
/**
|
170
|
-
* Unsharp masking threshold. Controls how different neighboring pixels must be for
|
173
|
+
* Unsharp masking threshold. Controls how different neighboring pixels must be for sharpening to apply. <br />
|
171
174
|
*
|
172
175
|
* Min: `0` <br />
|
173
176
|
* Max: `1`
|
@@ -175,6 +178,7 @@ interface UnsharpMasking$1 {
|
|
175
178
|
threshold?: number | null;
|
176
179
|
}
|
177
180
|
interface Video$1 {
|
181
|
+
/** Type of video. */
|
178
182
|
type?: VideoType$1;
|
179
183
|
/** Information about the video. */
|
180
184
|
videoInfo?: VideoV2;
|
@@ -572,7 +576,7 @@ interface Gallery {
|
|
572
576
|
* Date and time the gallery was created.
|
573
577
|
* @readonly
|
574
578
|
*/
|
575
|
-
_createdDate?: Date;
|
579
|
+
_createdDate?: Date | null;
|
576
580
|
}
|
577
581
|
interface Item extends ItemMetadataOneOf {
|
578
582
|
/** Details about the image. */
|
@@ -600,18 +604,21 @@ interface Item extends ItemMetadataOneOf {
|
|
600
604
|
description?: string | null;
|
601
605
|
/** Link from the item. You can link to Wix sites or external URLs. */
|
602
606
|
link?: Link;
|
603
|
-
/**
|
607
|
+
/**
|
608
|
+
* Type of item.
|
609
|
+
* @readonly
|
610
|
+
*/
|
604
611
|
type?: Type;
|
605
612
|
/**
|
606
613
|
* Date and time the item was created.
|
607
614
|
* @readonly
|
608
615
|
*/
|
609
|
-
_createdDate?: Date;
|
616
|
+
_createdDate?: Date | null;
|
610
617
|
/**
|
611
618
|
* Date and time the item was last updated.
|
612
619
|
* @readonly
|
613
620
|
*/
|
614
|
-
_updatedDate?: Date;
|
621
|
+
_updatedDate?: Date | null;
|
615
622
|
/** Item tags. */
|
616
623
|
tags?: Tags;
|
617
624
|
}
|
@@ -632,9 +639,9 @@ interface Link {
|
|
632
639
|
}
|
633
640
|
declare enum LinkType {
|
634
641
|
UNDEFINED = "UNDEFINED",
|
635
|
-
/**
|
642
|
+
/** External link. */
|
636
643
|
EXTERNAL = "EXTERNAL",
|
637
|
-
/**
|
644
|
+
/** For internal usage using wixLinkData. */
|
638
645
|
INTERNAL = "INTERNAL"
|
639
646
|
}
|
640
647
|
/**
|
@@ -699,7 +706,7 @@ interface UnsharpMasking {
|
|
699
706
|
/** Unsharp masking radius in pixels. Controls the sharpening width. */
|
700
707
|
radius?: number | null;
|
701
708
|
/**
|
702
|
-
* Unsharp masking threshold. Controls how different neighboring pixels must be for
|
709
|
+
* Unsharp masking threshold. Controls how different neighboring pixels must be for sharpening to apply. <br />
|
703
710
|
*
|
704
711
|
* Min: `0` <br />
|
705
712
|
* Max: `1`
|
@@ -707,6 +714,7 @@ interface UnsharpMasking {
|
|
707
714
|
threshold?: number | null;
|
708
715
|
}
|
709
716
|
interface Video {
|
717
|
+
/** Type of video. */
|
710
718
|
type?: VideoType;
|
711
719
|
/**
|
712
720
|
* The video's URL. Either a Wix media URL, or a supported https external URL in the following formats:
|