contentful-management 10.31.6 → 10.33.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.
- package/dist/contentful-management.browser.js +154 -5
- package/dist/contentful-management.browser.js.map +1 -1
- package/dist/contentful-management.browser.min.js +1 -1
- package/dist/contentful-management.node.js +111 -5
- package/dist/contentful-management.node.js.map +1 -1
- package/dist/contentful-management.node.min.js +1 -1
- package/dist/es-modules/adapters/REST/endpoints/app-action-call.js +59 -1
- package/dist/es-modules/adapters/REST/endpoints/app-bundle.js +4 -2
- package/dist/es-modules/entities/app-action-call.js +54 -0
- package/dist/es-modules/plain/plain-client.js +2 -1
- package/dist/typings/adapters/REST/endpoints/app-action-call.d.ts +1 -0
- package/dist/typings/common-types.d.ts +9 -2
- package/dist/typings/entities/app-action-call.d.ts +25 -1
- package/dist/typings/entities/app-bundle.d.ts +8 -0
- package/dist/typings/plain/common-types.d.ts +3 -2
- package/package.json +1 -1
|
@@ -9129,14 +9129,24 @@ var del = function del(http, params) {
|
|
|
9129
9129
|
/*!****************************************************!*\
|
|
9130
9130
|
!*** ./adapters/REST/endpoints/app-action-call.ts ***!
|
|
9131
9131
|
\****************************************************/
|
|
9132
|
-
/*! exports provided: create, getCallDetails */
|
|
9132
|
+
/*! exports provided: create, getCallDetails, createWithResponse */
|
|
9133
9133
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
9134
9134
|
|
|
9135
9135
|
"use strict";
|
|
9136
9136
|
__webpack_require__.r(__webpack_exports__);
|
|
9137
9137
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "create", function() { return create; });
|
|
9138
9138
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "getCallDetails", function() { return getCallDetails; });
|
|
9139
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "createWithResponse", function() { return createWithResponse; });
|
|
9139
9140
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
9141
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
9142
|
+
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); enumerableOnly && (symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; })), keys.push.apply(keys, symbols); } return keys; }
|
|
9143
|
+
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = null != arguments[i] ? arguments[i] : {}; i % 2 ? ownKeys(Object(source), !0).forEach(function (key) { _defineProperty(target, key, source[key]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)) : ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } return target; }
|
|
9144
|
+
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
|
9145
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
|
|
9146
|
+
function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
|
9147
|
+
function _regeneratorRuntime() { "use strict"; /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/facebook/regenerator/blob/main/LICENSE */ _regeneratorRuntime = function _regeneratorRuntime() { return exports; }; var exports = {}, Op = Object.prototype, hasOwn = Op.hasOwnProperty, defineProperty = Object.defineProperty || function (obj, key, desc) { obj[key] = desc.value; }, $Symbol = "function" == typeof Symbol ? Symbol : {}, iteratorSymbol = $Symbol.iterator || "@@iterator", asyncIteratorSymbol = $Symbol.asyncIterator || "@@asyncIterator", toStringTagSymbol = $Symbol.toStringTag || "@@toStringTag"; function define(obj, key, value) { return Object.defineProperty(obj, key, { value: value, enumerable: !0, configurable: !0, writable: !0 }), obj[key]; } try { define({}, ""); } catch (err) { define = function define(obj, key, value) { return obj[key] = value; }; } function wrap(innerFn, outerFn, self, tryLocsList) { var protoGenerator = outerFn && outerFn.prototype instanceof Generator ? outerFn : Generator, generator = Object.create(protoGenerator.prototype), context = new Context(tryLocsList || []); return defineProperty(generator, "_invoke", { value: makeInvokeMethod(innerFn, self, context) }), generator; } function tryCatch(fn, obj, arg) { try { return { type: "normal", arg: fn.call(obj, arg) }; } catch (err) { return { type: "throw", arg: err }; } } exports.wrap = wrap; var ContinueSentinel = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} var IteratorPrototype = {}; define(IteratorPrototype, iteratorSymbol, function () { return this; }); var getProto = Object.getPrototypeOf, NativeIteratorPrototype = getProto && getProto(getProto(values([]))); NativeIteratorPrototype && NativeIteratorPrototype !== Op && hasOwn.call(NativeIteratorPrototype, iteratorSymbol) && (IteratorPrototype = NativeIteratorPrototype); var Gp = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(IteratorPrototype); function defineIteratorMethods(prototype) { ["next", "throw", "return"].forEach(function (method) { define(prototype, method, function (arg) { return this._invoke(method, arg); }); }); } function AsyncIterator(generator, PromiseImpl) { function invoke(method, arg, resolve, reject) { var record = tryCatch(generator[method], generator, arg); if ("throw" !== record.type) { var result = record.arg, value = result.value; return value && "object" == _typeof(value) && hasOwn.call(value, "__await") ? PromiseImpl.resolve(value.__await).then(function (value) { invoke("next", value, resolve, reject); }, function (err) { invoke("throw", err, resolve, reject); }) : PromiseImpl.resolve(value).then(function (unwrapped) { result.value = unwrapped, resolve(result); }, function (error) { return invoke("throw", error, resolve, reject); }); } reject(record.arg); } var previousPromise; defineProperty(this, "_invoke", { value: function value(method, arg) { function callInvokeWithMethodAndArg() { return new PromiseImpl(function (resolve, reject) { invoke(method, arg, resolve, reject); }); } return previousPromise = previousPromise ? previousPromise.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); } }); } function makeInvokeMethod(innerFn, self, context) { var state = "suspendedStart"; return function (method, arg) { if ("executing" === state) throw new Error("Generator is already running"); if ("completed" === state) { if ("throw" === method) throw arg; return doneResult(); } for (context.method = method, context.arg = arg;;) { var delegate = context.delegate; if (delegate) { var delegateResult = maybeInvokeDelegate(delegate, context); if (delegateResult) { if (delegateResult === ContinueSentinel) continue; return delegateResult; } } if ("next" === context.method) context.sent = context._sent = context.arg;else if ("throw" === context.method) { if ("suspendedStart" === state) throw state = "completed", context.arg; context.dispatchException(context.arg); } else "return" === context.method && context.abrupt("return", context.arg); state = "executing"; var record = tryCatch(innerFn, self, context); if ("normal" === record.type) { if (state = context.done ? "completed" : "suspendedYield", record.arg === ContinueSentinel) continue; return { value: record.arg, done: context.done }; } "throw" === record.type && (state = "completed", context.method = "throw", context.arg = record.arg); } }; } function maybeInvokeDelegate(delegate, context) { var methodName = context.method, method = delegate.iterator[methodName]; if (undefined === method) return context.delegate = null, "throw" === methodName && delegate.iterator.return && (context.method = "return", context.arg = undefined, maybeInvokeDelegate(delegate, context), "throw" === context.method) || "return" !== methodName && (context.method = "throw", context.arg = new TypeError("The iterator does not provide a '" + methodName + "' method")), ContinueSentinel; var record = tryCatch(method, delegate.iterator, context.arg); if ("throw" === record.type) return context.method = "throw", context.arg = record.arg, context.delegate = null, ContinueSentinel; var info = record.arg; return info ? info.done ? (context[delegate.resultName] = info.value, context.next = delegate.nextLoc, "return" !== context.method && (context.method = "next", context.arg = undefined), context.delegate = null, ContinueSentinel) : info : (context.method = "throw", context.arg = new TypeError("iterator result is not an object"), context.delegate = null, ContinueSentinel); } function pushTryEntry(locs) { var entry = { tryLoc: locs[0] }; 1 in locs && (entry.catchLoc = locs[1]), 2 in locs && (entry.finallyLoc = locs[2], entry.afterLoc = locs[3]), this.tryEntries.push(entry); } function resetTryEntry(entry) { var record = entry.completion || {}; record.type = "normal", delete record.arg, entry.completion = record; } function Context(tryLocsList) { this.tryEntries = [{ tryLoc: "root" }], tryLocsList.forEach(pushTryEntry, this), this.reset(!0); } function values(iterable) { if (iterable) { var iteratorMethod = iterable[iteratorSymbol]; if (iteratorMethod) return iteratorMethod.call(iterable); if ("function" == typeof iterable.next) return iterable; if (!isNaN(iterable.length)) { var i = -1, next = function next() { for (; ++i < iterable.length;) if (hasOwn.call(iterable, i)) return next.value = iterable[i], next.done = !1, next; return next.value = undefined, next.done = !0, next; }; return next.next = next; } } return { next: doneResult }; } function doneResult() { return { value: undefined, done: !0 }; } return GeneratorFunction.prototype = GeneratorFunctionPrototype, defineProperty(Gp, "constructor", { value: GeneratorFunctionPrototype, configurable: !0 }), defineProperty(GeneratorFunctionPrototype, "constructor", { value: GeneratorFunction, configurable: !0 }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, toStringTagSymbol, "GeneratorFunction"), exports.isGeneratorFunction = function (genFun) { var ctor = "function" == typeof genFun && genFun.constructor; return !!ctor && (ctor === GeneratorFunction || "GeneratorFunction" === (ctor.displayName || ctor.name)); }, exports.mark = function (genFun) { return Object.setPrototypeOf ? Object.setPrototypeOf(genFun, GeneratorFunctionPrototype) : (genFun.__proto__ = GeneratorFunctionPrototype, define(genFun, toStringTagSymbol, "GeneratorFunction")), genFun.prototype = Object.create(Gp), genFun; }, exports.awrap = function (arg) { return { __await: arg }; }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, asyncIteratorSymbol, function () { return this; }), exports.AsyncIterator = AsyncIterator, exports.async = function (innerFn, outerFn, self, tryLocsList, PromiseImpl) { void 0 === PromiseImpl && (PromiseImpl = Promise); var iter = new AsyncIterator(wrap(innerFn, outerFn, self, tryLocsList), PromiseImpl); return exports.isGeneratorFunction(outerFn) ? iter : iter.next().then(function (result) { return result.done ? result.value : iter.next(); }); }, defineIteratorMethods(Gp), define(Gp, toStringTagSymbol, "Generator"), define(Gp, iteratorSymbol, function () { return this; }), define(Gp, "toString", function () { return "[object Generator]"; }), exports.keys = function (val) { var object = Object(val), keys = []; for (var key in object) keys.push(key); return keys.reverse(), function next() { for (; keys.length;) { var key = keys.pop(); if (key in object) return next.value = key, next.done = !1, next; } return next.done = !0, next; }; }, exports.values = values, Context.prototype = { constructor: Context, reset: function reset(skipTempReset) { if (this.prev = 0, this.next = 0, this.sent = this._sent = undefined, this.done = !1, this.delegate = null, this.method = "next", this.arg = undefined, this.tryEntries.forEach(resetTryEntry), !skipTempReset) for (var name in this) "t" === name.charAt(0) && hasOwn.call(this, name) && !isNaN(+name.slice(1)) && (this[name] = undefined); }, stop: function stop() { this.done = !0; var rootRecord = this.tryEntries[0].completion; if ("throw" === rootRecord.type) throw rootRecord.arg; return this.rval; }, dispatchException: function dispatchException(exception) { if (this.done) throw exception; var context = this; function handle(loc, caught) { return record.type = "throw", record.arg = exception, context.next = loc, caught && (context.method = "next", context.arg = undefined), !!caught; } for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i], record = entry.completion; if ("root" === entry.tryLoc) return handle("end"); if (entry.tryLoc <= this.prev) { var hasCatch = hasOwn.call(entry, "catchLoc"), hasFinally = hasOwn.call(entry, "finallyLoc"); if (hasCatch && hasFinally) { if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0); if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc); } else if (hasCatch) { if (this.prev < entry.catchLoc) return handle(entry.catchLoc, !0); } else { if (!hasFinally) throw new Error("try statement without catch or finally"); if (this.prev < entry.finallyLoc) return handle(entry.finallyLoc); } } } }, abrupt: function abrupt(type, arg) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.tryLoc <= this.prev && hasOwn.call(entry, "finallyLoc") && this.prev < entry.finallyLoc) { var finallyEntry = entry; break; } } finallyEntry && ("break" === type || "continue" === type) && finallyEntry.tryLoc <= arg && arg <= finallyEntry.finallyLoc && (finallyEntry = null); var record = finallyEntry ? finallyEntry.completion : {}; return record.type = type, record.arg = arg, finallyEntry ? (this.method = "next", this.next = finallyEntry.finallyLoc, ContinueSentinel) : this.complete(record); }, complete: function complete(record, afterLoc) { if ("throw" === record.type) throw record.arg; return "break" === record.type || "continue" === record.type ? this.next = record.arg : "return" === record.type ? (this.rval = this.arg = record.arg, this.method = "return", this.next = "end") : "normal" === record.type && afterLoc && (this.next = afterLoc), ContinueSentinel; }, finish: function finish(finallyLoc) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.finallyLoc === finallyLoc) return this.complete(entry.completion, entry.afterLoc), resetTryEntry(entry), ContinueSentinel; } }, catch: function _catch(tryLoc) { for (var i = this.tryEntries.length - 1; i >= 0; --i) { var entry = this.tryEntries[i]; if (entry.tryLoc === tryLoc) { var record = entry.completion; if ("throw" === record.type) { var thrown = record.arg; resetTryEntry(entry); } return thrown; } } throw new Error("illegal catch attempt"); }, delegateYield: function delegateYield(iterable, resultName, nextLoc) { return this.delegate = { iterator: values(iterable), resultName: resultName, nextLoc: nextLoc }, "next" === this.method && (this.arg = undefined), ContinueSentinel; } }, exports; }
|
|
9148
|
+
function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
|
|
9149
|
+
function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
|
|
9140
9150
|
|
|
9141
9151
|
var create = function create(http, params, data) {
|
|
9142
9152
|
return _raw__WEBPACK_IMPORTED_MODULE_0__["post"](http, "/spaces/".concat(params.spaceId, "/environments/").concat(params.environmentId, "/app_installations/").concat(params.appDefinitionId, "/actions/").concat(params.appActionId, "/calls"), data);
|
|
@@ -9144,6 +9154,79 @@ var create = function create(http, params, data) {
|
|
|
9144
9154
|
var getCallDetails = function getCallDetails(http, params) {
|
|
9145
9155
|
return _raw__WEBPACK_IMPORTED_MODULE_0__["get"](http, "/spaces/".concat(params.spaceId, "/environments/").concat(params.environmentId, "/actions/").concat(params.appActionId, "/calls/").concat(params.callId));
|
|
9146
9156
|
};
|
|
9157
|
+
var APP_ACTION_CALL_RETRY_INTERVAL = 2000;
|
|
9158
|
+
var APP_ACTION_CALL_RETRIES = 10;
|
|
9159
|
+
function callAppActionResult(_x, _x2, _x3) {
|
|
9160
|
+
return _callAppActionResult.apply(this, arguments);
|
|
9161
|
+
}
|
|
9162
|
+
function _callAppActionResult() {
|
|
9163
|
+
_callAppActionResult = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee2(http, params, _ref) {
|
|
9164
|
+
var resolve, reject, _ref$retryInterval, retryInterval, _ref$retries, retries, _ref$checkCount, checkCount, callId, appActionResponse, error;
|
|
9165
|
+
return _regeneratorRuntime().wrap(function _callee2$(_context2) {
|
|
9166
|
+
while (1) switch (_context2.prev = _context2.next) {
|
|
9167
|
+
case 0:
|
|
9168
|
+
resolve = _ref.resolve, reject = _ref.reject, _ref$retryInterval = _ref.retryInterval, retryInterval = _ref$retryInterval === void 0 ? APP_ACTION_CALL_RETRY_INTERVAL : _ref$retryInterval, _ref$retries = _ref.retries, retries = _ref$retries === void 0 ? APP_ACTION_CALL_RETRIES : _ref$retries, _ref$checkCount = _ref.checkCount, checkCount = _ref$checkCount === void 0 ? 0 : _ref$checkCount, callId = _ref.callId;
|
|
9169
|
+
_context2.next = 3;
|
|
9170
|
+
return getCallDetails(http, _objectSpread(_objectSpread({}, params), {}, {
|
|
9171
|
+
callId: callId
|
|
9172
|
+
}));
|
|
9173
|
+
case 3:
|
|
9174
|
+
appActionResponse = _context2.sent;
|
|
9175
|
+
if (appActionResponse && appActionResponse.sys && appActionResponse.sys.id) {
|
|
9176
|
+
resolve(appActionResponse);
|
|
9177
|
+
} else if (checkCount === retries) {
|
|
9178
|
+
error = new Error();
|
|
9179
|
+
error.message = 'The app action response is taking longer than expected to process.';
|
|
9180
|
+
reject(error);
|
|
9181
|
+
} else {
|
|
9182
|
+
checkCount++;
|
|
9183
|
+
setTimeout(function () {
|
|
9184
|
+
return callAppActionResult(http, params, {
|
|
9185
|
+
resolve: resolve,
|
|
9186
|
+
reject: reject,
|
|
9187
|
+
retryInterval: retryInterval,
|
|
9188
|
+
retries: retries,
|
|
9189
|
+
checkCount: checkCount,
|
|
9190
|
+
callId: callId
|
|
9191
|
+
});
|
|
9192
|
+
}, retryInterval);
|
|
9193
|
+
}
|
|
9194
|
+
case 5:
|
|
9195
|
+
case "end":
|
|
9196
|
+
return _context2.stop();
|
|
9197
|
+
}
|
|
9198
|
+
}, _callee2);
|
|
9199
|
+
}));
|
|
9200
|
+
return _callAppActionResult.apply(this, arguments);
|
|
9201
|
+
}
|
|
9202
|
+
var createWithResponse = /*#__PURE__*/function () {
|
|
9203
|
+
var _ref2 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee(http, params, data) {
|
|
9204
|
+
var createResponse, callId;
|
|
9205
|
+
return _regeneratorRuntime().wrap(function _callee$(_context) {
|
|
9206
|
+
while (1) switch (_context.prev = _context.next) {
|
|
9207
|
+
case 0:
|
|
9208
|
+
_context.next = 2;
|
|
9209
|
+
return _raw__WEBPACK_IMPORTED_MODULE_0__["post"](http, "/spaces/".concat(params.spaceId, "/environments/").concat(params.environmentId, "/app_installations/").concat(params.appDefinitionId, "/actions/").concat(params.appActionId, "/calls"), data);
|
|
9210
|
+
case 2:
|
|
9211
|
+
createResponse = _context.sent;
|
|
9212
|
+
callId = createResponse.sys.id;
|
|
9213
|
+
return _context.abrupt("return", new Promise(function (resolve, reject) {
|
|
9214
|
+
return callAppActionResult(http, params, {
|
|
9215
|
+
resolve: resolve,
|
|
9216
|
+
reject: reject,
|
|
9217
|
+
callId: callId
|
|
9218
|
+
});
|
|
9219
|
+
}));
|
|
9220
|
+
case 5:
|
|
9221
|
+
case "end":
|
|
9222
|
+
return _context.stop();
|
|
9223
|
+
}
|
|
9224
|
+
}, _callee);
|
|
9225
|
+
}));
|
|
9226
|
+
return function createWithResponse(_x4, _x5, _x6) {
|
|
9227
|
+
return _ref2.apply(this, arguments);
|
|
9228
|
+
};
|
|
9229
|
+
}();
|
|
9147
9230
|
|
|
9148
9231
|
/***/ }),
|
|
9149
9232
|
|
|
@@ -9239,7 +9322,8 @@ var del = function del(http, params) {
|
|
|
9239
9322
|
};
|
|
9240
9323
|
var create = function create(http, params, payload) {
|
|
9241
9324
|
var appUploadId = payload.appUploadId,
|
|
9242
|
-
comment = payload.comment
|
|
9325
|
+
comment = payload.comment,
|
|
9326
|
+
actions = payload.actions;
|
|
9243
9327
|
var data = {
|
|
9244
9328
|
upload: {
|
|
9245
9329
|
sys: {
|
|
@@ -9248,7 +9332,8 @@ var create = function create(http, params, payload) {
|
|
|
9248
9332
|
id: appUploadId
|
|
9249
9333
|
}
|
|
9250
9334
|
},
|
|
9251
|
-
comment: comment
|
|
9335
|
+
comment: comment,
|
|
9336
|
+
actions: actions
|
|
9252
9337
|
};
|
|
9253
9338
|
return _raw__WEBPACK_IMPORTED_MODULE_0__["post"](http, getBaseUrl(params), data);
|
|
9254
9339
|
};
|
|
@@ -20033,16 +20118,67 @@ var wrapApiKeyCollection = Object(_common_utils__WEBPACK_IMPORTED_MODULE_2__["wr
|
|
|
20033
20118
|
/*!*************************************!*\
|
|
20034
20119
|
!*** ./entities/app-action-call.ts ***!
|
|
20035
20120
|
\*************************************/
|
|
20036
|
-
/*! exports provided: wrapAppActionCall */
|
|
20121
|
+
/*! exports provided: default, wrapAppActionCall, wrapAppActionCallResponse */
|
|
20037
20122
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
20038
20123
|
|
|
20039
20124
|
"use strict";
|
|
20040
20125
|
__webpack_require__.r(__webpack_exports__);
|
|
20126
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "default", function() { return createAppActionCallApi; });
|
|
20041
20127
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapAppActionCall", function() { return wrapAppActionCall; });
|
|
20128
|
+
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "wrapAppActionCallResponse", function() { return wrapAppActionCallResponse; });
|
|
20042
20129
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/umd/index.js");
|
|
20043
20130
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
20044
20131
|
/* harmony import */ var contentful_sdk_core__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! contentful-sdk-core */ "../node_modules/contentful-sdk-core/dist/index.es-modules.js");
|
|
20132
|
+
/* harmony import */ var _enhance_with_methods__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../enhance-with-methods */ "./enhance-with-methods.ts");
|
|
20133
|
+
|
|
20134
|
+
|
|
20045
20135
|
|
|
20136
|
+
/**
|
|
20137
|
+
* @private
|
|
20138
|
+
*/
|
|
20139
|
+
function createAppActionCallApi(makeRequest) {
|
|
20140
|
+
return {
|
|
20141
|
+
createWithResponse: function createWithResponse() {
|
|
20142
|
+
var payload = {
|
|
20143
|
+
parameters: {
|
|
20144
|
+
recipient: 'Alice <alice@my-company.com>',
|
|
20145
|
+
message_body: 'Hello from Bob!'
|
|
20146
|
+
}
|
|
20147
|
+
};
|
|
20148
|
+
return makeRequest({
|
|
20149
|
+
entityType: 'AppActionCall',
|
|
20150
|
+
action: 'createWithResponse',
|
|
20151
|
+
params: {
|
|
20152
|
+
spaceId: 'space-id',
|
|
20153
|
+
environmentId: 'environment-id',
|
|
20154
|
+
appDefinitionId: 'app-definiton-id',
|
|
20155
|
+
appActionId: 'app-action-id'
|
|
20156
|
+
},
|
|
20157
|
+
payload: payload
|
|
20158
|
+
}).then(function (data) {
|
|
20159
|
+
return wrapAppActionCallResponse(makeRequest, data);
|
|
20160
|
+
});
|
|
20161
|
+
},
|
|
20162
|
+
getCallDetails: function getCallDetails() {
|
|
20163
|
+
var getParams = function getParams(raw) {
|
|
20164
|
+
return {
|
|
20165
|
+
spaceId: raw.spaceId,
|
|
20166
|
+
environmentId: raw.environmentId,
|
|
20167
|
+
callId: raw.callId,
|
|
20168
|
+
appActionId: raw.appActionId
|
|
20169
|
+
};
|
|
20170
|
+
};
|
|
20171
|
+
var raw = this.toPlainObject();
|
|
20172
|
+
return makeRequest({
|
|
20173
|
+
entityType: 'AppActionCall',
|
|
20174
|
+
action: 'getCallDetails',
|
|
20175
|
+
params: getParams(raw)
|
|
20176
|
+
}).then(function (data) {
|
|
20177
|
+
return wrapAppActionCallResponse(makeRequest, data);
|
|
20178
|
+
});
|
|
20179
|
+
}
|
|
20180
|
+
};
|
|
20181
|
+
}
|
|
20046
20182
|
|
|
20047
20183
|
/**
|
|
20048
20184
|
* @private
|
|
@@ -20055,6 +20191,18 @@ function wrapAppActionCall(_makeRequest, data) {
|
|
|
20055
20191
|
return signedRequest;
|
|
20056
20192
|
}
|
|
20057
20193
|
|
|
20194
|
+
/**
|
|
20195
|
+
* @private
|
|
20196
|
+
* @param http - HTTP client instance
|
|
20197
|
+
* @param data - Raw AppActionCall data
|
|
20198
|
+
* @return Wrapped AppActionCall data
|
|
20199
|
+
*/
|
|
20200
|
+
function wrapAppActionCallResponse(makeRequest, data) {
|
|
20201
|
+
var appActionCallResponse = Object(contentful_sdk_core__WEBPACK_IMPORTED_MODULE_1__["toPlainObject"])(fast_copy__WEBPACK_IMPORTED_MODULE_0___default()(data));
|
|
20202
|
+
var appActionCallResponseWithMethods = Object(_enhance_with_methods__WEBPACK_IMPORTED_MODULE_2__["default"])(appActionCallResponse, createAppActionCallApi(makeRequest));
|
|
20203
|
+
return appActionCallResponseWithMethods;
|
|
20204
|
+
}
|
|
20205
|
+
|
|
20058
20206
|
/***/ }),
|
|
20059
20207
|
|
|
20060
20208
|
/***/ "./entities/app-action.ts":
|
|
@@ -24024,7 +24172,8 @@ var createPlainClient = function createPlainClient(makeRequest, defaults) {
|
|
|
24024
24172
|
},
|
|
24025
24173
|
appActionCall: {
|
|
24026
24174
|
create: Object(_wrappers_wrap__WEBPACK_IMPORTED_MODULE_1__["wrap"])(wrapParams, 'AppActionCall', 'create'),
|
|
24027
|
-
getCallDetails: Object(_wrappers_wrap__WEBPACK_IMPORTED_MODULE_1__["wrap"])(wrapParams, 'AppActionCall', 'getCallDetails')
|
|
24175
|
+
getCallDetails: Object(_wrappers_wrap__WEBPACK_IMPORTED_MODULE_1__["wrap"])(wrapParams, 'AppActionCall', 'getCallDetails'),
|
|
24176
|
+
createWithResponse: Object(_wrappers_wrap__WEBPACK_IMPORTED_MODULE_1__["wrap"])(wrapParams, 'AppActionCall', 'createWithResponse')
|
|
24028
24177
|
},
|
|
24029
24178
|
appBundle: {
|
|
24030
24179
|
get: Object(_wrappers_wrap__WEBPACK_IMPORTED_MODULE_1__["wrap"])(wrapParams, 'AppBundle', 'get'),
|