@wix/data 1.0.144 → 1.0.145
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/index.d.ts +5 -4
- package/build/cjs/index.js +8 -4
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.d.ts +5 -4
- package/build/es/index.js +5 -4
- package/build/es/index.js.map +1 -1
- package/package.json +6 -6
- package/type-bundles/context.bundle.d.ts +567 -78
- package/type-bundles/index.bundle.d.ts +567 -78
- package/type-bundles/meta.bundle.d.ts +16 -4
|
@@ -923,7 +923,10 @@ declare enum Role$1 {
|
|
|
923
923
|
ANYONE = "ANYONE"
|
|
924
924
|
}
|
|
925
925
|
interface Plugin$1 extends PluginOptionsOneOf$1 {
|
|
926
|
-
/**
|
|
926
|
+
/**
|
|
927
|
+
* Options for the Publish plugin.
|
|
928
|
+
* This plugin allows items in a [data collection](https://dev.wix.com/docs/rest/business-solutions/cms/data-collections/data-collection-object) to be marked as draft or published. Published items are visible to site visitors, while draft items are not.
|
|
929
|
+
*/
|
|
927
930
|
publishOptions?: PublishPluginOptions$1;
|
|
928
931
|
/** Options for the Single Item plugin. */
|
|
929
932
|
singleItemOptions?: SingleItemPluginOptions$1;
|
|
@@ -948,7 +951,10 @@ interface Plugin$1 extends PluginOptionsOneOf$1 {
|
|
|
948
951
|
}
|
|
949
952
|
/** @oneof */
|
|
950
953
|
interface PluginOptionsOneOf$1 {
|
|
951
|
-
/**
|
|
954
|
+
/**
|
|
955
|
+
* Options for the Publish plugin.
|
|
956
|
+
* This plugin allows items in a [data collection](https://dev.wix.com/docs/rest/business-solutions/cms/data-collections/data-collection-object) to be marked as draft or published. Published items are visible to site visitors, while draft items are not.
|
|
957
|
+
*/
|
|
952
958
|
publishOptions?: PublishPluginOptions$1;
|
|
953
959
|
/** Options for the Single Item plugin. */
|
|
954
960
|
singleItemOptions?: SingleItemPluginOptions$1;
|
|
@@ -1751,7 +1757,10 @@ declare enum Role {
|
|
|
1751
1757
|
ANYONE = "ANYONE"
|
|
1752
1758
|
}
|
|
1753
1759
|
interface Plugin extends PluginOptionsOneOf {
|
|
1754
|
-
/**
|
|
1760
|
+
/**
|
|
1761
|
+
* Options for the Publish plugin.
|
|
1762
|
+
* This plugin allows items in a [data collection](https://dev.wix.com/docs/rest/business-solutions/cms/data-collections/data-collection-object) to be marked as draft or published. Published items are visible to site visitors, while draft items are not.
|
|
1763
|
+
*/
|
|
1755
1764
|
publishOptions?: PublishPluginOptions;
|
|
1756
1765
|
/** Options for the Single Item plugin. */
|
|
1757
1766
|
singleItemOptions?: SingleItemPluginOptions;
|
|
@@ -1776,7 +1785,10 @@ interface Plugin extends PluginOptionsOneOf {
|
|
|
1776
1785
|
}
|
|
1777
1786
|
/** @oneof */
|
|
1778
1787
|
interface PluginOptionsOneOf {
|
|
1779
|
-
/**
|
|
1788
|
+
/**
|
|
1789
|
+
* Options for the Publish plugin.
|
|
1790
|
+
* This plugin allows items in a [data collection](https://dev.wix.com/docs/rest/business-solutions/cms/data-collections/data-collection-object) to be marked as draft or published. Published items are visible to site visitors, while draft items are not.
|
|
1791
|
+
*/
|
|
1780
1792
|
publishOptions?: PublishPluginOptions;
|
|
1781
1793
|
/** Options for the Single Item plugin. */
|
|
1782
1794
|
singleItemOptions?: SingleItemPluginOptions;
|