contentful-management 12.3.1 → 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 +2 -6
package/dist/browser/index.js
CHANGED
|
@@ -24569,6 +24569,30 @@ var contentfulManagement = (function (exports) {
|
|
|
24569
24569
|
throw new Error(`Can not determine collection type of response, neither property "total" nor "pages" are present.`);
|
|
24570
24570
|
}
|
|
24571
24571
|
|
|
24572
|
+
exports.WorkflowStepPermissionType = void 0;
|
|
24573
|
+
(function (WorkflowStepPermissionType) {
|
|
24574
|
+
WorkflowStepPermissionType["EntityPermission"] = "entity_permission";
|
|
24575
|
+
WorkflowStepPermissionType["WorkflowPermission"] = "workflow_permission";
|
|
24576
|
+
})(exports.WorkflowStepPermissionType || (exports.WorkflowStepPermissionType = {}));
|
|
24577
|
+
exports.WorkflowStepPermissionAction = void 0;
|
|
24578
|
+
(function (WorkflowStepPermissionAction) {
|
|
24579
|
+
WorkflowStepPermissionAction["Edit"] = "edit";
|
|
24580
|
+
WorkflowStepPermissionAction["Publish"] = "publish";
|
|
24581
|
+
WorkflowStepPermissionAction["Delete"] = "delete";
|
|
24582
|
+
})(exports.WorkflowStepPermissionAction || (exports.WorkflowStepPermissionAction = {}));
|
|
24583
|
+
exports.WorkflowStepPermissionEffect = void 0;
|
|
24584
|
+
(function (WorkflowStepPermissionEffect) {
|
|
24585
|
+
WorkflowStepPermissionEffect["Allow"] = "allow";
|
|
24586
|
+
WorkflowStepPermissionEffect["Deny"] = "deny";
|
|
24587
|
+
})(exports.WorkflowStepPermissionEffect || (exports.WorkflowStepPermissionEffect = {}));
|
|
24588
|
+
/* Workflow Step Action */
|
|
24589
|
+
var WorkflowStepActionType;
|
|
24590
|
+
(function (WorkflowStepActionType) {
|
|
24591
|
+
WorkflowStepActionType["App"] = "app";
|
|
24592
|
+
WorkflowStepActionType["Email"] = "email";
|
|
24593
|
+
WorkflowStepActionType["Task"] = "task";
|
|
24594
|
+
})(WorkflowStepActionType || (WorkflowStepActionType = {}));
|
|
24595
|
+
|
|
24572
24596
|
/**
|
|
24573
24597
|
* Contentful Management API SDK. Allows you to create instances of a client
|
|
24574
24598
|
* with access to the Contentful Content Management API.
|