@wix/auto_sdk_stores_read-only-variants-v-3 1.0.25 → 1.0.27
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 +3 -3
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +2 -3
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +1 -1
- package/build/cjs/{stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-BQTQgy8a.d.ts → stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-eI39XlRB.d.ts} +5 -6
- package/build/es/index.d.mts +3 -3
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +2 -3
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +1 -1
- package/build/es/{stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-BQTQgy8a.d.mts → stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-eI39XlRB.d.mts} +5 -6
- package/build/internal/cjs/index.d.ts +3 -3
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +2 -3
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +1 -1
- package/build/internal/cjs/{stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-Bl_5T42j.d.ts → stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-CJFQ3HEl.d.ts} +5 -6
- package/build/internal/es/index.d.mts +3 -3
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +2 -3
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +1 -1
- package/build/internal/es/{stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-Bl_5T42j.d.mts → stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-CJFQ3HEl.d.mts} +5 -6
- package/package.json +2 -2
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { aQ as QueryVariantsRequest$1, aV as QueryVariantsResponse$1, aY as SearchVariantsRequest$1, a as SearchVariantsResponse$1 } from './stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-
|
|
1
|
+
import { aQ as QueryVariantsRequest$1, aV as QueryVariantsResponse$1, aY as SearchVariantsRequest$1, a as SearchVariantsResponse$1 } from './stores-catalog-v3-read-only-variant-read-only-variants-v-3.universal-CJFQ3HEl.mjs';
|
|
2
2
|
import '@wix/sdk-types';
|
|
3
3
|
|
|
4
4
|
/**
|
|
@@ -3800,21 +3800,21 @@ interface Tag {
|
|
|
3800
3800
|
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
3801
3801
|
*/
|
|
3802
3802
|
props?: Record<string, any> | null;
|
|
3803
|
-
/** SEO tag
|
|
3803
|
+
/** SEO tag metadata. For example, `{"height": 300, "width": 240}`. */
|
|
3804
3804
|
meta?: Record<string, any> | null;
|
|
3805
3805
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
3806
3806
|
children?: string;
|
|
3807
|
-
/** Whether the tag is a custom tag. */
|
|
3807
|
+
/** Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages). */
|
|
3808
3808
|
custom?: boolean;
|
|
3809
|
-
/** Whether the tag is disabled. */
|
|
3809
|
+
/** Whether the tag is disabled. If the tag is disabled, people can't find your page when searching for this phrase in search engines. */
|
|
3810
3810
|
disabled?: boolean;
|
|
3811
3811
|
}
|
|
3812
3812
|
interface Settings {
|
|
3813
3813
|
/**
|
|
3814
|
-
* Whether the
|
|
3814
|
+
* Whether the [automatical redirect visits](https://support.wix.com/en/article/customizing-your-pages-seo-settings-in-the-seo-panel) from the old URL to the new one is enabled.
|
|
3815
3815
|
*
|
|
3816
3816
|
*
|
|
3817
|
-
* Default: `false` (
|
|
3817
|
+
* Default: `false` (automatical redirect is enabled).
|
|
3818
3818
|
*/
|
|
3819
3819
|
preventAutoRedirect?: boolean;
|
|
3820
3820
|
/**
|
|
@@ -4952,7 +4952,6 @@ type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYM
|
|
|
4952
4952
|
* @permissionId WIX_STORES.READ_ONLY_VARIANT_READ
|
|
4953
4953
|
* @permissionId WIX_STORES.READ_ONLY_VARIANT_READ_HIDDEN
|
|
4954
4954
|
* @applicableIdentity APP
|
|
4955
|
-
* @applicableIdentity VISITOR
|
|
4956
4955
|
* @fqn com.wix.stores.catalog.product.variants.reader.api.v3.ProductVariantsReader.QueryVariants
|
|
4957
4956
|
*/
|
|
4958
4957
|
declare function queryVariants(options?: QueryVariantsOptions): VariantsQueryBuilder;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/auto_sdk_stores_read-only-variants-v-3",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.27",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/",
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"fqdn": "wix.stores.catalog.v3.read_only_variant"
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
|
-
"falconPackageHash": "
|
|
53
|
+
"falconPackageHash": "9219b6f4633c23595eb00bd2bd29019288d71caca9b73d1f108f660e"
|
|
54
54
|
}
|