contentful-management 9.3.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.3.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
@@ -19809,11 +19809,14 @@ var wrapWebhookCollection = Object(_common_utils__WEBPACK_IMPORTED_MODULE_2__["w
19809
19809
  /*!*****************************************!*\
19810
19810
  !*** ./entities/workflow-definition.ts ***!
19811
19811
  \*****************************************/
19812
- /*! exports provided: WorkflowStepActionType, default, wrapWorkflowDefinition, wrapWorkflowDefinitionCollection */
19812
+ /*! exports provided: WorkflowStepPermissionType, WorkflowStepPermissionAction, WorkflowStepPermissionEffect, WorkflowStepActionType, default, wrapWorkflowDefinition, wrapWorkflowDefinitionCollection */
19813
19813
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
19814
19814
 
19815
19815
  "use strict";
19816
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; });
19817
19820
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "WorkflowStepActionType", function() { return WorkflowStepActionType; });
19818
19821
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return createWorkflowDefinitionApi; });
19819
19822
  /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapWorkflowDefinition", function() { return wrapWorkflowDefinition; });
@@ -19833,6 +19836,27 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope
19833
19836
 
19834
19837
 
19835
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 = {}));
19836
19860
 
19837
19861
  /* Workflow Step Action */
19838
19862
  var WorkflowStepActionType;