@wix/blog 1.0.168 → 1.0.170

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.
@@ -55,7 +55,7 @@ export interface Category {
55
55
  *
56
56
  * Two-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format.
57
57
  */
58
- language?: string;
58
+ language?: string | null;
59
59
  /** Category slug. For example, `'category-slug'`. */
60
60
  slug?: string;
61
61
  /**
@@ -51,7 +51,7 @@ export interface Category {
51
51
  *
52
52
  * 2-letter language code in [ISO 639-1 format](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes).
53
53
  */
54
- language?: string;
54
+ language?: string | null;
55
55
  /**
56
56
  * Part of a category's URL that refers to a specific category.
57
57
  *
@@ -1499,7 +1499,7 @@ export interface MediaMediaOneOf {
1499
1499
  embedMedia?: EmbedMedia;
1500
1500
  }
1501
1501
  export interface WixMedia {
1502
- /** Thumbnail or image details. */
1502
+ /** Thumbnail or image details. Required if videoV2 is provided. */
1503
1503
  image?: CommonImage;
1504
1504
  /** Video details. Optional */
1505
1505
  videoV2?: VideoV2;
@@ -1661,7 +1661,7 @@ export interface Category {
1661
1661
  *
1662
1662
  * Two-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format.
1663
1663
  */
1664
- language?: string;
1664
+ language?: string | null;
1665
1665
  /** Category slug. For example, `'category-slug'`. */
1666
1666
  slug?: string;
1667
1667
  /**
@@ -1486,7 +1486,7 @@ export interface MediaMediaOneOf {
1486
1486
  embedMedia?: EmbedMedia;
1487
1487
  }
1488
1488
  export interface WixMedia {
1489
- /** Thumbnail or image details. */
1489
+ /** Thumbnail or image details. Required if videoV2 is provided. */
1490
1490
  image?: string;
1491
1491
  /** Video details. Optional */
1492
1492
  videoV2?: string;
@@ -1638,7 +1638,7 @@ export interface Category {
1638
1638
  *
1639
1639
  * Two-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format.
1640
1640
  */
1641
- language?: string;
1641
+ language?: string | null;
1642
1642
  /** Category slug. For example, `'category-slug'`. */
1643
1643
  slug?: string;
1644
1644
  /**
@@ -120,7 +120,7 @@ export interface GetOrCreateTagRequest {
120
120
  /** Tag name. Unique per blog. */
121
121
  label?: string;
122
122
  /** Tag language. */
123
- language?: string;
123
+ language?: string | null;
124
124
  /**
125
125
  * List of tag fields to be included if entities are present in the response.
126
126
  * Base fieldset, which is default, will return all core tag properties.
@@ -147,7 +147,7 @@ export interface CreateTagRequest {
147
147
  *
148
148
  * 2-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format.
149
149
  */
150
- language?: string;
150
+ language?: string | null;
151
151
  /** Preferred tag slug. For example, `'tag-slug'`. */
152
152
  slug?: string | null;
153
153
  /**
@@ -126,7 +126,7 @@ export interface GetOrCreateTagRequest {
126
126
  /** Tag name. Unique per blog. */
127
127
  label?: string;
128
128
  /** Tag language. */
129
- language?: string;
129
+ language?: string | null;
130
130
  /**
131
131
  * List of tag fields to be included if entities are present in the response.
132
132
  * Base fieldset, which is default, will return all core tag properties.
@@ -153,7 +153,7 @@ export interface CreateTagRequest {
153
153
  *
154
154
  * 2-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format.
155
155
  */
156
- language?: string;
156
+ language?: string | null;
157
157
  /** Preferred tag slug. For example, `'tag-slug'`. */
158
158
  slug?: string | null;
159
159
  /**
@@ -55,7 +55,7 @@ export interface Category {
55
55
  *
56
56
  * Two-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format.
57
57
  */
58
- language?: string;
58
+ language?: string | null;
59
59
  /** Category slug. For example, `'category-slug'`. */
60
60
  slug?: string;
61
61
  /**
@@ -51,7 +51,7 @@ export interface Category {
51
51
  *
52
52
  * 2-letter language code in [ISO 639-1 format](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes).
53
53
  */
54
- language?: string;
54
+ language?: string | null;
55
55
  /**
56
56
  * Part of a category's URL that refers to a specific category.
57
57
  *
@@ -1499,7 +1499,7 @@ export interface MediaMediaOneOf {
1499
1499
  embedMedia?: EmbedMedia;
1500
1500
  }
1501
1501
  export interface WixMedia {
1502
- /** Thumbnail or image details. */
1502
+ /** Thumbnail or image details. Required if videoV2 is provided. */
1503
1503
  image?: CommonImage;
1504
1504
  /** Video details. Optional */
1505
1505
  videoV2?: VideoV2;
@@ -1661,7 +1661,7 @@ export interface Category {
1661
1661
  *
1662
1662
  * Two-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format.
1663
1663
  */
1664
- language?: string;
1664
+ language?: string | null;
1665
1665
  /** Category slug. For example, `'category-slug'`. */
1666
1666
  slug?: string;
1667
1667
  /**
@@ -1486,7 +1486,7 @@ export interface MediaMediaOneOf {
1486
1486
  embedMedia?: EmbedMedia;
1487
1487
  }
1488
1488
  export interface WixMedia {
1489
- /** Thumbnail or image details. */
1489
+ /** Thumbnail or image details. Required if videoV2 is provided. */
1490
1490
  image?: string;
1491
1491
  /** Video details. Optional */
1492
1492
  videoV2?: string;
@@ -1638,7 +1638,7 @@ export interface Category {
1638
1638
  *
1639
1639
  * Two-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format.
1640
1640
  */
1641
- language?: string;
1641
+ language?: string | null;
1642
1642
  /** Category slug. For example, `'category-slug'`. */
1643
1643
  slug?: string;
1644
1644
  /**
@@ -120,7 +120,7 @@ export interface GetOrCreateTagRequest {
120
120
  /** Tag name. Unique per blog. */
121
121
  label?: string;
122
122
  /** Tag language. */
123
- language?: string;
123
+ language?: string | null;
124
124
  /**
125
125
  * List of tag fields to be included if entities are present in the response.
126
126
  * Base fieldset, which is default, will return all core tag properties.
@@ -147,7 +147,7 @@ export interface CreateTagRequest {
147
147
  *
148
148
  * 2-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format.
149
149
  */
150
- language?: string;
150
+ language?: string | null;
151
151
  /** Preferred tag slug. For example, `'tag-slug'`. */
152
152
  slug?: string | null;
153
153
  /**
@@ -126,7 +126,7 @@ export interface GetOrCreateTagRequest {
126
126
  /** Tag name. Unique per blog. */
127
127
  label?: string;
128
128
  /** Tag language. */
129
- language?: string;
129
+ language?: string | null;
130
130
  /**
131
131
  * List of tag fields to be included if entities are present in the response.
132
132
  * Base fieldset, which is default, will return all core tag properties.
@@ -153,7 +153,7 @@ export interface CreateTagRequest {
153
153
  *
154
154
  * 2-letter language code in [ISO 639-1 alpha-2](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) format.
155
155
  */
156
- language?: string;
156
+ language?: string | null;
157
157
  /** Preferred tag slug. For example, `'tag-slug'`. */
158
158
  slug?: string | null;
159
159
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/blog",
3
- "version": "1.0.168",
3
+ "version": "1.0.170",
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": "fc51e4856ecbaf7d076c9b2eba119099f8b8d4de07854eab73260d3d"
36
+ "falconPackageHash": "692c0947893fa8ecc6be25ff78c26296e864d029e4c438f8f5fd3c6f"
37
37
  }