@wix/blog 1.0.319 → 1.0.321
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/blog",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.321",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"@wix/blog_categories": "1.0.49",
|
|
27
27
|
"@wix/blog_draft-posts": "1.0.50",
|
|
28
28
|
"@wix/blog_posts": "1.0.56",
|
|
29
|
-
"@wix/blog_tags": "1.0.
|
|
29
|
+
"@wix/blog_tags": "1.0.50"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"glob": "^10.4.1",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"fqdn": ""
|
|
52
52
|
}
|
|
53
53
|
},
|
|
54
|
-
"falconPackageHash": "
|
|
54
|
+
"falconPackageHash": "5c1a2a44c3aac8242759c0d538bca4fa5bf8b0a26633e7b799cf3cb3"
|
|
55
55
|
}
|
|
@@ -10053,19 +10053,6 @@ interface GetTagByLabelResponse {
|
|
|
10053
10053
|
interface GetTagRequest {
|
|
10054
10054
|
/** Tag ID. */
|
|
10055
10055
|
tagId: string;
|
|
10056
|
-
/**
|
|
10057
|
-
* __Deprecated.__ Use `fieldsets` instead.
|
|
10058
|
-
* This parameter will be removed on June 30, 2023.
|
|
10059
|
-
*
|
|
10060
|
-
* List of tag fields to be included in the response.
|
|
10061
|
-
* @deprecated __Deprecated.__ Use `fieldsets` instead.
|
|
10062
|
-
* This parameter will be removed on June 30, 2023.
|
|
10063
|
-
*
|
|
10064
|
-
* List of tag fields to be included in the response.
|
|
10065
|
-
* @replacedBy fieldsets
|
|
10066
|
-
* @targetRemovalDate 2024-06-30
|
|
10067
|
-
*/
|
|
10068
|
-
fieldsToInclude?: Field[];
|
|
10069
10056
|
/**
|
|
10070
10057
|
* List of additional tag fields to include in the response. For example, use the `URL` fieldset to retrieve the url field in
|
|
10071
10058
|
* the response in addition to the tag's base fields. Base fields don’t include any of the supported fieldset values. By default
|
|
@@ -10080,19 +10067,6 @@ interface GetTagResponse {
|
|
|
10080
10067
|
interface GetTagBySlugRequest {
|
|
10081
10068
|
/** Slug of the tag to retrieve. */
|
|
10082
10069
|
slug: string;
|
|
10083
|
-
/**
|
|
10084
|
-
* __Deprecated.__ Use `fieldsets` instead.
|
|
10085
|
-
* This parameter will be removed on June 30, 2023.
|
|
10086
|
-
*
|
|
10087
|
-
* List of tag fields to be included in the response.
|
|
10088
|
-
* @deprecated __Deprecated.__ Use `fieldsets` instead.
|
|
10089
|
-
* This parameter will be removed on June 30, 2023.
|
|
10090
|
-
*
|
|
10091
|
-
* List of tag fields to be included in the response.
|
|
10092
|
-
* @replacedBy fieldsets
|
|
10093
|
-
* @targetRemovalDate 2024-06-30
|
|
10094
|
-
*/
|
|
10095
|
-
fieldsToInclude?: Field[];
|
|
10096
10070
|
/**
|
|
10097
10071
|
* List of additional tag fields to include in the response. For example, use the `URL` fieldset to retrieve the url field in
|
|
10098
10072
|
* the response in addition to the tag's base fields. Base fields don’t include any of the supported fieldset values. By default
|
|
@@ -10564,30 +10538,10 @@ interface GetTagByLabelOptions {
|
|
|
10564
10538
|
fieldsets?: Field[];
|
|
10565
10539
|
}
|
|
10566
10540
|
interface GetTagOptions {
|
|
10567
|
-
/**
|
|
10568
|
-
* @internal
|
|
10569
|
-
* @deprecated __Deprecated.__ Use `fieldsets` instead.
|
|
10570
|
-
* This parameter will be removed on June 30, 2023.
|
|
10571
|
-
*
|
|
10572
|
-
* List of tag fields to be included in the response.
|
|
10573
|
-
* @replacedBy fieldsets
|
|
10574
|
-
* @targetRemovalDate 2024-06-30
|
|
10575
|
-
*/
|
|
10576
|
-
fieldsToInclude?: Field[];
|
|
10577
10541
|
/** List of additional tag fields to be included in the response. By default, any fields not passed are not returned. */
|
|
10578
10542
|
fieldsets?: Field[];
|
|
10579
10543
|
}
|
|
10580
10544
|
interface GetTagBySlugOptions {
|
|
10581
|
-
/**
|
|
10582
|
-
* @internal
|
|
10583
|
-
* @deprecated __Deprecated.__ Use `fieldsets` instead.
|
|
10584
|
-
* This parameter will be removed on June 30, 2023.
|
|
10585
|
-
*
|
|
10586
|
-
* List of tag fields to be included in the response.
|
|
10587
|
-
* @replacedBy fieldsets
|
|
10588
|
-
* @targetRemovalDate 2024-06-30
|
|
10589
|
-
*/
|
|
10590
|
-
fieldsToInclude?: Field[];
|
|
10591
10545
|
/** List of additional tag fields to be included in the response. By default, any fields not passed are not returned. */
|
|
10592
10546
|
fieldsets?: Field[];
|
|
10593
10547
|
/**
|
|
@@ -10053,19 +10053,6 @@ interface GetTagByLabelResponse {
|
|
|
10053
10053
|
interface GetTagRequest {
|
|
10054
10054
|
/** Tag ID. */
|
|
10055
10055
|
tagId: string;
|
|
10056
|
-
/**
|
|
10057
|
-
* __Deprecated.__ Use `fieldsets` instead.
|
|
10058
|
-
* This parameter will be removed on June 30, 2023.
|
|
10059
|
-
*
|
|
10060
|
-
* List of tag fields to be included in the response.
|
|
10061
|
-
* @deprecated __Deprecated.__ Use `fieldsets` instead.
|
|
10062
|
-
* This parameter will be removed on June 30, 2023.
|
|
10063
|
-
*
|
|
10064
|
-
* List of tag fields to be included in the response.
|
|
10065
|
-
* @replacedBy fieldsets
|
|
10066
|
-
* @targetRemovalDate 2024-06-30
|
|
10067
|
-
*/
|
|
10068
|
-
fieldsToInclude?: Field[];
|
|
10069
10056
|
/**
|
|
10070
10057
|
* List of additional tag fields to include in the response. For example, use the `URL` fieldset to retrieve the url field in
|
|
10071
10058
|
* the response in addition to the tag's base fields. Base fields don’t include any of the supported fieldset values. By default
|
|
@@ -10080,19 +10067,6 @@ interface GetTagResponse {
|
|
|
10080
10067
|
interface GetTagBySlugRequest {
|
|
10081
10068
|
/** Slug of the tag to retrieve. */
|
|
10082
10069
|
slug: string;
|
|
10083
|
-
/**
|
|
10084
|
-
* __Deprecated.__ Use `fieldsets` instead.
|
|
10085
|
-
* This parameter will be removed on June 30, 2023.
|
|
10086
|
-
*
|
|
10087
|
-
* List of tag fields to be included in the response.
|
|
10088
|
-
* @deprecated __Deprecated.__ Use `fieldsets` instead.
|
|
10089
|
-
* This parameter will be removed on June 30, 2023.
|
|
10090
|
-
*
|
|
10091
|
-
* List of tag fields to be included in the response.
|
|
10092
|
-
* @replacedBy fieldsets
|
|
10093
|
-
* @targetRemovalDate 2024-06-30
|
|
10094
|
-
*/
|
|
10095
|
-
fieldsToInclude?: Field[];
|
|
10096
10070
|
/**
|
|
10097
10071
|
* List of additional tag fields to include in the response. For example, use the `URL` fieldset to retrieve the url field in
|
|
10098
10072
|
* the response in addition to the tag's base fields. Base fields don’t include any of the supported fieldset values. By default
|
|
@@ -10564,30 +10538,10 @@ interface GetTagByLabelOptions {
|
|
|
10564
10538
|
fieldsets?: Field[];
|
|
10565
10539
|
}
|
|
10566
10540
|
interface GetTagOptions {
|
|
10567
|
-
/**
|
|
10568
|
-
* @internal
|
|
10569
|
-
* @deprecated __Deprecated.__ Use `fieldsets` instead.
|
|
10570
|
-
* This parameter will be removed on June 30, 2023.
|
|
10571
|
-
*
|
|
10572
|
-
* List of tag fields to be included in the response.
|
|
10573
|
-
* @replacedBy fieldsets
|
|
10574
|
-
* @targetRemovalDate 2024-06-30
|
|
10575
|
-
*/
|
|
10576
|
-
fieldsToInclude?: Field[];
|
|
10577
10541
|
/** List of additional tag fields to be included in the response. By default, any fields not passed are not returned. */
|
|
10578
10542
|
fieldsets?: Field[];
|
|
10579
10543
|
}
|
|
10580
10544
|
interface GetTagBySlugOptions {
|
|
10581
|
-
/**
|
|
10582
|
-
* @internal
|
|
10583
|
-
* @deprecated __Deprecated.__ Use `fieldsets` instead.
|
|
10584
|
-
* This parameter will be removed on June 30, 2023.
|
|
10585
|
-
*
|
|
10586
|
-
* List of tag fields to be included in the response.
|
|
10587
|
-
* @replacedBy fieldsets
|
|
10588
|
-
* @targetRemovalDate 2024-06-30
|
|
10589
|
-
*/
|
|
10590
|
-
fieldsToInclude?: Field[];
|
|
10591
10545
|
/** List of additional tag fields to be included in the response. By default, any fields not passed are not returned. */
|
|
10592
10546
|
fieldsets?: Field[];
|
|
10593
10547
|
/**
|
|
@@ -11435,19 +11435,6 @@ interface GetTagByLabelResponse$1 {
|
|
|
11435
11435
|
interface GetTagRequest$1 {
|
|
11436
11436
|
/** Tag ID. */
|
|
11437
11437
|
tagId: string;
|
|
11438
|
-
/**
|
|
11439
|
-
* __Deprecated.__ Use `fieldsets` instead.
|
|
11440
|
-
* This parameter will be removed on June 30, 2023.
|
|
11441
|
-
*
|
|
11442
|
-
* List of tag fields to be included in the response.
|
|
11443
|
-
* @deprecated __Deprecated.__ Use `fieldsets` instead.
|
|
11444
|
-
* This parameter will be removed on June 30, 2023.
|
|
11445
|
-
*
|
|
11446
|
-
* List of tag fields to be included in the response.
|
|
11447
|
-
* @replacedBy fieldsets
|
|
11448
|
-
* @targetRemovalDate 2024-06-30
|
|
11449
|
-
*/
|
|
11450
|
-
fieldsToInclude?: Field$1[];
|
|
11451
11438
|
/**
|
|
11452
11439
|
* List of additional tag fields to include in the response. For example, use the `URL` fieldset to retrieve the url field in
|
|
11453
11440
|
* the response in addition to the tag's base fields. Base fields don’t include any of the supported fieldset values. By default
|
|
@@ -11462,19 +11449,6 @@ interface GetTagResponse$1 {
|
|
|
11462
11449
|
interface GetTagBySlugRequest$1 {
|
|
11463
11450
|
/** Slug of the tag to retrieve. */
|
|
11464
11451
|
slug: string;
|
|
11465
|
-
/**
|
|
11466
|
-
* __Deprecated.__ Use `fieldsets` instead.
|
|
11467
|
-
* This parameter will be removed on June 30, 2023.
|
|
11468
|
-
*
|
|
11469
|
-
* List of tag fields to be included in the response.
|
|
11470
|
-
* @deprecated __Deprecated.__ Use `fieldsets` instead.
|
|
11471
|
-
* This parameter will be removed on June 30, 2023.
|
|
11472
|
-
*
|
|
11473
|
-
* List of tag fields to be included in the response.
|
|
11474
|
-
* @replacedBy fieldsets
|
|
11475
|
-
* @targetRemovalDate 2024-06-30
|
|
11476
|
-
*/
|
|
11477
|
-
fieldsToInclude?: Field$1[];
|
|
11478
11452
|
/**
|
|
11479
11453
|
* List of additional tag fields to include in the response. For example, use the `URL` fieldset to retrieve the url field in
|
|
11480
11454
|
* the response in addition to the tag's base fields. Base fields don’t include any of the supported fieldset values. By default
|
|
@@ -11829,19 +11803,6 @@ interface GetTagByLabelResponse {
|
|
|
11829
11803
|
interface GetTagRequest {
|
|
11830
11804
|
/** Tag ID. */
|
|
11831
11805
|
tagId: string;
|
|
11832
|
-
/**
|
|
11833
|
-
* __Deprecated.__ Use `fieldsets` instead.
|
|
11834
|
-
* This parameter will be removed on June 30, 2023.
|
|
11835
|
-
*
|
|
11836
|
-
* List of tag fields to be included in the response.
|
|
11837
|
-
* @deprecated __Deprecated.__ Use `fieldsets` instead.
|
|
11838
|
-
* This parameter will be removed on June 30, 2023.
|
|
11839
|
-
*
|
|
11840
|
-
* List of tag fields to be included in the response.
|
|
11841
|
-
* @replacedBy fieldsets
|
|
11842
|
-
* @targetRemovalDate 2024-06-30
|
|
11843
|
-
*/
|
|
11844
|
-
fieldsToInclude?: Field[];
|
|
11845
11806
|
/**
|
|
11846
11807
|
* List of additional tag fields to include in the response. For example, use the `URL` fieldset to retrieve the url field in
|
|
11847
11808
|
* the response in addition to the tag's base fields. Base fields don’t include any of the supported fieldset values. By default
|
|
@@ -11856,19 +11817,6 @@ interface GetTagResponse {
|
|
|
11856
11817
|
interface GetTagBySlugRequest {
|
|
11857
11818
|
/** Slug of the tag to retrieve. */
|
|
11858
11819
|
slug: string;
|
|
11859
|
-
/**
|
|
11860
|
-
* __Deprecated.__ Use `fieldsets` instead.
|
|
11861
|
-
* This parameter will be removed on June 30, 2023.
|
|
11862
|
-
*
|
|
11863
|
-
* List of tag fields to be included in the response.
|
|
11864
|
-
* @deprecated __Deprecated.__ Use `fieldsets` instead.
|
|
11865
|
-
* This parameter will be removed on June 30, 2023.
|
|
11866
|
-
*
|
|
11867
|
-
* List of tag fields to be included in the response.
|
|
11868
|
-
* @replacedBy fieldsets
|
|
11869
|
-
* @targetRemovalDate 2024-06-30
|
|
11870
|
-
*/
|
|
11871
|
-
fieldsToInclude?: Field[];
|
|
11872
11820
|
/**
|
|
11873
11821
|
* List of additional tag fields to include in the response. For example, use the `URL` fieldset to retrieve the url field in
|
|
11874
11822
|
* the response in addition to the tag's base fields. Base fields don’t include any of the supported fieldset values. By default
|