Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@wix/blog

Package Overview
Dependencies
Maintainers
21
Versions
228
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@wix/blog - npm Package Compare versions

Comparing version 1.0.200 to 1.0.201

10

build/cjs/src/blog-v3-draft.http.d.ts

@@ -7,4 +7,2 @@ import { RequestOptionsFactory } from '@wix/sdk-types';

* The draft post's `memberId` is required for third-party apps.
*
* This function is not a universal function and runs only on the backend.
*/

@@ -17,3 +15,3 @@ export declare function createDraftPost(payload: CreateDraftPostRequest): RequestOptionsFactory<CreateDraftPostResponse & CreateDraftPostResponseNonNullableFields>;

*
* List Draft Posts runs with these defaults, which you can override:
* List Deleted Draft Posts runs with these defaults, which you can override:
* - `editedDate` is sorted in descending order. In this case,`editedDate` implies the date the post was deleted.

@@ -33,4 +31,2 @@ * - `paging.limit` is `50`.

* The optional `permanent` field enables you to delete a post permanently, bypassing the trash bin. When a draft post is deleted this way, it can't be restored.
*
* This function is not a universal function and runs only on the backend.
*/

@@ -60,4 +56,2 @@ export declare function deleteDraftPost(payload: DeleteDraftPostRequest): RequestOptionsFactory<DeleteDraftPostResponse>;

* - `paging.offset` is `0`.
*
* This function is not a universal function and runs only on the backend.
*/

@@ -68,5 +62,3 @@ export declare function queryDraftPosts(payload: QueryDraftPostsRequest): RequestOptionsFactory<QueryDraftPostsResponse & QueryDraftPostsResponseNonNullableFields>;

* If the specified draft post was already published, the published post will be updated with the latest values from the draft post entity.
*
* This function is not a universal function and runs only on the backend.
*/
export declare function publishDraftPost(payload: PublishDraftPostRequest): RequestOptionsFactory<PublishDraftPostResponse & PublishDraftPostResponseNonNullableFields>;

@@ -213,4 +213,2 @@ "use strict";

* The draft post's `memberId` is required for third-party apps.
*
* This function is not a universal function and runs only on the backend.
*/

@@ -389,3 +387,3 @@ function createDraftPost(payload) {

*
* List Draft Posts runs with these defaults, which you can override:
* List Deleted Draft Posts runs with these defaults, which you can override:
* - `editedDate` is sorted in descending order. In this case,`editedDate` implies the date the post was deleted.

@@ -595,4 +593,2 @@ * - `paging.limit` is `50`.

* The optional `permanent` field enables you to delete a post permanently, bypassing the trash bin. When a draft post is deleted this way, it can't be restored.
*
* This function is not a universal function and runs only on the backend.
*/

@@ -824,4 +820,2 @@ function deleteDraftPost(payload) {

* - `paging.offset` is `0`.
*
* This function is not a universal function and runs only on the backend.
*/

@@ -882,4 +876,2 @@ function queryDraftPosts(payload) {

* If the specified draft post was already published, the published post will be updated with the latest values from the draft post entity.
*
* This function is not a universal function and runs only on the backend.
*/

@@ -886,0 +878,0 @@ function publishDraftPost(payload) {

@@ -547,4 +547,2 @@ "use strict";

* The draft post's `memberId` is required for third-party apps.
*
* This function is not a universal function and runs only on the backend.
* @param draftPost - Draft post to create.

@@ -713,3 +711,3 @@ * @public

*
* List Draft Posts runs with these defaults, which you can override:
* List Deleted Draft Posts runs with these defaults, which you can override:
* - `editedDate` is sorted in descending order. In this case,`editedDate` implies the date the post was deleted.

@@ -857,2 +855,3 @@ * - `paging.limit` is `50`.

* @param options - Options for updating a draft post.
* @param draftPost - Draft Post info.
* @permissionScope Manage Blog

@@ -941,4 +940,2 @@ * @permissionScope Manage Members

* The optional `permanent` field enables you to delete a post permanently, bypassing the trash bin. When a draft post is deleted this way, it can't be restored.
*
* This function is not a universal function and runs only on the backend.
* @param draftPostId - Draft post ID.

@@ -1132,3 +1129,2 @@ * @public

* @applicableIdentity APP
* @returns Pricing plan IDs. Only relevant if a post is assigned to a specific pricing plan.
*/

@@ -1255,4 +1251,2 @@ function getDeletedDraftPost(draftPostId) {

* - `paging.offset` is `0`.
*
* This function is not a universal function and runs only on the backend.
* @public

@@ -1327,4 +1321,2 @@ * @documentationMaturity preview

* If the specified draft post was already published, the published post will be updated with the latest values from the draft post entity.
*
* This function is not a universal function and runs only on the backend.
* @param draftPostId - Draft post ID.

@@ -1331,0 +1323,0 @@ * @public

@@ -7,4 +7,2 @@ import { RequestOptionsFactory } from '@wix/sdk-types';

* The draft post's `memberId` is required for third-party apps.
*
* This function is not a universal function and runs only on the backend.
*/

@@ -17,3 +15,3 @@ export declare function createDraftPost(payload: CreateDraftPostRequest): RequestOptionsFactory<CreateDraftPostResponse & CreateDraftPostResponseNonNullableFields>;

*
* List Draft Posts runs with these defaults, which you can override:
* List Deleted Draft Posts runs with these defaults, which you can override:
* - `editedDate` is sorted in descending order. In this case,`editedDate` implies the date the post was deleted.

@@ -33,4 +31,2 @@ * - `paging.limit` is `50`.

* The optional `permanent` field enables you to delete a post permanently, bypassing the trash bin. When a draft post is deleted this way, it can't be restored.
*
* This function is not a universal function and runs only on the backend.
*/

@@ -60,4 +56,2 @@ export declare function deleteDraftPost(payload: DeleteDraftPostRequest): RequestOptionsFactory<DeleteDraftPostResponse>;

* - `paging.offset` is `0`.
*
* This function is not a universal function and runs only on the backend.
*/

@@ -68,5 +62,3 @@ export declare function queryDraftPosts(payload: QueryDraftPostsRequest): RequestOptionsFactory<QueryDraftPostsResponse & QueryDraftPostsResponseNonNullableFields>;

* If the specified draft post was already published, the published post will be updated with the latest values from the draft post entity.
*
* This function is not a universal function and runs only on the backend.
*/
export declare function publishDraftPost(payload: PublishDraftPostRequest): RequestOptionsFactory<PublishDraftPostResponse & PublishDraftPostResponseNonNullableFields>;

@@ -210,4 +210,2 @@ import { toURLSearchParams } from '@wix/metro-runtime';

* The draft post's `memberId` is required for third-party apps.
*
* This function is not a universal function and runs only on the backend.
*/

@@ -384,3 +382,3 @@ export function createDraftPost(payload) {

*
* List Draft Posts runs with these defaults, which you can override:
* List Deleted Draft Posts runs with these defaults, which you can override:
* - `editedDate` is sorted in descending order. In this case,`editedDate` implies the date the post was deleted.

@@ -587,4 +585,2 @@ * - `paging.limit` is `50`.

* The optional `permanent` field enables you to delete a post permanently, bypassing the trash bin. When a draft post is deleted this way, it can't be restored.
*
* This function is not a universal function and runs only on the backend.
*/

@@ -811,4 +807,2 @@ export function deleteDraftPost(payload) {

* - `paging.offset` is `0`.
*
* This function is not a universal function and runs only on the backend.
*/

@@ -868,4 +862,2 @@ export function queryDraftPosts(payload) {

* If the specified draft post was already published, the published post will be updated with the latest values from the draft post entity.
*
* This function is not a universal function and runs only on the backend.
*/

@@ -872,0 +864,0 @@ export function publishDraftPost(payload) {

@@ -525,4 +525,2 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {

* The draft post's `memberId` is required for third-party apps.
*
* This function is not a universal function and runs only on the backend.
* @param draftPost - Draft post to create.

@@ -689,3 +687,3 @@ * @public

*
* List Draft Posts runs with these defaults, which you can override:
* List Deleted Draft Posts runs with these defaults, which you can override:
* - `editedDate` is sorted in descending order. In this case,`editedDate` implies the date the post was deleted.

@@ -831,2 +829,3 @@ * - `paging.limit` is `50`.

* @param options - Options for updating a draft post.
* @param draftPost - Draft Post info.
* @permissionScope Manage Blog

@@ -914,4 +913,2 @@ * @permissionScope Manage Members

* The optional `permanent` field enables you to delete a post permanently, bypassing the trash bin. When a draft post is deleted this way, it can't be restored.
*
* This function is not a universal function and runs only on the backend.
* @param draftPostId - Draft post ID.

@@ -1102,3 +1099,2 @@ * @public

* @applicableIdentity APP
* @returns Pricing plan IDs. Only relevant if a post is assigned to a specific pricing plan.
*/

@@ -1223,4 +1219,2 @@ export function getDeletedDraftPost(draftPostId) {

* - `paging.offset` is `0`.
*
* This function is not a universal function and runs only on the backend.
* @public

@@ -1294,4 +1288,2 @@ * @documentationMaturity preview

* If the specified draft post was already published, the published post will be updated with the latest values from the draft post entity.
*
* This function is not a universal function and runs only on the backend.
* @param draftPostId - Draft post ID.

@@ -1298,0 +1290,0 @@ * @public

4

package.json
{
"name": "@wix/blog",
"version": "1.0.200",
"version": "1.0.201",
"publishConfig": {

@@ -37,3 +37,3 @@ "registry": "https://registry.npmjs.org/",

},
"falconPackageHash": "941b323f9fa0ea4495250b5c7afb6d0718661d37ab2ce8accf7da5a3"
"falconPackageHash": "eb2d1888c71819a229b00398462764fd865085cc46b77c6defb26a49"
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc