@wix/stores 1.0.36 → 1.0.37
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 +1 -1
- package/build/cjs/index.js +2 -2
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/src/stores-catalog-v1-collection.types.d.ts +7 -7
- package/build/cjs/src/stores-catalog-v1-collection.universal.d.ts +7 -7
- package/build/cjs/src/stores-catalog-v1-product-products.types.d.ts +7 -7
- package/build/cjs/src/stores-catalog-v1-product-products.universal.d.ts +7 -7
- package/build/es/index.d.ts +1 -1
- package/build/es/index.js +1 -1
- package/build/es/index.js.map +1 -1
- package/build/es/src/stores-catalog-v1-collection.types.d.ts +7 -7
- package/build/es/src/stores-catalog-v1-collection.universal.d.ts +7 -7
- package/build/es/src/stores-catalog-v1-product-products.types.d.ts +7 -7
- package/build/es/src/stores-catalog-v1-product-products.universal.d.ts +7 -7
- package/package.json +2 -2
package/build/cjs/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export * as catalog from './src/stores-v2-inventory.public';
|
|
2
2
|
export * as orders from './src/stores-v2-orders.public';
|
|
3
|
-
export * as subscriptionOptions from './src/stores-v1-subscription-option.public';
|
|
4
3
|
export * as wishlist from './src/platform-v1-wishlist.public';
|
|
4
|
+
export * as subscriptionOptions from './src/stores-v1-subscription-option.public';
|
|
5
5
|
export * as collections from './src/stores-catalog-v1-collection.public';
|
|
6
6
|
export * as products from './src/stores-catalog-v1-product-products.public';
|
package/build/cjs/index.js
CHANGED
|
@@ -19,11 +19,11 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
19
19
|
return result;
|
|
20
20
|
};
|
|
21
21
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
|
-
exports.products = exports.collections = exports.
|
|
22
|
+
exports.products = exports.collections = exports.subscriptionOptions = exports.wishlist = exports.orders = exports.catalog = void 0;
|
|
23
23
|
exports.catalog = __importStar(require("./src/stores-v2-inventory.public"));
|
|
24
24
|
exports.orders = __importStar(require("./src/stores-v2-orders.public"));
|
|
25
|
-
exports.subscriptionOptions = __importStar(require("./src/stores-v1-subscription-option.public"));
|
|
26
25
|
exports.wishlist = __importStar(require("./src/platform-v1-wishlist.public"));
|
|
26
|
+
exports.subscriptionOptions = __importStar(require("./src/stores-v1-subscription-option.public"));
|
|
27
27
|
exports.collections = __importStar(require("./src/stores-catalog-v1-collection.public"));
|
|
28
28
|
exports.products = __importStar(require("./src/stores-catalog-v1-product-products.public"));
|
|
29
29
|
//# sourceMappingURL=index.js.map
|
package/build/cjs/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;AAAA,4EAA4D;AAC5D,wEAAwD;AACxD,kGAAkF;AAClF,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;AAAA,4EAA4D;AAC5D,wEAAwD;AACxD,8EAA8D;AAC9D,kGAAkF;AAClF,yFAAyE;AACzE,4FAA4E"}
|
|
@@ -82,15 +82,15 @@ export interface MediaItemVideo {
|
|
|
82
82
|
* This data will override other sources of tags (for example patterns) and will be included in the <head> section of the HTML document, while not being displayed on the page itself.
|
|
83
83
|
*/
|
|
84
84
|
export interface SeoSchema {
|
|
85
|
-
/** SEO
|
|
85
|
+
/** SEO tag information. */
|
|
86
86
|
tags?: Tag[];
|
|
87
87
|
/** SEO general settings. */
|
|
88
88
|
settings?: Settings;
|
|
89
89
|
}
|
|
90
90
|
export interface Keyword {
|
|
91
|
-
/** Keyword value */
|
|
91
|
+
/** Keyword value. */
|
|
92
92
|
term?: string;
|
|
93
|
-
/** Whether the keyword is the main
|
|
93
|
+
/** Whether the keyword is the main focus keyword. */
|
|
94
94
|
isMain?: boolean;
|
|
95
95
|
}
|
|
96
96
|
export interface Tag {
|
|
@@ -102,7 +102,7 @@ export interface Tag {
|
|
|
102
102
|
*/
|
|
103
103
|
type?: string;
|
|
104
104
|
/**
|
|
105
|
-
* A `{'key':'value'} pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
105
|
+
* A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
106
106
|
* For example: `{'name': 'description', 'content': 'the description itself'}`.
|
|
107
107
|
*/
|
|
108
108
|
props?: Record<string, any> | null;
|
|
@@ -117,13 +117,13 @@ export interface Tag {
|
|
|
117
117
|
}
|
|
118
118
|
export interface Settings {
|
|
119
119
|
/**
|
|
120
|
-
* Whether the
|
|
120
|
+
* Whether the Auto Redirect feature, which creates `301 redirects` on a slug change, is enabled.
|
|
121
121
|
*
|
|
122
122
|
*
|
|
123
|
-
* Default: false (
|
|
123
|
+
* Default: `false` (Auto Redirect is enabled.)
|
|
124
124
|
*/
|
|
125
125
|
preventAutoRedirect?: boolean;
|
|
126
|
-
/** User-selected keyword terms for a specific page */
|
|
126
|
+
/** User-selected keyword terms for a specific page. */
|
|
127
127
|
keywords?: Keyword[];
|
|
128
128
|
}
|
|
129
129
|
export interface QueryCollectionsRequest {
|
|
@@ -88,15 +88,15 @@ export interface MediaItemVideo {
|
|
|
88
88
|
* This data will override other sources of tags (for example patterns) and will be included in the <head> section of the HTML document, while not being displayed on the page itself.
|
|
89
89
|
*/
|
|
90
90
|
export interface SeoSchema {
|
|
91
|
-
/** SEO
|
|
91
|
+
/** SEO tag information. */
|
|
92
92
|
tags?: Tag[];
|
|
93
93
|
/** SEO general settings. */
|
|
94
94
|
settings?: Settings;
|
|
95
95
|
}
|
|
96
96
|
export interface Keyword {
|
|
97
|
-
/** Keyword value */
|
|
97
|
+
/** Keyword value. */
|
|
98
98
|
term?: string;
|
|
99
|
-
/** Whether the keyword is the main
|
|
99
|
+
/** Whether the keyword is the main focus keyword. */
|
|
100
100
|
isMain?: boolean;
|
|
101
101
|
}
|
|
102
102
|
export interface Tag {
|
|
@@ -108,7 +108,7 @@ export interface Tag {
|
|
|
108
108
|
*/
|
|
109
109
|
type?: string;
|
|
110
110
|
/**
|
|
111
|
-
* A `{'key':'value'} pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
111
|
+
* A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
112
112
|
* For example: `{'name': 'description', 'content': 'the description itself'}`.
|
|
113
113
|
*/
|
|
114
114
|
props?: Record<string, any> | null;
|
|
@@ -123,13 +123,13 @@ export interface Tag {
|
|
|
123
123
|
}
|
|
124
124
|
export interface Settings {
|
|
125
125
|
/**
|
|
126
|
-
* Whether the
|
|
126
|
+
* Whether the Auto Redirect feature, which creates `301 redirects` on a slug change, is enabled.
|
|
127
127
|
*
|
|
128
128
|
*
|
|
129
|
-
* Default: false (
|
|
129
|
+
* Default: `false` (Auto Redirect is enabled.)
|
|
130
130
|
*/
|
|
131
131
|
preventAutoRedirect?: boolean;
|
|
132
|
-
/** User-selected keyword terms for a specific page */
|
|
132
|
+
/** User-selected keyword terms for a specific page. */
|
|
133
133
|
keywords?: Keyword[];
|
|
134
134
|
}
|
|
135
135
|
export interface QueryCollectionsRequest {
|
|
@@ -421,15 +421,15 @@ export interface VariantStock {
|
|
|
421
421
|
* This data will override other sources of tags (for example patterns) and will be included in the <head> section of the HTML document, while not being displayed on the page itself.
|
|
422
422
|
*/
|
|
423
423
|
export interface SeoSchema {
|
|
424
|
-
/** SEO
|
|
424
|
+
/** SEO tag information. */
|
|
425
425
|
tags?: Tag[];
|
|
426
426
|
/** SEO general settings. */
|
|
427
427
|
settings?: Settings;
|
|
428
428
|
}
|
|
429
429
|
export interface Keyword {
|
|
430
|
-
/** Keyword value */
|
|
430
|
+
/** Keyword value. */
|
|
431
431
|
term?: string;
|
|
432
|
-
/** Whether the keyword is the main
|
|
432
|
+
/** Whether the keyword is the main focus keyword. */
|
|
433
433
|
isMain?: boolean;
|
|
434
434
|
}
|
|
435
435
|
export interface Tag {
|
|
@@ -441,7 +441,7 @@ export interface Tag {
|
|
|
441
441
|
*/
|
|
442
442
|
type?: string;
|
|
443
443
|
/**
|
|
444
|
-
* A `{'key':'value'} pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
444
|
+
* A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
445
445
|
* For example: `{'name': 'description', 'content': 'the description itself'}`.
|
|
446
446
|
*/
|
|
447
447
|
props?: Record<string, any> | null;
|
|
@@ -456,13 +456,13 @@ export interface Tag {
|
|
|
456
456
|
}
|
|
457
457
|
export interface Settings {
|
|
458
458
|
/**
|
|
459
|
-
* Whether the
|
|
459
|
+
* Whether the Auto Redirect feature, which creates `301 redirects` on a slug change, is enabled.
|
|
460
460
|
*
|
|
461
461
|
*
|
|
462
|
-
* Default: false (
|
|
462
|
+
* Default: `false` (Auto Redirect is enabled.)
|
|
463
463
|
*/
|
|
464
464
|
preventAutoRedirect?: boolean;
|
|
465
|
-
/** User-selected keyword terms for a specific page */
|
|
465
|
+
/** User-selected keyword terms for a specific page. */
|
|
466
466
|
keywords?: Keyword[];
|
|
467
467
|
}
|
|
468
468
|
export interface CreateProductRequest {
|
|
@@ -427,15 +427,15 @@ export interface VariantStock {
|
|
|
427
427
|
* This data will override other sources of tags (for example patterns) and will be included in the <head> section of the HTML document, while not being displayed on the page itself.
|
|
428
428
|
*/
|
|
429
429
|
export interface SeoSchema {
|
|
430
|
-
/** SEO
|
|
430
|
+
/** SEO tag information. */
|
|
431
431
|
tags?: Tag[];
|
|
432
432
|
/** SEO general settings. */
|
|
433
433
|
settings?: Settings;
|
|
434
434
|
}
|
|
435
435
|
export interface Keyword {
|
|
436
|
-
/** Keyword value */
|
|
436
|
+
/** Keyword value. */
|
|
437
437
|
term?: string;
|
|
438
|
-
/** Whether the keyword is the main
|
|
438
|
+
/** Whether the keyword is the main focus keyword. */
|
|
439
439
|
isMain?: boolean;
|
|
440
440
|
}
|
|
441
441
|
export interface Tag {
|
|
@@ -447,7 +447,7 @@ export interface Tag {
|
|
|
447
447
|
*/
|
|
448
448
|
type?: string;
|
|
449
449
|
/**
|
|
450
|
-
* A `{'key':'value'} pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
450
|
+
* A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
451
451
|
* For example: `{'name': 'description', 'content': 'the description itself'}`.
|
|
452
452
|
*/
|
|
453
453
|
props?: Record<string, any> | null;
|
|
@@ -462,13 +462,13 @@ export interface Tag {
|
|
|
462
462
|
}
|
|
463
463
|
export interface Settings {
|
|
464
464
|
/**
|
|
465
|
-
* Whether the
|
|
465
|
+
* Whether the Auto Redirect feature, which creates `301 redirects` on a slug change, is enabled.
|
|
466
466
|
*
|
|
467
467
|
*
|
|
468
|
-
* Default: false (
|
|
468
|
+
* Default: `false` (Auto Redirect is enabled.)
|
|
469
469
|
*/
|
|
470
470
|
preventAutoRedirect?: boolean;
|
|
471
|
-
/** User-selected keyword terms for a specific page */
|
|
471
|
+
/** User-selected keyword terms for a specific page. */
|
|
472
472
|
keywords?: Keyword[];
|
|
473
473
|
}
|
|
474
474
|
export interface CreateProductRequest {
|
package/build/es/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export * as catalog from './src/stores-v2-inventory.public';
|
|
2
2
|
export * as orders from './src/stores-v2-orders.public';
|
|
3
|
-
export * as subscriptionOptions from './src/stores-v1-subscription-option.public';
|
|
4
3
|
export * as wishlist from './src/platform-v1-wishlist.public';
|
|
4
|
+
export * as subscriptionOptions from './src/stores-v1-subscription-option.public';
|
|
5
5
|
export * as collections from './src/stores-catalog-v1-collection.public';
|
|
6
6
|
export * as products from './src/stores-catalog-v1-product-products.public';
|
package/build/es/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export * as catalog from './src/stores-v2-inventory.public';
|
|
2
2
|
export * as orders from './src/stores-v2-orders.public';
|
|
3
|
-
export * as subscriptionOptions from './src/stores-v1-subscription-option.public';
|
|
4
3
|
export * as wishlist from './src/platform-v1-wishlist.public';
|
|
4
|
+
export * as subscriptionOptions from './src/stores-v1-subscription-option.public';
|
|
5
5
|
export * as collections from './src/stores-catalog-v1-collection.public';
|
|
6
6
|
export * as products from './src/stores-catalog-v1-product-products.public';
|
|
7
7
|
//# sourceMappingURL=index.js.map
|
package/build/es/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,OAAO,MAAM,kCAAkC,CAAC;AAC5D,OAAO,KAAK,MAAM,MAAM,+BAA+B,CAAC;AACxD,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,OAAO,MAAM,kCAAkC,CAAC;AAC5D,OAAO,KAAK,MAAM,MAAM,+BAA+B,CAAC;AACxD,OAAO,KAAK,QAAQ,MAAM,mCAAmC,CAAC;AAC9D,OAAO,KAAK,mBAAmB,MAAM,4CAA4C,CAAC;AAClF,OAAO,KAAK,WAAW,MAAM,2CAA2C,CAAC;AACzE,OAAO,KAAK,QAAQ,MAAM,iDAAiD,CAAC"}
|
|
@@ -82,15 +82,15 @@ export interface MediaItemVideo {
|
|
|
82
82
|
* This data will override other sources of tags (for example patterns) and will be included in the <head> section of the HTML document, while not being displayed on the page itself.
|
|
83
83
|
*/
|
|
84
84
|
export interface SeoSchema {
|
|
85
|
-
/** SEO
|
|
85
|
+
/** SEO tag information. */
|
|
86
86
|
tags?: Tag[];
|
|
87
87
|
/** SEO general settings. */
|
|
88
88
|
settings?: Settings;
|
|
89
89
|
}
|
|
90
90
|
export interface Keyword {
|
|
91
|
-
/** Keyword value */
|
|
91
|
+
/** Keyword value. */
|
|
92
92
|
term?: string;
|
|
93
|
-
/** Whether the keyword is the main
|
|
93
|
+
/** Whether the keyword is the main focus keyword. */
|
|
94
94
|
isMain?: boolean;
|
|
95
95
|
}
|
|
96
96
|
export interface Tag {
|
|
@@ -102,7 +102,7 @@ export interface Tag {
|
|
|
102
102
|
*/
|
|
103
103
|
type?: string;
|
|
104
104
|
/**
|
|
105
|
-
* A `{'key':'value'} pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
105
|
+
* A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
106
106
|
* For example: `{'name': 'description', 'content': 'the description itself'}`.
|
|
107
107
|
*/
|
|
108
108
|
props?: Record<string, any> | null;
|
|
@@ -117,13 +117,13 @@ export interface Tag {
|
|
|
117
117
|
}
|
|
118
118
|
export interface Settings {
|
|
119
119
|
/**
|
|
120
|
-
* Whether the
|
|
120
|
+
* Whether the Auto Redirect feature, which creates `301 redirects` on a slug change, is enabled.
|
|
121
121
|
*
|
|
122
122
|
*
|
|
123
|
-
* Default: false (
|
|
123
|
+
* Default: `false` (Auto Redirect is enabled.)
|
|
124
124
|
*/
|
|
125
125
|
preventAutoRedirect?: boolean;
|
|
126
|
-
/** User-selected keyword terms for a specific page */
|
|
126
|
+
/** User-selected keyword terms for a specific page. */
|
|
127
127
|
keywords?: Keyword[];
|
|
128
128
|
}
|
|
129
129
|
export interface QueryCollectionsRequest {
|
|
@@ -88,15 +88,15 @@ export interface MediaItemVideo {
|
|
|
88
88
|
* This data will override other sources of tags (for example patterns) and will be included in the <head> section of the HTML document, while not being displayed on the page itself.
|
|
89
89
|
*/
|
|
90
90
|
export interface SeoSchema {
|
|
91
|
-
/** SEO
|
|
91
|
+
/** SEO tag information. */
|
|
92
92
|
tags?: Tag[];
|
|
93
93
|
/** SEO general settings. */
|
|
94
94
|
settings?: Settings;
|
|
95
95
|
}
|
|
96
96
|
export interface Keyword {
|
|
97
|
-
/** Keyword value */
|
|
97
|
+
/** Keyword value. */
|
|
98
98
|
term?: string;
|
|
99
|
-
/** Whether the keyword is the main
|
|
99
|
+
/** Whether the keyword is the main focus keyword. */
|
|
100
100
|
isMain?: boolean;
|
|
101
101
|
}
|
|
102
102
|
export interface Tag {
|
|
@@ -108,7 +108,7 @@ export interface Tag {
|
|
|
108
108
|
*/
|
|
109
109
|
type?: string;
|
|
110
110
|
/**
|
|
111
|
-
* A `{'key':'value'} pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
111
|
+
* A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
112
112
|
* For example: `{'name': 'description', 'content': 'the description itself'}`.
|
|
113
113
|
*/
|
|
114
114
|
props?: Record<string, any> | null;
|
|
@@ -123,13 +123,13 @@ export interface Tag {
|
|
|
123
123
|
}
|
|
124
124
|
export interface Settings {
|
|
125
125
|
/**
|
|
126
|
-
* Whether the
|
|
126
|
+
* Whether the Auto Redirect feature, which creates `301 redirects` on a slug change, is enabled.
|
|
127
127
|
*
|
|
128
128
|
*
|
|
129
|
-
* Default: false (
|
|
129
|
+
* Default: `false` (Auto Redirect is enabled.)
|
|
130
130
|
*/
|
|
131
131
|
preventAutoRedirect?: boolean;
|
|
132
|
-
/** User-selected keyword terms for a specific page */
|
|
132
|
+
/** User-selected keyword terms for a specific page. */
|
|
133
133
|
keywords?: Keyword[];
|
|
134
134
|
}
|
|
135
135
|
export interface QueryCollectionsRequest {
|
|
@@ -421,15 +421,15 @@ export interface VariantStock {
|
|
|
421
421
|
* This data will override other sources of tags (for example patterns) and will be included in the <head> section of the HTML document, while not being displayed on the page itself.
|
|
422
422
|
*/
|
|
423
423
|
export interface SeoSchema {
|
|
424
|
-
/** SEO
|
|
424
|
+
/** SEO tag information. */
|
|
425
425
|
tags?: Tag[];
|
|
426
426
|
/** SEO general settings. */
|
|
427
427
|
settings?: Settings;
|
|
428
428
|
}
|
|
429
429
|
export interface Keyword {
|
|
430
|
-
/** Keyword value */
|
|
430
|
+
/** Keyword value. */
|
|
431
431
|
term?: string;
|
|
432
|
-
/** Whether the keyword is the main
|
|
432
|
+
/** Whether the keyword is the main focus keyword. */
|
|
433
433
|
isMain?: boolean;
|
|
434
434
|
}
|
|
435
435
|
export interface Tag {
|
|
@@ -441,7 +441,7 @@ export interface Tag {
|
|
|
441
441
|
*/
|
|
442
442
|
type?: string;
|
|
443
443
|
/**
|
|
444
|
-
* A `{'key':'value'} pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
444
|
+
* A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
445
445
|
* For example: `{'name': 'description', 'content': 'the description itself'}`.
|
|
446
446
|
*/
|
|
447
447
|
props?: Record<string, any> | null;
|
|
@@ -456,13 +456,13 @@ export interface Tag {
|
|
|
456
456
|
}
|
|
457
457
|
export interface Settings {
|
|
458
458
|
/**
|
|
459
|
-
* Whether the
|
|
459
|
+
* Whether the Auto Redirect feature, which creates `301 redirects` on a slug change, is enabled.
|
|
460
460
|
*
|
|
461
461
|
*
|
|
462
|
-
* Default: false (
|
|
462
|
+
* Default: `false` (Auto Redirect is enabled.)
|
|
463
463
|
*/
|
|
464
464
|
preventAutoRedirect?: boolean;
|
|
465
|
-
/** User-selected keyword terms for a specific page */
|
|
465
|
+
/** User-selected keyword terms for a specific page. */
|
|
466
466
|
keywords?: Keyword[];
|
|
467
467
|
}
|
|
468
468
|
export interface CreateProductRequest {
|
|
@@ -427,15 +427,15 @@ export interface VariantStock {
|
|
|
427
427
|
* This data will override other sources of tags (for example patterns) and will be included in the <head> section of the HTML document, while not being displayed on the page itself.
|
|
428
428
|
*/
|
|
429
429
|
export interface SeoSchema {
|
|
430
|
-
/** SEO
|
|
430
|
+
/** SEO tag information. */
|
|
431
431
|
tags?: Tag[];
|
|
432
432
|
/** SEO general settings. */
|
|
433
433
|
settings?: Settings;
|
|
434
434
|
}
|
|
435
435
|
export interface Keyword {
|
|
436
|
-
/** Keyword value */
|
|
436
|
+
/** Keyword value. */
|
|
437
437
|
term?: string;
|
|
438
|
-
/** Whether the keyword is the main
|
|
438
|
+
/** Whether the keyword is the main focus keyword. */
|
|
439
439
|
isMain?: boolean;
|
|
440
440
|
}
|
|
441
441
|
export interface Tag {
|
|
@@ -447,7 +447,7 @@ export interface Tag {
|
|
|
447
447
|
*/
|
|
448
448
|
type?: string;
|
|
449
449
|
/**
|
|
450
|
-
* A `{'key':'value'} pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
450
|
+
* A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
451
451
|
* For example: `{'name': 'description', 'content': 'the description itself'}`.
|
|
452
452
|
*/
|
|
453
453
|
props?: Record<string, any> | null;
|
|
@@ -462,13 +462,13 @@ export interface Tag {
|
|
|
462
462
|
}
|
|
463
463
|
export interface Settings {
|
|
464
464
|
/**
|
|
465
|
-
* Whether the
|
|
465
|
+
* Whether the Auto Redirect feature, which creates `301 redirects` on a slug change, is enabled.
|
|
466
466
|
*
|
|
467
467
|
*
|
|
468
|
-
* Default: false (
|
|
468
|
+
* Default: `false` (Auto Redirect is enabled.)
|
|
469
469
|
*/
|
|
470
470
|
preventAutoRedirect?: boolean;
|
|
471
|
-
/** User-selected keyword terms for a specific page */
|
|
471
|
+
/** User-selected keyword terms for a specific page. */
|
|
472
472
|
keywords?: Keyword[];
|
|
473
473
|
}
|
|
474
474
|
export interface CreateProductRequest {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/stores",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.37",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -33,5 +33,5 @@
|
|
|
33
33
|
"groupId": "com.wixpress.public-sdk-autogen"
|
|
34
34
|
}
|
|
35
35
|
},
|
|
36
|
-
"falconPackageHash": "
|
|
36
|
+
"falconPackageHash": "0ffb54f52687573f05c43520f1f635f4e0de7e3344e71a3b3e97bd5d"
|
|
37
37
|
}
|