@wix/blog 1.0.118 → 1.0.119

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.
Files changed (33) hide show
  1. package/build/cjs/src/blog-v3-category.types.d.ts +60 -32
  2. package/build/cjs/src/blog-v3-category.types.js.map +1 -1
  3. package/build/cjs/src/blog-v3-category.universal.d.ts +51 -34
  4. package/build/cjs/src/blog-v3-category.universal.js.map +1 -1
  5. package/build/cjs/src/blog-v3-post.types.d.ts +97 -29
  6. package/build/cjs/src/blog-v3-post.types.js.map +1 -1
  7. package/build/cjs/src/blog-v3-post.universal.d.ts +59 -10
  8. package/build/cjs/src/blog-v3-post.universal.js.map +1 -1
  9. package/build/cjs/src/blog-v3-tag.http.d.ts +1 -1
  10. package/build/cjs/src/blog-v3-tag.http.js +1 -1
  11. package/build/cjs/src/blog-v3-tag.http.js.map +1 -1
  12. package/build/cjs/src/blog-v3-tag.types.d.ts +57 -25
  13. package/build/cjs/src/blog-v3-tag.types.js.map +1 -1
  14. package/build/cjs/src/blog-v3-tag.universal.d.ts +70 -30
  15. package/build/cjs/src/blog-v3-tag.universal.js +1 -1
  16. package/build/cjs/src/blog-v3-tag.universal.js.map +1 -1
  17. package/build/es/src/blog-v3-category.types.d.ts +60 -32
  18. package/build/es/src/blog-v3-category.types.js.map +1 -1
  19. package/build/es/src/blog-v3-category.universal.d.ts +51 -34
  20. package/build/es/src/blog-v3-category.universal.js.map +1 -1
  21. package/build/es/src/blog-v3-post.types.d.ts +97 -29
  22. package/build/es/src/blog-v3-post.types.js.map +1 -1
  23. package/build/es/src/blog-v3-post.universal.d.ts +59 -10
  24. package/build/es/src/blog-v3-post.universal.js.map +1 -1
  25. package/build/es/src/blog-v3-tag.http.d.ts +1 -1
  26. package/build/es/src/blog-v3-tag.http.js +1 -1
  27. package/build/es/src/blog-v3-tag.http.js.map +1 -1
  28. package/build/es/src/blog-v3-tag.types.d.ts +57 -25
  29. package/build/es/src/blog-v3-tag.types.js.map +1 -1
  30. package/build/es/src/blog-v3-tag.universal.d.ts +70 -30
  31. package/build/es/src/blog-v3-tag.universal.js +1 -1
  32. package/build/es/src/blog-v3-tag.universal.js.map +1 -1
  33. package/package.json +2 -2
@@ -7,7 +7,6 @@ export interface Tag {
7
7
  /**
8
8
  * Tag label.
9
9
  *
10
- *
11
10
  * A blog cannot have two tags with the same label.
12
11
  */
13
12
  label?: string;
@@ -46,7 +45,6 @@ export interface Tag {
46
45
  /**
47
46
  * ID of the tag translations.
48
47
  *
49
- *
50
48
  * All translations of a single tag will share the same `translationId`.
51
49
  * @readonly
52
50
  */
@@ -54,7 +52,6 @@ export interface Tag {
54
52
  /**
55
53
  * Tag language.
56
54
  *
57
- *
58
55
  * 2-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format.
59
56
  * @readonly
60
57
  */
@@ -90,14 +87,18 @@ export interface GetOrCreateTagResponse {
90
87
  export interface CreateTagRequest {
91
88
  /** Tag label. Unique per blog. */
92
89
  label: string;
93
- /** Tag language. */
90
+ /**
91
+ * Tag language.
92
+ *
93
+ * 2-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format.
94
+ */
94
95
  language?: string;
95
96
  /** Preferred tag slug. For example, 'tag-slug'. */
96
97
  slug?: string | null;
97
98
  /**
98
- * List of tag fields to be included if entities are present in the response.
99
- * Base fieldset, which is default, will return all core tag properties.
100
- * Example: When URL fieldset is selected, returned tag will have a set of base properties and tag url.
99
+ * List of tag fields to be included in the response if the entities are present.
100
+ * Base default fieldset returns all core tag properties (all properties that are not a supported fieldset value).
101
+ * For example, when `URL` fieldset is selected, returned tag will include the set of base properties and the tag's preview url.
101
102
  */
102
103
  fieldsets?: Field[];
103
104
  }
@@ -171,14 +172,22 @@ export interface BulkActionMetadata {
171
172
  export interface GetTagByLabelRequest {
172
173
  /** Tag label. */
173
174
  label: string;
174
- /** Tag language. */
175
+ /**
176
+ * Tag language.
177
+ * 2-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format.
178
+ */
175
179
  language?: string | null;
176
- /** List of tag fields to be included in the response. */
180
+ /**
181
+ * __Deprecated.__ Use `fieldsets` instead.
182
+ * This parameter will be removed on June 30, 2023.
183
+ *
184
+ * List of tag fields to be included in the response.
185
+ */
177
186
  fieldsToInclude?: Field[];
178
187
  /**
179
- * List of tag fields to be included if entities are present in the response.
180
- * Base fieldset, which is default, will return all core tag properties.
181
- * Example: When URL fieldset is selected, returned tag will have a set of base properties and tag url.
188
+ * List of tag fields to be included in the response if the entities are present.
189
+ * Base default fieldset returns all core tag properties (all properties that are not a supported fieldset value).
190
+ * For example, when `URL` fieldset is selected, returned tag will include the set of base properties and the tag's preview url.
182
191
  */
183
192
  fieldsets?: Field[];
184
193
  }
@@ -190,9 +199,9 @@ export interface GetTagRequest {
190
199
  /** Tag ID. */
191
200
  tagId: string;
192
201
  /**
193
- * List of tag fields to be included if entities are present in the response.
194
- * Base fieldset, which is default, will return all core tag properties.
195
- * Example: When URL fieldset is selected, returned tag will have a set of base properties and tag url.
202
+ * List of tag fields to be included in the response if the entities are present.
203
+ * Base default fieldset returns all core tag properties (all properties that are not a supported fieldset value).
204
+ * For example, when `URL` fieldset is selected, returned tag will include the set of base properties and the tag's preview url.
196
205
  */
197
206
  fieldsets?: Field[];
198
207
  }
@@ -204,9 +213,9 @@ export interface GetTagBySlugRequest {
204
213
  /** Slug of the tag to retrieve. */
205
214
  slug: string;
206
215
  /**
207
- * List of tag fields to be included if entities are present in the response.
208
- * Base fieldset, which is default, will return all core tag properties.
209
- * Example: When URL fieldset is selected, returned tag will have a set of base properties and tag url.
216
+ * List of tag fields to be included in the response if the entities are present.
217
+ * Base default fieldset returns all core tag properties (all properties that are not a supported fieldset value).
218
+ * For example, when `URL` fieldset is selected, returned tag will include the set of base properties and the tag's preview url.
210
219
  */
211
220
  fieldsets?: Field[];
212
221
  }
@@ -216,22 +225,40 @@ export interface GetTagBySlugResponse {
216
225
  }
217
226
  export interface QueryTagsRequest {
218
227
  /**
228
+ * __Deprecated.__ Use `query` instead.
229
+ * This parameter will be removed on June 30, 2023.
230
+ *
219
231
  * Filter object.
220
232
  * For a detailed list of supported filters, see [Field Support for Filtering and Sorting](https://dev.wix.com/api/rest/community/blog/filter-and-sort).
221
233
  */
222
234
  filter?: Record<string, any> | null;
223
- /** Sorting options. For a list of sortable fields, see [Field Support for Filtering and Sorting](https://dev.wix.com/api/rest/community/blog/filter-and-sort). */
235
+ /**
236
+ * __Deprecated.__ Use `query` instead.
237
+ * This parameter will be removed on June 30, 2023.
238
+ *
239
+ * Sorting options. For a list of sortable fields, see [Field Support for Filtering and Sorting](https://dev.wix.com/api/rest/community/blog/filter-and-sort).
240
+ */
224
241
  sort?: Sorting[];
225
- /** Pagination options. */
242
+ /**
243
+ * __Deprecated.__ Use `query` instead.
244
+ * This parameter will be removed on June 30, 2023.
245
+ *
246
+ * Pagination options.
247
+ */
226
248
  paging?: Paging;
227
- /** List of tag fields to be included in the response. */
249
+ /**
250
+ * __Deprecated.__ Use `fieldsets` instead.
251
+ * This parameter will be removed on June 30, 2023.
252
+ *
253
+ * List of tag fields to be included in the response.
254
+ */
228
255
  fieldsToInclude?: Field[];
229
256
  /** Query options. */
230
257
  query?: PlatformQuery;
231
258
  /**
232
- * List of tag fields to be included if entities are present in the response.
233
- * Base fieldset, which is default, will return all core tag properties.
234
- * Example: When URL fieldset is selected, returned tag will have a set of base properties and tag url.
259
+ * List of tag fields to be included in the response if the entities are present.
260
+ * Base default fieldset returns all core tag properties (all properties that are not a supported fieldset value).
261
+ * For example, when `URL` fieldset is selected, returned tag will include the set of base properties and the tag's preview url.
235
262
  */
236
263
  fieldsets?: Field[];
237
264
  }
@@ -297,7 +324,12 @@ export interface CursorPaging {
297
324
  export interface QueryTagsResponse {
298
325
  /** List of tags. */
299
326
  tags?: Tag[];
300
- /** Details on the paged set of results returned. */
327
+ /**
328
+ * __Deprecated.__ Use `pagingMetadata` instead.
329
+ * This property will be removed on June 30, 2023.
330
+ *
331
+ * Details on the paged set of results returned.
332
+ */
301
333
  metaData?: MetaData;
302
334
  /** Details on the paged set of results returned. */
303
335
  pagingMetadata?: PagingMetadataV2;
@@ -1 +1 @@
1
- {"version":3,"file":"blog-v3-tag.types.js","sourceRoot":"","sources":["../../../src/blog-v3-tag.types.ts"],"names":[],"mappings":"AAmFA,MAAM,CAAN,IAAY,KAIX;AAJD,WAAY,KAAK;IACf,4BAAmB,CAAA;IACnB,qCAAqC;IACrC,oBAAW,CAAA;AACb,CAAC,EAJW,KAAK,KAAL,KAAK,QAIhB;AAmLD,MAAM,CAAN,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,KAAT,SAAS,QAGpB"}
1
+ {"version":3,"file":"blog-v3-tag.types.js","sourceRoot":"","sources":["../../../src/blog-v3-tag.types.ts"],"names":[],"mappings":"AAgFA,MAAM,CAAN,IAAY,KAIX;AAJD,WAAY,KAAK;IACf,4BAAmB,CAAA;IACnB,qCAAqC;IACrC,oBAAW,CAAA;AACb,CAAC,EAJW,KAAK,KAAL,KAAK,QAIhB;AAiND,MAAM,CAAN,IAAY,SAGX;AAHD,WAAY,SAAS;IACnB,wBAAW,CAAA;IACX,0BAAa,CAAA;AACf,CAAC,EAHW,SAAS,KAAT,SAAS,QAGpB"}
@@ -13,7 +13,6 @@ export interface Tag {
13
13
  /**
14
14
  * Tag label.
15
15
  *
16
- *
17
16
  * A blog cannot have two tags with the same label.
18
17
  */
19
18
  label?: string;
@@ -65,7 +64,6 @@ export interface Tag {
65
64
  /**
66
65
  * Tag language.
67
66
  *
68
- *
69
67
  * 2-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format.
70
68
  * @readonly
71
69
  */
@@ -95,14 +93,18 @@ export interface GetOrCreateTagResponse {
95
93
  export interface CreateTagRequest {
96
94
  /** Tag label. Unique per blog. */
97
95
  label: string;
98
- /** Tag language. */
96
+ /**
97
+ * Tag language.
98
+ *
99
+ * 2-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format.
100
+ */
99
101
  language?: string;
100
102
  /** Preferred tag slug. For example, 'tag-slug'. */
101
103
  slug?: string | null;
102
104
  /**
103
- * List of tag fields to be included if entities are present in the response.
104
- * Base fieldset, which is default, will return all core tag properties.
105
- * Example: When URL fieldset is selected, returned tag will have a set of base properties and tag url.
105
+ * List of tag fields to be included in the response if the entities are present.
106
+ * Base default fieldset returns all core tag properties (all properties that are not a supported fieldset value).
107
+ * For example, when `URL` fieldset is selected, returned tag will include the set of base properties and the tag's preview url.
106
108
  */
107
109
  fieldsets?: Field[];
108
110
  }
@@ -176,14 +178,22 @@ export interface BulkActionMetadata {
176
178
  export interface GetTagByLabelRequest {
177
179
  /** Tag label. */
178
180
  label: string;
179
- /** Tag language. */
181
+ /**
182
+ * Tag language.
183
+ * 2-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format.
184
+ */
180
185
  language?: string | null;
181
- /** List of tag fields to be included in the response. */
186
+ /**
187
+ * __Deprecated.__ Use `fieldsets` instead.
188
+ * This parameter will be removed on June 30, 2023.
189
+ *
190
+ * List of tag fields to be included in the response.
191
+ */
182
192
  fieldsToInclude?: Field[];
183
193
  /**
184
- * List of tag fields to be included if entities are present in the response.
185
- * Base fieldset, which is default, will return all core tag properties.
186
- * Example: When URL fieldset is selected, returned tag will have a set of base properties and tag url.
194
+ * List of tag fields to be included in the response if the entities are present.
195
+ * Base default fieldset returns all core tag properties (all properties that are not a supported fieldset value).
196
+ * For example, when `URL` fieldset is selected, returned tag will include the set of base properties and the tag's preview url.
187
197
  */
188
198
  fieldsets?: Field[];
189
199
  }
@@ -195,9 +205,9 @@ export interface GetTagRequest {
195
205
  /** Tag ID. */
196
206
  tagId: string;
197
207
  /**
198
- * List of tag fields to be included if entities are present in the response.
199
- * Base fieldset, which is default, will return all core tag properties.
200
- * Example: When URL fieldset is selected, returned tag will have a set of base properties and tag url.
208
+ * List of tag fields to be included in the response if the entities are present.
209
+ * Base default fieldset returns all core tag properties (all properties that are not a supported fieldset value).
210
+ * For example, when `URL` fieldset is selected, returned tag will include the set of base properties and the tag's preview url.
201
211
  */
202
212
  fieldsets?: Field[];
203
213
  }
@@ -209,9 +219,9 @@ export interface GetTagBySlugRequest {
209
219
  /** Slug of the tag to retrieve. */
210
220
  slug: string;
211
221
  /**
212
- * List of tag fields to be included if entities are present in the response.
213
- * Base fieldset, which is default, will return all core tag properties.
214
- * Example: When URL fieldset is selected, returned tag will have a set of base properties and tag url.
222
+ * List of tag fields to be included in the response if the entities are present.
223
+ * Base default fieldset returns all core tag properties (all properties that are not a supported fieldset value).
224
+ * For example, when `URL` fieldset is selected, returned tag will include the set of base properties and the tag's preview url.
215
225
  */
216
226
  fieldsets?: Field[];
217
227
  }
@@ -221,22 +231,40 @@ export interface GetTagBySlugResponse {
221
231
  }
222
232
  export interface QueryTagsRequest {
223
233
  /**
234
+ * __Deprecated.__ Use `query` instead.
235
+ * This parameter will be removed on June 30, 2023.
236
+ *
224
237
  * Filter object.
225
238
  * For a detailed list of supported filters, see [Field Support for Filtering and Sorting](https://dev.wix.com/api/rest/community/blog/filter-and-sort).
226
239
  */
227
240
  filter?: Record<string, any> | null;
228
- /** Sorting options. For a list of sortable fields, see [Field Support for Filtering and Sorting](https://dev.wix.com/api/rest/community/blog/filter-and-sort). */
241
+ /**
242
+ * __Deprecated.__ Use `query` instead.
243
+ * This parameter will be removed on June 30, 2023.
244
+ *
245
+ * Sorting options. For a list of sortable fields, see [Field Support for Filtering and Sorting](https://dev.wix.com/api/rest/community/blog/filter-and-sort).
246
+ */
229
247
  sort?: Sorting[];
230
- /** Pagination options. */
248
+ /**
249
+ * __Deprecated.__ Use `query` instead.
250
+ * This parameter will be removed on June 30, 2023.
251
+ *
252
+ * Pagination options.
253
+ */
231
254
  paging?: Paging;
232
- /** List of tag fields to be included in the response. */
255
+ /**
256
+ * __Deprecated.__ Use `fieldsets` instead.
257
+ * This parameter will be removed on June 30, 2023.
258
+ *
259
+ * List of tag fields to be included in the response.
260
+ */
233
261
  fieldsToInclude?: Field[];
234
262
  /** Query options. */
235
263
  query?: PlatformQuery;
236
264
  /**
237
- * List of tag fields to be included if entities are present in the response.
238
- * Base fieldset, which is default, will return all core tag properties.
239
- * Example: When URL fieldset is selected, returned tag will have a set of base properties and tag url.
265
+ * List of tag fields to be included in the response if the entities are present.
266
+ * Base default fieldset returns all core tag properties (all properties that are not a supported fieldset value).
267
+ * For example, when `URL` fieldset is selected, returned tag will include the set of base properties and the tag's preview url.
240
268
  */
241
269
  fieldsets?: Field[];
242
270
  }
@@ -302,7 +330,12 @@ export interface CursorPaging {
302
330
  export interface QueryTagsResponse {
303
331
  /** List of tags. */
304
332
  tags?: Tag[];
305
- /** Details on the paged set of results returned. */
333
+ /**
334
+ * __Deprecated.__ Use `pagingMetadata` instead.
335
+ * This property will be removed on June 30, 2023.
336
+ *
337
+ * Details on the paged set of results returned.
338
+ */
306
339
  metaData?: MetaData;
307
340
  /** Details on the paged set of results returned. */
308
341
  pagingMetadata?: PagingMetadataV2;
@@ -369,21 +402,25 @@ export interface DeleteTagRequest {
369
402
  export interface DeleteTagResponse {
370
403
  }
371
404
  /**
372
- * Creates a new tag with the provided label if the tag does not exist.
405
+ * Creates a new tag with the provided label if the tag does not already exist.
373
406
  * @param label - Tag label. Unique per blog.
374
407
  * @public
375
408
  * @requiredField label
376
409
  */
377
410
  export declare function createTag(label: string, options?: CreateTagOptions): Promise<CreateTagResponse>;
378
411
  export interface CreateTagOptions {
379
- /** Tag language. */
412
+ /**
413
+ * Tag language.
414
+ *
415
+ * 2-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format.
416
+ */
380
417
  language?: string;
381
418
  /** Preferred tag slug. For example, 'tag-slug'. */
382
419
  slug?: string | null;
383
420
  /**
384
- * List of tag fields to be included if entities are present in the response.
385
- * Base fieldset, which is default, will return all core tag properties.
386
- * Example: When URL fieldset is selected, returned tag will have a set of base properties and tag url.
421
+ * List of tag fields to be included in the response if the entities are present.
422
+ * Base default fieldset returns all core tag properties (all properties that are not a supported fieldset value).
423
+ * For example, when `URL` fieldset is selected, returned tag will include the set of base properties and the tag's preview url.
387
424
  */
388
425
  fieldsets?: Field[];
389
426
  }
@@ -399,7 +436,10 @@ export interface CreateTagOptions {
399
436
  */
400
437
  export declare function getTagByLabel(label: string, options?: GetTagByLabelOptions): Promise<GetTagByLabelResponse>;
401
438
  export interface GetTagByLabelOptions {
402
- /** Tag language. */
439
+ /**
440
+ * Tag language.
441
+ * 2-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format.
442
+ */
403
443
  language?: string | null;
404
444
  /** __Deprecated.__ Use GetTagByLabelOptions.fieldsets */
405
445
  fieldsToInclude?: Field[];
@@ -51,7 +51,7 @@ const _queryTagsRequest = {};
51
51
  const _queryTagsResponse = { tags: '_tag' };
52
52
  const _tag = { url: 'wix.common.PageUrl' };
53
53
  /**
54
- * Creates a new tag with the provided label if the tag does not exist.
54
+ * Creates a new tag with the provided label if the tag does not already exist.
55
55
  * @param label - Tag label. Unique per blog.
56
56
  * @public
57
57
  * @requiredField label
@@ -1 +1 @@
1
- {"version":3,"file":"blog-v3-tag.universal.js","sourceRoot":"","sources":["../../../src/blog-v3-tag.universal.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"blog-v3-tag.universal.js","sourceRoot":"","sources":["../../../src/blog-v3-tag.universal.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/blog",
3
- "version": "1.0.118",
3
+ "version": "1.0.119",
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": "9995f72fb9daac772d332228165d87f4e6e23a068ee1a756d1627740"
36
+ "falconPackageHash": "19f3a03f5850082cc32f789d5848e5f77357be53aa2963c810fa7798"
37
37
  }