contentful-management 9.2.0 → 9.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -10182,7 +10182,7 @@ function createClient(params) {
10182
10182
  var opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
10183
10183
  var sdkMain = opts.type === 'plain' ? 'contentful-management-plain.js' : 'contentful-management.js';
10184
10184
  var userAgent = Object(contentful_sdk_core__WEBPACK_IMPORTED_MODULE_0__["getUserAgentHeader"])( // @ts-expect-error
10185
- "".concat(sdkMain, "/").concat("9.2.0"), params.application, params.integration, params.feature);
10185
+ "".concat(sdkMain, "/").concat("9.4.0"), params.application, params.integration, params.feature);
10186
10186
  var adapter = Object(_create_adapter__WEBPACK_IMPORTED_MODULE_1__["createAdapter"])(params); // Parameters<?> and ReturnType<?> only return the types of the last overload
10187
10187
  // https://github.com/microsoft/TypeScript/issues/26591
10188
10188
  // @ts-expect-error
@@ -16399,12 +16399,12 @@ function wrapAppActionCall(_makeRequest, data) {
16399
16399
  /*!********************************!*\
16400
16400
  !*** ./entities/app-action.ts ***!
16401
16401
  \********************************/
16402
- /*! exports provided: ActionTypes, wrapAppAction, wrapAppActionCollection */
16402
+ /*! exports provided: AppActionCategory, wrapAppAction, wrapAppActionCollection */
16403
16403
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
16404
16404
 
16405
16405
  "use strict";
16406
16406
  __webpack_require__.r(__webpack_exports__);
16407
- /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "ActionTypes", function() { return ActionTypes; });
16407
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "AppActionCategory", function() { return AppActionCategory; });
16408
16408
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapAppAction", function() { return wrapAppAction; });
16409
16409
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapAppActionCollection", function() { return wrapAppActionCollection; });
16410
16410
  /* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
@@ -16416,11 +16416,13 @@ __webpack_require__.r(__webpack_exports__);
16416
16416
 
16417
16417
 
16418
16418
 
16419
- var ActionTypes;
16419
+ var AppActionCategory;
16420
16420
 
16421
- (function (ActionTypes) {
16422
- ActionTypes["Endpoint"] = "endpoint";
16423
- })(ActionTypes || (ActionTypes = {}));
16421
+ (function (AppActionCategory) {
16422
+ AppActionCategory["EntryListV1Beta"] = "EntryList.v1.0-beta";
16423
+ AppActionCategory["NotificationV1Beta"] = "Notification.v1.0-beta";
16424
+ AppActionCategory["Custom"] = "Custom";
16425
+ })(AppActionCategory || (AppActionCategory = {}));
16424
16426
 
16425
16427
  /**
16426
16428
  * @private
@@ -19807,11 +19809,14 @@ var wrapWebhookCollection = Object(_common_utils__WEBPACK_IMPORTED_MODULE_2__["w
19807
19809
  /*!*****************************************!*\
19808
19810
  !*** ./entities/workflow-definition.ts ***!
19809
19811
  \*****************************************/
19810
- /*! exports provided: WorkflowStepActionType, default, wrapWorkflowDefinition, wrapWorkflowDefinitionCollection */
19812
+ /*! exports provided: WorkflowStepPermissionType, WorkflowStepPermissionAction, WorkflowStepPermissionEffect, WorkflowStepActionType, default, wrapWorkflowDefinition, wrapWorkflowDefinitionCollection */
19811
19813
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
19812
19814
 
19813
19815
  "use strict";
19814
19816
  __webpack_require__.r(__webpack_exports__);
19817
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "WorkflowStepPermissionType", function() { return WorkflowStepPermissionType; });
19818
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "WorkflowStepPermissionAction", function() { return WorkflowStepPermissionAction; });
19819
+ /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "WorkflowStepPermissionEffect", function() { return WorkflowStepPermissionEffect; });
19815
19820
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "WorkflowStepActionType", function() { return WorkflowStepActionType; });
19816
19821
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return createWorkflowDefinitionApi; });
19817
19822
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapWorkflowDefinition", function() { return wrapWorkflowDefinition; });
@@ -19831,6 +19836,27 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope
19831
19836
 
19832
19837
 
19833
19838
 
19839
+ /* Workflow Step Permission */
19840
+
19841
+ var WorkflowStepPermissionType;
19842
+
19843
+ (function (WorkflowStepPermissionType) {
19844
+ WorkflowStepPermissionType["EntityPermission"] = "entity_permission";
19845
+ })(WorkflowStepPermissionType || (WorkflowStepPermissionType = {}));
19846
+
19847
+ var WorkflowStepPermissionAction;
19848
+
19849
+ (function (WorkflowStepPermissionAction) {
19850
+ WorkflowStepPermissionAction["Edit"] = "edit";
19851
+ WorkflowStepPermissionAction["Publish"] = "publish";
19852
+ })(WorkflowStepPermissionAction || (WorkflowStepPermissionAction = {}));
19853
+
19854
+ var WorkflowStepPermissionEffect;
19855
+
19856
+ (function (WorkflowStepPermissionEffect) {
19857
+ WorkflowStepPermissionEffect["Allow"] = "allow";
19858
+ WorkflowStepPermissionEffect["Deny"] = "deny";
19859
+ })(WorkflowStepPermissionEffect || (WorkflowStepPermissionEffect = {}));
19834
19860
 
19835
19861
  /* Workflow Step Action */
19836
19862
  var WorkflowStepActionType;