@contentstack/management
Advanced tools
Comparing version
# Changelog | ||
## [v1.2.0](https://github.com/contentstack/contentstack-management-javascript/tree/v1.2.0) (2021-03-12) | ||
- Bug Fix | ||
- Release Items issue for API key resolved | ||
- Enhanchment | ||
- Request concurrency added in SDK | ||
- New Feature | ||
- Workflow module support added | ||
## [v1.1.2](https://github.com/contentstack/contentstack-management-javascript/tree/v1.1.2) (2021-01-07) | ||
@@ -4,0 +11,0 @@ - Bug Fix |
@@ -47,2 +47,7 @@ import _defineProperty from "@babel/runtime/helpers/defineProperty"; | ||
* | ||
* @prop {number=} params.maxRequests - Optional maximum number of requests SDK should send concurrently. Default is 5 concurrent request. | ||
* @example //Set the `maxRequests` to 5 | ||
* import * as contentstack from '@contentstack/management' | ||
* const client = contentstack.client({ maxRequests: 5 }) | ||
* | ||
* @prop {boolean=} params.retryOnError - Optional boolean for retry on failuer. Default is true | ||
@@ -123,3 +128,3 @@ * @example //Set the `retryOnError` to false | ||
}; | ||
var sdkAgent = "".concat(packages.name, "-javascript/").concat(packages.version); | ||
var sdkAgent = "contentstack-management-javascript/".concat(packages.version); | ||
var userAgentHeader = getUserAgent(sdkAgent, params.application, params.integration, params.feature); | ||
@@ -126,0 +131,0 @@ var requiredHeaders = { |
@@ -196,4 +196,5 @@ import _defineProperty from "@babel/runtime/helpers/defineProperty"; | ||
stack: stack, | ||
organization: organization | ||
organization: organization, | ||
axiosInstance: http | ||
}; | ||
} |
@@ -11,4 +11,4 @@ import _slicedToArray from "@babel/runtime/helpers/slicedToArray"; | ||
import axios from 'axios'; | ||
import contentstackRetry from './contentstack-retry'; | ||
import { isHost } from './Util'; | ||
import { ConcurrencyQueue } from './concurrency-queue'; | ||
export default function contentstackHttpClient(options) { | ||
@@ -94,2 +94,3 @@ var defaultConfig = { | ||
params.query = query; | ||
return qs; | ||
@@ -101,4 +102,7 @@ } | ||
instance.httpClientParams = options; | ||
contentstackRetry(instance, axiosOptions, config.retyLimit, config.retryDelay); | ||
instance.concurrencyQueue = new ConcurrencyQueue({ | ||
axios: instance, | ||
config: config | ||
}); | ||
return instance; | ||
} |
@@ -296,2 +296,3 @@ import _regeneratorRuntime from "@babel/runtime/regenerator"; | ||
updateData, | ||
json, | ||
response, | ||
@@ -305,5 +306,17 @@ _args7 = arguments; | ||
updateData = {}; | ||
updateData[type] = cloneDeep(this); | ||
_context7.prev = 3; | ||
_context7.next = 6; | ||
json = cloneDeep(this); | ||
delete json.stackHeaders; | ||
delete json.urlPath; | ||
delete json.uid; | ||
delete json.org_uid; | ||
delete json.api_key; | ||
delete json.created_at; | ||
delete json.created_by; | ||
delete json.deleted_at; | ||
delete json.updated_at; | ||
delete json.updated_by; | ||
delete json.updated_at; | ||
updateData[type] = json; | ||
_context7.prev = 15; | ||
_context7.next = 18; | ||
return http.put(this.urlPath, updateData, { | ||
@@ -314,25 +327,25 @@ headers: _objectSpread({}, cloneDeep(this.stackHeaders)), | ||
case 6: | ||
case 18: | ||
response = _context7.sent; | ||
if (!response.data) { | ||
_context7.next = 11; | ||
_context7.next = 23; | ||
break; | ||
} | ||
return _context7.abrupt("return", new this.constructor(http, parseData(response, this.stackHeaders, this.contentType_uid))); | ||
return _context7.abrupt("return", new this.constructor(http, parseData(response, this.stackHeaders, this.content_type_uid))); | ||
case 11: | ||
case 23: | ||
throw error(response); | ||
case 12: | ||
_context7.next = 17; | ||
case 24: | ||
_context7.next = 29; | ||
break; | ||
case 14: | ||
_context7.prev = 14; | ||
_context7.t0 = _context7["catch"](3); | ||
case 26: | ||
_context7.prev = 26; | ||
_context7.t0 = _context7["catch"](15); | ||
throw error(_context7.t0); | ||
case 17: | ||
case 29: | ||
case "end": | ||
@@ -342,3 +355,3 @@ return _context7.stop(); | ||
} | ||
}, _callee7, this, [[3, 14]]); | ||
}, _callee7, this, [[15, 26]]); | ||
})); | ||
@@ -427,3 +440,3 @@ }; | ||
return _context9.abrupt("return", new this.constructor(http, parseData(response, this.stackHeaders))); | ||
return _context9.abrupt("return", new this.constructor(http, parseData(response, this.stackHeaders, this.content_type_uid))); | ||
@@ -458,3 +471,3 @@ case 11: | ||
if (contentTypeUID) { | ||
data.content_type = contentTypeUID; | ||
data.content_type_uid = contentTypeUID; | ||
} | ||
@@ -461,0 +474,0 @@ |
@@ -13,4 +13,4 @@ import _defineProperty from "@babel/runtime/helpers/defineProperty"; | ||
import ContentstackCollection from '../contentstackCollection'; | ||
import { RoleCollection } from '../stack/roles/index'; | ||
import { StackCollection } from '../stack/index'; | ||
import { RoleCollection } from '../stack/roles'; | ||
import { StackCollection } from '../stack'; | ||
import { UserCollection } from '../user'; | ||
@@ -54,6 +54,6 @@ /** | ||
* @func stacks | ||
* @param {Int} limit The limit parameter will return a specific number of roles in the output. | ||
* @param {Int} skip The skip parameter will skip a specific number of roles in the output. | ||
* @param {String} asc When fetching roles, you can sort them in the ascending order with respect to the value of a specific field in the response body. | ||
* @param {String} desc When fetching roles, you can sort them in the decending order with respect to the value of a specific field in the response body. | ||
* @param {Int} limit The limit parameter will return a specific number of stacks in the output. | ||
* @param {Int} skip The skip parameter will skip a specific number of stacks in the output. | ||
* @param {String} asc When fetching stacks, you can sort them in the ascending order with respect to the value of a specific field in the response body. | ||
* @param {String} desc When fetching stacks, you can sort them in the decending order with respect to the value of a specific field in the response body. | ||
* @param {Boolean} include_count To retrieve the count of stack. | ||
@@ -438,8 +438,8 @@ * @param {String} typeahead The type head contains value to be included in search. | ||
* @func fetchAll | ||
* @param {Int} limit The limit parameter will return a specific number of roles in the output. | ||
* @param {Int} skip The skip parameter will skip a specific number of roles in the output. | ||
* @param {String} asc When fetching roles, you can sort them in the ascending order with respect to the value of a specific field in the response body. | ||
* @param {String} desc When fetching roles, you can sort them in the decending order with respect to the value of a specific field in the response body. | ||
* @param {Boolean}include_count To retrieve the count of roles. | ||
* @param {String} typeahead The type head contains value to be included in search. | ||
* @param {Int} limit TThe ‘limit’ parameter will return a specific number of organizations in the output. | ||
* @param {Int} skip The ‘skip’ parameter will skip a specific number of organizations in the output. | ||
* @param {String} asc The ‘asc’ parameter allows you to sort the list of organizations in the ascending order with respect to the value of a specific field. | ||
* @param {String} desc The ‘desc’ parameter allows you to sort the list of Organizations in the descending order with respect to the value of a specific field. | ||
* @param {Boolean}include_count The ‘include_count’ parameter returns the total number of organizations related to the user. | ||
* @param {String} typeahead The typeahead parameter is a type of filter that allows you to perform a name-based search on all organizations based on the value provided. | ||
* @returns {ContentstackCollection} Result collection of content of specified module. | ||
@@ -446,0 +446,0 @@ * @example |
@@ -79,3 +79,3 @@ import cloneDeep from 'lodash/cloneDeep'; | ||
* const asset = {name: 'My New contentType'} | ||
* client.stack().asset().folders().create({ asset }) | ||
* client.stack().asset().folder().create({ asset }) | ||
* .then((folder) => console.log(folder)) | ||
@@ -82,0 +82,0 @@ */ |
@@ -138,2 +138,84 @@ import _regeneratorRuntime from "@babel/runtime/regenerator"; | ||
this.unpublish = unpublish(http, 'entry'); | ||
/** | ||
* @description This multipurpose request allows you to either send a publish request or accept/reject a received publish request. | ||
* @memberof Entry | ||
* @func publishRequest | ||
* @returns {Promise<Object>} Response Object. | ||
* @param {Object} publishing_rule Details for the publish request | ||
* @param {String} locale Enter the code of the locale that the entry belongs to. | ||
* @example | ||
* import * as contentstack from '@contentstack/management' | ||
* const client = contentstack.client() | ||
* | ||
* const publishing_rule = { | ||
* "uid": "blt9b9253297f117e84", | ||
* "action": "publish", //(‘publish’, ‘unpublish’, or ’both’) | ||
* "status": 1, //(this could be ‘0’ for Approval Requested, ‘1’ for ‘Approval Accepted’, and ‘-1’ for ‘Approval Rejected’), | ||
* "notify": false, | ||
* "comment": "Please review this." | ||
* } | ||
* client.stack({ api_key: 'api_key'}).contentType('content_type_uid').entry('uid').publishRequest({ publishing_rule, locale: 'en-us'}) | ||
* .then((response) => console.log(response.notice)) | ||
*/ | ||
this.publishRequest = /*#__PURE__*/function () { | ||
var _ref2 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee(_ref) { | ||
var publishing_rule, locale, publishDetails, headers, response; | ||
return _regeneratorRuntime.wrap(function _callee$(_context) { | ||
while (1) { | ||
switch (_context.prev = _context.next) { | ||
case 0: | ||
publishing_rule = _ref.publishing_rule, locale = _ref.locale; | ||
publishDetails = { | ||
workflow: { | ||
publishing_rule: publishing_rule | ||
} | ||
}; | ||
headers = {}; | ||
if (_this.stackHeaders) { | ||
headers.headers = _this.stackHeaders; | ||
} | ||
headers.params = { | ||
locale: locale | ||
}; | ||
_context.prev = 5; | ||
_context.next = 8; | ||
return http.post("".concat(_this.urlPath, "/workflow"), publishDetails, headers); | ||
case 8: | ||
response = _context.sent; | ||
if (!response.data) { | ||
_context.next = 13; | ||
break; | ||
} | ||
return _context.abrupt("return", response.data); | ||
case 13: | ||
throw error(response); | ||
case 14: | ||
_context.next = 19; | ||
break; | ||
case 16: | ||
_context.prev = 16; | ||
_context.t0 = _context["catch"](5); | ||
throw error(_context.t0); | ||
case 19: | ||
case "end": | ||
return _context.stop(); | ||
} | ||
} | ||
}, _callee, null, [[5, 16]]); | ||
})); | ||
return function (_x) { | ||
return _ref2.apply(this, arguments); | ||
}; | ||
}(); | ||
} else { | ||
@@ -205,10 +287,10 @@ /** | ||
this["import"] = /*#__PURE__*/function () { | ||
var _ref2 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee(_ref) { | ||
var entry, _ref$locale, locale, _ref$overwrite, overwrite, importUrl, response; | ||
var _ref4 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee2(_ref3) { | ||
var entry, _ref3$locale, locale, _ref3$overwrite, overwrite, importUrl, response; | ||
return _regeneratorRuntime.wrap(function _callee$(_context) { | ||
return _regeneratorRuntime.wrap(function _callee2$(_context2) { | ||
while (1) { | ||
switch (_context.prev = _context.next) { | ||
switch (_context2.prev = _context2.next) { | ||
case 0: | ||
entry = _ref.entry, _ref$locale = _ref.locale, locale = _ref$locale === void 0 ? null : _ref$locale, _ref$overwrite = _ref.overwrite, overwrite = _ref$overwrite === void 0 ? false : _ref$overwrite; | ||
entry = _ref3.entry, _ref3$locale = _ref3.locale, locale = _ref3$locale === void 0 ? null : _ref3$locale, _ref3$overwrite = _ref3.overwrite, overwrite = _ref3$overwrite === void 0 ? false : _ref3$overwrite; | ||
importUrl = "".concat(_this.urlPath, "/import?overwrite=").concat(overwrite); | ||
@@ -220,4 +302,4 @@ | ||
_context.prev = 3; | ||
_context.next = 6; | ||
_context2.prev = 3; | ||
_context2.next = 6; | ||
return upload({ | ||
@@ -231,10 +313,10 @@ http: http, | ||
case 6: | ||
response = _context.sent; | ||
response = _context2.sent; | ||
if (!response.data) { | ||
_context.next = 11; | ||
_context2.next = 11; | ||
break; | ||
} | ||
return _context.abrupt("return", new _this.constructor(http, parseData(response, _this.stackHeaders))); | ||
return _context2.abrupt("return", new _this.constructor(http, parseData(response, _this.stackHeaders))); | ||
@@ -245,20 +327,20 @@ case 11: | ||
case 12: | ||
_context.next = 17; | ||
_context2.next = 17; | ||
break; | ||
case 14: | ||
_context.prev = 14; | ||
_context.t0 = _context["catch"](3); | ||
throw error(_context.t0); | ||
_context2.prev = 14; | ||
_context2.t0 = _context2["catch"](3); | ||
throw error(_context2.t0); | ||
case 17: | ||
case "end": | ||
return _context.stop(); | ||
return _context2.stop(); | ||
} | ||
} | ||
}, _callee, null, [[3, 14]]); | ||
}, _callee2, null, [[3, 14]]); | ||
})); | ||
return function (_x) { | ||
return _ref2.apply(this, arguments); | ||
return function (_x2) { | ||
return _ref4.apply(this, arguments); | ||
}; | ||
@@ -265,0 +347,0 @@ }(); |
@@ -25,3 +25,4 @@ import _regeneratorRuntime from "@babel/runtime/regenerator"; | ||
/** | ||
* @description The Update ContentType call lets you update the name and description of an existing ContentType. | ||
* @description The Update ContentType call lets you update the name and description of an existing ContentType. | ||
* You can also update the JSON schema of a content type, including fields and different features associated with the content type. | ||
* @memberof ContentType | ||
@@ -28,0 +29,0 @@ * @func update |
@@ -22,2 +22,3 @@ import _regeneratorRuntime from "@babel/runtime/regenerator"; | ||
import { Webhook } from './webhook'; | ||
import { Workflow } from './workflow'; | ||
import { Release } from './release'; | ||
@@ -300,2 +301,32 @@ import { BulkOperation } from './bulkOperation'; | ||
/** | ||
* @description Workflow is a tool that allows you to streamline the process of content creation and publishing, and lets you manage the content lifecycle of your project smoothly. | ||
* @param {String} workflowUid The UID of the Workflow you want to get details. | ||
* @returns {Workflow} Instace of Workflow. | ||
* @example | ||
* import * as contentstack from '@contentstack/management' | ||
* const client = contentstack.client() | ||
* | ||
* client.stack({ api_key: 'api_key'}).workflow().create() | ||
* .then((workflow) => console.log(workflow)) | ||
* | ||
* client.stack({ api_key: 'api_key'}).workflow('workflow_uid').fetch() | ||
* .then((workflow) => console.log(workflow)) | ||
*/ | ||
this.workflow = function () { | ||
var workflowUid = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null; | ||
var data = { | ||
stackHeaders: _this.stackHeaders | ||
}; | ||
if (workflowUid) { | ||
data.workflow = { | ||
uid: workflowUid | ||
}; | ||
} | ||
return new Workflow(http, data); | ||
}; | ||
/** | ||
* @description Webhooks allow you to specify a URL to which you would like Contentstack to post data when an event happens. | ||
@@ -302,0 +333,0 @@ * @param {String} webhookUid The UID of the Webhook you want to get details. |
@@ -124,3 +124,4 @@ import _regeneratorRuntime from "@babel/runtime/regenerator"; | ||
return new ReleaseItem(http, { | ||
releaseUid: _this.uid | ||
releaseUid: _this.uid, | ||
stackHeaders: _this.stackHeaders | ||
}); | ||
@@ -127,0 +128,0 @@ }; |
@@ -11,2 +11,3 @@ import _regeneratorRuntime from "@babel/runtime/regenerator"; | ||
import error from '../../../core/contentstackError'; | ||
import ContentstackCollection from '../../../contentstackCollection'; | ||
import { Release } from '..'; | ||
@@ -24,222 +25,188 @@ /** | ||
if (data.item) { | ||
Object.assign(this, cloneDeep(data.item)); | ||
} | ||
if (data.releaseUid) { | ||
this.urlPath = "releases/".concat(data.releaseUid, "/items"); | ||
/** | ||
* @description The Delete method request deletes one or more items (entries and/or assets) from a specific Release. | ||
* @memberof ReleaseItem | ||
* @func delete | ||
* @param {Object} param.items Add multiple items to a Release | ||
* @param {Object} param.items Add multiple items to a Release | ||
* @returns {Object} Response Object. | ||
* @example | ||
* import * as contentstack from '@contentstack/management' | ||
* const client = contentstack.client() | ||
* // To delete all the items from release | ||
* client.stack({ api_key: 'api_key'}).release('release_uid').delete() | ||
* .then((response) => console.log(response.notice)) | ||
* | ||
* @example | ||
* // Delete specific items from delete | ||
* import * as contentstack from '@contentstack/management' | ||
* const client = contentstack.client() | ||
* | ||
* const items = [ | ||
* { | ||
* uid: "entry_or_asset_uid1", | ||
* version: 1, | ||
* locale: "en-us", | ||
* content_type_uid: "demo1", | ||
* action: "publish" | ||
* }, | ||
* { | ||
* uid: "entry_or_asset_uid2", | ||
* version: 4, | ||
* locale: "fr-fr", | ||
* content_type_uid: "demo2", | ||
* action: "publish" | ||
* } | ||
* ] | ||
* client.stack({ api_key: 'api_key'}).release('release_uid').delete({items}) | ||
* .then((response) => console.log(response.notice)) | ||
*/ | ||
if (data.item) { | ||
Object.assign(this, cloneDeep(data.item)); | ||
} else { | ||
/** | ||
* @description The Delete method request deletes one or more items (entries and/or assets) from a specific Release. | ||
* @memberof ReleaseItem | ||
* @func delete | ||
* @param {Object} param.items Add multiple items to a Release | ||
* @param {Object} param.items Add multiple items to a Release | ||
* @returns {Object} Response Object. | ||
* @example | ||
* import * as contentstack from '@contentstack/management' | ||
* const client = contentstack.client() | ||
* | ||
* client.stack({ api_key: 'api_key'}).release('release_uid').delete() | ||
* .then((response) => console.log(response.notice)) | ||
*/ | ||
this["delete"] = /*#__PURE__*/function () { | ||
var _ref = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee(param) { | ||
var headers, response; | ||
return _regeneratorRuntime.wrap(function _callee$(_context) { | ||
while (1) { | ||
switch (_context.prev = _context.next) { | ||
case 0: | ||
_context.prev = 0; | ||
headers = { | ||
headers: _objectSpread({}, cloneDeep(_this.stackHeaders)), | ||
params: _objectSpread({ | ||
all: true | ||
}, cloneDeep(param)) | ||
} || {}; | ||
_context.next = 4; | ||
return http["delete"](_this.urlPath, headers); | ||
this["delete"] = /*#__PURE__*/function () { | ||
var _ref = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee(items) { | ||
var param, headers, response; | ||
return _regeneratorRuntime.wrap(function _callee$(_context) { | ||
while (1) { | ||
switch (_context.prev = _context.next) { | ||
case 0: | ||
param = {}; | ||
case 4: | ||
response = _context.sent; | ||
if (items === undefined) { | ||
param = { | ||
all: true | ||
}; | ||
} | ||
if (!response.data) { | ||
_context.next = 9; | ||
break; | ||
} | ||
_context.prev = 2; | ||
headers = { | ||
headers: _objectSpread({}, cloneDeep(_this.stackHeaders)), | ||
data: _objectSpread({}, cloneDeep(items)), | ||
params: _objectSpread({}, cloneDeep(param)) | ||
} || {}; | ||
_context.next = 6; | ||
return http["delete"](_this.urlPath, headers); | ||
return _context.abrupt("return", response.data); | ||
case 6: | ||
response = _context.sent; | ||
case 9: | ||
throw error(response); | ||
case 10: | ||
_context.next = 15; | ||
if (!response.data) { | ||
_context.next = 11; | ||
break; | ||
} | ||
case 12: | ||
_context.prev = 12; | ||
_context.t0 = _context["catch"](0); | ||
throw error(_context.t0); | ||
return _context.abrupt("return", new Release(http, _objectSpread(_objectSpread({}, response.data), {}, { | ||
stackHeaders: data.stackHeaders | ||
}))); | ||
case 15: | ||
case "end": | ||
return _context.stop(); | ||
} | ||
} | ||
}, _callee, null, [[0, 12]]); | ||
})); | ||
case 11: | ||
throw error(response); | ||
return function (_x) { | ||
return _ref.apply(this, arguments); | ||
}; | ||
}(); | ||
/** | ||
* @description The Create method allows you to add an one or more items items (entry or asset) to a Release. | ||
* @memberof ReleaseItem | ||
* @func create | ||
* @param {Object} param.item Add a single item to a Release | ||
* @param {Object} param.items Add multiple items to a Release | ||
* @returns {Promise<Release.Release>} Promise for Release instance | ||
* @example | ||
* import * as contentstack from '@contentstack/management' | ||
* const client = contentstack.client() | ||
* | ||
* const item = { | ||
* version: 1, | ||
* uid: "entry_or_asset_uid", | ||
* content_type_uid: "your_content_type_uid", | ||
* action: "publish", | ||
* locale: "en-us" | ||
* } | ||
* client.stack({ api_key: 'api_key'}).release('release_uid').item().create({ item }) | ||
* .then((release) => console.log(release)) | ||
* | ||
* @example | ||
* import * as contentstack from '@contentstack/management' | ||
* const client = contentstack.client() | ||
* | ||
* const items = [ | ||
* { | ||
* uid: "entry_or_asset_uid1", | ||
* version: 1, | ||
* locale: "en-us", | ||
* content_type_uid: "demo1", | ||
* action: "publish" | ||
* }, | ||
* { | ||
* uid: "entry_or_asset_uid2", | ||
* version: 4, | ||
* locale: "fr-fr", | ||
* content_type_uid: "demo2", | ||
* action: "publish" | ||
* } | ||
* ] | ||
* client.stack({ api_key: 'api_key'}).release('release_uid').item().create({ items }) | ||
* .then((release) => console.log(release)) | ||
*/ | ||
case 12: | ||
_context.next = 17; | ||
break; | ||
case 14: | ||
_context.prev = 14; | ||
_context.t0 = _context["catch"](2); | ||
throw error(_context.t0); | ||
this.create = /*#__PURE__*/function () { | ||
var _ref2 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee2(param) { | ||
var headers, response; | ||
return _regeneratorRuntime.wrap(function _callee2$(_context2) { | ||
while (1) { | ||
switch (_context2.prev = _context2.next) { | ||
case 0: | ||
headers = { | ||
headers: _objectSpread({}, cloneDeep(_this.stackHeaders)), | ||
params: _objectSpread({}, cloneDeep(param)) | ||
} || {}; | ||
_context2.prev = 1; | ||
_context2.next = 4; | ||
return http.post(param.item ? "releases/".concat(data.releaseUid, "/item") : _this.urlPath, data, headers); | ||
case 4: | ||
response = _context2.sent; | ||
if (!response.data) { | ||
_context2.next = 10; | ||
break; | ||
} | ||
if (!response.data) { | ||
_context2.next = 8; | ||
break; | ||
} | ||
return _context2.abrupt("return", new Release(http, response.data)); | ||
case 8: | ||
_context2.next = 11; | ||
break; | ||
case 10: | ||
throw error(response); | ||
case 11: | ||
_context2.next = 16; | ||
break; | ||
case 13: | ||
_context2.prev = 13; | ||
_context2.t0 = _context2["catch"](1); | ||
throw error(_context2.t0); | ||
case 16: | ||
case "end": | ||
return _context2.stop(); | ||
} | ||
case 17: | ||
case "end": | ||
return _context.stop(); | ||
} | ||
}, _callee2, null, [[1, 13]]); | ||
})); | ||
} | ||
}, _callee, null, [[2, 14]]); | ||
})); | ||
return function (_x2) { | ||
return _ref2.apply(this, arguments); | ||
}; | ||
}(); | ||
/** | ||
* @description The Get all items in a Release request retrieves a list of all items (entries and assets) that are part of a specific Release. | ||
* @memberof ReleaseItem | ||
* @func findAll | ||
* @returns {Promise<ReleaseItem.ReleaseItem>} Promise for ContentType instance | ||
* @param {Boolean} param.include_count ‘include_count’ parameter includes the count of total number of items in Release, along with the details of each items. | ||
* @param {Int} param.limit The ‘limit’ parameter will return a specific number of release items in the output. | ||
* @param {Int} param.skip The ‘skip’ parameter will skip a specific number of release items in the response. | ||
* @example | ||
* import * as contentstack from '@contentstack/management' | ||
* const client = contentstack.client() | ||
* | ||
* client.stack({ api_key: 'api_key'}).release('release_uid').item().fetchAll() | ||
* .then((items) => console.log(items)) | ||
*/ | ||
return function (_x) { | ||
return _ref.apply(this, arguments); | ||
}; | ||
}(); | ||
/** | ||
* @description The Create method allows you to add an one or more items items (entry or asset) to a Release. | ||
* @memberof ReleaseItem | ||
* @func create | ||
* @param {Object} param.item Add a single item to a Release | ||
* @param {Object} param.items Add multiple items to a Release | ||
* @returns {Promise<Release.Release>} Promise for Release instance | ||
* @example | ||
* import * as contentstack from '@contentstack/management' | ||
* const client = contentstack.client() | ||
* | ||
* const item = { | ||
* version: 1, | ||
* uid: "entry_or_asset_uid", | ||
* content_type_uid: "your_content_type_uid", | ||
* action: "publish", | ||
* locale: "en-us" | ||
* } | ||
* client.stack({ api_key: 'api_key'}).release('release_uid').item().create({ item }) | ||
* .then((release) => console.log(release)) | ||
* | ||
* @example | ||
* import * as contentstack from '@contentstack/management' | ||
* const client = contentstack.client() | ||
* | ||
* const items = [ | ||
* { | ||
* uid: "entry_or_asset_uid1", | ||
* version: 1, | ||
* locale: "en-us", | ||
* content_type_uid: "demo1", | ||
* action: "publish" | ||
* }, | ||
* { | ||
* uid: "entry_or_asset_uid2", | ||
* version: 4, | ||
* locale: "fr-fr", | ||
* content_type_uid: "demo2", | ||
* action: "publish" | ||
* } | ||
* ] | ||
* client.stack({ api_key: 'api_key'}).release('release_uid').item().create({ items }) | ||
* .then((release) => console.log(release)) | ||
*/ | ||
this.findAll = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee3() { | ||
var param, | ||
headers, | ||
response, | ||
_args3 = arguments; | ||
return _regeneratorRuntime.wrap(function _callee3$(_context3) { | ||
this.create = /*#__PURE__*/function () { | ||
var _ref2 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee2(param) { | ||
var headers, response; | ||
return _regeneratorRuntime.wrap(function _callee2$(_context2) { | ||
while (1) { | ||
switch (_context3.prev = _context3.next) { | ||
switch (_context2.prev = _context2.next) { | ||
case 0: | ||
param = _args3.length > 0 && _args3[0] !== undefined ? _args3[0] : {}; | ||
_context3.prev = 1; | ||
headers = { | ||
headers: _objectSpread({}, cloneDeep(_this.stackHeaders)), | ||
params: _objectSpread({}, cloneDeep(param)) | ||
headers: _objectSpread({}, cloneDeep(_this.stackHeaders)) | ||
} || {}; | ||
_context3.next = 5; | ||
return http.get(_this.urlPath, headers); | ||
_context2.prev = 1; | ||
_context2.next = 4; | ||
return http.post(param.item ? "releases/".concat(data.releaseUid, "/item") : _this.urlPath, param, headers); | ||
case 5: | ||
response = _context3.sent; | ||
case 4: | ||
response = _context2.sent; | ||
if (!response.data) { | ||
_context3.next = 10; | ||
_context2.next = 10; | ||
break; | ||
} | ||
return _context3.abrupt("return", ReleaseItemCollection(http, response.data, _this.releaseUID)); | ||
if (!response.data) { | ||
_context2.next = 8; | ||
break; | ||
} | ||
return _context2.abrupt("return", new Release(http, _objectSpread(_objectSpread({}, response.data), {}, { | ||
stackHeaders: data.stackHeaders | ||
}))); | ||
case 8: | ||
_context2.next = 11; | ||
break; | ||
case 10: | ||
@@ -249,18 +216,86 @@ throw error(response); | ||
case 11: | ||
_context3.next = 16; | ||
_context2.next = 16; | ||
break; | ||
case 13: | ||
_context3.prev = 13; | ||
_context3.t0 = _context3["catch"](1); | ||
error(_context3.t0); | ||
_context2.prev = 13; | ||
_context2.t0 = _context2["catch"](1); | ||
throw error(_context2.t0); | ||
case 16: | ||
case "end": | ||
return _context3.stop(); | ||
return _context2.stop(); | ||
} | ||
} | ||
}, _callee3, null, [[1, 13]]); | ||
}, _callee2, null, [[1, 13]]); | ||
})); | ||
} | ||
return function (_x2) { | ||
return _ref2.apply(this, arguments); | ||
}; | ||
}(); | ||
/** | ||
* @description The Get all items in a Release request retrieves a list of all items (entries and assets) that are part of a specific Release. | ||
* @memberof ReleaseItem | ||
* @func findAll | ||
* @returns {Promise<ContentstackCollection.ContentstackCollection>} Promise for ContentType instance | ||
* @param {Boolean} param.include_count ‘include_count’ parameter includes the count of total number of items in Release, along with the details of each items. | ||
* @param {Int} param.limit The ‘limit’ parameter will return a specific number of release items in the output. | ||
* @param {Int} param.skip The ‘skip’ parameter will skip a specific number of release items in the response. | ||
* @example | ||
* import * as contentstack from '@contentstack/management' | ||
* const client = contentstack.client() | ||
* | ||
* client.stack({ api_key: 'api_key'}).release('release_uid').item().fetchAll() | ||
* .then((items) => console.log(items)) | ||
*/ | ||
this.findAll = /*#__PURE__*/_asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee3() { | ||
var param, | ||
headers, | ||
response, | ||
_args3 = arguments; | ||
return _regeneratorRuntime.wrap(function _callee3$(_context3) { | ||
while (1) { | ||
switch (_context3.prev = _context3.next) { | ||
case 0: | ||
param = _args3.length > 0 && _args3[0] !== undefined ? _args3[0] : {}; | ||
_context3.prev = 1; | ||
headers = { | ||
headers: _objectSpread({}, cloneDeep(_this.stackHeaders)), | ||
params: _objectSpread({}, cloneDeep(param)) | ||
} || {}; | ||
_context3.next = 5; | ||
return http.get(_this.urlPath, headers); | ||
case 5: | ||
response = _context3.sent; | ||
if (!response.data) { | ||
_context3.next = 10; | ||
break; | ||
} | ||
return _context3.abrupt("return", new ContentstackCollection(response, http, _this.stackHeaders, ReleaseItemCollection)); | ||
case 10: | ||
throw error(response); | ||
case 11: | ||
_context3.next = 16; | ||
break; | ||
case 13: | ||
_context3.prev = 13; | ||
_context3.t0 = _context3["catch"](1); | ||
error(_context3.t0); | ||
case 16: | ||
case "end": | ||
return _context3.stop(); | ||
} | ||
} | ||
}, _callee3, null, [[1, 13]]); | ||
})); | ||
} | ||
@@ -267,0 +302,0 @@ |
@@ -245,7 +245,7 @@ import _regeneratorRuntime from "@babel/runtime/regenerator"; | ||
* @func fetchAll | ||
* @param {Int} limit The limit parameter will return a specific number of roles in the output. | ||
* @param {Int} skip The skip parameter will skip a specific number of roles in the output. | ||
* @param {String} asc When fetching roles, you can sort them in the ascending order with respect to the value of a specific field in the response body. | ||
* @param {String} desc When fetching roles, you can sort them in the decending order with respect to the value of a specific field in the response body. | ||
* @param {Boolean}include_count To retrieve the count of roles. | ||
* @param {Int} limit The limit parameter will return a specific number of webhooks in the output. | ||
* @param {Int} skip The skip parameter will skip a specific number of webhooks in the output. | ||
* @param {String} asc When fetching webhooks, you can sort them in the ascending order with respect to the value of a specific field in the response body. | ||
* @param {String} desc When fetching webhooks, you can sort them in the decending order with respect to the value of a specific field in the response body. | ||
* @param {Boolean}include_count To retrieve the count of webhooks. | ||
* @returns {ContentstackCollection} Result collection of content of specified module. | ||
@@ -252,0 +252,0 @@ * @example |
@@ -0,1 +1,9 @@ | ||
import _regeneratorRuntime from "@babel/runtime/regenerator"; | ||
import _defineProperty from "@babel/runtime/helpers/defineProperty"; | ||
import _asyncToGenerator from "@babel/runtime/helpers/asyncToGenerator"; | ||
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } | ||
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } | ||
import cloneDeep from 'lodash/cloneDeep'; | ||
@@ -115,2 +123,75 @@ import { update, deleteEntity } from '../entity'; | ||
} | ||
/** | ||
* @description The Get all Tasks request retrieves a list of all tasks assigned to you. | ||
* @memberof User | ||
* @func getTasks | ||
* @param {Object} query Enter the actual query that will be executed to retrieve the tasks. This query should be in JSON format. | ||
* @param {Object} sort Enter the field UID on the basis of which you want to sort your tasks. | ||
* @param {Int} limit Enter the maximum number of tasks that you want to retrieve in the response. | ||
* @param {Int} skip Enter the number of tasks to be skipped. | ||
* @returns {Object} Response Object. | ||
* @example | ||
* import * as contentstack from '@contentstack/management' | ||
* const client = contentstack.client() | ||
* | ||
* client.stack({ api_key: 'api_key'}).getUser() | ||
* .then((user) => { | ||
* return user.getTasks() | ||
* }) | ||
* .then((response) => console.log(response.assignments)) | ||
* | ||
*/ | ||
this.getTasks = /*#__PURE__*/function () { | ||
var _ref2 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime.mark(function _callee(params) { | ||
var headers, response; | ||
return _regeneratorRuntime.wrap(function _callee$(_context) { | ||
while (1) { | ||
switch (_context.prev = _context.next) { | ||
case 0: | ||
headers = {}; | ||
if (params) { | ||
headers.params = _objectSpread({}, cloneDeep(params)); | ||
} | ||
_context.prev = 2; | ||
_context.next = 5; | ||
return http.get("/user/assignments", headers); | ||
case 5: | ||
response = _context.sent; | ||
if (!response.data) { | ||
_context.next = 10; | ||
break; | ||
} | ||
return _context.abrupt("return", response.data); | ||
case 10: | ||
throw error(response); | ||
case 11: | ||
_context.next = 16; | ||
break; | ||
case 13: | ||
_context.prev = 13; | ||
_context.t0 = _context["catch"](2); | ||
throw error(_context.t0); | ||
case 16: | ||
case "end": | ||
return _context.stop(); | ||
} | ||
} | ||
}, _callee, null, [[2, 13]]); | ||
})); | ||
return function (_x) { | ||
return _ref2.apply(this, arguments); | ||
}; | ||
}(); | ||
} | ||
@@ -117,0 +198,0 @@ |
@@ -72,2 +72,7 @@ "use strict"; | ||
* | ||
* @prop {number=} params.maxRequests - Optional maximum number of requests SDK should send concurrently. Default is 5 concurrent request. | ||
* @example //Set the `maxRequests` to 5 | ||
* import * as contentstack from '@contentstack/management' | ||
* const client = contentstack.client({ maxRequests: 5 }) | ||
* | ||
* @prop {boolean=} params.retryOnError - Optional boolean for retry on failuer. Default is true | ||
@@ -147,3 +152,3 @@ * @example //Set the `retryOnError` to false | ||
}; | ||
var sdkAgent = "".concat(_package2["default"].name, "-javascript/").concat(_package2["default"].version); | ||
var sdkAgent = "contentstack-management-javascript/".concat(_package2["default"].version); | ||
var userAgentHeader = (0, _Util2["default"])(sdkAgent, params.application, params.integration, params.feature); | ||
@@ -150,0 +155,0 @@ var requiredHeaders = { |
@@ -216,3 +216,4 @@ "use strict"; | ||
stack: stack, | ||
organization: organization | ||
organization: organization, | ||
axiosInstance: http | ||
}; | ||
@@ -219,0 +220,0 @@ } |
@@ -33,8 +33,6 @@ "use strict"; | ||
var _contentstackRetry = require("./contentstack-retry"); | ||
var _Util = require("./Util"); | ||
var _contentstackRetry2 = (0, _interopRequireDefault2["default"])(_contentstackRetry); | ||
var _concurrencyQueue = require("./concurrency-queue"); | ||
var _Util = require("./Util"); | ||
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } | ||
@@ -125,2 +123,3 @@ | ||
params.query = query; | ||
return qs; | ||
@@ -133,3 +132,6 @@ } | ||
instance.httpClientParams = options; | ||
(0, _contentstackRetry2["default"])(instance, axiosOptions, config.retyLimit, config.retryDelay); | ||
instance.concurrencyQueue = new _concurrencyQueue.ConcurrencyQueue({ | ||
axios: instance, | ||
config: config | ||
}); | ||
return instance; | ||
@@ -136,0 +138,0 @@ } |
@@ -333,2 +333,3 @@ "use strict"; | ||
updateData, | ||
json, | ||
response, | ||
@@ -342,5 +343,17 @@ _args7 = arguments; | ||
updateData = {}; | ||
updateData[type] = (0, _cloneDeep2["default"])(this); | ||
_context7.prev = 3; | ||
_context7.next = 6; | ||
json = (0, _cloneDeep2["default"])(this); | ||
delete json.stackHeaders; | ||
delete json.urlPath; | ||
delete json.uid; | ||
delete json.org_uid; | ||
delete json.api_key; | ||
delete json.created_at; | ||
delete json.created_by; | ||
delete json.deleted_at; | ||
delete json.updated_at; | ||
delete json.updated_by; | ||
delete json.updated_at; | ||
updateData[type] = json; | ||
_context7.prev = 15; | ||
_context7.next = 18; | ||
return http.put(this.urlPath, updateData, { | ||
@@ -351,25 +364,25 @@ headers: _objectSpread({}, (0, _cloneDeep2["default"])(this.stackHeaders)), | ||
case 6: | ||
case 18: | ||
response = _context7.sent; | ||
if (!response.data) { | ||
_context7.next = 11; | ||
_context7.next = 23; | ||
break; | ||
} | ||
return _context7.abrupt("return", new this.constructor(http, parseData(response, this.stackHeaders, this.contentType_uid))); | ||
return _context7.abrupt("return", new this.constructor(http, parseData(response, this.stackHeaders, this.content_type_uid))); | ||
case 11: | ||
case 23: | ||
throw (0, _contentstackError2["default"])(response); | ||
case 12: | ||
_context7.next = 17; | ||
case 24: | ||
_context7.next = 29; | ||
break; | ||
case 14: | ||
_context7.prev = 14; | ||
_context7.t0 = _context7["catch"](3); | ||
case 26: | ||
_context7.prev = 26; | ||
_context7.t0 = _context7["catch"](15); | ||
throw (0, _contentstackError2["default"])(_context7.t0); | ||
case 17: | ||
case 29: | ||
case "end": | ||
@@ -379,3 +392,3 @@ return _context7.stop(); | ||
} | ||
}, _callee7, this, [[3, 14]]); | ||
}, _callee7, this, [[15, 26]]); | ||
})); | ||
@@ -466,3 +479,3 @@ }; | ||
return _context9.abrupt("return", new this.constructor(http, parseData(response, this.stackHeaders))); | ||
return _context9.abrupt("return", new this.constructor(http, parseData(response, this.stackHeaders, this.content_type_uid))); | ||
@@ -498,3 +511,3 @@ case 11: | ||
if (contentTypeUID) { | ||
data.content_type = contentTypeUID; | ||
data.content_type_uid = contentTypeUID; | ||
} | ||
@@ -501,0 +514,0 @@ |
@@ -40,5 +40,5 @@ "use strict"; | ||
var _index = require("../stack/roles/index"); | ||
var _roles = require("../stack/roles"); | ||
var _index2 = require("../stack/index"); | ||
var _stack = require("../stack"); | ||
@@ -87,6 +87,6 @@ var _user = require("../user"); | ||
* @func stacks | ||
* @param {Int} limit The limit parameter will return a specific number of roles in the output. | ||
* @param {Int} skip The skip parameter will skip a specific number of roles in the output. | ||
* @param {String} asc When fetching roles, you can sort them in the ascending order with respect to the value of a specific field in the response body. | ||
* @param {String} desc When fetching roles, you can sort them in the decending order with respect to the value of a specific field in the response body. | ||
* @param {Int} limit The limit parameter will return a specific number of stacks in the output. | ||
* @param {Int} skip The skip parameter will skip a specific number of stacks in the output. | ||
* @param {String} asc When fetching stacks, you can sort them in the ascending order with respect to the value of a specific field in the response body. | ||
* @param {String} desc When fetching stacks, you can sort them in the decending order with respect to the value of a specific field in the response body. | ||
* @param {Boolean} include_count To retrieve the count of stack. | ||
@@ -124,3 +124,3 @@ * @param {String} typeahead The type head contains value to be included in search. | ||
return _context.abrupt("return", new _contentstackCollection2["default"](response, http, null, _index2.StackCollection)); | ||
return _context.abrupt("return", new _contentstackCollection2["default"](response, http, null, _stack.StackCollection)); | ||
@@ -440,3 +440,3 @@ case 8: | ||
return _context6.abrupt("return", new _contentstackCollection2["default"](response, http, null, _index.RoleCollection)); | ||
return _context6.abrupt("return", new _contentstackCollection2["default"](response, http, null, _roles.RoleCollection)); | ||
@@ -473,8 +473,8 @@ case 8: | ||
* @func fetchAll | ||
* @param {Int} limit The limit parameter will return a specific number of roles in the output. | ||
* @param {Int} skip The skip parameter will skip a specific number of roles in the output. | ||
* @param {String} asc When fetching roles, you can sort them in the ascending order with respect to the value of a specific field in the response body. | ||
* @param {String} desc When fetching roles, you can sort them in the decending order with respect to the value of a specific field in the response body. | ||
* @param {Boolean}include_count To retrieve the count of roles. | ||
* @param {String} typeahead The type head contains value to be included in search. | ||
* @param {Int} limit TThe ‘limit’ parameter will return a specific number of organizations in the output. | ||
* @param {Int} skip The ‘skip’ parameter will skip a specific number of organizations in the output. | ||
* @param {String} asc The ‘asc’ parameter allows you to sort the list of organizations in the ascending order with respect to the value of a specific field. | ||
* @param {String} desc The ‘desc’ parameter allows you to sort the list of Organizations in the descending order with respect to the value of a specific field. | ||
* @param {Boolean}include_count The ‘include_count’ parameter returns the total number of organizations related to the user. | ||
* @param {String} typeahead The typeahead parameter is a type of filter that allows you to perform a name-based search on all organizations based on the value provided. | ||
* @returns {ContentstackCollection} Result collection of content of specified module. | ||
@@ -481,0 +481,0 @@ * @example |
@@ -94,3 +94,3 @@ "use strict"; | ||
* const asset = {name: 'My New contentType'} | ||
* client.stack().asset().folders().create({ asset }) | ||
* client.stack().asset().folder().create({ asset }) | ||
* .then((folder) => console.log(folder)) | ||
@@ -97,0 +97,0 @@ */ |
@@ -167,2 +167,84 @@ "use strict"; | ||
this.unpublish = (0, _entity.unpublish)(http, 'entry'); | ||
/** | ||
* @description This multipurpose request allows you to either send a publish request or accept/reject a received publish request. | ||
* @memberof Entry | ||
* @func publishRequest | ||
* @returns {Promise<Object>} Response Object. | ||
* @param {Object} publishing_rule Details for the publish request | ||
* @param {String} locale Enter the code of the locale that the entry belongs to. | ||
* @example | ||
* import * as contentstack from '@contentstack/management' | ||
* const client = contentstack.client() | ||
* | ||
* const publishing_rule = { | ||
* "uid": "blt9b9253297f117e84", | ||
* "action": "publish", //(‘publish’, ‘unpublish’, or ’both’) | ||
* "status": 1, //(this could be ‘0’ for Approval Requested, ‘1’ for ‘Approval Accepted’, and ‘-1’ for ‘Approval Rejected’), | ||
* "notify": false, | ||
* "comment": "Please review this." | ||
* } | ||
* client.stack({ api_key: 'api_key'}).contentType('content_type_uid').entry('uid').publishRequest({ publishing_rule, locale: 'en-us'}) | ||
* .then((response) => console.log(response.notice)) | ||
*/ | ||
this.publishRequest = /*#__PURE__*/function () { | ||
var _ref2 = (0, _asyncToGenerator3["default"])( /*#__PURE__*/_regenerator2["default"].mark(function _callee(_ref) { | ||
var publishing_rule, locale, publishDetails, headers, response; | ||
return _regenerator2["default"].wrap(function _callee$(_context) { | ||
while (1) { | ||
switch (_context.prev = _context.next) { | ||
case 0: | ||
publishing_rule = _ref.publishing_rule, locale = _ref.locale; | ||
publishDetails = { | ||
workflow: { | ||
publishing_rule: publishing_rule | ||
} | ||
}; | ||
headers = {}; | ||
if (_this.stackHeaders) { | ||
headers.headers = _this.stackHeaders; | ||
} | ||
headers.params = { | ||
locale: locale | ||
}; | ||
_context.prev = 5; | ||
_context.next = 8; | ||
return http.post("".concat(_this.urlPath, "/workflow"), publishDetails, headers); | ||
case 8: | ||
response = _context.sent; | ||
if (!response.data) { | ||
_context.next = 13; | ||
break; | ||
} | ||
return _context.abrupt("return", response.data); | ||
case 13: | ||
throw (0, _contentstackError2["default"])(response); | ||
case 14: | ||
_context.next = 19; | ||
break; | ||
case 16: | ||
_context.prev = 16; | ||
_context.t0 = _context["catch"](5); | ||
throw (0, _contentstackError2["default"])(_context.t0); | ||
case 19: | ||
case "end": | ||
return _context.stop(); | ||
} | ||
} | ||
}, _callee, null, [[5, 16]]); | ||
})); | ||
return function (_x) { | ||
return _ref2.apply(this, arguments); | ||
}; | ||
}(); | ||
} else { | ||
@@ -234,10 +316,10 @@ /** | ||
this["import"] = /*#__PURE__*/function () { | ||
var _ref2 = (0, _asyncToGenerator3["default"])( /*#__PURE__*/_regenerator2["default"].mark(function _callee(_ref) { | ||
var entry, _ref$locale, locale, _ref$overwrite, overwrite, importUrl, response; | ||
var _ref4 = (0, _asyncToGenerator3["default"])( /*#__PURE__*/_regenerator2["default"].mark(function _callee2(_ref3) { | ||
var entry, _ref3$locale, locale, _ref3$overwrite, overwrite, importUrl, response; | ||
return _regenerator2["default"].wrap(function _callee$(_context) { | ||
return _regenerator2["default"].wrap(function _callee2$(_context2) { | ||
while (1) { | ||
switch (_context.prev = _context.next) { | ||
switch (_context2.prev = _context2.next) { | ||
case 0: | ||
entry = _ref.entry, _ref$locale = _ref.locale, locale = _ref$locale === void 0 ? null : _ref$locale, _ref$overwrite = _ref.overwrite, overwrite = _ref$overwrite === void 0 ? false : _ref$overwrite; | ||
entry = _ref3.entry, _ref3$locale = _ref3.locale, locale = _ref3$locale === void 0 ? null : _ref3$locale, _ref3$overwrite = _ref3.overwrite, overwrite = _ref3$overwrite === void 0 ? false : _ref3$overwrite; | ||
importUrl = "".concat(_this.urlPath, "/import?overwrite=").concat(overwrite); | ||
@@ -249,4 +331,4 @@ | ||
_context.prev = 3; | ||
_context.next = 6; | ||
_context2.prev = 3; | ||
_context2.next = 6; | ||
return (0, _entity.upload)({ | ||
@@ -260,10 +342,10 @@ http: http, | ||
case 6: | ||
response = _context.sent; | ||
response = _context2.sent; | ||
if (!response.data) { | ||
_context.next = 11; | ||
_context2.next = 11; | ||
break; | ||
} | ||
return _context.abrupt("return", new _this.constructor(http, (0, _entity.parseData)(response, _this.stackHeaders))); | ||
return _context2.abrupt("return", new _this.constructor(http, (0, _entity.parseData)(response, _this.stackHeaders))); | ||
@@ -274,20 +356,20 @@ case 11: | ||
case 12: | ||
_context.next = 17; | ||
_context2.next = 17; | ||
break; | ||
case 14: | ||
_context.prev = 14; | ||
_context.t0 = _context["catch"](3); | ||
throw (0, _contentstackError2["default"])(_context.t0); | ||
_context2.prev = 14; | ||
_context2.t0 = _context2["catch"](3); | ||
throw (0, _contentstackError2["default"])(_context2.t0); | ||
case 17: | ||
case "end": | ||
return _context.stop(); | ||
return _context2.stop(); | ||
} | ||
} | ||
}, _callee, null, [[3, 14]]); | ||
}, _callee2, null, [[3, 14]]); | ||
})); | ||
return function (_x) { | ||
return _ref2.apply(this, arguments); | ||
return function (_x2) { | ||
return _ref4.apply(this, arguments); | ||
}; | ||
@@ -294,0 +376,0 @@ }(); |
@@ -55,3 +55,4 @@ "use strict"; | ||
/** | ||
* @description The Update ContentType call lets you update the name and description of an existing ContentType. | ||
* @description The Update ContentType call lets you update the name and description of an existing ContentType. | ||
* You can also update the JSON schema of a content type, including fields and different features associated with the content type. | ||
* @memberof ContentType | ||
@@ -58,0 +59,0 @@ * @func update |
@@ -56,2 +56,4 @@ "use strict"; | ||
var _workflow = require("./workflow"); | ||
var _release = require("./release"); | ||
@@ -341,2 +343,32 @@ | ||
/** | ||
* @description Workflow is a tool that allows you to streamline the process of content creation and publishing, and lets you manage the content lifecycle of your project smoothly. | ||
* @param {String} workflowUid The UID of the Workflow you want to get details. | ||
* @returns {Workflow} Instace of Workflow. | ||
* @example | ||
* import * as contentstack from '@contentstack/management' | ||
* const client = contentstack.client() | ||
* | ||
* client.stack({ api_key: 'api_key'}).workflow().create() | ||
* .then((workflow) => console.log(workflow)) | ||
* | ||
* client.stack({ api_key: 'api_key'}).workflow('workflow_uid').fetch() | ||
* .then((workflow) => console.log(workflow)) | ||
*/ | ||
this.workflow = function () { | ||
var workflowUid = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null; | ||
var data = { | ||
stackHeaders: _this.stackHeaders | ||
}; | ||
if (workflowUid) { | ||
data.workflow = { | ||
uid: workflowUid | ||
}; | ||
} | ||
return new _workflow.Workflow(http, data); | ||
}; | ||
/** | ||
* @description Webhooks allow you to specify a URL to which you would like Contentstack to post data when an event happens. | ||
@@ -343,0 +375,0 @@ * @param {String} webhookUid The UID of the Webhook you want to get details. |
@@ -152,3 +152,4 @@ "use strict"; | ||
return new _items.ReleaseItem(http, { | ||
releaseUid: _this.uid | ||
releaseUid: _this.uid, | ||
stackHeaders: _this.stackHeaders | ||
}); | ||
@@ -155,0 +156,0 @@ }; |
@@ -34,2 +34,6 @@ "use strict"; | ||
var _contentstackCollection = require("../../../contentstackCollection"); | ||
var _contentstackCollection2 = (0, _interopRequireDefault2["default"])(_contentstackCollection); | ||
var _ = require(".."); | ||
@@ -51,222 +55,188 @@ | ||
if (data.item) { | ||
Object.assign(this, (0, _cloneDeep2["default"])(data.item)); | ||
} | ||
if (data.releaseUid) { | ||
this.urlPath = "releases/".concat(data.releaseUid, "/items"); | ||
/** | ||
* @description The Delete method request deletes one or more items (entries and/or assets) from a specific Release. | ||
* @memberof ReleaseItem | ||
* @func delete | ||
* @param {Object} param.items Add multiple items to a Release | ||
* @param {Object} param.items Add multiple items to a Release | ||
* @returns {Object} Response Object. | ||
* @example | ||
* import * as contentstack from '@contentstack/management' | ||
* const client = contentstack.client() | ||
* // To delete all the items from release | ||
* client.stack({ api_key: 'api_key'}).release('release_uid').delete() | ||
* .then((response) => console.log(response.notice)) | ||
* | ||
* @example | ||
* // Delete specific items from delete | ||
* import * as contentstack from '@contentstack/management' | ||
* const client = contentstack.client() | ||
* | ||
* const items = [ | ||
* { | ||
* uid: "entry_or_asset_uid1", | ||
* version: 1, | ||
* locale: "en-us", | ||
* content_type_uid: "demo1", | ||
* action: "publish" | ||
* }, | ||
* { | ||
* uid: "entry_or_asset_uid2", | ||
* version: 4, | ||
* locale: "fr-fr", | ||
* content_type_uid: "demo2", | ||
* action: "publish" | ||
* } | ||
* ] | ||
* client.stack({ api_key: 'api_key'}).release('release_uid').delete({items}) | ||
* .then((response) => console.log(response.notice)) | ||
*/ | ||
if (data.item) { | ||
Object.assign(this, (0, _cloneDeep2["default"])(data.item)); | ||
} else { | ||
/** | ||
* @description The Delete method request deletes one or more items (entries and/or assets) from a specific Release. | ||
* @memberof ReleaseItem | ||
* @func delete | ||
* @param {Object} param.items Add multiple items to a Release | ||
* @param {Object} param.items Add multiple items to a Release | ||
* @returns {Object} Response Object. | ||
* @example | ||
* import * as contentstack from '@contentstack/management' | ||
* const client = contentstack.client() | ||
* | ||
* client.stack({ api_key: 'api_key'}).release('release_uid').delete() | ||
* .then((response) => console.log(response.notice)) | ||
*/ | ||
this["delete"] = /*#__PURE__*/function () { | ||
var _ref = (0, _asyncToGenerator3["default"])( /*#__PURE__*/_regenerator2["default"].mark(function _callee(param) { | ||
var headers, response; | ||
return _regenerator2["default"].wrap(function _callee$(_context) { | ||
while (1) { | ||
switch (_context.prev = _context.next) { | ||
case 0: | ||
_context.prev = 0; | ||
headers = { | ||
headers: _objectSpread({}, (0, _cloneDeep2["default"])(_this.stackHeaders)), | ||
params: _objectSpread({ | ||
all: true | ||
}, (0, _cloneDeep2["default"])(param)) | ||
} || {}; | ||
_context.next = 4; | ||
return http["delete"](_this.urlPath, headers); | ||
this["delete"] = /*#__PURE__*/function () { | ||
var _ref = (0, _asyncToGenerator3["default"])( /*#__PURE__*/_regenerator2["default"].mark(function _callee(items) { | ||
var param, headers, response; | ||
return _regenerator2["default"].wrap(function _callee$(_context) { | ||
while (1) { | ||
switch (_context.prev = _context.next) { | ||
case 0: | ||
param = {}; | ||
case 4: | ||
response = _context.sent; | ||
if (items === undefined) { | ||
param = { | ||
all: true | ||
}; | ||
} | ||
if (!response.data) { | ||
_context.next = 9; | ||
break; | ||
} | ||
_context.prev = 2; | ||
headers = { | ||
headers: _objectSpread({}, (0, _cloneDeep2["default"])(_this.stackHeaders)), | ||
data: _objectSpread({}, (0, _cloneDeep2["default"])(items)), | ||
params: _objectSpread({}, (0, _cloneDeep2["default"])(param)) | ||
} || {}; | ||
_context.next = 6; | ||
return http["delete"](_this.urlPath, headers); | ||
return _context.abrupt("return", response.data); | ||
case 6: | ||
response = _context.sent; | ||
case 9: | ||
throw (0, _contentstackError2["default"])(response); | ||
case 10: | ||
_context.next = 15; | ||
if (!response.data) { | ||
_context.next = 11; | ||
break; | ||
} | ||
case 12: | ||
_context.prev = 12; | ||
_context.t0 = _context["catch"](0); | ||
throw (0, _contentstackError2["default"])(_context.t0); | ||
return _context.abrupt("return", new _.Release(http, _objectSpread(_objectSpread({}, response.data), {}, { | ||
stackHeaders: data.stackHeaders | ||
}))); | ||
case 15: | ||
case "end": | ||
return _context.stop(); | ||
} | ||
} | ||
}, _callee, null, [[0, 12]]); | ||
})); | ||
case 11: | ||
throw (0, _contentstackError2["default"])(response); | ||
return function (_x) { | ||
return _ref.apply(this, arguments); | ||
}; | ||
}(); | ||
/** | ||
* @description The Create method allows you to add an one or more items items (entry or asset) to a Release. | ||
* @memberof ReleaseItem | ||
* @func create | ||
* @param {Object} param.item Add a single item to a Release | ||
* @param {Object} param.items Add multiple items to a Release | ||
* @returns {Promise<Release.Release>} Promise for Release instance | ||
* @example | ||
* import * as contentstack from '@contentstack/management' | ||
* const client = contentstack.client() | ||
* | ||
* const item = { | ||
* version: 1, | ||
* uid: "entry_or_asset_uid", | ||
* content_type_uid: "your_content_type_uid", | ||
* action: "publish", | ||
* locale: "en-us" | ||
* } | ||
* client.stack({ api_key: 'api_key'}).release('release_uid').item().create({ item }) | ||
* .then((release) => console.log(release)) | ||
* | ||
* @example | ||
* import * as contentstack from '@contentstack/management' | ||
* const client = contentstack.client() | ||
* | ||
* const items = [ | ||
* { | ||
* uid: "entry_or_asset_uid1", | ||
* version: 1, | ||
* locale: "en-us", | ||
* content_type_uid: "demo1", | ||
* action: "publish" | ||
* }, | ||
* { | ||
* uid: "entry_or_asset_uid2", | ||
* version: 4, | ||
* locale: "fr-fr", | ||
* content_type_uid: "demo2", | ||
* action: "publish" | ||
* } | ||
* ] | ||
* client.stack({ api_key: 'api_key'}).release('release_uid').item().create({ items }) | ||
* .then((release) => console.log(release)) | ||
*/ | ||
case 12: | ||
_context.next = 17; | ||
break; | ||
case 14: | ||
_context.prev = 14; | ||
_context.t0 = _context["catch"](2); | ||
throw (0, _contentstackError2["default"])(_context.t0); | ||
this.create = /*#__PURE__*/function () { | ||
var _ref2 = (0, _asyncToGenerator3["default"])( /*#__PURE__*/_regenerator2["default"].mark(function _callee2(param) { | ||
var headers, response; | ||
return _regenerator2["default"].wrap(function _callee2$(_context2) { | ||
while (1) { | ||
switch (_context2.prev = _context2.next) { | ||
case 0: | ||
headers = { | ||
headers: _objectSpread({}, (0, _cloneDeep2["default"])(_this.stackHeaders)), | ||
params: _objectSpread({}, (0, _cloneDeep2["default"])(param)) | ||
} || {}; | ||
_context2.prev = 1; | ||
_context2.next = 4; | ||
return http.post(param.item ? "releases/".concat(data.releaseUid, "/item") : _this.urlPath, data, headers); | ||
case 4: | ||
response = _context2.sent; | ||
if (!response.data) { | ||
_context2.next = 10; | ||
break; | ||
} | ||
if (!response.data) { | ||
_context2.next = 8; | ||
break; | ||
} | ||
return _context2.abrupt("return", new _.Release(http, response.data)); | ||
case 8: | ||
_context2.next = 11; | ||
break; | ||
case 10: | ||
throw (0, _contentstackError2["default"])(response); | ||
case 11: | ||
_context2.next = 16; | ||
break; | ||
case 13: | ||
_context2.prev = 13; | ||
_context2.t0 = _context2["catch"](1); | ||
throw (0, _contentstackError2["default"])(_context2.t0); | ||
case 16: | ||
case "end": | ||
return _context2.stop(); | ||
} | ||
case 17: | ||
case "end": | ||
return _context.stop(); | ||
} | ||
}, _callee2, null, [[1, 13]]); | ||
})); | ||
} | ||
}, _callee, null, [[2, 14]]); | ||
})); | ||
return function (_x2) { | ||
return _ref2.apply(this, arguments); | ||
}; | ||
}(); | ||
/** | ||
* @description The Get all items in a Release request retrieves a list of all items (entries and assets) that are part of a specific Release. | ||
* @memberof ReleaseItem | ||
* @func findAll | ||
* @returns {Promise<ReleaseItem.ReleaseItem>} Promise for ContentType instance | ||
* @param {Boolean} param.include_count ‘include_count’ parameter includes the count of total number of items in Release, along with the details of each items. | ||
* @param {Int} param.limit The ‘limit’ parameter will return a specific number of release items in the output. | ||
* @param {Int} param.skip The ‘skip’ parameter will skip a specific number of release items in the response. | ||
* @example | ||
* import * as contentstack from '@contentstack/management' | ||
* const client = contentstack.client() | ||
* | ||
* client.stack({ api_key: 'api_key'}).release('release_uid').item().fetchAll() | ||
* .then((items) => console.log(items)) | ||
*/ | ||
return function (_x) { | ||
return _ref.apply(this, arguments); | ||
}; | ||
}(); | ||
/** | ||
* @description The Create method allows you to add an one or more items items (entry or asset) to a Release. | ||
* @memberof ReleaseItem | ||
* @func create | ||
* @param {Object} param.item Add a single item to a Release | ||
* @param {Object} param.items Add multiple items to a Release | ||
* @returns {Promise<Release.Release>} Promise for Release instance | ||
* @example | ||
* import * as contentstack from '@contentstack/management' | ||
* const client = contentstack.client() | ||
* | ||
* const item = { | ||
* version: 1, | ||
* uid: "entry_or_asset_uid", | ||
* content_type_uid: "your_content_type_uid", | ||
* action: "publish", | ||
* locale: "en-us" | ||
* } | ||
* client.stack({ api_key: 'api_key'}).release('release_uid').item().create({ item }) | ||
* .then((release) => console.log(release)) | ||
* | ||
* @example | ||
* import * as contentstack from '@contentstack/management' | ||
* const client = contentstack.client() | ||
* | ||
* const items = [ | ||
* { | ||
* uid: "entry_or_asset_uid1", | ||
* version: 1, | ||
* locale: "en-us", | ||
* content_type_uid: "demo1", | ||
* action: "publish" | ||
* }, | ||
* { | ||
* uid: "entry_or_asset_uid2", | ||
* version: 4, | ||
* locale: "fr-fr", | ||
* content_type_uid: "demo2", | ||
* action: "publish" | ||
* } | ||
* ] | ||
* client.stack({ api_key: 'api_key'}).release('release_uid').item().create({ items }) | ||
* .then((release) => console.log(release)) | ||
*/ | ||
this.findAll = /*#__PURE__*/(0, _asyncToGenerator3["default"])( /*#__PURE__*/_regenerator2["default"].mark(function _callee3() { | ||
var param, | ||
headers, | ||
response, | ||
_args3 = arguments; | ||
return _regenerator2["default"].wrap(function _callee3$(_context3) { | ||
this.create = /*#__PURE__*/function () { | ||
var _ref2 = (0, _asyncToGenerator3["default"])( /*#__PURE__*/_regenerator2["default"].mark(function _callee2(param) { | ||
var headers, response; | ||
return _regenerator2["default"].wrap(function _callee2$(_context2) { | ||
while (1) { | ||
switch (_context3.prev = _context3.next) { | ||
switch (_context2.prev = _context2.next) { | ||
case 0: | ||
param = _args3.length > 0 && _args3[0] !== undefined ? _args3[0] : {}; | ||
_context3.prev = 1; | ||
headers = { | ||
headers: _objectSpread({}, (0, _cloneDeep2["default"])(_this.stackHeaders)), | ||
params: _objectSpread({}, (0, _cloneDeep2["default"])(param)) | ||
headers: _objectSpread({}, (0, _cloneDeep2["default"])(_this.stackHeaders)) | ||
} || {}; | ||
_context3.next = 5; | ||
return http.get(_this.urlPath, headers); | ||
_context2.prev = 1; | ||
_context2.next = 4; | ||
return http.post(param.item ? "releases/".concat(data.releaseUid, "/item") : _this.urlPath, param, headers); | ||
case 5: | ||
response = _context3.sent; | ||
case 4: | ||
response = _context2.sent; | ||
if (!response.data) { | ||
_context3.next = 10; | ||
_context2.next = 10; | ||
break; | ||
} | ||
return _context3.abrupt("return", ReleaseItemCollection(http, response.data, _this.releaseUID)); | ||
if (!response.data) { | ||
_context2.next = 8; | ||
break; | ||
} | ||
return _context2.abrupt("return", new _.Release(http, _objectSpread(_objectSpread({}, response.data), {}, { | ||
stackHeaders: data.stackHeaders | ||
}))); | ||
case 8: | ||
_context2.next = 11; | ||
break; | ||
case 10: | ||
@@ -276,18 +246,86 @@ throw (0, _contentstackError2["default"])(response); | ||
case 11: | ||
_context3.next = 16; | ||
_context2.next = 16; | ||
break; | ||
case 13: | ||
_context3.prev = 13; | ||
_context3.t0 = _context3["catch"](1); | ||
(0, _contentstackError2["default"])(_context3.t0); | ||
_context2.prev = 13; | ||
_context2.t0 = _context2["catch"](1); | ||
throw (0, _contentstackError2["default"])(_context2.t0); | ||
case 16: | ||
case "end": | ||
return _context3.stop(); | ||
return _context2.stop(); | ||
} | ||
} | ||
}, _callee3, null, [[1, 13]]); | ||
}, _callee2, null, [[1, 13]]); | ||
})); | ||
} | ||
return function (_x2) { | ||
return _ref2.apply(this, arguments); | ||
}; | ||
}(); | ||
/** | ||
* @description The Get all items in a Release request retrieves a list of all items (entries and assets) that are part of a specific Release. | ||
* @memberof ReleaseItem | ||
* @func findAll | ||
* @returns {Promise<ContentstackCollection.ContentstackCollection>} Promise for ContentType instance | ||
* @param {Boolean} param.include_count ‘include_count’ parameter includes the count of total number of items in Release, along with the details of each items. | ||
* @param {Int} param.limit The ‘limit’ parameter will return a specific number of release items in the output. | ||
* @param {Int} param.skip The ‘skip’ parameter will skip a specific number of release items in the response. | ||
* @example | ||
* import * as contentstack from '@contentstack/management' | ||
* const client = contentstack.client() | ||
* | ||
* client.stack({ api_key: 'api_key'}).release('release_uid').item().fetchAll() | ||
* .then((items) => console.log(items)) | ||
*/ | ||
this.findAll = /*#__PURE__*/(0, _asyncToGenerator3["default"])( /*#__PURE__*/_regenerator2["default"].mark(function _callee3() { | ||
var param, | ||
headers, | ||
response, | ||
_args3 = arguments; | ||
return _regenerator2["default"].wrap(function _callee3$(_context3) { | ||
while (1) { | ||
switch (_context3.prev = _context3.next) { | ||
case 0: | ||
param = _args3.length > 0 && _args3[0] !== undefined ? _args3[0] : {}; | ||
_context3.prev = 1; | ||
headers = { | ||
headers: _objectSpread({}, (0, _cloneDeep2["default"])(_this.stackHeaders)), | ||
params: _objectSpread({}, (0, _cloneDeep2["default"])(param)) | ||
} || {}; | ||
_context3.next = 5; | ||
return http.get(_this.urlPath, headers); | ||
case 5: | ||
response = _context3.sent; | ||
if (!response.data) { | ||
_context3.next = 10; | ||
break; | ||
} | ||
return _context3.abrupt("return", new _contentstackCollection2["default"](response, http, _this.stackHeaders, ReleaseItemCollection)); | ||
case 10: | ||
throw (0, _contentstackError2["default"])(response); | ||
case 11: | ||
_context3.next = 16; | ||
break; | ||
case 13: | ||
_context3.prev = 13; | ||
_context3.t0 = _context3["catch"](1); | ||
(0, _contentstackError2["default"])(_context3.t0); | ||
case 16: | ||
case "end": | ||
return _context3.stop(); | ||
} | ||
} | ||
}, _callee3, null, [[1, 13]]); | ||
})); | ||
} | ||
@@ -294,0 +332,0 @@ |
@@ -279,7 +279,7 @@ "use strict"; | ||
* @func fetchAll | ||
* @param {Int} limit The limit parameter will return a specific number of roles in the output. | ||
* @param {Int} skip The skip parameter will skip a specific number of roles in the output. | ||
* @param {String} asc When fetching roles, you can sort them in the ascending order with respect to the value of a specific field in the response body. | ||
* @param {String} desc When fetching roles, you can sort them in the decending order with respect to the value of a specific field in the response body. | ||
* @param {Boolean}include_count To retrieve the count of roles. | ||
* @param {Int} limit The limit parameter will return a specific number of webhooks in the output. | ||
* @param {Int} skip The skip parameter will skip a specific number of webhooks in the output. | ||
* @param {String} asc When fetching webhooks, you can sort them in the ascending order with respect to the value of a specific field in the response body. | ||
* @param {String} desc When fetching webhooks, you can sort them in the decending order with respect to the value of a specific field in the response body. | ||
* @param {Boolean}include_count To retrieve the count of webhooks. | ||
* @returns {ContentstackCollection} Result collection of content of specified module. | ||
@@ -286,0 +286,0 @@ * @example |
@@ -10,2 +10,15 @@ "use strict"; | ||
}); | ||
var _regenerator = require("@babel/runtime/regenerator"); | ||
var _regenerator2 = (0, _interopRequireDefault2["default"])(_regenerator); | ||
var _defineProperty2 = require("@babel/runtime/helpers/defineProperty"); | ||
var _defineProperty3 = (0, _interopRequireDefault2["default"])(_defineProperty2); | ||
var _asyncToGenerator2 = require("@babel/runtime/helpers/asyncToGenerator"); | ||
var _asyncToGenerator3 = (0, _interopRequireDefault2["default"])(_asyncToGenerator2); | ||
exports.User = User; | ||
@@ -26,2 +39,6 @@ exports.UserCollection = UserCollection; | ||
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; } | ||
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { (0, _defineProperty3["default"])(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; } | ||
/** | ||
@@ -136,2 +153,75 @@ * All accounts registered with Contentstack are known as Users. A stack can have many users with varying permissions and roles. Read Users to learn more. | ||
} | ||
/** | ||
* @description The Get all Tasks request retrieves a list of all tasks assigned to you. | ||
* @memberof User | ||
* @func getTasks | ||
* @param {Object} query Enter the actual query that will be executed to retrieve the tasks. This query should be in JSON format. | ||
* @param {Object} sort Enter the field UID on the basis of which you want to sort your tasks. | ||
* @param {Int} limit Enter the maximum number of tasks that you want to retrieve in the response. | ||
* @param {Int} skip Enter the number of tasks to be skipped. | ||
* @returns {Object} Response Object. | ||
* @example | ||
* import * as contentstack from '@contentstack/management' | ||
* const client = contentstack.client() | ||
* | ||
* client.stack({ api_key: 'api_key'}).getUser() | ||
* .then((user) => { | ||
* return user.getTasks() | ||
* }) | ||
* .then((response) => console.log(response.assignments)) | ||
* | ||
*/ | ||
this.getTasks = /*#__PURE__*/function () { | ||
var _ref2 = (0, _asyncToGenerator3["default"])( /*#__PURE__*/_regenerator2["default"].mark(function _callee(params) { | ||
var headers, response; | ||
return _regenerator2["default"].wrap(function _callee$(_context) { | ||
while (1) { | ||
switch (_context.prev = _context.next) { | ||
case 0: | ||
headers = {}; | ||
if (params) { | ||
headers.params = _objectSpread({}, (0, _cloneDeep2["default"])(params)); | ||
} | ||
_context.prev = 2; | ||
_context.next = 5; | ||
return http.get("/user/assignments", headers); | ||
case 5: | ||
response = _context.sent; | ||
if (!response.data) { | ||
_context.next = 10; | ||
break; | ||
} | ||
return _context.abrupt("return", response.data); | ||
case 10: | ||
throw (0, _contentstackError2["default"])(response); | ||
case 11: | ||
_context.next = 16; | ||
break; | ||
case 13: | ||
_context.prev = 13; | ||
_context.t0 = _context["catch"](2); | ||
throw (0, _contentstackError2["default"])(_context.t0); | ||
case 16: | ||
case "end": | ||
return _context.stop(); | ||
} | ||
} | ||
}, _callee, null, [[2, 13]]); | ||
})); | ||
return function (_x) { | ||
return _ref2.apply(this, arguments); | ||
}; | ||
}(); | ||
} | ||
@@ -138,0 +228,0 @@ |
@@ -42,2 +42,7 @@ /** | ||
* | ||
* @prop {number=} params.maxRequests - Optional maximum number of requests SDK should send concurrently. Default is 5 concurrent request. | ||
* @example //Set the `maxRequests` to 5 | ||
* import * as contentstack from '@contentstack/management' | ||
* const client = contentstack.client({ maxRequests: 5 }) | ||
* | ||
* @prop {boolean=} params.retryOnError - Optional boolean for retry on failuer. Default is true | ||
@@ -117,3 +122,3 @@ * @example //Set the `retryOnError` to false | ||
const sdkAgent = `${packages.name}-javascript/${packages.version}` | ||
const sdkAgent = `contentstack-management-javascript/${packages.version}` | ||
const userAgentHeader = getUserAgent(sdkAgent, | ||
@@ -120,0 +125,0 @@ params.application, |
@@ -90,3 +90,3 @@ /** | ||
function stack (params = {}) { | ||
var stack = { ...cloneDeep(params) } | ||
const stack = { ...cloneDeep(params) } | ||
return new Stack(http, { stack }) | ||
@@ -168,4 +168,5 @@ } | ||
stack: stack, | ||
organization: organization | ||
organization: organization, | ||
axiosInstance: http | ||
} | ||
} |
import clonedeep from 'lodash/cloneDeep' | ||
import Qs from 'qs' | ||
import axios from 'axios' | ||
import contentstackRetry from './contentstack-retry' | ||
import { isHost } from './Util' | ||
import { ConcurrencyQueue } from './concurrency-queue' | ||
@@ -75,2 +75,3 @@ export default function contentstackHttpClient (options) { | ||
} | ||
params.query = query | ||
return qs | ||
@@ -81,4 +82,4 @@ } | ||
instance.httpClientParams = options | ||
contentstackRetry(instance, axiosOptions, config.retyLimit, config.retryDelay) | ||
instance.concurrencyQueue = new ConcurrencyQueue({axios: instance, config}) | ||
return instance | ||
} |
@@ -131,3 +131,16 @@ import error from './core/contentstackError' | ||
const updateData = {} | ||
updateData[type] = cloneDeep(this) | ||
const json = cloneDeep(this) | ||
delete json.stackHeaders | ||
delete json.urlPath | ||
delete json.uid | ||
delete json.org_uid | ||
delete json.api_key | ||
delete json.created_at | ||
delete json.created_by | ||
delete json.deleted_at | ||
delete json.updated_at | ||
delete json.updated_by | ||
delete json.updated_at | ||
updateData[type] = json | ||
try { | ||
@@ -142,3 +155,3 @@ const response = await http.put(this.urlPath, updateData, { headers: { | ||
if (response.data) { | ||
return new this.constructor(http, parseData(response, this.stackHeaders, this.contentType_uid)) | ||
return new this.constructor(http, parseData(response, this.stackHeaders, this.content_type_uid)) | ||
} else { | ||
@@ -191,3 +204,3 @@ throw error(response) | ||
} | ||
return new this.constructor(http, parseData(response, this.stackHeaders)) | ||
return new this.constructor(http, parseData(response, this.stackHeaders, this.content_type_uid)) | ||
} else { | ||
@@ -208,5 +221,5 @@ throw error(response) | ||
if (contentTypeUID) { | ||
data.content_type = contentTypeUID | ||
data.content_type_uid = contentTypeUID | ||
} | ||
return data | ||
} |
@@ -5,4 +5,4 @@ import cloneDeep from 'lodash/cloneDeep' | ||
import ContentstackCollection from '../contentstackCollection' | ||
import { RoleCollection } from '../stack/roles/index' | ||
import { StackCollection } from '../stack/index' | ||
import { RoleCollection } from '../stack/roles' | ||
import { StackCollection } from '../stack' | ||
import { UserCollection } from '../user' | ||
@@ -41,6 +41,6 @@ /** | ||
* @func stacks | ||
* @param {Int} limit The limit parameter will return a specific number of roles in the output. | ||
* @param {Int} skip The skip parameter will skip a specific number of roles in the output. | ||
* @param {String} asc When fetching roles, you can sort them in the ascending order with respect to the value of a specific field in the response body. | ||
* @param {String} desc When fetching roles, you can sort them in the decending order with respect to the value of a specific field in the response body. | ||
* @param {Int} limit The limit parameter will return a specific number of stacks in the output. | ||
* @param {Int} skip The skip parameter will skip a specific number of stacks in the output. | ||
* @param {String} asc When fetching stacks, you can sort them in the ascending order with respect to the value of a specific field in the response body. | ||
* @param {String} desc When fetching stacks, you can sort them in the decending order with respect to the value of a specific field in the response body. | ||
* @param {Boolean} include_count To retrieve the count of stack. | ||
@@ -212,8 +212,8 @@ * @param {String} typeahead The type head contains value to be included in search. | ||
* @func fetchAll | ||
* @param {Int} limit The limit parameter will return a specific number of roles in the output. | ||
* @param {Int} skip The skip parameter will skip a specific number of roles in the output. | ||
* @param {String} asc When fetching roles, you can sort them in the ascending order with respect to the value of a specific field in the response body. | ||
* @param {String} desc When fetching roles, you can sort them in the decending order with respect to the value of a specific field in the response body. | ||
* @param {Boolean}include_count To retrieve the count of roles. | ||
* @param {String} typeahead The type head contains value to be included in search. | ||
* @param {Int} limit TThe ‘limit’ parameter will return a specific number of organizations in the output. | ||
* @param {Int} skip The ‘skip’ parameter will skip a specific number of organizations in the output. | ||
* @param {String} asc The ‘asc’ parameter allows you to sort the list of organizations in the ascending order with respect to the value of a specific field. | ||
* @param {String} desc The ‘desc’ parameter allows you to sort the list of Organizations in the descending order with respect to the value of a specific field. | ||
* @param {Boolean}include_count The ‘include_count’ parameter returns the total number of organizations related to the user. | ||
* @param {String} typeahead The typeahead parameter is a type of filter that allows you to perform a name-based search on all organizations based on the value provided. | ||
* @returns {ContentstackCollection} Result collection of content of specified module. | ||
@@ -220,0 +220,0 @@ * @example |
@@ -82,3 +82,3 @@ import cloneDeep from 'lodash/cloneDeep' | ||
* const asset = {name: 'My New contentType'} | ||
* client.stack().asset().folders().create({ asset }) | ||
* client.stack().asset().folder().create({ asset }) | ||
* .then((folder) => console.log(folder)) | ||
@@ -85,0 +85,0 @@ */ |
@@ -144,2 +144,46 @@ import cloneDeep from 'lodash/cloneDeep' | ||
this.unpublish = unpublish(http, 'entry') | ||
/** | ||
* @description This multipurpose request allows you to either send a publish request or accept/reject a received publish request. | ||
* @memberof Entry | ||
* @func publishRequest | ||
* @returns {Promise<Object>} Response Object. | ||
* @param {Object} publishing_rule Details for the publish request | ||
* @param {String} locale Enter the code of the locale that the entry belongs to. | ||
* @example | ||
* import * as contentstack from '@contentstack/management' | ||
* const client = contentstack.client() | ||
* | ||
* const publishing_rule = { | ||
* "uid": "blt9b9253297f117e84", | ||
* "action": "publish", //(‘publish’, ‘unpublish’, or ’both’) | ||
* "status": 1, //(this could be ‘0’ for Approval Requested, ‘1’ for ‘Approval Accepted’, and ‘-1’ for ‘Approval Rejected’), | ||
* "notify": false, | ||
* "comment": "Please review this." | ||
* } | ||
* client.stack({ api_key: 'api_key'}).contentType('content_type_uid').entry('uid').publishRequest({ publishing_rule, locale: 'en-us'}) | ||
* .then((response) => console.log(response.notice)) | ||
*/ | ||
this.publishRequest = async ({publishing_rule, locale}) => { | ||
const publishDetails = { | ||
workflow: { publishing_rule } | ||
} | ||
const headers = {} | ||
if (this.stackHeaders) { | ||
headers.headers = this.stackHeaders | ||
} | ||
headers.params = { | ||
locale | ||
} | ||
try { | ||
const response = await http.post(`${this.urlPath}/workflow`, publishDetails, headers) | ||
if (response.data) { | ||
return response.data | ||
} else { | ||
throw error(response) | ||
} | ||
} catch (err) { | ||
throw error(err) | ||
} | ||
} | ||
} else { | ||
@@ -146,0 +190,0 @@ /** |
@@ -29,3 +29,4 @@ import cloneDeep from 'lodash/cloneDeep' | ||
/** | ||
* @description The Update ContentType call lets you update the name and description of an existing ContentType. | ||
* @description The Update ContentType call lets you update the name and description of an existing ContentType. | ||
* You can also update the JSON schema of a content type, including fields and different features associated with the content type. | ||
* @memberof ContentType | ||
@@ -32,0 +33,0 @@ * @func update |
@@ -14,2 +14,3 @@ import cloneDeep from 'lodash/cloneDeep' | ||
import { Webhook } from './webhook' | ||
import { Workflow } from './workflow' | ||
import { Release } from './release' | ||
@@ -225,3 +226,26 @@ import { BulkOperation } from './bulkOperation' | ||
/** | ||
* @description Workflow is a tool that allows you to streamline the process of content creation and publishing, and lets you manage the content lifecycle of your project smoothly. | ||
* @param {String} workflowUid The UID of the Workflow you want to get details. | ||
* @returns {Workflow} Instace of Workflow. | ||
* @example | ||
* import * as contentstack from '@contentstack/management' | ||
* const client = contentstack.client() | ||
* | ||
* client.stack({ api_key: 'api_key'}).workflow().create() | ||
* .then((workflow) => console.log(workflow)) | ||
* | ||
* client.stack({ api_key: 'api_key'}).workflow('workflow_uid').fetch() | ||
* .then((workflow) => console.log(workflow)) | ||
*/ | ||
this.workflow = (workflowUid = null) => { | ||
const data = { stackHeaders: this.stackHeaders } | ||
if (workflowUid) { | ||
data.workflow = { uid: workflowUid } | ||
} | ||
return new Workflow(http, data) | ||
} | ||
/** | ||
* @description Webhooks allow you to specify a URL to which you would like Contentstack to post data when an event happens. | ||
@@ -228,0 +252,0 @@ * @param {String} webhookUid The UID of the Webhook you want to get details. |
@@ -112,3 +112,3 @@ import cloneDeep from 'lodash/cloneDeep' | ||
this.item = () => { | ||
return new ReleaseItem(http, { releaseUid: this.uid }) | ||
return new ReleaseItem(http, { releaseUid: this.uid , stackHeaders: this.stackHeaders }) | ||
} | ||
@@ -115,0 +115,0 @@ /** |
import cloneDeep from 'lodash/cloneDeep' | ||
import error from '../../../core/contentstackError' | ||
import ContentstackCollection from '../../../contentstackCollection' | ||
import { Release } from '..' | ||
@@ -11,90 +12,55 @@ /** | ||
this.stackHeaders = data.stackHeaders | ||
if (data.item) { | ||
Object.assign(this, cloneDeep(data.item)) | ||
} | ||
if (data.releaseUid) { | ||
this.urlPath = `releases/${data.releaseUid}/items` | ||
if (data.item) { | ||
Object.assign(this, cloneDeep(data.item)) | ||
} else { | ||
/** | ||
* @description The Delete method request deletes one or more items (entries and/or assets) from a specific Release. | ||
* @memberof ReleaseItem | ||
* @func delete | ||
* @param {Object} param.items Add multiple items to a Release | ||
* @param {Object} param.items Add multiple items to a Release | ||
* @returns {Object} Response Object. | ||
* @example | ||
* import * as contentstack from '@contentstack/management' | ||
* const client = contentstack.client() | ||
* | ||
* client.stack({ api_key: 'api_key'}).release('release_uid').delete() | ||
* .then((response) => console.log(response.notice)) | ||
*/ | ||
this.delete = async (param) => { | ||
try { | ||
const headers = { | ||
headers: { ...cloneDeep(this.stackHeaders) }, | ||
params: { | ||
all: true, | ||
...cloneDeep(param) | ||
} | ||
} || {} | ||
const response = await http.delete(this.urlPath, headers) | ||
if (response.data) { | ||
return response.data | ||
} else { | ||
throw error(response) | ||
} | ||
} catch (err) { | ||
throw error(err) | ||
} | ||
/** | ||
* @description The Delete method request deletes one or more items (entries and/or assets) from a specific Release. | ||
* @memberof ReleaseItem | ||
* @func delete | ||
* @param {Object} param.items Add multiple items to a Release | ||
* @param {Object} param.items Add multiple items to a Release | ||
* @returns {Object} Response Object. | ||
* @example | ||
* import * as contentstack from '@contentstack/management' | ||
* const client = contentstack.client() | ||
* // To delete all the items from release | ||
* client.stack({ api_key: 'api_key'}).release('release_uid').delete() | ||
* .then((response) => console.log(response.notice)) | ||
* | ||
* @example | ||
* // Delete specific items from delete | ||
* import * as contentstack from '@contentstack/management' | ||
* const client = contentstack.client() | ||
* | ||
* const items = [ | ||
* { | ||
* uid: "entry_or_asset_uid1", | ||
* version: 1, | ||
* locale: "en-us", | ||
* content_type_uid: "demo1", | ||
* action: "publish" | ||
* }, | ||
* { | ||
* uid: "entry_or_asset_uid2", | ||
* version: 4, | ||
* locale: "fr-fr", | ||
* content_type_uid: "demo2", | ||
* action: "publish" | ||
* } | ||
* ] | ||
* client.stack({ api_key: 'api_key'}).release('release_uid').delete({items}) | ||
* .then((response) => console.log(response.notice)) | ||
*/ | ||
this.delete = async (items) => { | ||
let param = {} | ||
if (items === undefined) { | ||
param = {all: true} | ||
} | ||
/** | ||
* @description The Create method allows you to add an one or more items items (entry or asset) to a Release. | ||
* @memberof ReleaseItem | ||
* @func create | ||
* @param {Object} param.item Add a single item to a Release | ||
* @param {Object} param.items Add multiple items to a Release | ||
* @returns {Promise<Release.Release>} Promise for Release instance | ||
* @example | ||
* import * as contentstack from '@contentstack/management' | ||
* const client = contentstack.client() | ||
* | ||
* const item = { | ||
* version: 1, | ||
* uid: "entry_or_asset_uid", | ||
* content_type_uid: "your_content_type_uid", | ||
* action: "publish", | ||
* locale: "en-us" | ||
* } | ||
* client.stack({ api_key: 'api_key'}).release('release_uid').item().create({ item }) | ||
* .then((release) => console.log(release)) | ||
* | ||
* @example | ||
* import * as contentstack from '@contentstack/management' | ||
* const client = contentstack.client() | ||
* | ||
* const items = [ | ||
* { | ||
* uid: "entry_or_asset_uid1", | ||
* version: 1, | ||
* locale: "en-us", | ||
* content_type_uid: "demo1", | ||
* action: "publish" | ||
* }, | ||
* { | ||
* uid: "entry_or_asset_uid2", | ||
* version: 4, | ||
* locale: "fr-fr", | ||
* content_type_uid: "demo2", | ||
* action: "publish" | ||
* } | ||
* ] | ||
* client.stack({ api_key: 'api_key'}).release('release_uid').item().create({ items }) | ||
* .then((release) => console.log(release)) | ||
*/ | ||
this.create = async (param) => { | ||
try { | ||
const headers = { | ||
headers: { | ||
...cloneDeep(this.stackHeaders) | ||
headers: { ...cloneDeep(this.stackHeaders) }, | ||
data: { | ||
...cloneDeep(items) | ||
}, | ||
@@ -106,50 +72,111 @@ params: { | ||
try { | ||
const response = await http.post(param.item ? `releases/${data.releaseUid}/item` : this.urlPath, data, headers) | ||
if (response.data) { | ||
if (response.data) { | ||
return new Release(http, response.data) | ||
} | ||
} else { | ||
throw error(response) | ||
} | ||
} catch (err) { | ||
throw error(err) | ||
const response = await http.delete(this.urlPath, headers) | ||
if (response.data) { | ||
return new Release(http, { ...response.data, stackHeaders: data.stackHeaders }) | ||
} else { | ||
throw error(response) | ||
} | ||
} catch (err) { | ||
throw error(err) | ||
} | ||
/** | ||
* @description The Get all items in a Release request retrieves a list of all items (entries and assets) that are part of a specific Release. | ||
* @memberof ReleaseItem | ||
* @func findAll | ||
* @returns {Promise<ReleaseItem.ReleaseItem>} Promise for ContentType instance | ||
* @param {Boolean} param.include_count ‘include_count’ parameter includes the count of total number of items in Release, along with the details of each items. | ||
* @param {Int} param.limit The ‘limit’ parameter will return a specific number of release items in the output. | ||
* @param {Int} param.skip The ‘skip’ parameter will skip a specific number of release items in the response. | ||
* @example | ||
* import * as contentstack from '@contentstack/management' | ||
* const client = contentstack.client() | ||
* | ||
* client.stack({ api_key: 'api_key'}).release('release_uid').item().fetchAll() | ||
* .then((items) => console.log(items)) | ||
*/ | ||
this.findAll = async (param = {}) => { | ||
try { | ||
const headers = { | ||
headers: { ...cloneDeep(this.stackHeaders) }, | ||
params: { | ||
...cloneDeep(param) | ||
} | ||
} || {} | ||
} | ||
const response = await http.get(this.urlPath, headers) | ||
/** | ||
* @description The Create method allows you to add an one or more items items (entry or asset) to a Release. | ||
* @memberof ReleaseItem | ||
* @func create | ||
* @param {Object} param.item Add a single item to a Release | ||
* @param {Object} param.items Add multiple items to a Release | ||
* @returns {Promise<Release.Release>} Promise for Release instance | ||
* @example | ||
* import * as contentstack from '@contentstack/management' | ||
* const client = contentstack.client() | ||
* | ||
* const item = { | ||
* version: 1, | ||
* uid: "entry_or_asset_uid", | ||
* content_type_uid: "your_content_type_uid", | ||
* action: "publish", | ||
* locale: "en-us" | ||
* } | ||
* client.stack({ api_key: 'api_key'}).release('release_uid').item().create({ item }) | ||
* .then((release) => console.log(release)) | ||
* | ||
* @example | ||
* import * as contentstack from '@contentstack/management' | ||
* const client = contentstack.client() | ||
* | ||
* const items = [ | ||
* { | ||
* uid: "entry_or_asset_uid1", | ||
* version: 1, | ||
* locale: "en-us", | ||
* content_type_uid: "demo1", | ||
* action: "publish" | ||
* }, | ||
* { | ||
* uid: "entry_or_asset_uid2", | ||
* version: 4, | ||
* locale: "fr-fr", | ||
* content_type_uid: "demo2", | ||
* action: "publish" | ||
* } | ||
* ] | ||
* client.stack({ api_key: 'api_key'}).release('release_uid').item().create({ items }) | ||
* .then((release) => console.log(release)) | ||
*/ | ||
this.create = async (param) => { | ||
const headers = { | ||
headers: { | ||
...cloneDeep(this.stackHeaders) | ||
} | ||
} || {} | ||
try { | ||
const response = await http.post(param.item ? `releases/${data.releaseUid}/item` : this.urlPath, param, headers) | ||
if (response.data) { | ||
if (response.data) { | ||
return ReleaseItemCollection(http, response.data, this.releaseUID) | ||
} else { | ||
throw error(response) | ||
return new Release(http, { ...response.data, stackHeaders: data.stackHeaders }) | ||
} | ||
} catch (err) { | ||
error(err) | ||
} else { | ||
throw error(response) | ||
} | ||
} catch (err) { | ||
throw error(err) | ||
} | ||
} | ||
/** | ||
* @description The Get all items in a Release request retrieves a list of all items (entries and assets) that are part of a specific Release. | ||
* @memberof ReleaseItem | ||
* @func findAll | ||
* @returns {Promise<ContentstackCollection.ContentstackCollection>} Promise for ContentType instance | ||
* @param {Boolean} param.include_count ‘include_count’ parameter includes the count of total number of items in Release, along with the details of each items. | ||
* @param {Int} param.limit The ‘limit’ parameter will return a specific number of release items in the output. | ||
* @param {Int} param.skip The ‘skip’ parameter will skip a specific number of release items in the response. | ||
* @example | ||
* import * as contentstack from '@contentstack/management' | ||
* const client = contentstack.client() | ||
* | ||
* client.stack({ api_key: 'api_key'}).release('release_uid').item().fetchAll() | ||
* .then((items) => console.log(items)) | ||
*/ | ||
this.findAll = async (param = {}) => { | ||
try { | ||
const headers = { | ||
headers: { ...cloneDeep(this.stackHeaders) }, | ||
params: { | ||
...cloneDeep(param) | ||
} | ||
} || {} | ||
const response = await http.get(this.urlPath, headers) | ||
if (response.data) { | ||
return new ContentstackCollection(response, http, this.stackHeaders, ReleaseItemCollection) | ||
} else { | ||
throw error(response) | ||
} | ||
} catch (err) { | ||
error(err) | ||
} | ||
} | ||
} | ||
@@ -156,0 +183,0 @@ return this |
@@ -168,7 +168,7 @@ import cloneDeep from 'lodash/cloneDeep' | ||
* @func fetchAll | ||
* @param {Int} limit The limit parameter will return a specific number of roles in the output. | ||
* @param {Int} skip The skip parameter will skip a specific number of roles in the output. | ||
* @param {String} asc When fetching roles, you can sort them in the ascending order with respect to the value of a specific field in the response body. | ||
* @param {String} desc When fetching roles, you can sort them in the decending order with respect to the value of a specific field in the response body. | ||
* @param {Boolean}include_count To retrieve the count of roles. | ||
* @param {Int} limit The limit parameter will return a specific number of webhooks in the output. | ||
* @param {Int} skip The skip parameter will skip a specific number of webhooks in the output. | ||
* @param {String} asc When fetching webhooks, you can sort them in the ascending order with respect to the value of a specific field in the response body. | ||
* @param {String} desc When fetching webhooks, you can sort them in the decending order with respect to the value of a specific field in the response body. | ||
* @param {Boolean}include_count To retrieve the count of webhooks. | ||
* @returns {ContentstackCollection} Result collection of content of specified module. | ||
@@ -175,0 +175,0 @@ * @example |
@@ -107,2 +107,42 @@ | ||
} | ||
/** | ||
* @description The Get all Tasks request retrieves a list of all tasks assigned to you. | ||
* @memberof User | ||
* @func getTasks | ||
* @param {Object} query Enter the actual query that will be executed to retrieve the tasks. This query should be in JSON format. | ||
* @param {Object} sort Enter the field UID on the basis of which you want to sort your tasks. | ||
* @param {Int} limit Enter the maximum number of tasks that you want to retrieve in the response. | ||
* @param {Int} skip Enter the number of tasks to be skipped. | ||
* @returns {Object} Response Object. | ||
* @example | ||
* import * as contentstack from '@contentstack/management' | ||
* const client = contentstack.client() | ||
* | ||
* client.stack({ api_key: 'api_key'}).getUser() | ||
* .then((user) => { | ||
* return user.getTasks() | ||
* }) | ||
* .then((response) => console.log(response.assignments)) | ||
* | ||
*/ | ||
this.getTasks = async (params) => { | ||
const headers = {} | ||
if (params) { | ||
headers.params = { | ||
...cloneDeep(params) | ||
} | ||
} | ||
try { | ||
const response = await http.get(`/user/assignments`, headers) | ||
if (response.data) { | ||
return response.data | ||
} else { | ||
throw error(response) | ||
} | ||
} catch (err) { | ||
throw error(err) | ||
} | ||
} | ||
} | ||
@@ -109,0 +149,0 @@ return this |
{ | ||
"name": "@contentstack/management", | ||
"version": "1.1.2", | ||
"version": "1.2.0", | ||
"description": "The Content Management API is used to manage the content of your Contentstack account", | ||
@@ -37,2 +37,3 @@ "main": "dist/node/contentstack-management.js", | ||
"format": "eslint --fix lib test", | ||
"prepare": "npm run build && npm run generate:docs", | ||
"pretest": "rimraf coverage && npm run lint", | ||
@@ -39,0 +40,0 @@ "precommit": "npm run lint", |
@@ -107,3 +107,3 @@ [](https://www.contentstack.com/) | ||
### The MIT License (MIT) | ||
Copyright © 2012-2020 [Contentstack](https://www.contentstack.com/). All Rights Reserved | ||
Copyright © 2012-2021 [Contentstack](https://www.contentstack.com/). All Rights Reserved | ||
@@ -110,0 +110,0 @@ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 2 instances in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 2 instances in 1 package
Long strings
Supply chain riskContains long string literals, which may be a sign of obfuscated or packed code.
Found 1 instance in 1 package
1413970
11.94%95
6.74%18769
15.99%47
9.3%