contentful-management 9.2.0 → 9.2.1
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/contentful-management.browser.js +9 -7
- package/dist/contentful-management.browser.js.map +1 -1
- package/dist/contentful-management.browser.min.js +1 -1
- package/dist/contentful-management.legacy.js +9 -7
- package/dist/contentful-management.legacy.js.map +1 -1
- package/dist/contentful-management.legacy.min.js +1 -1
- package/dist/contentful-management.node.js +9 -7
- package/dist/contentful-management.node.js.map +1 -1
- package/dist/contentful-management.node.min.js +1 -1
- package/dist/es-modules/contentful-management.js +1 -1
- package/dist/es-modules/entities/app-action.js +6 -4
- package/dist/typings/entities/app-action-call.d.ts +1 -5
- package/dist/typings/entities/app-action.d.ts +11 -14
- package/dist/typings/export-types.d.ts +1 -1
- package/package.json +1 -1
|
@@ -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.
|
|
10185
|
+
"".concat(sdkMain, "/").concat("9.2.1"), 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:
|
|
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__, "
|
|
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
|
|
16419
|
+
var AppActionCategory;
|
|
16420
16420
|
|
|
16421
|
-
(function (
|
|
16422
|
-
|
|
16423
|
-
|
|
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
|