@wix/blog 1.0.129 → 1.0.131

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 (31) hide show
  1. package/build/cjs/src/blog-v3-category.types.d.ts +33 -27
  2. package/build/cjs/src/blog-v3-category.types.js.map +1 -1
  3. package/build/cjs/src/blog-v3-category.universal.d.ts +33 -32
  4. package/build/cjs/src/blog-v3-category.universal.js.map +1 -1
  5. package/build/cjs/src/blog-v3-post.http.d.ts +2 -2
  6. package/build/cjs/src/blog-v3-post.http.js +2 -2
  7. package/build/cjs/src/blog-v3-post.types.d.ts +54 -48
  8. package/build/cjs/src/blog-v3-post.types.js.map +1 -1
  9. package/build/cjs/src/blog-v3-post.universal.d.ts +49 -31
  10. package/build/cjs/src/blog-v3-post.universal.js +2 -2
  11. package/build/cjs/src/blog-v3-post.universal.js.map +1 -1
  12. package/build/cjs/src/blog-v3-tag.types.d.ts +22 -21
  13. package/build/cjs/src/blog-v3-tag.types.js.map +1 -1
  14. package/build/cjs/src/blog-v3-tag.universal.d.ts +21 -19
  15. package/build/cjs/src/blog-v3-tag.universal.js.map +1 -1
  16. package/build/es/src/blog-v3-category.types.d.ts +33 -27
  17. package/build/es/src/blog-v3-category.types.js.map +1 -1
  18. package/build/es/src/blog-v3-category.universal.d.ts +33 -32
  19. package/build/es/src/blog-v3-category.universal.js.map +1 -1
  20. package/build/es/src/blog-v3-post.http.d.ts +2 -2
  21. package/build/es/src/blog-v3-post.http.js +2 -2
  22. package/build/es/src/blog-v3-post.types.d.ts +54 -48
  23. package/build/es/src/blog-v3-post.types.js.map +1 -1
  24. package/build/es/src/blog-v3-post.universal.d.ts +49 -31
  25. package/build/es/src/blog-v3-post.universal.js +2 -2
  26. package/build/es/src/blog-v3-post.universal.js.map +1 -1
  27. package/build/es/src/blog-v3-tag.types.d.ts +22 -21
  28. package/build/es/src/blog-v3-tag.types.js.map +1 -1
  29. package/build/es/src/blog-v3-tag.universal.d.ts +21 -19
  30. package/build/es/src/blog-v3-tag.universal.js.map +1 -1
  31. package/package.json +2 -2
@@ -27,13 +27,13 @@ export interface Post {
27
27
  lastPublishedDate?: Date;
28
28
  /** Post URL. */
29
29
  url?: PageUrl;
30
- /** Post slug. For example, 'post-slug'. */
30
+ /** Post slug. For example, `'post-slug'`. */
31
31
  slug?: string;
32
32
  /** Whether the post is marked as featured. */
33
33
  featured?: boolean;
34
- /** Whether the post is pinned. If `true`, post is placed at the top of the post list. */
34
+ /** Whether the post is pinned. If `true`, the post is placed at the top of the post list. */
35
35
  pinned?: boolean;
36
- /** [Category IDs](https://www.wix.com/velo/reference/wix-blog-backend/category) of the post. */
36
+ /** [Category IDs](https://dev.wix.com/api/rest/wix-blog/blog/categories) of the post. */
37
37
  categoryIds?: string[];
38
38
  /**
39
39
  * __Deprecated.__ Use `media` instead.
@@ -42,10 +42,10 @@ export interface Post {
42
42
  * Post cover media.
43
43
  */
44
44
  coverMedia?: CoverMedia;
45
- /** Post owner's [member ID](https://www.wix.com/velo/reference/wix-members-backend). */
45
+ /** Post owner's [member ID](https://dev.wix.com/api/rest/members). */
46
46
  memberId?: string;
47
47
  /**
48
- * Hashtags that are scraped from post content.
48
+ * Hashtags in the post.
49
49
  * @readonly
50
50
  */
51
51
  hashtags?: string[];
@@ -56,7 +56,7 @@ export interface Post {
56
56
  /** Image placed at the top of the blog page. */
57
57
  heroImage?: Image;
58
58
  /**
59
- * IDs of [tags](https://www.wix.com/velo/reference/wix-blog-backend/tags) the post is tagged with.
59
+ * IDs of [tags](https://dev.wix.com/api/rest/wix-blog/blog/tags) the post is tagged with.
60
60
  * @readonly
61
61
  */
62
62
  tagIds?: string[];
@@ -66,11 +66,11 @@ export interface Post {
66
66
  */
67
67
  relatedPostIds?: string[];
68
68
  /**
69
- * Pricing plan IDs.
69
+ * [Pricing plan IDs](https://dev.wix.com/api/rest/wix-pricing-plans). Only relevant if a post is assigned to a specific pricing plan.
70
70
  * @readonly
71
71
  */
72
72
  pricingPlanIds?: string[];
73
- /** ID of the translations of this post. All translations of a single post will share the same `translationId`. */
73
+ /** ID of the translations of this post. All translations of a single post share the same `translationId`. */
74
74
  translationId?: string | null;
75
75
  /**
76
76
  * Language the post is written in.
@@ -85,7 +85,7 @@ export interface Post {
85
85
  * @readonly
86
86
  */
87
87
  content?: string | null;
88
- /** Post owner's [contact ID](https://www.wix.com/velo/reference/wix-crm-backend/contacts). */
88
+ /** Post owner's [contact ID](https://dev.wix.com/api/rest/contacts). */
89
89
  contactId?: string | null;
90
90
  /**
91
91
  * Post rich content
@@ -1444,13 +1444,13 @@ export interface TextNodeStyle {
1444
1444
  lineHeight?: string | null;
1445
1445
  }
1446
1446
  export interface ModerationDetails {
1447
- /** Member Id of the person submitting the draft post for review. */
1447
+ /** Member ID of the person submitting the draft post for review. */
1448
1448
  submittedBy?: string;
1449
- /** Date the post was submission for review. */
1449
+ /** Date the post was submitted for review. */
1450
1450
  submittedDate?: Date;
1451
1451
  /** Status indicating whether the submission was approved or rejected by the moderator. */
1452
1452
  status?: ModerationStatusStatus;
1453
- /** Member Id of the person who approved or rejected the post. */
1453
+ /** Member ID of the person who approved or rejected the post. */
1454
1454
  moderatedBy?: string | null;
1455
1455
  /** Date the post was approved or rejected. */
1456
1456
  moderationDate?: Date;
@@ -1463,7 +1463,7 @@ export declare enum ModerationStatusStatus {
1463
1463
  export interface Media extends MediaMediaOneOf {
1464
1464
  /** Whether cover media is displayed. */
1465
1465
  displayed?: boolean;
1466
- /** Whether cover media is custom, i.e. not resolved as first media item appearing in content. */
1466
+ /** Whether custom cover media has been specified. If `false`, the first media item in the post's content serves as cover media. */
1467
1467
  custom?: boolean;
1468
1468
  /** Wix Media details. */
1469
1469
  wixMedia?: WixMedia;
@@ -1620,12 +1620,12 @@ export interface Category {
1620
1620
  */
1621
1621
  rank?: number | null;
1622
1622
  /**
1623
- * Category position in sequence. Categories with a lower display position are displayed first. A position of `-1` appears at the end of the sequence.
1623
+ * Category position in sequence. Categories with a lower display position are displayed first. Categories with a position of `-1` appear at the end of the sequence.
1624
1624
  *
1625
1625
  * Default: `-1`
1626
1626
  */
1627
1627
  displayPosition?: number | null;
1628
- /** ID of the category's translations. All translations of a single category will share the same `translationId`. */
1628
+ /** ID of the category's translations. All translations of a single category share the same `translationId`. */
1629
1629
  translationId?: string | null;
1630
1630
  /**
1631
1631
  * Category language.
@@ -1633,7 +1633,7 @@ export interface Category {
1633
1633
  * Two-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format.
1634
1634
  */
1635
1635
  language?: string;
1636
- /** Category slug. For example, 'category-slug'. */
1636
+ /** Category slug. For example, `'category-slug'`. */
1637
1637
  slug?: string;
1638
1638
  /**
1639
1639
  * Reserved for internal use.
@@ -1672,8 +1672,8 @@ export interface DraftPost {
1672
1672
  /**
1673
1673
  * Draft post excerpt.
1674
1674
  *
1675
- * `excerpt` is only returned if manually set. To get an auto-generated excerpt from the post's text,
1676
- * use the `GENERATED_EXCERPT` value with `fieldsets`.
1675
+ * If no excerpt has been manually set, an excerpt is automatically generated from the post's text.
1676
+ * This can be retrieved using the `GENERATED_EXCERPT` fieldset.
1677
1677
  */
1678
1678
  excerpt?: string | null;
1679
1679
  /** Whether the draft post is marked as featured. */
@@ -1682,7 +1682,7 @@ export interface DraftPost {
1682
1682
  categoryIds?: string[];
1683
1683
  /** Draft post owner's member ID. */
1684
1684
  memberId?: string | null;
1685
- /** Hashtags scraped from the draft post's content. */
1685
+ /** Hashtags in the post. */
1686
1686
  hashtags?: string[];
1687
1687
  /** Whether commenting on the draft post is enabled. */
1688
1688
  commentingEnabled?: boolean | null;
@@ -1697,7 +1697,7 @@ export interface DraftPost {
1697
1697
  tagIds?: string[];
1698
1698
  /** IDs of posts related to this draft post. */
1699
1699
  relatedPostIds?: string[];
1700
- /** Pricing plans IDs. */
1700
+ /** [Pricing plan IDs](https://dev.wix.com/api/rest/wix-pricing-plans). Only relevant if a post is assigned to a specific pricing plan. */
1701
1701
  pricingPlanIds?: string[];
1702
1702
  /**
1703
1703
  * ID of the draft post's translations.
@@ -1771,7 +1771,7 @@ export interface DraftPost {
1771
1771
  */
1772
1772
  url?: PageUrl;
1773
1773
  /**
1774
- * Date the post was created.
1774
+ * Date the draft post was first created.
1775
1775
  * @readonly
1776
1776
  */
1777
1777
  createdDate?: Date;
@@ -2015,9 +2015,9 @@ export interface GetPostBySlugRequest {
2015
2015
  */
2016
2016
  fieldsToInclude?: PostFieldField[];
2017
2017
  /**
2018
- * List of post fields to be included in the response if the entities are present.
2019
- * Base default fieldset returns all core post properties (all properties that are not a supported fieldset value).
2020
- * For example, when `URL` fieldset is selected, returned post will include the set of base properties and the post's preview url.
2018
+ * List of additional post fields to include in the response. For example, use the `URL` fieldset to retrieve the url field in
2019
+ * the response in addition to the post’s base fields. Base fields don’t include any of the supported fieldset values. By default
2020
+ * only the post’s base fields are returned.
2021
2021
  */
2022
2022
  fieldsets?: PostFieldField[];
2023
2023
  }
@@ -2031,34 +2031,34 @@ export interface ListPostsRequest {
2031
2031
  /**
2032
2032
  * Hashtag filter.
2033
2033
  *
2034
- * Pass an array of hashtags to return posts with any of the provided hashtags (anywhere in the post content).
2034
+ * Pass an array of hashtags to return only posts containing any of the provided hashtags.
2035
2035
  * If omitted, all posts with or without hashtags are returned.
2036
2036
  */
2037
2037
  hashtags?: string[];
2038
2038
  /**
2039
2039
  * Category filter.
2040
2040
  *
2041
- * Pass an array of category IDs to return posts with any of the provided categories.
2042
- * If omitted, all posts with or without category IDs are returned.
2041
+ * Pass an array of category IDs to return only posts with any of the provided categories.
2042
+ * If omitted, all posts with or without associated categories are returned.
2043
2043
  */
2044
2044
  categoryIds?: string[];
2045
2045
  /**
2046
2046
  * Tag filter.
2047
2047
  *
2048
- * Pass an array of tag IDs to return posts with any of the provided tags.
2049
- * If omitted, all posts with or without tag IDs are returned.
2048
+ * Pass an array of tag IDs to return only posts with any of the provided tags.
2049
+ * If omitted, all posts with or without tags are returned.
2050
2050
  */
2051
2051
  tagIds?: string[];
2052
2052
  /**
2053
- * Sort.
2053
+ * Sorting options.
2054
2054
  *
2055
- * - `FEED`: `firstPublishedDate` in descending order with pinned posts first.
2056
- * - `VIEW_COUNT`: total amount of views in descending order.
2057
- * - `LIKE_COUNT`: total amount of likes in descending order.
2058
- * - `PUBLISHED_DATE_ASC`: `firstPublishedDate` in ascending order.
2059
- * - `PUBLISHED_DATE_DESC`: `firstPublishedDate` in descending order.
2060
- * - `TITLE_ASC`: `title` in ascening order.
2061
- * - `TITLE_DESC`: `title` in descending order.
2055
+ * - `FEED`: Ordered by `firstPublishedDate` in descending order with pinned posts first.
2056
+ * - `VIEW_COUNT`: Ordered by total number of views in descending order.
2057
+ * - `LIKE_COUNT`: Ordered by total number of likes in descending order.
2058
+ * - `PUBLISHED_DATE_ASC`: Ordered by `firstPublishedDate` in ascending order.
2059
+ * - `PUBLISHED_DATE_DESC`: Ordered by `firstPublishedDate` in descending order.
2060
+ * - `TITLE_ASC`: Ordered by `title` in ascening order.
2061
+ * - `TITLE_DESC`: Ordered by `title` in descending order.
2062
2062
  * - `RATING`: reserved for internal use.
2063
2063
  *
2064
2064
  * Default: `FEED`
@@ -2075,7 +2075,7 @@ export interface ListPostsRequest {
2075
2075
  fieldsToInclude?: PostFieldField[];
2076
2076
  /**
2077
2077
  * Language filter.
2078
- * Pass language to only receive posts that are in that specified language.
2078
+ * Pass a language to only receive posts that are in that language.
2079
2079
  *
2080
2080
  * 2-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format.
2081
2081
  */
@@ -2083,9 +2083,9 @@ export interface ListPostsRequest {
2083
2083
  /** Post owner's member ID. */
2084
2084
  memberId?: string | null;
2085
2085
  /**
2086
- * List of post fields to be included in the response if the entities are present.
2087
- * Base default fieldset returns all core post properties (all properties that are not a supported fieldset value).
2088
- * For example, when `URL` fieldset is selected, returned post will include the set of base properties and the post's preview url.
2086
+ * List of additional post fields to include in the response. For example, use the `URL` fieldset to retrieve the url field in
2087
+ * the response in addition to the post’s base fields. Base fields don’t include any of the supported fieldset values. By default
2088
+ * only the post’s base fields are returned.
2089
2089
  */
2090
2090
  fieldsets?: PostFieldField[];
2091
2091
  }
@@ -2126,7 +2126,6 @@ export interface QueryPostsRequest {
2126
2126
  * This parameter will be removed on June 30, 2023.
2127
2127
  *
2128
2128
  * Filter object.
2129
- * For a detailed list of supported filters, see [Field Support for Filtering and Sorting](https://dev.wix.com/api/rest/wix-blog/blog/filter-and-sort).
2130
2129
  */
2131
2130
  filter?: Record<string, any> | null;
2132
2131
  /**
@@ -2146,9 +2145,9 @@ export interface QueryPostsRequest {
2146
2145
  /** Query options. */
2147
2146
  query?: PlatformQuery;
2148
2147
  /**
2149
- * List of post fields to be included in the response if the entities are present.
2150
- * Base default fieldset returns all core post properties (all properties that are not a supported fieldset value).
2151
- * For example, when `URL` fieldset is selected, returned post will include the set of base properties and the post's preview url.
2148
+ * List of additional post fields to include in the response. For example, use the `URL` fieldset to retrieve the url field in
2149
+ * the response in addition to the post’s base fields. Base fields don’t include any of the supported fieldset values. By default
2150
+ * only the post’s base fields are returned.
2152
2151
  */
2153
2152
  fieldsets?: PostFieldField[];
2154
2153
  }
@@ -2351,12 +2350,19 @@ export interface QueryPostCountStatsRequest {
2351
2350
  rangeStart?: Date;
2352
2351
  /**
2353
2352
  * __Deprecated.__ Use `months` instead.
2354
- * This property will be removed on June 30, YEAR.
2353
+ * This property will be removed on June 30, 2023.
2355
2354
  *
2356
2355
  * Non-inclusive end of time range to return, in ISO 8601 date and time format.
2357
2356
  */
2358
2357
  rangeEnd?: Date;
2359
- /** Order of returned results. */
2358
+ /**
2359
+ * Order of returned results.
2360
+ *
2361
+ * - `OLDEST`: posts by date in ascending order.
2362
+ * - `NEWEST`: posts by date in descending order.
2363
+ *
2364
+ * Default: `OLDEST`
2365
+ */
2360
2366
  order?: Order;
2361
2367
  /** Number of months to include in response. */
2362
2368
  months?: number;
@@ -2380,7 +2386,7 @@ export declare enum Order {
2380
2386
  }
2381
2387
  /** Get Blog Post Count Stats response */
2382
2388
  export interface QueryPostCountStatsResponse {
2383
- /** Chronologically ordered list of posts. */
2389
+ /** List of published post counts by month. */
2384
2390
  stats?: PeriodPostCount[];
2385
2391
  }
2386
2392
  /** Post count for a specific time period */
@@ -1 +1 @@
1
- {"version":3,"file":"blog-v3-post.types.js","sourceRoot":"","sources":["../../../src/blog-v3-post.types.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"blog-v3-post.types.js","sourceRoot":"","sources":["../../../src/blog-v3-post.types.ts"],"names":[],"mappings":"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"}
@@ -43,16 +43,22 @@ export interface Post {
43
43
  slug?: string;
44
44
  /** Whether the post is marked as featured. */
45
45
  featured?: boolean;
46
- /** Whether the post is pinned. If `true`, post is placed at the top of the post list. */
46
+ /** Whether the post is pinned. If `true`, the post is placed at the top of the post list. */
47
47
  pinned?: boolean;
48
- /** [Category IDs](https://www.wix.com/velo/reference/wix-blog-backend/category) of the post. */
48
+ /**
49
+ * [Category IDs](https://www.wix.com/velo/reference/wix-blog-backend/category) of the post.
50
+ *
51
+ */
49
52
  categoryIds?: string[];
50
53
  /** Reserved for internal use. */
51
54
  coverMedia?: CoverMedia;
52
- /** Post owner's [member ID](https://www.wix.com/velo/reference/wix-members-backend). */
55
+ /**
56
+ * Post owner's [member ID](https://www.wix.com/velo/reference/wix-members-backend).
57
+ *
58
+ */
53
59
  memberId?: string;
54
60
  /**
55
- * Hashtags that are scraped from post content.
61
+ * Hashtags in the post.
56
62
  * @readonly
57
63
  */
58
64
  hashtags?: string[];
@@ -64,6 +70,7 @@ export interface Post {
64
70
  heroImage?: string;
65
71
  /**
66
72
  * IDs of [tags](https://www.wix.com/velo/reference/wix-blog-backend/tags) the post is tagged with.
73
+ *
67
74
  * @readonly
68
75
  */
69
76
  tagIds?: string[];
@@ -95,7 +102,10 @@ export interface Post {
95
102
  * @readonly
96
103
  */
97
104
  content?: string | null;
98
- /** Post owner's [contact ID](https://www.wix.com/velo/reference/wix-crm-backend/contacts). */
105
+ /**
106
+ * Post owner's [contact ID](https://www.wix.com/velo/reference/wix-crm-backend/contacts).
107
+ *
108
+ */
99
109
  contactId?: string | null;
100
110
  /**
101
111
  * Post rich content
@@ -1587,12 +1597,12 @@ export interface Category {
1587
1597
  */
1588
1598
  rank?: number | null;
1589
1599
  /**
1590
- * Category position in sequence. Categories with a lower display position are displayed first. A position of `-1` appears at the end of the sequence.
1600
+ * Category position in sequence. Categories with a lower display position are displayed first. Categories with a position of `-1` appear at the end of the sequence.
1591
1601
  *
1592
1602
  * Default: `-1`
1593
1603
  */
1594
1604
  displayPosition?: number | null;
1595
- /** ID of the category's translations. All translations of a single category will share the same `translationId`. */
1605
+ /** ID of the category's translations. All translations of a single category share the same `translationId`. */
1596
1606
  translationId?: string | null;
1597
1607
  /**
1598
1608
  * Category language.
@@ -1600,7 +1610,7 @@ export interface Category {
1600
1610
  * Two-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format.
1601
1611
  */
1602
1612
  language?: string;
1603
- /** Category slug. For example, 'category-slug'. */
1613
+ /** Category slug. For example, `'category-slug'`. */
1604
1614
  slug?: string;
1605
1615
  /**
1606
1616
  * Reserved for internal use.
@@ -1639,8 +1649,8 @@ export interface DraftPost {
1639
1649
  /**
1640
1650
  * Draft post excerpt.
1641
1651
  *
1642
- * `excerpt` is only returned if manually set. To get an auto-generated excerpt from the post's text,
1643
- * use the `GENERATED_EXCERPT` value with `fieldsets`.
1652
+ * If no excerpt has been manually set, an excerpt is automatically generated from the post's text.
1653
+ * This can be retrieved using the `GENERATED_EXCERPT` fieldset.
1644
1654
  */
1645
1655
  excerpt?: string | null;
1646
1656
  /** Whether the draft post is marked as featured. */
@@ -1649,7 +1659,7 @@ export interface DraftPost {
1649
1659
  categoryIds?: string[];
1650
1660
  /** Draft post owner's member ID. */
1651
1661
  memberId?: string | null;
1652
- /** Hashtags scraped from the draft post's content. */
1662
+ /** Hashtags in the post. */
1653
1663
  hashtags?: string[];
1654
1664
  /** Whether commenting on the draft post is enabled. */
1655
1665
  commentingEnabled?: boolean | null;
@@ -1664,7 +1674,7 @@ export interface DraftPost {
1664
1674
  tagIds?: string[];
1665
1675
  /** IDs of posts related to this draft post. */
1666
1676
  relatedPostIds?: string[];
1667
- /** Pricing plans IDs. */
1677
+ /** [Pricing plan IDs](https://dev.wix.com/api/rest/wix-pricing-plans). Only relevant if a post is assigned to a specific pricing plan. */
1668
1678
  pricingPlanIds?: string[];
1669
1679
  /**
1670
1680
  * ID of the draft post's translations.
@@ -1738,7 +1748,7 @@ export interface DraftPost {
1738
1748
  */
1739
1749
  url?: string;
1740
1750
  /**
1741
- * Date the post was created.
1751
+ * Date the draft post was first created.
1742
1752
  * @readonly
1743
1753
  */
1744
1754
  _createdDate?: Date;
@@ -1931,7 +1941,7 @@ export interface InitialPostsCopied {
1931
1941
  export interface GetPostRequest {
1932
1942
  /** Post ID. */
1933
1943
  postId: string;
1934
- /** __Deprecated.__ Use GetPostRequest.fieldsets */
1944
+ /** Reserved for internal use. */
1935
1945
  fieldsToInclude?: PostFieldField[];
1936
1946
  /**
1937
1947
  * List of post fields to be included in the response. By default, any fields not passed are not returned.
@@ -1975,7 +1985,7 @@ export interface GetPostResponse {
1975
1985
  export interface GetPostBySlugRequest {
1976
1986
  /** Slug of the post to retrieve. */
1977
1987
  slug: string;
1978
- /** __Deprecated.__ Use GetPostBySlugRequest.fieldsets */
1988
+ /** Reserved for internal use. */
1979
1989
  fieldsToInclude?: PostFieldField[];
1980
1990
  /**
1981
1991
  * List of post fields to be included in the response. By default, any fields not passed are not returned.
@@ -1995,29 +2005,29 @@ export interface ListPostsRequest {
1995
2005
  /**
1996
2006
  * Hashtag filter.
1997
2007
  *
1998
- * Pass an array of hashtags to return posts with any of the provided hashtags (anywhere in the post content).
2008
+ * Pass an array of hashtags to return only posts containing any of the provided hashtags.
1999
2009
  * If omitted, all posts with or without hashtags are returned.
2000
2010
  */
2001
2011
  hashtags?: string[];
2002
2012
  /**
2003
2013
  * Category filter.
2004
2014
  *
2005
- * Pass an array of category IDs to return posts with any of the provided categories.
2006
- * If omitted, all posts with or without category IDs are returned.
2015
+ * Pass an array of category IDs to return only posts with any of the provided categories.
2016
+ * If omitted, all posts with or without associated categories are returned.
2007
2017
  */
2008
2018
  categoryIds?: string[];
2009
2019
  /**
2010
2020
  * Tag filter.
2011
2021
  *
2012
- * Pass an array of tag IDs to return posts with any of the provided tags.
2013
- * If omitted, all posts with or without tag IDs are returned.
2022
+ * Pass an array of tag IDs to return only posts with any of the provided tags.
2023
+ * If omitted, all posts with or without tags are returned.
2014
2024
  */
2015
2025
  tagIds?: string[];
2016
2026
  /** Sort order by descending view count, ascending or descending publish date, or default to descending by publish date with pinned posts first. */
2017
2027
  sort?: GetPostsSort;
2018
2028
  /** Pagination options. */
2019
2029
  paging?: BlogPaging;
2020
- /** __Deprecated.__ Use ListPostsRequest.fieldsets */
2030
+ /** Reserved for internal use. */
2021
2031
  fieldsToInclude?: PostFieldField[];
2022
2032
  /**
2023
2033
  * Language filter.
@@ -2073,7 +2083,6 @@ export interface QueryPostsRequest {
2073
2083
  * This parameter will be removed on June 30, 2023.
2074
2084
  *
2075
2085
  * Filter object.
2076
- * For a detailed list of supported filters, see [Field Support for Filtering and Sorting](https://dev.wix.com/api/rest/wix-blog/blog/filter-and-sort).
2077
2086
  */
2078
2087
  filter?: Record<string, any> | null;
2079
2088
  /**
@@ -2083,7 +2092,7 @@ export interface QueryPostsRequest {
2083
2092
  * Sorting options. For a list of sortable fields, see [Field Support for Filtering and Sorting](https://dev.wix.com/api/rest/wix-blog/blog/filter-and-sort).
2084
2093
  */
2085
2094
  sort?: Sorting[];
2086
- /** __Deprecated.__ Use QueryPostsRequest.fieldsets */
2095
+ /** Reserved for internal use. */
2087
2096
  fieldsToInclude?: PostFieldField[];
2088
2097
  /** Query options. */
2089
2098
  query?: PlatformQuery;
@@ -2294,12 +2303,19 @@ export interface QueryPostCountStatsRequest {
2294
2303
  rangeStart?: Date;
2295
2304
  /**
2296
2305
  * __Deprecated.__ Use `months` instead.
2297
- * This property will be removed on June 30, YEAR.
2306
+ * This property will be removed on June 30, 2023.
2298
2307
  *
2299
2308
  * Non-inclusive end of time range to return, in ISO 8601 date and time format.
2300
2309
  */
2301
2310
  rangeEnd?: Date;
2302
- /** Order of returned results. */
2311
+ /**
2312
+ * Order of returned results.
2313
+ *
2314
+ * - `OLDEST`: posts by date in ascending order.
2315
+ * - `NEWEST`: posts by date in descending order.
2316
+ *
2317
+ * Default: `OLDEST`
2318
+ */
2303
2319
  order?: Order;
2304
2320
  /** Number of months to include in response. */
2305
2321
  months?: number;
@@ -2381,7 +2397,7 @@ export interface SendActionEventResponse {
2381
2397
  */
2382
2398
  export declare function getPost(postId: string, options?: GetPostOptions): Promise<GetPostResponse>;
2383
2399
  export interface GetPostOptions {
2384
- /** __Deprecated.__ Use GetPostOptions.fieldsets */
2400
+ /** Reserved for internal use. */
2385
2401
  fieldsToInclude?: PostFieldField[];
2386
2402
  /**
2387
2403
  * List of post fields to be included in the response. By default, any fields not passed are not returned.
@@ -2409,7 +2425,7 @@ export interface GetPostOptions {
2409
2425
  */
2410
2426
  export declare function getPostBySlug(slug: string, options?: GetPostBySlugOptions): Promise<GetPostBySlugResponse>;
2411
2427
  export interface GetPostBySlugOptions {
2412
- /** __Deprecated.__ Use GetPostBySlugRequest.fieldsets */
2428
+ /** Reserved for internal use. */
2413
2429
  fieldsToInclude?: PostFieldField[];
2414
2430
  /**
2415
2431
  * List of post fields to be included in the response. By default, any fields not passed are not returned.
@@ -2464,14 +2480,16 @@ export interface ListPostsOptions {
2464
2480
  * - `'VIEW_COUNT'` descending view count
2465
2481
  * - `'LIKE_COUNT'` descending like count
2466
2482
  * - `'PUBLISHED_DATE_ASC'` ascending published date
2467
- * - `'PUBLISHED_DATE_DESC'` (default) descending published date
2483
+ * - `'PUBLISHED_DATE_DESC'` descending published date
2468
2484
  * - `'TITLE_ASC'` ascending title
2469
2485
  * - `'TITLE_DESC'` descending title
2486
+ *
2487
+ * Default: `'PUBLISHED_DATE_DESC'`
2470
2488
  */
2471
2489
  sort?: GetPostsSort;
2472
2490
  /** Pagination options. */
2473
2491
  paging?: BlogPaging;
2474
- /** __Deprecated.__ Use ListPostsOptions.fieldsets */
2492
+ /** Reserved for internal use. */
2475
2493
  fieldsToInclude?: PostFieldField[];
2476
2494
  /**
2477
2495
  * Language filter.
@@ -2604,9 +2622,9 @@ export declare function getPostMetrics(postId: string): Promise<GetPostMetricsRe
2604
2622
  *
2605
2623
  * The `queryPostCountStats()` function returns a Promise that resolves to the number of posts per month within the specified time range.
2606
2624
  *
2607
- * You can set the time range using the `rangeStart` and `months` properties. The time range always starts on the 1st of the month set in `rangeStart`. It includes the number of `months` following `rangeStart`. For example, if `rangeStart` is set to `'2022-03-13'` and `months` is set to `4`, the time range will be from `'2022-03-01'` until `'2022-06-30'`. Notice that the time range ends on the last of the month.
2625
+ * You can set the time range using the `rangeStart` and `months` properties. The time range always starts on the 1st day of the month set in `rangeStart` and includes the number of `months` following `rangeStart`. For example, if `rangeStart` is set to `'2022-03-13'` and `months` is set to `4`, the time range will be from `'2022-03-01'` until `'2022-06-30'`. The time range ends on the last day of the month.
2608
2626
  *
2609
- * >**Note:** If there are no published posts in a specific month, that month is not included in the response. For example, let's say a blog has `0` posts dated in February 2022. `months` and `rangeStart` are set to `3` and `'2022-01-01'` respectively. Your result will only include the `postCount` from January and March.
2627
+ * >**Note:** If there are no published posts in a specific month, that month is not included in the response. For example, let's say a blog has `0` posts dated in February 2022. If `rangeStart` is set to `'2022-01-01'` and `months` is set to `3`, the response includes `postCount` values for January and March, but not February.
2610
2628
  * @public
2611
2629
  * @param options - Options specifying time frame, sort, and filter.
2612
2630
  * @returns Fulfilled - Post count stats.
@@ -840,9 +840,9 @@ exports.getPostMetrics = getPostMetrics;
840
840
  *
841
841
  * The `queryPostCountStats()` function returns a Promise that resolves to the number of posts per month within the specified time range.
842
842
  *
843
- * You can set the time range using the `rangeStart` and `months` properties. The time range always starts on the 1st of the month set in `rangeStart`. It includes the number of `months` following `rangeStart`. For example, if `rangeStart` is set to `'2022-03-13'` and `months` is set to `4`, the time range will be from `'2022-03-01'` until `'2022-06-30'`. Notice that the time range ends on the last of the month.
843
+ * You can set the time range using the `rangeStart` and `months` properties. The time range always starts on the 1st day of the month set in `rangeStart` and includes the number of `months` following `rangeStart`. For example, if `rangeStart` is set to `'2022-03-13'` and `months` is set to `4`, the time range will be from `'2022-03-01'` until `'2022-06-30'`. The time range ends on the last day of the month.
844
844
  *
845
- * >**Note:** If there are no published posts in a specific month, that month is not included in the response. For example, let's say a blog has `0` posts dated in February 2022. `months` and `rangeStart` are set to `3` and `'2022-01-01'` respectively. Your result will only include the `postCount` from January and March.
845
+ * >**Note:** If there are no published posts in a specific month, that month is not included in the response. For example, let's say a blog has `0` posts dated in February 2022. If `rangeStart` is set to `'2022-01-01'` and `months` is set to `3`, the response includes `postCount` values for January and March, but not February.
846
846
  * @public
847
847
  * @param options - Options specifying time frame, sort, and filter.
848
848
  * @returns Fulfilled - Post count stats.