@wix/blog 1.0.163 → 1.0.164
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/blog-v3-category.types.d.ts +7 -7
- package/build/cjs/src/blog-v3-category.universal.d.ts +6 -6
- package/build/cjs/src/blog-v3-post.types.d.ts +7 -7
- package/build/cjs/src/blog-v3-post.universal.d.ts +7 -7
- package/build/cjs/src/blog-v3-tag.types.d.ts +7 -7
- package/build/cjs/src/blog-v3-tag.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/blog-v3-category.types.d.ts +7 -7
- package/build/es/src/blog-v3-category.universal.d.ts +6 -6
- package/build/es/src/blog-v3-post.types.d.ts +7 -7
- package/build/es/src/blog-v3-post.universal.d.ts +7 -7
- package/build/es/src/blog-v3-tag.types.d.ts +7 -7
- package/build/es/src/blog-v3-tag.universal.d.ts +7 -7
- package/package.json +2 -2
package/build/cjs/index.d.ts
CHANGED
package/build/cjs/index.js
CHANGED
|
@@ -19,8 +19,8 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
19
19
|
return result;
|
|
20
20
|
};
|
|
21
21
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
22
|
-
exports.
|
|
23
|
-
exports.tags = __importStar(require("./src/blog-v3-tag.public"));
|
|
22
|
+
exports.tags = exports.posts = exports.categories = void 0;
|
|
24
23
|
exports.categories = __importStar(require("./src/blog-v3-category.public"));
|
|
25
24
|
exports.posts = __importStar(require("./src/blog-v3-post.public"));
|
|
25
|
+
exports.tags = __importStar(require("./src/blog-v3-tag.public"));
|
|
26
26
|
//# 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,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;AAAA,4EAA4D;AAC5D,mEAAmD;AACnD,iEAAiD"}
|
|
@@ -144,15 +144,15 @@ export interface Video {
|
|
|
144
144
|
* 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.
|
|
145
145
|
*/
|
|
146
146
|
export interface SeoSchema {
|
|
147
|
-
/** SEO
|
|
147
|
+
/** SEO tag information. */
|
|
148
148
|
tags?: Tag[];
|
|
149
149
|
/** SEO general settings. */
|
|
150
150
|
settings?: Settings;
|
|
151
151
|
}
|
|
152
152
|
export interface Keyword {
|
|
153
|
-
/** Keyword value */
|
|
153
|
+
/** Keyword value. */
|
|
154
154
|
term?: string;
|
|
155
|
-
/** Whether the keyword is the main
|
|
155
|
+
/** Whether the keyword is the main focus keyword. */
|
|
156
156
|
isMain?: boolean;
|
|
157
157
|
}
|
|
158
158
|
export interface Tag {
|
|
@@ -164,7 +164,7 @@ export interface Tag {
|
|
|
164
164
|
*/
|
|
165
165
|
type?: string;
|
|
166
166
|
/**
|
|
167
|
-
* A `{'key':'value'} pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
167
|
+
* A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
168
168
|
* For example: `{'name': 'description', 'content': 'the description itself'}`.
|
|
169
169
|
*/
|
|
170
170
|
props?: Record<string, any> | null;
|
|
@@ -179,13 +179,13 @@ export interface Tag {
|
|
|
179
179
|
}
|
|
180
180
|
export interface Settings {
|
|
181
181
|
/**
|
|
182
|
-
* Whether the
|
|
182
|
+
* Whether the Auto Redirect feature, which creates `301 redirects` on a slug change, is enabled.
|
|
183
183
|
*
|
|
184
184
|
*
|
|
185
|
-
* Default: enabled
|
|
185
|
+
* Default: `false` (Auto Redirect is enabled.)
|
|
186
186
|
*/
|
|
187
187
|
preventAutoRedirect?: boolean;
|
|
188
|
-
/** User-selected keyword terms for a specific page */
|
|
188
|
+
/** User-selected keyword terms for a specific page. */
|
|
189
189
|
keywords?: Keyword[];
|
|
190
190
|
}
|
|
191
191
|
export interface InitialCategoriesCopied {
|
|
@@ -103,9 +103,9 @@ export interface SeoSchema {
|
|
|
103
103
|
settings?: Settings;
|
|
104
104
|
}
|
|
105
105
|
export interface Keyword {
|
|
106
|
-
/** Keyword value */
|
|
106
|
+
/** Keyword value. */
|
|
107
107
|
term?: string;
|
|
108
|
-
/** Whether the keyword is the main
|
|
108
|
+
/** Whether the keyword is the main focus keyword. */
|
|
109
109
|
isMain?: boolean;
|
|
110
110
|
}
|
|
111
111
|
export interface Tag {
|
|
@@ -117,7 +117,7 @@ export interface Tag {
|
|
|
117
117
|
*/
|
|
118
118
|
type?: string;
|
|
119
119
|
/**
|
|
120
|
-
* A `{'key':'value'} pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
120
|
+
* A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
121
121
|
* For example: `{'name': 'description', 'content': 'the description itself'}`.
|
|
122
122
|
*/
|
|
123
123
|
props?: Record<string, any> | null;
|
|
@@ -132,13 +132,13 @@ export interface Tag {
|
|
|
132
132
|
}
|
|
133
133
|
export interface Settings {
|
|
134
134
|
/**
|
|
135
|
-
* Whether the
|
|
135
|
+
* Whether the Auto Redirect feature, which creates `301 redirects` on a slug change, is enabled.
|
|
136
136
|
*
|
|
137
137
|
*
|
|
138
|
-
* Default: enabled
|
|
138
|
+
* Default: `false` (Auto Redirect is enabled.)
|
|
139
139
|
*/
|
|
140
140
|
preventAutoRedirect?: boolean;
|
|
141
|
-
/** User-selected keyword terms for a specific page */
|
|
141
|
+
/** User-selected keyword terms for a specific page. */
|
|
142
142
|
keywords?: Keyword[];
|
|
143
143
|
}
|
|
144
144
|
export interface InitialCategoriesCopied {
|
|
@@ -232,15 +232,15 @@ export interface Metrics {
|
|
|
232
232
|
* 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.
|
|
233
233
|
*/
|
|
234
234
|
export interface SeoSchema {
|
|
235
|
-
/** SEO
|
|
235
|
+
/** SEO tag information. */
|
|
236
236
|
tags?: Tag[];
|
|
237
237
|
/** SEO general settings. */
|
|
238
238
|
settings?: Settings;
|
|
239
239
|
}
|
|
240
240
|
export interface Keyword {
|
|
241
|
-
/** Keyword value */
|
|
241
|
+
/** Keyword value. */
|
|
242
242
|
term?: string;
|
|
243
|
-
/** Whether the keyword is the main
|
|
243
|
+
/** Whether the keyword is the main focus keyword. */
|
|
244
244
|
isMain?: boolean;
|
|
245
245
|
}
|
|
246
246
|
export interface Tag {
|
|
@@ -252,7 +252,7 @@ export interface Tag {
|
|
|
252
252
|
*/
|
|
253
253
|
type?: string;
|
|
254
254
|
/**
|
|
255
|
-
* A `{'key':'value'} pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
255
|
+
* A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
256
256
|
* For example: `{'name': 'description', 'content': 'the description itself'}`.
|
|
257
257
|
*/
|
|
258
258
|
props?: Record<string, any> | null;
|
|
@@ -267,13 +267,13 @@ export interface Tag {
|
|
|
267
267
|
}
|
|
268
268
|
export interface Settings {
|
|
269
269
|
/**
|
|
270
|
-
* Whether the
|
|
270
|
+
* Whether the Auto Redirect feature, which creates `301 redirects` on a slug change, is enabled.
|
|
271
271
|
*
|
|
272
272
|
*
|
|
273
|
-
* Default: enabled
|
|
273
|
+
* Default: `false` (Auto Redirect is enabled.)
|
|
274
274
|
*/
|
|
275
275
|
preventAutoRedirect?: boolean;
|
|
276
|
-
/** User-selected keyword terms for a specific page */
|
|
276
|
+
/** User-selected keyword terms for a specific page. */
|
|
277
277
|
keywords?: Keyword[];
|
|
278
278
|
}
|
|
279
279
|
export interface RichContent {
|
|
@@ -211,15 +211,15 @@ export interface Metrics {
|
|
|
211
211
|
* 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.
|
|
212
212
|
*/
|
|
213
213
|
export interface SeoSchema {
|
|
214
|
-
/** SEO
|
|
214
|
+
/** SEO tag information. */
|
|
215
215
|
tags?: Tag[];
|
|
216
216
|
/** SEO general settings. */
|
|
217
217
|
settings?: Settings;
|
|
218
218
|
}
|
|
219
219
|
export interface Keyword {
|
|
220
|
-
/** Keyword value */
|
|
220
|
+
/** Keyword value. */
|
|
221
221
|
term?: string;
|
|
222
|
-
/** Whether the keyword is the main
|
|
222
|
+
/** Whether the keyword is the main focus keyword. */
|
|
223
223
|
isMain?: boolean;
|
|
224
224
|
}
|
|
225
225
|
export interface Tag {
|
|
@@ -231,7 +231,7 @@ export interface Tag {
|
|
|
231
231
|
*/
|
|
232
232
|
type?: string;
|
|
233
233
|
/**
|
|
234
|
-
* A `{'key':'value'} pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
234
|
+
* A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
235
235
|
* For example: `{'name': 'description', 'content': 'the description itself'}`.
|
|
236
236
|
*/
|
|
237
237
|
props?: Record<string, any> | null;
|
|
@@ -246,13 +246,13 @@ export interface Tag {
|
|
|
246
246
|
}
|
|
247
247
|
export interface Settings {
|
|
248
248
|
/**
|
|
249
|
-
* Whether the
|
|
249
|
+
* Whether the Auto Redirect feature, which creates `301 redirects` on a slug change, is enabled.
|
|
250
250
|
*
|
|
251
251
|
*
|
|
252
|
-
* Default: enabled
|
|
252
|
+
* Default: `false` (Auto Redirect is enabled.)
|
|
253
253
|
*/
|
|
254
254
|
preventAutoRedirect?: boolean;
|
|
255
|
-
/** User-selected keyword terms for a specific page */
|
|
255
|
+
/** User-selected keyword terms for a specific page. */
|
|
256
256
|
keywords?: Keyword[];
|
|
257
257
|
}
|
|
258
258
|
export interface RichContent {
|
|
@@ -68,15 +68,15 @@ export interface PageUrl {
|
|
|
68
68
|
* 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.
|
|
69
69
|
*/
|
|
70
70
|
export interface SeoSchema {
|
|
71
|
-
/** SEO
|
|
71
|
+
/** SEO tag information. */
|
|
72
72
|
tags?: SeoSchemaTag[];
|
|
73
73
|
/** SEO general settings. */
|
|
74
74
|
settings?: Settings;
|
|
75
75
|
}
|
|
76
76
|
export interface Keyword {
|
|
77
|
-
/** Keyword value */
|
|
77
|
+
/** Keyword value. */
|
|
78
78
|
term?: string;
|
|
79
|
-
/** Whether the keyword is the main
|
|
79
|
+
/** Whether the keyword is the main focus keyword. */
|
|
80
80
|
isMain?: boolean;
|
|
81
81
|
}
|
|
82
82
|
export interface SeoSchemaTag {
|
|
@@ -88,7 +88,7 @@ export interface SeoSchemaTag {
|
|
|
88
88
|
*/
|
|
89
89
|
type?: string;
|
|
90
90
|
/**
|
|
91
|
-
* A `{'key':'value'} pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
91
|
+
* A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
92
92
|
* For example: `{'name': 'description', 'content': 'the description itself'}`.
|
|
93
93
|
*/
|
|
94
94
|
props?: Record<string, any> | null;
|
|
@@ -103,13 +103,13 @@ export interface SeoSchemaTag {
|
|
|
103
103
|
}
|
|
104
104
|
export interface Settings {
|
|
105
105
|
/**
|
|
106
|
-
* Whether the
|
|
106
|
+
* Whether the Auto Redirect feature, which creates `301 redirects` on a slug change, is enabled.
|
|
107
107
|
*
|
|
108
108
|
*
|
|
109
|
-
* Default: enabled
|
|
109
|
+
* Default: `false` (Auto Redirect is enabled.)
|
|
110
110
|
*/
|
|
111
111
|
preventAutoRedirect?: boolean;
|
|
112
|
-
/** User-selected keyword terms for a specific page */
|
|
112
|
+
/** User-selected keyword terms for a specific page. */
|
|
113
113
|
keywords?: Keyword[];
|
|
114
114
|
}
|
|
115
115
|
export interface InitialTagsCopied {
|
|
@@ -74,15 +74,15 @@ export interface Tag {
|
|
|
74
74
|
* 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.
|
|
75
75
|
*/
|
|
76
76
|
export interface SeoSchema {
|
|
77
|
-
/** SEO
|
|
77
|
+
/** SEO tag information. */
|
|
78
78
|
tags?: SeoSchemaTag[];
|
|
79
79
|
/** SEO general settings. */
|
|
80
80
|
settings?: Settings;
|
|
81
81
|
}
|
|
82
82
|
export interface Keyword {
|
|
83
|
-
/** Keyword value */
|
|
83
|
+
/** Keyword value. */
|
|
84
84
|
term?: string;
|
|
85
|
-
/** Whether the keyword is the main
|
|
85
|
+
/** Whether the keyword is the main focus keyword. */
|
|
86
86
|
isMain?: boolean;
|
|
87
87
|
}
|
|
88
88
|
export interface SeoSchemaTag {
|
|
@@ -94,7 +94,7 @@ export interface SeoSchemaTag {
|
|
|
94
94
|
*/
|
|
95
95
|
type?: string;
|
|
96
96
|
/**
|
|
97
|
-
* A `{'key':'value'} pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
97
|
+
* A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
98
98
|
* For example: `{'name': 'description', 'content': 'the description itself'}`.
|
|
99
99
|
*/
|
|
100
100
|
props?: Record<string, any> | null;
|
|
@@ -109,13 +109,13 @@ export interface SeoSchemaTag {
|
|
|
109
109
|
}
|
|
110
110
|
export interface Settings {
|
|
111
111
|
/**
|
|
112
|
-
* Whether the
|
|
112
|
+
* Whether the Auto Redirect feature, which creates `301 redirects` on a slug change, is enabled.
|
|
113
113
|
*
|
|
114
114
|
*
|
|
115
|
-
* Default: enabled
|
|
115
|
+
* Default: `false` (Auto Redirect is enabled.)
|
|
116
116
|
*/
|
|
117
117
|
preventAutoRedirect?: boolean;
|
|
118
|
-
/** User-selected keyword terms for a specific page */
|
|
118
|
+
/** User-selected keyword terms for a specific page. */
|
|
119
119
|
keywords?: Keyword[];
|
|
120
120
|
}
|
|
121
121
|
export interface InitialTagsCopied {
|
package/build/es/index.d.ts
CHANGED
package/build/es/index.js
CHANGED
package/build/es/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,UAAU,MAAM,+BAA+B,CAAC;AAC5D,OAAO,KAAK,KAAK,MAAM,2BAA2B,CAAC;AACnD,OAAO,KAAK,IAAI,MAAM,0BAA0B,CAAC"}
|
|
@@ -144,15 +144,15 @@ export interface Video {
|
|
|
144
144
|
* 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.
|
|
145
145
|
*/
|
|
146
146
|
export interface SeoSchema {
|
|
147
|
-
/** SEO
|
|
147
|
+
/** SEO tag information. */
|
|
148
148
|
tags?: Tag[];
|
|
149
149
|
/** SEO general settings. */
|
|
150
150
|
settings?: Settings;
|
|
151
151
|
}
|
|
152
152
|
export interface Keyword {
|
|
153
|
-
/** Keyword value */
|
|
153
|
+
/** Keyword value. */
|
|
154
154
|
term?: string;
|
|
155
|
-
/** Whether the keyword is the main
|
|
155
|
+
/** Whether the keyword is the main focus keyword. */
|
|
156
156
|
isMain?: boolean;
|
|
157
157
|
}
|
|
158
158
|
export interface Tag {
|
|
@@ -164,7 +164,7 @@ export interface Tag {
|
|
|
164
164
|
*/
|
|
165
165
|
type?: string;
|
|
166
166
|
/**
|
|
167
|
-
* A `{'key':'value'} pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
167
|
+
* A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
168
168
|
* For example: `{'name': 'description', 'content': 'the description itself'}`.
|
|
169
169
|
*/
|
|
170
170
|
props?: Record<string, any> | null;
|
|
@@ -179,13 +179,13 @@ export interface Tag {
|
|
|
179
179
|
}
|
|
180
180
|
export interface Settings {
|
|
181
181
|
/**
|
|
182
|
-
* Whether the
|
|
182
|
+
* Whether the Auto Redirect feature, which creates `301 redirects` on a slug change, is enabled.
|
|
183
183
|
*
|
|
184
184
|
*
|
|
185
|
-
* Default: enabled
|
|
185
|
+
* Default: `false` (Auto Redirect is enabled.)
|
|
186
186
|
*/
|
|
187
187
|
preventAutoRedirect?: boolean;
|
|
188
|
-
/** User-selected keyword terms for a specific page */
|
|
188
|
+
/** User-selected keyword terms for a specific page. */
|
|
189
189
|
keywords?: Keyword[];
|
|
190
190
|
}
|
|
191
191
|
export interface InitialCategoriesCopied {
|
|
@@ -103,9 +103,9 @@ export interface SeoSchema {
|
|
|
103
103
|
settings?: Settings;
|
|
104
104
|
}
|
|
105
105
|
export interface Keyword {
|
|
106
|
-
/** Keyword value */
|
|
106
|
+
/** Keyword value. */
|
|
107
107
|
term?: string;
|
|
108
|
-
/** Whether the keyword is the main
|
|
108
|
+
/** Whether the keyword is the main focus keyword. */
|
|
109
109
|
isMain?: boolean;
|
|
110
110
|
}
|
|
111
111
|
export interface Tag {
|
|
@@ -117,7 +117,7 @@ export interface Tag {
|
|
|
117
117
|
*/
|
|
118
118
|
type?: string;
|
|
119
119
|
/**
|
|
120
|
-
* A `{'key':'value'} pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
120
|
+
* A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
121
121
|
* For example: `{'name': 'description', 'content': 'the description itself'}`.
|
|
122
122
|
*/
|
|
123
123
|
props?: Record<string, any> | null;
|
|
@@ -132,13 +132,13 @@ export interface Tag {
|
|
|
132
132
|
}
|
|
133
133
|
export interface Settings {
|
|
134
134
|
/**
|
|
135
|
-
* Whether the
|
|
135
|
+
* Whether the Auto Redirect feature, which creates `301 redirects` on a slug change, is enabled.
|
|
136
136
|
*
|
|
137
137
|
*
|
|
138
|
-
* Default: enabled
|
|
138
|
+
* Default: `false` (Auto Redirect is enabled.)
|
|
139
139
|
*/
|
|
140
140
|
preventAutoRedirect?: boolean;
|
|
141
|
-
/** User-selected keyword terms for a specific page */
|
|
141
|
+
/** User-selected keyword terms for a specific page. */
|
|
142
142
|
keywords?: Keyword[];
|
|
143
143
|
}
|
|
144
144
|
export interface InitialCategoriesCopied {
|
|
@@ -232,15 +232,15 @@ export interface Metrics {
|
|
|
232
232
|
* 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.
|
|
233
233
|
*/
|
|
234
234
|
export interface SeoSchema {
|
|
235
|
-
/** SEO
|
|
235
|
+
/** SEO tag information. */
|
|
236
236
|
tags?: Tag[];
|
|
237
237
|
/** SEO general settings. */
|
|
238
238
|
settings?: Settings;
|
|
239
239
|
}
|
|
240
240
|
export interface Keyword {
|
|
241
|
-
/** Keyword value */
|
|
241
|
+
/** Keyword value. */
|
|
242
242
|
term?: string;
|
|
243
|
-
/** Whether the keyword is the main
|
|
243
|
+
/** Whether the keyword is the main focus keyword. */
|
|
244
244
|
isMain?: boolean;
|
|
245
245
|
}
|
|
246
246
|
export interface Tag {
|
|
@@ -252,7 +252,7 @@ export interface Tag {
|
|
|
252
252
|
*/
|
|
253
253
|
type?: string;
|
|
254
254
|
/**
|
|
255
|
-
* A `{'key':'value'} pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
255
|
+
* A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
256
256
|
* For example: `{'name': 'description', 'content': 'the description itself'}`.
|
|
257
257
|
*/
|
|
258
258
|
props?: Record<string, any> | null;
|
|
@@ -267,13 +267,13 @@ export interface Tag {
|
|
|
267
267
|
}
|
|
268
268
|
export interface Settings {
|
|
269
269
|
/**
|
|
270
|
-
* Whether the
|
|
270
|
+
* Whether the Auto Redirect feature, which creates `301 redirects` on a slug change, is enabled.
|
|
271
271
|
*
|
|
272
272
|
*
|
|
273
|
-
* Default: enabled
|
|
273
|
+
* Default: `false` (Auto Redirect is enabled.)
|
|
274
274
|
*/
|
|
275
275
|
preventAutoRedirect?: boolean;
|
|
276
|
-
/** User-selected keyword terms for a specific page */
|
|
276
|
+
/** User-selected keyword terms for a specific page. */
|
|
277
277
|
keywords?: Keyword[];
|
|
278
278
|
}
|
|
279
279
|
export interface RichContent {
|
|
@@ -211,15 +211,15 @@ export interface Metrics {
|
|
|
211
211
|
* 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.
|
|
212
212
|
*/
|
|
213
213
|
export interface SeoSchema {
|
|
214
|
-
/** SEO
|
|
214
|
+
/** SEO tag information. */
|
|
215
215
|
tags?: Tag[];
|
|
216
216
|
/** SEO general settings. */
|
|
217
217
|
settings?: Settings;
|
|
218
218
|
}
|
|
219
219
|
export interface Keyword {
|
|
220
|
-
/** Keyword value */
|
|
220
|
+
/** Keyword value. */
|
|
221
221
|
term?: string;
|
|
222
|
-
/** Whether the keyword is the main
|
|
222
|
+
/** Whether the keyword is the main focus keyword. */
|
|
223
223
|
isMain?: boolean;
|
|
224
224
|
}
|
|
225
225
|
export interface Tag {
|
|
@@ -231,7 +231,7 @@ export interface Tag {
|
|
|
231
231
|
*/
|
|
232
232
|
type?: string;
|
|
233
233
|
/**
|
|
234
|
-
* A `{'key':'value'} pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
234
|
+
* A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
235
235
|
* For example: `{'name': 'description', 'content': 'the description itself'}`.
|
|
236
236
|
*/
|
|
237
237
|
props?: Record<string, any> | null;
|
|
@@ -246,13 +246,13 @@ export interface Tag {
|
|
|
246
246
|
}
|
|
247
247
|
export interface Settings {
|
|
248
248
|
/**
|
|
249
|
-
* Whether the
|
|
249
|
+
* Whether the Auto Redirect feature, which creates `301 redirects` on a slug change, is enabled.
|
|
250
250
|
*
|
|
251
251
|
*
|
|
252
|
-
* Default: enabled
|
|
252
|
+
* Default: `false` (Auto Redirect is enabled.)
|
|
253
253
|
*/
|
|
254
254
|
preventAutoRedirect?: boolean;
|
|
255
|
-
/** User-selected keyword terms for a specific page */
|
|
255
|
+
/** User-selected keyword terms for a specific page. */
|
|
256
256
|
keywords?: Keyword[];
|
|
257
257
|
}
|
|
258
258
|
export interface RichContent {
|
|
@@ -68,15 +68,15 @@ export interface PageUrl {
|
|
|
68
68
|
* 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.
|
|
69
69
|
*/
|
|
70
70
|
export interface SeoSchema {
|
|
71
|
-
/** SEO
|
|
71
|
+
/** SEO tag information. */
|
|
72
72
|
tags?: SeoSchemaTag[];
|
|
73
73
|
/** SEO general settings. */
|
|
74
74
|
settings?: Settings;
|
|
75
75
|
}
|
|
76
76
|
export interface Keyword {
|
|
77
|
-
/** Keyword value */
|
|
77
|
+
/** Keyword value. */
|
|
78
78
|
term?: string;
|
|
79
|
-
/** Whether the keyword is the main
|
|
79
|
+
/** Whether the keyword is the main focus keyword. */
|
|
80
80
|
isMain?: boolean;
|
|
81
81
|
}
|
|
82
82
|
export interface SeoSchemaTag {
|
|
@@ -88,7 +88,7 @@ export interface SeoSchemaTag {
|
|
|
88
88
|
*/
|
|
89
89
|
type?: string;
|
|
90
90
|
/**
|
|
91
|
-
* A `{'key':'value'} pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
91
|
+
* A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
92
92
|
* For example: `{'name': 'description', 'content': 'the description itself'}`.
|
|
93
93
|
*/
|
|
94
94
|
props?: Record<string, any> | null;
|
|
@@ -103,13 +103,13 @@ export interface SeoSchemaTag {
|
|
|
103
103
|
}
|
|
104
104
|
export interface Settings {
|
|
105
105
|
/**
|
|
106
|
-
* Whether the
|
|
106
|
+
* Whether the Auto Redirect feature, which creates `301 redirects` on a slug change, is enabled.
|
|
107
107
|
*
|
|
108
108
|
*
|
|
109
|
-
* Default: enabled
|
|
109
|
+
* Default: `false` (Auto Redirect is enabled.)
|
|
110
110
|
*/
|
|
111
111
|
preventAutoRedirect?: boolean;
|
|
112
|
-
/** User-selected keyword terms for a specific page */
|
|
112
|
+
/** User-selected keyword terms for a specific page. */
|
|
113
113
|
keywords?: Keyword[];
|
|
114
114
|
}
|
|
115
115
|
export interface InitialTagsCopied {
|
|
@@ -74,15 +74,15 @@ export interface Tag {
|
|
|
74
74
|
* 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.
|
|
75
75
|
*/
|
|
76
76
|
export interface SeoSchema {
|
|
77
|
-
/** SEO
|
|
77
|
+
/** SEO tag information. */
|
|
78
78
|
tags?: SeoSchemaTag[];
|
|
79
79
|
/** SEO general settings. */
|
|
80
80
|
settings?: Settings;
|
|
81
81
|
}
|
|
82
82
|
export interface Keyword {
|
|
83
|
-
/** Keyword value */
|
|
83
|
+
/** Keyword value. */
|
|
84
84
|
term?: string;
|
|
85
|
-
/** Whether the keyword is the main
|
|
85
|
+
/** Whether the keyword is the main focus keyword. */
|
|
86
86
|
isMain?: boolean;
|
|
87
87
|
}
|
|
88
88
|
export interface SeoSchemaTag {
|
|
@@ -94,7 +94,7 @@ export interface SeoSchemaTag {
|
|
|
94
94
|
*/
|
|
95
95
|
type?: string;
|
|
96
96
|
/**
|
|
97
|
-
* A `{'key':'value'} pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
97
|
+
* A `{'key':'value'}` pair object where each SEO tag property (`'name'`, `'content'`, `'rel'`, `'href'`) contains a value.
|
|
98
98
|
* For example: `{'name': 'description', 'content': 'the description itself'}`.
|
|
99
99
|
*/
|
|
100
100
|
props?: Record<string, any> | null;
|
|
@@ -109,13 +109,13 @@ export interface SeoSchemaTag {
|
|
|
109
109
|
}
|
|
110
110
|
export interface Settings {
|
|
111
111
|
/**
|
|
112
|
-
* Whether the
|
|
112
|
+
* Whether the Auto Redirect feature, which creates `301 redirects` on a slug change, is enabled.
|
|
113
113
|
*
|
|
114
114
|
*
|
|
115
|
-
* Default: enabled
|
|
115
|
+
* Default: `false` (Auto Redirect is enabled.)
|
|
116
116
|
*/
|
|
117
117
|
preventAutoRedirect?: boolean;
|
|
118
|
-
/** User-selected keyword terms for a specific page */
|
|
118
|
+
/** User-selected keyword terms for a specific page. */
|
|
119
119
|
keywords?: Keyword[];
|
|
120
120
|
}
|
|
121
121
|
export interface InitialTagsCopied {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/blog",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.164",
|
|
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": "1b30fe8605502979893352d53232034c220a585e1bc8dbb54b0c5c0a"
|
|
37
37
|
}
|