contentful-management 12.3.0 → 12.3.2
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.
- package/dist/browser/index.js +24 -0
- package/dist/browser/index.js.map +1 -1
- package/dist/browser/index.min.js +1 -1
- package/dist/browser/index.min.js.map +1 -1
- package/dist/cjs/index.cjs +24 -0
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/esm/entities/workflow-definition.mjs +29 -0
- package/dist/esm/entities/workflow-definition.mjs.map +1 -0
- package/dist/esm/index.mjs +1 -0
- package/dist/esm/index.mjs.map +1 -1
- package/dist/types/entities/workflow-definition.js +29 -0
- package/dist/types/entities/workflow-definition.js.map +1 -0
- package/dist/types/export-types.d.ts +0 -1
- package/dist/types/index.d.ts +1 -0
- package/dist/types/index.js +1 -0
- package/dist/types/index.js.map +1 -1
- package/package.json +3 -7
package/dist/cjs/index.cjs
CHANGED
|
@@ -14830,6 +14830,30 @@ async function fetchAll(fetchFn, params) {
|
|
|
14830
14830
|
throw new Error(`Can not determine collection type of response, neither property "total" nor "pages" are present.`);
|
|
14831
14831
|
}
|
|
14832
14832
|
|
|
14833
|
+
exports.WorkflowStepPermissionType = void 0;
|
|
14834
|
+
(function (WorkflowStepPermissionType) {
|
|
14835
|
+
WorkflowStepPermissionType["EntityPermission"] = "entity_permission";
|
|
14836
|
+
WorkflowStepPermissionType["WorkflowPermission"] = "workflow_permission";
|
|
14837
|
+
})(exports.WorkflowStepPermissionType || (exports.WorkflowStepPermissionType = {}));
|
|
14838
|
+
exports.WorkflowStepPermissionAction = void 0;
|
|
14839
|
+
(function (WorkflowStepPermissionAction) {
|
|
14840
|
+
WorkflowStepPermissionAction["Edit"] = "edit";
|
|
14841
|
+
WorkflowStepPermissionAction["Publish"] = "publish";
|
|
14842
|
+
WorkflowStepPermissionAction["Delete"] = "delete";
|
|
14843
|
+
})(exports.WorkflowStepPermissionAction || (exports.WorkflowStepPermissionAction = {}));
|
|
14844
|
+
exports.WorkflowStepPermissionEffect = void 0;
|
|
14845
|
+
(function (WorkflowStepPermissionEffect) {
|
|
14846
|
+
WorkflowStepPermissionEffect["Allow"] = "allow";
|
|
14847
|
+
WorkflowStepPermissionEffect["Deny"] = "deny";
|
|
14848
|
+
})(exports.WorkflowStepPermissionEffect || (exports.WorkflowStepPermissionEffect = {}));
|
|
14849
|
+
/* Workflow Step Action */
|
|
14850
|
+
var WorkflowStepActionType;
|
|
14851
|
+
(function (WorkflowStepActionType) {
|
|
14852
|
+
WorkflowStepActionType["App"] = "app";
|
|
14853
|
+
WorkflowStepActionType["Email"] = "email";
|
|
14854
|
+
WorkflowStepActionType["Task"] = "task";
|
|
14855
|
+
})(WorkflowStepActionType || (WorkflowStepActionType = {}));
|
|
14856
|
+
|
|
14833
14857
|
/**
|
|
14834
14858
|
* Contentful Management API SDK. Allows you to create instances of a client
|
|
14835
14859
|
* with access to the Contentful Content Management API.
|