You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* The Delete entries and assets in bulk request allows you to delete multiple entries and assets at the same time.
226
+
* @memberof BulkOperation
227
+
* @func update
228
+
* @returns {Promise<String>} Success message
229
+
* @param {Boolean} updateBody - Set this with details specifing the content type UIDs, entry UIDs or asset UIDs, and locales of which the entries or assets you want to update.
230
+
* @example
231
+
* import * as contentstack from '@contentstack/management'
Copy file name to clipboardExpand all lines: lib/stack/index.js
+25Lines changed: 25 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -17,6 +17,7 @@ import { BulkOperation } from './bulkOperation'
17
17
import{Label}from'./label'
18
18
import{Branch}from'./branch'
19
19
import{BranchAlias}from'./branchAlias'
20
+
import{AuditLog}from'./auditlog'
20
21
// import { format } from 'util'
21
22
/**
22
23
* A stack is a space that stores the content of a project (a web or mobile property). Within a stack, you can create content structures, content entries, users, etc. related to the project. Read more about <a href='https://www.contentstack.com/docs/guide/stack'>Stacks</a>.
@@ -718,6 +719,30 @@ export function Stack (http, data) {
* @description Audit log displays a record of all the activities performed in a stack and helps you keep a track of all published items, updates, deletes, and current status of the existing content.
725
+
* @param {String}
726
+
* @returns {AuditLog}
727
+
*
728
+
* @example
729
+
* import * as contentstack from '@contentstack/management'
0 commit comments