@wix/blog 1.0.203 → 1.0.204
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/src/blog-v3-draft.http.d.ts +3 -3
- package/build/cjs/src/blog-v3-draft.http.js +3 -3
- package/build/cjs/src/blog-v3-draft.universal.d.ts +3 -3
- package/build/cjs/src/blog-v3-draft.universal.js +3 -3
- package/build/es/src/blog-v3-draft.http.d.ts +3 -3
- package/build/es/src/blog-v3-draft.http.js +3 -3
- package/build/es/src/blog-v3-draft.universal.d.ts +3 -3
- package/build/es/src/blog-v3-draft.universal.js +3 -3
- package/package.json +2 -2
|
@@ -35,7 +35,7 @@ export declare function deleteDraftPost(payload: DeleteDraftPostRequest): Reques
|
|
|
35
35
|
/**
|
|
36
36
|
* Permanently deletes a draft post by the provided ID from the trash bin.
|
|
37
37
|
*
|
|
38
|
-
*
|
|
38
|
+
* Uses the provided `draftPostId` to permanently delete a draft post from the trash bin. This action is permanent and cannot be reversed.
|
|
39
39
|
*/
|
|
40
40
|
export declare function removeFromTrashBin(payload: RemoveFromTrashBinRequest): RequestOptionsFactory<RemoveFromTrashBinResponse>;
|
|
41
41
|
/**
|
|
@@ -50,13 +50,13 @@ export declare function listDraftPosts(payload: ListDraftPostsRequest): RequestO
|
|
|
50
50
|
/**
|
|
51
51
|
* Gets a deleted draft post from the trash bin by the provided ID.
|
|
52
52
|
*
|
|
53
|
-
*
|
|
53
|
+
* Uses the provided `draftPostId` to retrieve a previously deleted draft post from the trash bin.
|
|
54
54
|
*/
|
|
55
55
|
export declare function getDeletedDraftPost(payload: GetDeletedDraftPostRequest): RequestOptionsFactory<GetDeletedDraftPostResponse & GetDeletedDraftPostResponseNonNullableFields>;
|
|
56
56
|
/**
|
|
57
57
|
* Restores a deleted draft post from the trash bin by the provided ID.
|
|
58
58
|
*
|
|
59
|
-
*
|
|
59
|
+
* Uses the `draftPostId` to restore a deleted draft post from the trash bin.
|
|
60
60
|
*/
|
|
61
61
|
export declare function restoreFromTrashBin(payload: RestoreFromTrashBinRequest): RequestOptionsFactory<RestoreFromTrashBinResponse & RestoreFromTrashBinResponseNonNullableFields>;
|
|
62
62
|
/**
|
|
@@ -619,7 +619,7 @@ exports.deleteDraftPost = deleteDraftPost;
|
|
|
619
619
|
/**
|
|
620
620
|
* Permanently deletes a draft post by the provided ID from the trash bin.
|
|
621
621
|
*
|
|
622
|
-
*
|
|
622
|
+
* Uses the provided `draftPostId` to permanently delete a draft post from the trash bin. This action is permanent and cannot be reversed.
|
|
623
623
|
*/
|
|
624
624
|
function removeFromTrashBin(payload) {
|
|
625
625
|
const { toJSON: toReq, fromJSON: fromReq } = (0, ambassador_1.serializer)(_removeFromTrashBinRequest, {});
|
|
@@ -706,7 +706,7 @@ exports.listDraftPosts = listDraftPosts;
|
|
|
706
706
|
/**
|
|
707
707
|
* Gets a deleted draft post from the trash bin by the provided ID.
|
|
708
708
|
*
|
|
709
|
-
*
|
|
709
|
+
* Uses the provided `draftPostId` to retrieve a previously deleted draft post from the trash bin.
|
|
710
710
|
*/
|
|
711
711
|
function getDeletedDraftPost(payload) {
|
|
712
712
|
const { toJSON: toReq, fromJSON: fromReq } = (0, ambassador_1.serializer)(_getDeletedDraftPostRequest, {});
|
|
@@ -766,7 +766,7 @@ exports.getDeletedDraftPost = getDeletedDraftPost;
|
|
|
766
766
|
/**
|
|
767
767
|
* Restores a deleted draft post from the trash bin by the provided ID.
|
|
768
768
|
*
|
|
769
|
-
*
|
|
769
|
+
* Uses the `draftPostId` to restore a deleted draft post from the trash bin.
|
|
770
770
|
*/
|
|
771
771
|
function restoreFromTrashBin(payload) {
|
|
772
772
|
const { toJSON: toReq, fromJSON: fromReq } = (0, ambassador_1.serializer)(_restoreFromTrashBinRequest, {});
|
|
@@ -7426,7 +7426,7 @@ export interface DeleteDraftPostOptions {
|
|
|
7426
7426
|
/**
|
|
7427
7427
|
* Permanently deletes a draft post by the provided ID from the trash bin.
|
|
7428
7428
|
*
|
|
7429
|
-
*
|
|
7429
|
+
* Uses the provided `draftPostId` to permanently delete a draft post from the trash bin. This action is permanent and cannot be reversed.
|
|
7430
7430
|
* @param draftPostId - Draft post ID.
|
|
7431
7431
|
* @public
|
|
7432
7432
|
* @documentationMaturity preview
|
|
@@ -7485,7 +7485,7 @@ export interface ListDraftPostsOptions {
|
|
|
7485
7485
|
/**
|
|
7486
7486
|
* Gets a deleted draft post from the trash bin by the provided ID.
|
|
7487
7487
|
*
|
|
7488
|
-
*
|
|
7488
|
+
* Uses the provided `draftPostId` to retrieve a previously deleted draft post from the trash bin.
|
|
7489
7489
|
* @param draftPostId - Draft post ID.
|
|
7490
7490
|
* @public
|
|
7491
7491
|
* @documentationMaturity preview
|
|
@@ -7497,7 +7497,7 @@ export declare function getDeletedDraftPost(draftPostId: string): Promise<GetDel
|
|
|
7497
7497
|
/**
|
|
7498
7498
|
* Restores a deleted draft post from the trash bin by the provided ID.
|
|
7499
7499
|
*
|
|
7500
|
-
*
|
|
7500
|
+
* Uses the `draftPostId` to restore a deleted draft post from the trash bin.
|
|
7501
7501
|
* @param draftPostId - Draft post ID.
|
|
7502
7502
|
* @public
|
|
7503
7503
|
* @documentationMaturity preview
|
|
@@ -995,7 +995,7 @@ exports.deleteDraftPost = deleteDraftPost;
|
|
|
995
995
|
/**
|
|
996
996
|
* Permanently deletes a draft post by the provided ID from the trash bin.
|
|
997
997
|
*
|
|
998
|
-
*
|
|
998
|
+
* Uses the provided `draftPostId` to permanently delete a draft post from the trash bin. This action is permanent and cannot be reversed.
|
|
999
999
|
* @param draftPostId - Draft post ID.
|
|
1000
1000
|
* @public
|
|
1001
1001
|
* @documentationMaturity preview
|
|
@@ -1121,7 +1121,7 @@ exports.listDraftPosts = listDraftPosts;
|
|
|
1121
1121
|
/**
|
|
1122
1122
|
* Gets a deleted draft post from the trash bin by the provided ID.
|
|
1123
1123
|
*
|
|
1124
|
-
*
|
|
1124
|
+
* Uses the provided `draftPostId` to retrieve a previously deleted draft post from the trash bin.
|
|
1125
1125
|
* @param draftPostId - Draft post ID.
|
|
1126
1126
|
* @public
|
|
1127
1127
|
* @documentationMaturity preview
|
|
@@ -1184,7 +1184,7 @@ exports.getDeletedDraftPost = getDeletedDraftPost;
|
|
|
1184
1184
|
/**
|
|
1185
1185
|
* Restores a deleted draft post from the trash bin by the provided ID.
|
|
1186
1186
|
*
|
|
1187
|
-
*
|
|
1187
|
+
* Uses the `draftPostId` to restore a deleted draft post from the trash bin.
|
|
1188
1188
|
* @param draftPostId - Draft post ID.
|
|
1189
1189
|
* @public
|
|
1190
1190
|
* @documentationMaturity preview
|
|
@@ -35,7 +35,7 @@ export declare function deleteDraftPost(payload: DeleteDraftPostRequest): Reques
|
|
|
35
35
|
/**
|
|
36
36
|
* Permanently deletes a draft post by the provided ID from the trash bin.
|
|
37
37
|
*
|
|
38
|
-
*
|
|
38
|
+
* Uses the provided `draftPostId` to permanently delete a draft post from the trash bin. This action is permanent and cannot be reversed.
|
|
39
39
|
*/
|
|
40
40
|
export declare function removeFromTrashBin(payload: RemoveFromTrashBinRequest): RequestOptionsFactory<RemoveFromTrashBinResponse>;
|
|
41
41
|
/**
|
|
@@ -50,13 +50,13 @@ export declare function listDraftPosts(payload: ListDraftPostsRequest): RequestO
|
|
|
50
50
|
/**
|
|
51
51
|
* Gets a deleted draft post from the trash bin by the provided ID.
|
|
52
52
|
*
|
|
53
|
-
*
|
|
53
|
+
* Uses the provided `draftPostId` to retrieve a previously deleted draft post from the trash bin.
|
|
54
54
|
*/
|
|
55
55
|
export declare function getDeletedDraftPost(payload: GetDeletedDraftPostRequest): RequestOptionsFactory<GetDeletedDraftPostResponse & GetDeletedDraftPostResponseNonNullableFields>;
|
|
56
56
|
/**
|
|
57
57
|
* Restores a deleted draft post from the trash bin by the provided ID.
|
|
58
58
|
*
|
|
59
|
-
*
|
|
59
|
+
* Uses the `draftPostId` to restore a deleted draft post from the trash bin.
|
|
60
60
|
*/
|
|
61
61
|
export declare function restoreFromTrashBin(payload: RestoreFromTrashBinRequest): RequestOptionsFactory<RestoreFromTrashBinResponse & RestoreFromTrashBinResponseNonNullableFields>;
|
|
62
62
|
/**
|
|
@@ -610,7 +610,7 @@ export function deleteDraftPost(payload) {
|
|
|
610
610
|
/**
|
|
611
611
|
* Permanently deletes a draft post by the provided ID from the trash bin.
|
|
612
612
|
*
|
|
613
|
-
*
|
|
613
|
+
* Uses the provided `draftPostId` to permanently delete a draft post from the trash bin. This action is permanent and cannot be reversed.
|
|
614
614
|
*/
|
|
615
615
|
export function removeFromTrashBin(payload) {
|
|
616
616
|
const { toJSON: toReq, fromJSON: fromReq } = serializer(_removeFromTrashBinRequest, {});
|
|
@@ -695,7 +695,7 @@ export function listDraftPosts(payload) {
|
|
|
695
695
|
/**
|
|
696
696
|
* Gets a deleted draft post from the trash bin by the provided ID.
|
|
697
697
|
*
|
|
698
|
-
*
|
|
698
|
+
* Uses the provided `draftPostId` to retrieve a previously deleted draft post from the trash bin.
|
|
699
699
|
*/
|
|
700
700
|
export function getDeletedDraftPost(payload) {
|
|
701
701
|
const { toJSON: toReq, fromJSON: fromReq } = serializer(_getDeletedDraftPostRequest, {});
|
|
@@ -754,7 +754,7 @@ export function getDeletedDraftPost(payload) {
|
|
|
754
754
|
/**
|
|
755
755
|
* Restores a deleted draft post from the trash bin by the provided ID.
|
|
756
756
|
*
|
|
757
|
-
*
|
|
757
|
+
* Uses the `draftPostId` to restore a deleted draft post from the trash bin.
|
|
758
758
|
*/
|
|
759
759
|
export function restoreFromTrashBin(payload) {
|
|
760
760
|
const { toJSON: toReq, fromJSON: fromReq } = serializer(_restoreFromTrashBinRequest, {});
|
|
@@ -7426,7 +7426,7 @@ export interface DeleteDraftPostOptions {
|
|
|
7426
7426
|
/**
|
|
7427
7427
|
* Permanently deletes a draft post by the provided ID from the trash bin.
|
|
7428
7428
|
*
|
|
7429
|
-
*
|
|
7429
|
+
* Uses the provided `draftPostId` to permanently delete a draft post from the trash bin. This action is permanent and cannot be reversed.
|
|
7430
7430
|
* @param draftPostId - Draft post ID.
|
|
7431
7431
|
* @public
|
|
7432
7432
|
* @documentationMaturity preview
|
|
@@ -7485,7 +7485,7 @@ export interface ListDraftPostsOptions {
|
|
|
7485
7485
|
/**
|
|
7486
7486
|
* Gets a deleted draft post from the trash bin by the provided ID.
|
|
7487
7487
|
*
|
|
7488
|
-
*
|
|
7488
|
+
* Uses the provided `draftPostId` to retrieve a previously deleted draft post from the trash bin.
|
|
7489
7489
|
* @param draftPostId - Draft post ID.
|
|
7490
7490
|
* @public
|
|
7491
7491
|
* @documentationMaturity preview
|
|
@@ -7497,7 +7497,7 @@ export declare function getDeletedDraftPost(draftPostId: string): Promise<GetDel
|
|
|
7497
7497
|
/**
|
|
7498
7498
|
* Restores a deleted draft post from the trash bin by the provided ID.
|
|
7499
7499
|
*
|
|
7500
|
-
*
|
|
7500
|
+
* Uses the `draftPostId` to restore a deleted draft post from the trash bin.
|
|
7501
7501
|
* @param draftPostId - Draft post ID.
|
|
7502
7502
|
* @public
|
|
7503
7503
|
* @documentationMaturity preview
|
|
@@ -967,7 +967,7 @@ export function deleteDraftPost(draftPostId, options) {
|
|
|
967
967
|
/**
|
|
968
968
|
* Permanently deletes a draft post by the provided ID from the trash bin.
|
|
969
969
|
*
|
|
970
|
-
*
|
|
970
|
+
* Uses the provided `draftPostId` to permanently delete a draft post from the trash bin. This action is permanent and cannot be reversed.
|
|
971
971
|
* @param draftPostId - Draft post ID.
|
|
972
972
|
* @public
|
|
973
973
|
* @documentationMaturity preview
|
|
@@ -1091,7 +1091,7 @@ export function listDraftPosts(options) {
|
|
|
1091
1091
|
/**
|
|
1092
1092
|
* Gets a deleted draft post from the trash bin by the provided ID.
|
|
1093
1093
|
*
|
|
1094
|
-
*
|
|
1094
|
+
* Uses the provided `draftPostId` to retrieve a previously deleted draft post from the trash bin.
|
|
1095
1095
|
* @param draftPostId - Draft post ID.
|
|
1096
1096
|
* @public
|
|
1097
1097
|
* @documentationMaturity preview
|
|
@@ -1153,7 +1153,7 @@ export function getDeletedDraftPost(draftPostId) {
|
|
|
1153
1153
|
/**
|
|
1154
1154
|
* Restores a deleted draft post from the trash bin by the provided ID.
|
|
1155
1155
|
*
|
|
1156
|
-
*
|
|
1156
|
+
* Uses the `draftPostId` to restore a deleted draft post from the trash bin.
|
|
1157
1157
|
* @param draftPostId - Draft post ID.
|
|
1158
1158
|
* @public
|
|
1159
1159
|
* @documentationMaturity preview
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/blog",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.204",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -34,5 +34,5 @@
|
|
|
34
34
|
"groupId": "com.wixpress.public-sdk-autogen"
|
|
35
35
|
}
|
|
36
36
|
},
|
|
37
|
-
"falconPackageHash": "
|
|
37
|
+
"falconPackageHash": "03a59a6ec1110ac16326d1d4ed430bd0cbb284f76fb01e2aba744d32"
|
|
38
38
|
}
|