contentful-management 11.19.0 → 11.20.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 +723 -814
- package/dist/contentful-management.browser.js.map +1 -1
- package/dist/contentful-management.browser.min.js +1 -1
- package/dist/contentful-management.node.js +1 -1
- 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 +49 -67
- package/dist/es-modules/adapters/REST/endpoints/app-bundle.js +6 -4
- package/dist/es-modules/adapters/REST/endpoints/app-upload.js +3 -1
- package/dist/es-modules/adapters/REST/endpoints/asset.js +110 -132
- package/dist/es-modules/adapters/REST/endpoints/comment.js +7 -3
- package/dist/es-modules/adapters/REST/endpoints/entry.js +6 -4
- package/dist/es-modules/adapters/REST/endpoints/environment-template-installation.js +12 -8
- package/dist/es-modules/adapters/REST/endpoints/extension.js +9 -16
- package/dist/es-modules/adapters/REST/endpoints/organization-membership.js +3 -1
- package/dist/es-modules/adapters/REST/endpoints/tag.js +3 -1
- package/dist/es-modules/adapters/REST/endpoints/task.js +3 -1
- package/dist/es-modules/adapters/REST/endpoints/upload.js +3 -1
- package/dist/es-modules/adapters/REST/endpoints/utils.js +3 -1
- package/dist/es-modules/adapters/REST/endpoints/webhook.js +23 -50
- package/dist/es-modules/adapters/REST/endpoints/workflow-definition.js +3 -1
- package/dist/es-modules/adapters/REST/endpoints/workflow.js +6 -2
- package/dist/es-modules/adapters/REST/rest-adapter.js +13 -18
- package/dist/es-modules/common-utils.js +2 -10
- package/dist/es-modules/contentful-management.js +1 -1
- package/dist/es-modules/create-app-definition-api.js +4 -3
- package/dist/es-modules/create-contentful-api.js +32 -19
- package/dist/es-modules/create-entry-api.js +72 -53
- package/dist/es-modules/create-environment-api.js +92 -80
- package/dist/es-modules/create-environment-template-api.js +11 -6
- package/dist/es-modules/create-organization-api.js +61 -37
- package/dist/es-modules/create-space-api.js +50 -35
- package/dist/es-modules/create-ui-config-api.js +15 -20
- package/dist/es-modules/create-user-ui-config-api.js +15 -20
- package/dist/es-modules/entities/access-token.js +1 -1
- package/dist/es-modules/entities/app-action-call.js +1 -1
- package/dist/es-modules/entities/bulk-action.js +9 -19
- package/dist/es-modules/entities/comment.js +18 -32
- package/dist/es-modules/entities/content-type.js +44 -36
- package/dist/es-modules/entities/editor-interface.js +2 -2
- package/dist/es-modules/entities/environment-alias.js +2 -2
- package/dist/es-modules/entities/locale.js +2 -2
- package/dist/es-modules/entities/organization-membership.js +1 -1
- package/dist/es-modules/entities/personal-access-token.js +1 -1
- package/dist/es-modules/entities/release-action.js +9 -19
- package/dist/es-modules/entities/release.js +51 -74
- package/dist/es-modules/entities/scheduled-action.js +21 -27
- package/dist/es-modules/entities/tag.js +2 -2
- package/dist/es-modules/entities/task.js +2 -2
- package/dist/es-modules/entities/team-membership.js +1 -1
- package/dist/es-modules/entities/team-space-membership.js +1 -1
- package/dist/es-modules/entities/upload.js +11 -19
- package/dist/es-modules/entities/workflow-definition.js +2 -2
- package/dist/es-modules/entities/workflow.js +3 -3
- package/dist/es-modules/methods/action.js +23 -31
- package/dist/es-modules/methods/bulk-action.js +10 -20
- package/dist/es-modules/methods/content-type.js +4 -2
- package/dist/es-modules/methods/release-action.js +10 -20
- package/dist/es-modules/plain/as-iterator.js +26 -34
- package/dist/es-modules/plain/entities/environment-alias.js +1 -0
- package/dist/es-modules/plain/entities/environment.js +1 -0
- package/dist/es-modules/plain/entities/role.js +1 -0
- package/dist/es-modules/plain/entities/space-member.js +1 -0
- package/dist/es-modules/plain/entities/space-membership.js +1 -0
- package/dist/es-modules/plain/entities/space.js +1 -0
- package/dist/es-modules/plain/entities/tag.js +1 -0
- package/dist/es-modules/plain/entities/team-membership.js +1 -0
- package/dist/es-modules/plain/entities/team-space-membership.js +1 -0
- package/dist/es-modules/plain/entities/team.js +1 -0
- package/dist/es-modules/plain/entities/usage.js +1 -0
- package/dist/es-modules/plain/entities/workflow-definition.js +1 -0
- package/dist/es-modules/plain/entities/workflow.js +1 -0
- package/dist/es-modules/plain/entities/workflows-changelog.js +1 -0
- package/dist/es-modules/plain/plain-client-test.js +38 -43
- package/dist/es-modules/plain/plain-client.js +2 -2
- package/dist/es-modules/upload-http-client.js +7 -6
- package/dist/typings/plain/common-types.d.ts +32 -159
- package/dist/typings/plain/entities/app-definition.d.ts +3 -3
- package/dist/typings/plain/entities/comment.d.ts +198 -0
- package/dist/typings/plain/entities/environment-alias.d.ts +99 -0
- package/dist/typings/plain/entities/environment.d.ts +116 -0
- package/dist/typings/plain/entities/extension.d.ts +4 -4
- package/dist/typings/plain/entities/locale.d.ts +0 -2
- package/dist/typings/plain/entities/role.d.ts +206 -0
- package/dist/typings/plain/entities/space-member.d.ts +32 -0
- package/dist/typings/plain/entities/space-membership.d.ts +155 -0
- package/dist/typings/plain/entities/space.d.ts +102 -0
- package/dist/typings/plain/entities/tag.d.ts +103 -0
- package/dist/typings/plain/entities/task.d.ts +60 -60
- package/dist/typings/plain/entities/team-membership.d.ts +110 -0
- package/dist/typings/plain/entities/team-space-membership.d.ts +127 -0
- package/dist/typings/plain/entities/team.d.ts +105 -0
- package/dist/typings/plain/entities/usage.d.ts +49 -0
- package/dist/typings/plain/entities/user.d.ts +6 -6
- package/dist/typings/plain/entities/webhook.d.ts +2 -2
- package/dist/typings/plain/entities/workflow-definition.d.ts +90 -0
- package/dist/typings/plain/entities/workflow.d.ts +101 -0
- package/dist/typings/plain/entities/workflows-changelog.d.ts +26 -0
- package/dist/typings/plain/wrappers/wrap.d.ts +3 -3
- package/package.json +8 -1
- package/dist/typings/plain/entities/base.d.ts +0 -3
- /package/dist/es-modules/plain/entities/{base.js → comment.js} +0 -0
|
@@ -7,24 +7,24 @@
|
|
|
7
7
|
var a = factory();
|
|
8
8
|
for(var i in a) (typeof exports === 'object' ? exports : root)[i] = a[i];
|
|
9
9
|
}
|
|
10
|
-
})(self, ()
|
|
11
|
-
return /******/ (()
|
|
10
|
+
})(self, function() {
|
|
11
|
+
return /******/ (function() { // webpackBootstrap
|
|
12
12
|
/******/ var __webpack_modules__ = ({
|
|
13
13
|
|
|
14
14
|
/***/ "./adapters/REST/endpoints/access-token.ts":
|
|
15
15
|
/*!*************************************************!*\
|
|
16
16
|
!*** ./adapters/REST/endpoints/access-token.ts ***!
|
|
17
17
|
\*************************************************/
|
|
18
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
18
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
19
19
|
|
|
20
20
|
"use strict";
|
|
21
21
|
__webpack_require__.r(__webpack_exports__);
|
|
22
22
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
23
|
-
/* harmony export */ createPersonalAccessToken: ()
|
|
24
|
-
/* harmony export */ get: ()
|
|
25
|
-
/* harmony export */ getMany: ()
|
|
26
|
-
/* harmony export */ getManyForOrganization: ()
|
|
27
|
-
/* harmony export */ revoke: ()
|
|
23
|
+
/* harmony export */ createPersonalAccessToken: function() { return /* binding */ createPersonalAccessToken; },
|
|
24
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
25
|
+
/* harmony export */ getMany: function() { return /* binding */ getMany; },
|
|
26
|
+
/* harmony export */ getManyForOrganization: function() { return /* binding */ getManyForOrganization; },
|
|
27
|
+
/* harmony export */ revoke: function() { return /* binding */ revoke; }
|
|
28
28
|
/* harmony export */ });
|
|
29
29
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
30
30
|
|
|
@@ -166,17 +166,17 @@ var getManyForOrganization = function getManyForOrganization(http, params) {
|
|
|
166
166
|
/*!********************************************!*\
|
|
167
167
|
!*** ./adapters/REST/endpoints/api-key.ts ***!
|
|
168
168
|
\********************************************/
|
|
169
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
169
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
170
170
|
|
|
171
171
|
"use strict";
|
|
172
172
|
__webpack_require__.r(__webpack_exports__);
|
|
173
173
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
174
|
-
/* harmony export */ create: ()
|
|
175
|
-
/* harmony export */ createWithId: ()
|
|
176
|
-
/* harmony export */ del: ()
|
|
177
|
-
/* harmony export */ get: ()
|
|
178
|
-
/* harmony export */ getMany: ()
|
|
179
|
-
/* harmony export */ update: ()
|
|
174
|
+
/* harmony export */ create: function() { return /* binding */ create; },
|
|
175
|
+
/* harmony export */ createWithId: function() { return /* binding */ createWithId; },
|
|
176
|
+
/* harmony export */ del: function() { return /* binding */ del; },
|
|
177
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
178
|
+
/* harmony export */ getMany: function() { return /* binding */ getMany; },
|
|
179
|
+
/* harmony export */ update: function() { return /* binding */ update; }
|
|
180
180
|
/* harmony export */ });
|
|
181
181
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
182
182
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
@@ -235,14 +235,14 @@ var del = function del(http, params) {
|
|
|
235
235
|
/*!****************************************************!*\
|
|
236
236
|
!*** ./adapters/REST/endpoints/app-action-call.ts ***!
|
|
237
237
|
\****************************************************/
|
|
238
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
238
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
239
239
|
|
|
240
240
|
"use strict";
|
|
241
241
|
__webpack_require__.r(__webpack_exports__);
|
|
242
242
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
243
|
-
/* harmony export */ create: ()
|
|
244
|
-
/* harmony export */ createWithResponse: ()
|
|
245
|
-
/* harmony export */ getCallDetails: ()
|
|
243
|
+
/* harmony export */ create: function() { return /* binding */ create; },
|
|
244
|
+
/* harmony export */ createWithResponse: function() { return /* binding */ createWithResponse; },
|
|
245
|
+
/* harmony export */ getCallDetails: function() { return /* binding */ getCallDetails; }
|
|
246
246
|
/* harmony export */ });
|
|
247
247
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
248
248
|
/* harmony import */ var _common_utils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../common-utils */ "./common-utils.ts");
|
|
@@ -392,17 +392,17 @@ var createWithResponse = /*#__PURE__*/function () {
|
|
|
392
392
|
/*!***********************************************!*\
|
|
393
393
|
!*** ./adapters/REST/endpoints/app-action.ts ***!
|
|
394
394
|
\***********************************************/
|
|
395
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
395
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
396
396
|
|
|
397
397
|
"use strict";
|
|
398
398
|
__webpack_require__.r(__webpack_exports__);
|
|
399
399
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
400
|
-
/* harmony export */ create: ()
|
|
401
|
-
/* harmony export */ del: ()
|
|
402
|
-
/* harmony export */ get: ()
|
|
403
|
-
/* harmony export */ getMany: ()
|
|
404
|
-
/* harmony export */ getManyForEnvironment: ()
|
|
405
|
-
/* harmony export */ update: ()
|
|
400
|
+
/* harmony export */ create: function() { return /* binding */ create; },
|
|
401
|
+
/* harmony export */ del: function() { return /* binding */ del; },
|
|
402
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
403
|
+
/* harmony export */ getMany: function() { return /* binding */ getMany; },
|
|
404
|
+
/* harmony export */ getManyForEnvironment: function() { return /* binding */ getManyForEnvironment; },
|
|
405
|
+
/* harmony export */ update: function() { return /* binding */ update; }
|
|
406
406
|
/* harmony export */ });
|
|
407
407
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
408
408
|
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./utils */ "./adapters/REST/endpoints/utils.ts");
|
|
@@ -449,15 +449,15 @@ var update = function update(http, params, data) {
|
|
|
449
449
|
/*!***********************************************!*\
|
|
450
450
|
!*** ./adapters/REST/endpoints/app-bundle.ts ***!
|
|
451
451
|
\***********************************************/
|
|
452
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
452
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
453
453
|
|
|
454
454
|
"use strict";
|
|
455
455
|
__webpack_require__.r(__webpack_exports__);
|
|
456
456
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
457
|
-
/* harmony export */ create: ()
|
|
458
|
-
/* harmony export */ del: ()
|
|
459
|
-
/* harmony export */ get: ()
|
|
460
|
-
/* harmony export */ getMany: ()
|
|
457
|
+
/* harmony export */ create: function() { return /* binding */ create; },
|
|
458
|
+
/* harmony export */ del: function() { return /* binding */ del; },
|
|
459
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
460
|
+
/* harmony export */ getMany: function() { return /* binding */ getMany; }
|
|
461
461
|
/* harmony export */ });
|
|
462
462
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
463
463
|
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./utils */ "./adapters/REST/endpoints/utils.ts");
|
|
@@ -506,18 +506,18 @@ var create = function create(http, params, payload) {
|
|
|
506
506
|
/*!***************************************************!*\
|
|
507
507
|
!*** ./adapters/REST/endpoints/app-definition.ts ***!
|
|
508
508
|
\***************************************************/
|
|
509
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
509
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
510
510
|
|
|
511
511
|
"use strict";
|
|
512
512
|
__webpack_require__.r(__webpack_exports__);
|
|
513
513
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
514
|
-
/* harmony export */ create: ()
|
|
515
|
-
/* harmony export */ del: ()
|
|
516
|
-
/* harmony export */ get: ()
|
|
517
|
-
/* harmony export */ getAppDefinitionUrl: ()
|
|
518
|
-
/* harmony export */ getInstallationsForOrg: ()
|
|
519
|
-
/* harmony export */ getMany: ()
|
|
520
|
-
/* harmony export */ update: ()
|
|
514
|
+
/* harmony export */ create: function() { return /* binding */ create; },
|
|
515
|
+
/* harmony export */ del: function() { return /* binding */ del; },
|
|
516
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
517
|
+
/* harmony export */ getAppDefinitionUrl: function() { return /* binding */ getAppDefinitionUrl; },
|
|
518
|
+
/* harmony export */ getInstallationsForOrg: function() { return /* binding */ getInstallationsForOrg; },
|
|
519
|
+
/* harmony export */ getMany: function() { return /* binding */ getMany; },
|
|
520
|
+
/* harmony export */ update: function() { return /* binding */ update; }
|
|
521
521
|
/* harmony export */ });
|
|
522
522
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
523
523
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
@@ -581,14 +581,14 @@ var getInstallationsForOrg = function getInstallationsForOrg(http, params) {
|
|
|
581
581
|
/*!************************************************!*\
|
|
582
582
|
!*** ./adapters/REST/endpoints/app-details.ts ***!
|
|
583
583
|
\************************************************/
|
|
584
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
584
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
585
585
|
|
|
586
586
|
"use strict";
|
|
587
587
|
__webpack_require__.r(__webpack_exports__);
|
|
588
588
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
589
|
-
/* harmony export */ del: ()
|
|
590
|
-
/* harmony export */ get: ()
|
|
591
|
-
/* harmony export */ upsert: ()
|
|
589
|
+
/* harmony export */ del: function() { return /* binding */ del; },
|
|
590
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
591
|
+
/* harmony export */ upsert: function() { return /* binding */ upsert; }
|
|
592
592
|
/* harmony export */ });
|
|
593
593
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
594
594
|
|
|
@@ -608,14 +608,14 @@ var del = function del(http, params) {
|
|
|
608
608
|
/*!***********************************************************!*\
|
|
609
609
|
!*** ./adapters/REST/endpoints/app-event-subscription.ts ***!
|
|
610
610
|
\***********************************************************/
|
|
611
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
611
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
612
612
|
|
|
613
613
|
"use strict";
|
|
614
614
|
__webpack_require__.r(__webpack_exports__);
|
|
615
615
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
616
|
-
/* harmony export */ del: ()
|
|
617
|
-
/* harmony export */ get: ()
|
|
618
|
-
/* harmony export */ upsert: ()
|
|
616
|
+
/* harmony export */ del: function() { return /* binding */ del; },
|
|
617
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
618
|
+
/* harmony export */ upsert: function() { return /* binding */ upsert; }
|
|
619
619
|
/* harmony export */ });
|
|
620
620
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
621
621
|
|
|
@@ -635,17 +635,17 @@ var del = function del(http, params) {
|
|
|
635
635
|
/*!*****************************************************!*\
|
|
636
636
|
!*** ./adapters/REST/endpoints/app-installation.ts ***!
|
|
637
637
|
\*****************************************************/
|
|
638
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
638
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
639
639
|
|
|
640
640
|
"use strict";
|
|
641
641
|
__webpack_require__.r(__webpack_exports__);
|
|
642
642
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
643
|
-
/* harmony export */ del: ()
|
|
644
|
-
/* harmony export */ get: ()
|
|
645
|
-
/* harmony export */ getAppInstallationUrl: ()
|
|
646
|
-
/* harmony export */ getForOrganization: ()
|
|
647
|
-
/* harmony export */ getMany: ()
|
|
648
|
-
/* harmony export */ upsert: ()
|
|
643
|
+
/* harmony export */ del: function() { return /* binding */ del; },
|
|
644
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
645
|
+
/* harmony export */ getAppInstallationUrl: function() { return /* binding */ getAppInstallationUrl; },
|
|
646
|
+
/* harmony export */ getForOrganization: function() { return /* binding */ getForOrganization; },
|
|
647
|
+
/* harmony export */ getMany: function() { return /* binding */ getMany; },
|
|
648
|
+
/* harmony export */ upsert: function() { return /* binding */ upsert; }
|
|
649
649
|
/* harmony export */ });
|
|
650
650
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
651
651
|
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./utils */ "./adapters/REST/endpoints/utils.ts");
|
|
@@ -703,15 +703,15 @@ var getForOrganization = function getForOrganization(http, params) {
|
|
|
703
703
|
/*!********************************************!*\
|
|
704
704
|
!*** ./adapters/REST/endpoints/app-key.ts ***!
|
|
705
705
|
\********************************************/
|
|
706
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
706
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
707
707
|
|
|
708
708
|
"use strict";
|
|
709
709
|
__webpack_require__.r(__webpack_exports__);
|
|
710
710
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
711
|
-
/* harmony export */ create: ()
|
|
712
|
-
/* harmony export */ del: ()
|
|
713
|
-
/* harmony export */ get: ()
|
|
714
|
-
/* harmony export */ getMany: ()
|
|
711
|
+
/* harmony export */ create: function() { return /* binding */ create; },
|
|
712
|
+
/* harmony export */ del: function() { return /* binding */ del; },
|
|
713
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
714
|
+
/* harmony export */ getMany: function() { return /* binding */ getMany; }
|
|
715
715
|
/* harmony export */ });
|
|
716
716
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
717
717
|
|
|
@@ -734,12 +734,12 @@ var del = function del(http, params) {
|
|
|
734
734
|
/*!*******************************************************!*\
|
|
735
735
|
!*** ./adapters/REST/endpoints/app-signed-request.ts ***!
|
|
736
736
|
\*******************************************************/
|
|
737
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
737
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
738
738
|
|
|
739
739
|
"use strict";
|
|
740
740
|
__webpack_require__.r(__webpack_exports__);
|
|
741
741
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
742
|
-
/* harmony export */ create: ()
|
|
742
|
+
/* harmony export */ create: function() { return /* binding */ create; }
|
|
743
743
|
/* harmony export */ });
|
|
744
744
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
745
745
|
|
|
@@ -753,14 +753,14 @@ var create = function create(http, params, data) {
|
|
|
753
753
|
/*!*******************************************************!*\
|
|
754
754
|
!*** ./adapters/REST/endpoints/app-signing-secret.ts ***!
|
|
755
755
|
\*******************************************************/
|
|
756
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
756
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
757
757
|
|
|
758
758
|
"use strict";
|
|
759
759
|
__webpack_require__.r(__webpack_exports__);
|
|
760
760
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
761
|
-
/* harmony export */ del: ()
|
|
762
|
-
/* harmony export */ get: ()
|
|
763
|
-
/* harmony export */ upsert: ()
|
|
761
|
+
/* harmony export */ del: function() { return /* binding */ del; },
|
|
762
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
763
|
+
/* harmony export */ upsert: function() { return /* binding */ upsert; }
|
|
764
764
|
/* harmony export */ });
|
|
765
765
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
766
766
|
|
|
@@ -780,14 +780,14 @@ var del = function del(http, params) {
|
|
|
780
780
|
/*!***********************************************!*\
|
|
781
781
|
!*** ./adapters/REST/endpoints/app-upload.ts ***!
|
|
782
782
|
\***********************************************/
|
|
783
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
783
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
784
784
|
|
|
785
785
|
"use strict";
|
|
786
786
|
__webpack_require__.r(__webpack_exports__);
|
|
787
787
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
788
|
-
/* harmony export */ create: ()
|
|
789
|
-
/* harmony export */ del: ()
|
|
790
|
-
/* harmony export */ get: ()
|
|
788
|
+
/* harmony export */ create: function() { return /* binding */ create; },
|
|
789
|
+
/* harmony export */ del: function() { return /* binding */ del; },
|
|
790
|
+
/* harmony export */ get: function() { return /* binding */ get; }
|
|
791
791
|
/* harmony export */ });
|
|
792
792
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
793
793
|
/* harmony import */ var _upload_http_client__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../upload-http-client */ "./upload-http-client.ts");
|
|
@@ -823,13 +823,13 @@ var create = function create(http, params, payload) {
|
|
|
823
823
|
/*!**********************************************!*\
|
|
824
824
|
!*** ./adapters/REST/endpoints/asset-key.ts ***!
|
|
825
825
|
\**********************************************/
|
|
826
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
826
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
827
827
|
|
|
828
828
|
"use strict";
|
|
829
829
|
__webpack_require__.r(__webpack_exports__);
|
|
830
830
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
831
|
-
/* harmony export */ ValidationError: ()
|
|
832
|
-
/* harmony export */ create: ()
|
|
831
|
+
/* harmony export */ ValidationError: function() { return /* binding */ ValidationError; },
|
|
832
|
+
/* harmony export */ create: function() { return /* binding */ create; }
|
|
833
833
|
/* harmony export */ });
|
|
834
834
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
835
835
|
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
@@ -906,25 +906,25 @@ var create = function create(http, params, data) {
|
|
|
906
906
|
/*!******************************************!*\
|
|
907
907
|
!*** ./adapters/REST/endpoints/asset.ts ***!
|
|
908
908
|
\******************************************/
|
|
909
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
909
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
910
910
|
|
|
911
911
|
"use strict";
|
|
912
912
|
__webpack_require__.r(__webpack_exports__);
|
|
913
913
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
914
|
-
/* harmony export */ archive: ()
|
|
915
|
-
/* harmony export */ create: ()
|
|
916
|
-
/* harmony export */ createFromFiles: ()
|
|
917
|
-
/* harmony export */ createWithId: ()
|
|
918
|
-
/* harmony export */ del: ()
|
|
919
|
-
/* harmony export */ get: ()
|
|
920
|
-
/* harmony export */ getMany: ()
|
|
921
|
-
/* harmony export */ getPublished: ()
|
|
922
|
-
/* harmony export */ processForAllLocales: ()
|
|
923
|
-
/* harmony export */ processForLocale: ()
|
|
924
|
-
/* harmony export */ publish: ()
|
|
925
|
-
/* harmony export */ unarchive: ()
|
|
926
|
-
/* harmony export */ unpublish: ()
|
|
927
|
-
/* harmony export */ update: ()
|
|
914
|
+
/* harmony export */ archive: function() { return /* binding */ archive; },
|
|
915
|
+
/* harmony export */ create: function() { return /* binding */ create; },
|
|
916
|
+
/* harmony export */ createFromFiles: function() { return /* binding */ createFromFiles; },
|
|
917
|
+
/* harmony export */ createWithId: function() { return /* binding */ createWithId; },
|
|
918
|
+
/* harmony export */ del: function() { return /* binding */ del; },
|
|
919
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
920
|
+
/* harmony export */ getMany: function() { return /* binding */ getMany; },
|
|
921
|
+
/* harmony export */ getPublished: function() { return /* binding */ getPublished; },
|
|
922
|
+
/* harmony export */ processForAllLocales: function() { return /* binding */ processForAllLocales; },
|
|
923
|
+
/* harmony export */ processForLocale: function() { return /* binding */ processForLocale; },
|
|
924
|
+
/* harmony export */ publish: function() { return /* binding */ publish; },
|
|
925
|
+
/* harmony export */ unarchive: function() { return /* binding */ unarchive; },
|
|
926
|
+
/* harmony export */ unpublish: function() { return /* binding */ unpublish; },
|
|
927
|
+
/* harmony export */ update: function() { return /* binding */ update; }
|
|
928
928
|
/* harmony export */ });
|
|
929
929
|
/* 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");
|
|
930
930
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
@@ -1194,15 +1194,15 @@ var processForAllLocales = /*#__PURE__*/function () {
|
|
|
1194
1194
|
/*!************************************************!*\
|
|
1195
1195
|
!*** ./adapters/REST/endpoints/bulk-action.ts ***!
|
|
1196
1196
|
\************************************************/
|
|
1197
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
1197
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
1198
1198
|
|
|
1199
1199
|
"use strict";
|
|
1200
1200
|
__webpack_require__.r(__webpack_exports__);
|
|
1201
1201
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
1202
|
-
/* harmony export */ get: ()
|
|
1203
|
-
/* harmony export */ publish: ()
|
|
1204
|
-
/* harmony export */ unpublish: ()
|
|
1205
|
-
/* harmony export */ validate: ()
|
|
1202
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
1203
|
+
/* harmony export */ publish: function() { return /* binding */ publish; },
|
|
1204
|
+
/* harmony export */ unpublish: function() { return /* binding */ unpublish; },
|
|
1205
|
+
/* harmony export */ validate: function() { return /* binding */ validate; }
|
|
1206
1206
|
/* harmony export */ });
|
|
1207
1207
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
1208
1208
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
@@ -1227,17 +1227,17 @@ var validate = function validate(http, params, payload) {
|
|
|
1227
1227
|
/*!********************************************!*\
|
|
1228
1228
|
!*** ./adapters/REST/endpoints/comment.ts ***!
|
|
1229
1229
|
\********************************************/
|
|
1230
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
1230
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
1231
1231
|
|
|
1232
1232
|
"use strict";
|
|
1233
1233
|
__webpack_require__.r(__webpack_exports__);
|
|
1234
1234
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
1235
|
-
/* harmony export */ create: ()
|
|
1236
|
-
/* harmony export */ del: ()
|
|
1237
|
-
/* harmony export */ get: ()
|
|
1238
|
-
/* harmony export */ getAll: ()
|
|
1239
|
-
/* harmony export */ getMany: ()
|
|
1240
|
-
/* harmony export */ update: ()
|
|
1235
|
+
/* harmony export */ create: function() { return /* binding */ create; },
|
|
1236
|
+
/* harmony export */ del: function() { return /* binding */ del; },
|
|
1237
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
1238
|
+
/* harmony export */ getAll: function() { return /* binding */ getAll; },
|
|
1239
|
+
/* harmony export */ getMany: function() { return /* binding */ getMany; },
|
|
1240
|
+
/* harmony export */ update: function() { return /* binding */ update; }
|
|
1241
1241
|
/* harmony export */ });
|
|
1242
1242
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
1243
1243
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
@@ -1339,19 +1339,19 @@ var getAll = getMany;
|
|
|
1339
1339
|
/*!*************************************************!*\
|
|
1340
1340
|
!*** ./adapters/REST/endpoints/content-type.ts ***!
|
|
1341
1341
|
\*************************************************/
|
|
1342
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
1342
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
1343
1343
|
|
|
1344
1344
|
"use strict";
|
|
1345
1345
|
__webpack_require__.r(__webpack_exports__);
|
|
1346
1346
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
1347
|
-
/* harmony export */ create: ()
|
|
1348
|
-
/* harmony export */ createWithId: ()
|
|
1349
|
-
/* harmony export */ del: ()
|
|
1350
|
-
/* harmony export */ get: ()
|
|
1351
|
-
/* harmony export */ getMany: ()
|
|
1352
|
-
/* harmony export */ publish: ()
|
|
1353
|
-
/* harmony export */ unpublish: ()
|
|
1354
|
-
/* harmony export */ update: ()
|
|
1347
|
+
/* harmony export */ create: function() { return /* binding */ create; },
|
|
1348
|
+
/* harmony export */ createWithId: function() { return /* binding */ createWithId; },
|
|
1349
|
+
/* harmony export */ del: function() { return /* binding */ del; },
|
|
1350
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
1351
|
+
/* harmony export */ getMany: function() { return /* binding */ getMany; },
|
|
1352
|
+
/* harmony export */ publish: function() { return /* binding */ publish; },
|
|
1353
|
+
/* harmony export */ unpublish: function() { return /* binding */ unpublish; },
|
|
1354
|
+
/* harmony export */ update: function() { return /* binding */ update; }
|
|
1355
1355
|
/* harmony export */ });
|
|
1356
1356
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
1357
1357
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
@@ -1429,14 +1429,14 @@ var unpublish = function unpublish(http, params, headers) {
|
|
|
1429
1429
|
/*!*****************************************************!*\
|
|
1430
1430
|
!*** ./adapters/REST/endpoints/editor-interface.ts ***!
|
|
1431
1431
|
\*****************************************************/
|
|
1432
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
1432
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
1433
1433
|
|
|
1434
1434
|
"use strict";
|
|
1435
1435
|
__webpack_require__.r(__webpack_exports__);
|
|
1436
1436
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
1437
|
-
/* harmony export */ get: ()
|
|
1438
|
-
/* harmony export */ getMany: ()
|
|
1439
|
-
/* harmony export */ update: ()
|
|
1437
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
1438
|
+
/* harmony export */ getMany: function() { return /* binding */ getMany; },
|
|
1439
|
+
/* harmony export */ update: function() { return /* binding */ update; }
|
|
1440
1440
|
/* harmony export */ });
|
|
1441
1441
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
1442
1442
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
@@ -1474,24 +1474,24 @@ var update = function update(http, params, rawData, headers) {
|
|
|
1474
1474
|
/*!******************************************!*\
|
|
1475
1475
|
!*** ./adapters/REST/endpoints/entry.ts ***!
|
|
1476
1476
|
\******************************************/
|
|
1477
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
1477
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
1478
1478
|
|
|
1479
1479
|
"use strict";
|
|
1480
1480
|
__webpack_require__.r(__webpack_exports__);
|
|
1481
1481
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
1482
|
-
/* harmony export */ archive: ()
|
|
1483
|
-
/* harmony export */ create: ()
|
|
1484
|
-
/* harmony export */ createWithId: ()
|
|
1485
|
-
/* harmony export */ del: ()
|
|
1486
|
-
/* harmony export */ get: ()
|
|
1487
|
-
/* harmony export */ getMany: ()
|
|
1488
|
-
/* harmony export */ getPublished: ()
|
|
1489
|
-
/* harmony export */ patch: ()
|
|
1490
|
-
/* harmony export */ publish: ()
|
|
1491
|
-
/* harmony export */ references: ()
|
|
1492
|
-
/* harmony export */ unarchive: ()
|
|
1493
|
-
/* harmony export */ unpublish: ()
|
|
1494
|
-
/* harmony export */ update: ()
|
|
1482
|
+
/* harmony export */ archive: function() { return /* binding */ archive; },
|
|
1483
|
+
/* harmony export */ create: function() { return /* binding */ create; },
|
|
1484
|
+
/* harmony export */ createWithId: function() { return /* binding */ createWithId; },
|
|
1485
|
+
/* harmony export */ del: function() { return /* binding */ del; },
|
|
1486
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
1487
|
+
/* harmony export */ getMany: function() { return /* binding */ getMany; },
|
|
1488
|
+
/* harmony export */ getPublished: function() { return /* binding */ getPublished; },
|
|
1489
|
+
/* harmony export */ patch: function() { return /* binding */ patch; },
|
|
1490
|
+
/* harmony export */ publish: function() { return /* binding */ publish; },
|
|
1491
|
+
/* harmony export */ references: function() { return /* binding */ references; },
|
|
1492
|
+
/* harmony export */ unarchive: function() { return /* binding */ unarchive; },
|
|
1493
|
+
/* harmony export */ unpublish: function() { return /* binding */ unpublish; },
|
|
1494
|
+
/* harmony export */ update: function() { return /* binding */ update; }
|
|
1495
1495
|
/* harmony export */ });
|
|
1496
1496
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
1497
1497
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
@@ -1591,16 +1591,16 @@ var references = function references(http, params) {
|
|
|
1591
1591
|
/*!******************************************************!*\
|
|
1592
1592
|
!*** ./adapters/REST/endpoints/environment-alias.ts ***!
|
|
1593
1593
|
\******************************************************/
|
|
1594
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
1594
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
1595
1595
|
|
|
1596
1596
|
"use strict";
|
|
1597
1597
|
__webpack_require__.r(__webpack_exports__);
|
|
1598
1598
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
1599
|
-
/* harmony export */ createWithId: ()
|
|
1600
|
-
/* harmony export */ del: ()
|
|
1601
|
-
/* harmony export */ get: ()
|
|
1602
|
-
/* harmony export */ getMany: ()
|
|
1603
|
-
/* harmony export */ update: ()
|
|
1599
|
+
/* harmony export */ createWithId: function() { return /* binding */ createWithId; },
|
|
1600
|
+
/* harmony export */ del: function() { return /* binding */ del; },
|
|
1601
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
1602
|
+
/* harmony export */ getMany: function() { return /* binding */ getMany; },
|
|
1603
|
+
/* harmony export */ update: function() { return /* binding */ update; }
|
|
1604
1604
|
/* harmony export */ });
|
|
1605
1605
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
1606
1606
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
@@ -1662,13 +1662,13 @@ var del = function del(http, params) {
|
|
|
1662
1662
|
/*!**********************************************************************!*\
|
|
1663
1663
|
!*** ./adapters/REST/endpoints/environment-template-installation.ts ***!
|
|
1664
1664
|
\**********************************************************************/
|
|
1665
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
1665
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
1666
1666
|
|
|
1667
1667
|
"use strict";
|
|
1668
1668
|
__webpack_require__.r(__webpack_exports__);
|
|
1669
1669
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
1670
|
-
/* harmony export */ getForEnvironment: ()
|
|
1671
|
-
/* harmony export */ getMany: ()
|
|
1670
|
+
/* harmony export */ getForEnvironment: function() { return /* binding */ getForEnvironment; },
|
|
1671
|
+
/* harmony export */ getMany: function() { return /* binding */ getMany; }
|
|
1672
1672
|
/* harmony export */ });
|
|
1673
1673
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
1674
1674
|
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
@@ -1723,21 +1723,21 @@ var getForEnvironment = function getForEnvironment(http, _ref2, headers) {
|
|
|
1723
1723
|
/*!*********************************************************!*\
|
|
1724
1724
|
!*** ./adapters/REST/endpoints/environment-template.ts ***!
|
|
1725
1725
|
\*********************************************************/
|
|
1726
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
1726
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
1727
1727
|
|
|
1728
1728
|
"use strict";
|
|
1729
1729
|
__webpack_require__.r(__webpack_exports__);
|
|
1730
1730
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
1731
|
-
/* harmony export */ create: ()
|
|
1732
|
-
/* harmony export */ del: ()
|
|
1733
|
-
/* harmony export */ disconnect: ()
|
|
1734
|
-
/* harmony export */ get: ()
|
|
1735
|
-
/* harmony export */ getMany: ()
|
|
1736
|
-
/* harmony export */ install: ()
|
|
1737
|
-
/* harmony export */ update: ()
|
|
1738
|
-
/* harmony export */ validate: ()
|
|
1739
|
-
/* harmony export */ versionUpdate: ()
|
|
1740
|
-
/* harmony export */ versions: ()
|
|
1731
|
+
/* harmony export */ create: function() { return /* binding */ create; },
|
|
1732
|
+
/* harmony export */ del: function() { return /* binding */ del; },
|
|
1733
|
+
/* harmony export */ disconnect: function() { return /* binding */ disconnect; },
|
|
1734
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
1735
|
+
/* harmony export */ getMany: function() { return /* binding */ getMany; },
|
|
1736
|
+
/* harmony export */ install: function() { return /* binding */ install; },
|
|
1737
|
+
/* harmony export */ update: function() { return /* binding */ update; },
|
|
1738
|
+
/* harmony export */ validate: function() { return /* binding */ validate; },
|
|
1739
|
+
/* harmony export */ versionUpdate: function() { return /* binding */ versionUpdate; },
|
|
1740
|
+
/* harmony export */ versions: function() { return /* binding */ versions; }
|
|
1741
1741
|
/* harmony export */ });
|
|
1742
1742
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
1743
1743
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
@@ -1853,17 +1853,17 @@ var disconnect = function disconnect(http, _ref10, headers) {
|
|
|
1853
1853
|
/*!************************************************!*\
|
|
1854
1854
|
!*** ./adapters/REST/endpoints/environment.ts ***!
|
|
1855
1855
|
\************************************************/
|
|
1856
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
1856
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
1857
1857
|
|
|
1858
1858
|
"use strict";
|
|
1859
1859
|
__webpack_require__.r(__webpack_exports__);
|
|
1860
1860
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
1861
|
-
/* harmony export */ create: ()
|
|
1862
|
-
/* harmony export */ createWithId: ()
|
|
1863
|
-
/* harmony export */ del: ()
|
|
1864
|
-
/* harmony export */ get: ()
|
|
1865
|
-
/* harmony export */ getMany: ()
|
|
1866
|
-
/* harmony export */ update: ()
|
|
1861
|
+
/* harmony export */ create: function() { return /* binding */ create; },
|
|
1862
|
+
/* harmony export */ createWithId: function() { return /* binding */ createWithId; },
|
|
1863
|
+
/* harmony export */ del: function() { return /* binding */ del; },
|
|
1864
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
1865
|
+
/* harmony export */ getMany: function() { return /* binding */ getMany; },
|
|
1866
|
+
/* harmony export */ update: function() { return /* binding */ update; }
|
|
1867
1867
|
/* harmony export */ });
|
|
1868
1868
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
1869
1869
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
@@ -1917,18 +1917,18 @@ var createWithId = function createWithId(http, params, rawData, headers) {
|
|
|
1917
1917
|
/*!**********************************************!*\
|
|
1918
1918
|
!*** ./adapters/REST/endpoints/extension.ts ***!
|
|
1919
1919
|
\**********************************************/
|
|
1920
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
1920
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
1921
1921
|
|
|
1922
1922
|
"use strict";
|
|
1923
1923
|
__webpack_require__.r(__webpack_exports__);
|
|
1924
1924
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
1925
|
-
/* harmony export */ create: ()
|
|
1926
|
-
/* harmony export */ createWithId: ()
|
|
1927
|
-
/* harmony export */ del: ()
|
|
1928
|
-
/* harmony export */ get: ()
|
|
1929
|
-
/* harmony export */ getExtensionUrl: ()
|
|
1930
|
-
/* harmony export */ getMany: ()
|
|
1931
|
-
/* harmony export */ update: ()
|
|
1925
|
+
/* harmony export */ create: function() { return /* binding */ create; },
|
|
1926
|
+
/* harmony export */ createWithId: function() { return /* binding */ createWithId; },
|
|
1927
|
+
/* harmony export */ del: function() { return /* binding */ del; },
|
|
1928
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
1929
|
+
/* harmony export */ getExtensionUrl: function() { return /* binding */ getExtensionUrl; },
|
|
1930
|
+
/* harmony export */ getMany: function() { return /* binding */ getMany; },
|
|
1931
|
+
/* harmony export */ update: function() { return /* binding */ update; }
|
|
1932
1932
|
/* harmony export */ });
|
|
1933
1933
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
1934
1934
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
@@ -2006,17 +2006,17 @@ var del = function del(http, params) {
|
|
|
2006
2006
|
/*!*****************************************!*\
|
|
2007
2007
|
!*** ./adapters/REST/endpoints/http.ts ***!
|
|
2008
2008
|
\*****************************************/
|
|
2009
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
2009
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
2010
2010
|
|
|
2011
2011
|
"use strict";
|
|
2012
2012
|
__webpack_require__.r(__webpack_exports__);
|
|
2013
2013
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
2014
|
-
/* harmony export */ del: ()
|
|
2015
|
-
/* harmony export */ get: ()
|
|
2016
|
-
/* harmony export */ patch: ()
|
|
2017
|
-
/* harmony export */ post: ()
|
|
2018
|
-
/* harmony export */ put: ()
|
|
2019
|
-
/* harmony export */ request: ()
|
|
2014
|
+
/* harmony export */ del: function() { return /* binding */ del; },
|
|
2015
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
2016
|
+
/* harmony export */ patch: function() { return /* binding */ patch; },
|
|
2017
|
+
/* harmony export */ post: function() { return /* binding */ post; },
|
|
2018
|
+
/* harmony export */ put: function() { return /* binding */ put; },
|
|
2019
|
+
/* harmony export */ request: function() { return /* binding */ request; }
|
|
2020
2020
|
/* harmony export */ });
|
|
2021
2021
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
2022
2022
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
|
@@ -2059,13 +2059,10 @@ var request = function request(http, _ref6) {
|
|
|
2059
2059
|
/*!******************************************!*\
|
|
2060
2060
|
!*** ./adapters/REST/endpoints/index.ts ***!
|
|
2061
2061
|
\******************************************/
|
|
2062
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
2062
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
2063
2063
|
|
|
2064
2064
|
"use strict";
|
|
2065
2065
|
__webpack_require__.r(__webpack_exports__);
|
|
2066
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
2067
|
-
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
2068
|
-
/* harmony export */ });
|
|
2069
2066
|
/* harmony import */ var _api_key__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./api-key */ "./adapters/REST/endpoints/api-key.ts");
|
|
2070
2067
|
/* harmony import */ var _app_action__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./app-action */ "./adapters/REST/endpoints/app-action.ts");
|
|
2071
2068
|
/* harmony import */ var _app_action_call__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./app-action-call */ "./adapters/REST/endpoints/app-action-call.ts");
|
|
@@ -2174,7 +2171,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2174
2171
|
|
|
2175
2172
|
|
|
2176
2173
|
|
|
2177
|
-
/* harmony default export */
|
|
2174
|
+
/* harmony default export */ __webpack_exports__["default"] = ({
|
|
2178
2175
|
ApiKey: _api_key__WEBPACK_IMPORTED_MODULE_0__,
|
|
2179
2176
|
AppAction: _app_action__WEBPACK_IMPORTED_MODULE_1__,
|
|
2180
2177
|
AppActionCall: _app_action_call__WEBPACK_IMPORTED_MODULE_2__,
|
|
@@ -2237,16 +2234,16 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2237
2234
|
/*!*******************************************!*\
|
|
2238
2235
|
!*** ./adapters/REST/endpoints/locale.ts ***!
|
|
2239
2236
|
\*******************************************/
|
|
2240
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
2237
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
2241
2238
|
|
|
2242
2239
|
"use strict";
|
|
2243
2240
|
__webpack_require__.r(__webpack_exports__);
|
|
2244
2241
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
2245
|
-
/* harmony export */ create: ()
|
|
2246
|
-
/* harmony export */ del: ()
|
|
2247
|
-
/* harmony export */ get: ()
|
|
2248
|
-
/* harmony export */ getMany: ()
|
|
2249
|
-
/* harmony export */ update: ()
|
|
2242
|
+
/* harmony export */ create: function() { return /* binding */ create; },
|
|
2243
|
+
/* harmony export */ del: function() { return /* binding */ del; },
|
|
2244
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
2245
|
+
/* harmony export */ getMany: function() { return /* binding */ getMany; },
|
|
2246
|
+
/* harmony export */ update: function() { return /* binding */ update; }
|
|
2250
2247
|
/* harmony export */ });
|
|
2251
2248
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
2252
2249
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
@@ -2294,13 +2291,13 @@ var del = function del(http, params) {
|
|
|
2294
2291
|
/*!************************************************************!*\
|
|
2295
2292
|
!*** ./adapters/REST/endpoints/organization-invitation.ts ***!
|
|
2296
2293
|
\************************************************************/
|
|
2297
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
2294
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
2298
2295
|
|
|
2299
2296
|
"use strict";
|
|
2300
2297
|
__webpack_require__.r(__webpack_exports__);
|
|
2301
2298
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
2302
|
-
/* harmony export */ create: ()
|
|
2303
|
-
/* harmony export */ get: ()
|
|
2299
|
+
/* harmony export */ create: function() { return /* binding */ create; },
|
|
2300
|
+
/* harmony export */ get: function() { return /* binding */ get; }
|
|
2304
2301
|
/* harmony export */ });
|
|
2305
2302
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
2306
2303
|
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
@@ -2333,15 +2330,15 @@ var get = function get(http, params, headers) {
|
|
|
2333
2330
|
/*!************************************************************!*\
|
|
2334
2331
|
!*** ./adapters/REST/endpoints/organization-membership.ts ***!
|
|
2335
2332
|
\************************************************************/
|
|
2336
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
2333
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
2337
2334
|
|
|
2338
2335
|
"use strict";
|
|
2339
2336
|
__webpack_require__.r(__webpack_exports__);
|
|
2340
2337
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
2341
|
-
/* harmony export */ del: ()
|
|
2342
|
-
/* harmony export */ get: ()
|
|
2343
|
-
/* harmony export */ getMany: ()
|
|
2344
|
-
/* harmony export */ update: ()
|
|
2338
|
+
/* harmony export */ del: function() { return /* binding */ del; },
|
|
2339
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
2340
|
+
/* harmony export */ getMany: function() { return /* binding */ getMany; },
|
|
2341
|
+
/* harmony export */ update: function() { return /* binding */ update; }
|
|
2345
2342
|
/* harmony export */ });
|
|
2346
2343
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
2347
2344
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
@@ -2390,13 +2387,13 @@ var del = function del(http, params) {
|
|
|
2390
2387
|
/*!*************************************************!*\
|
|
2391
2388
|
!*** ./adapters/REST/endpoints/organization.ts ***!
|
|
2392
2389
|
\*************************************************/
|
|
2393
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
2390
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
2394
2391
|
|
|
2395
2392
|
"use strict";
|
|
2396
2393
|
__webpack_require__.r(__webpack_exports__);
|
|
2397
2394
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
2398
|
-
/* harmony export */ get: ()
|
|
2399
|
-
/* harmony export */ getMany: ()
|
|
2395
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
2396
|
+
/* harmony export */ getMany: function() { return /* binding */ getMany; }
|
|
2400
2397
|
/* harmony export */ });
|
|
2401
2398
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
2402
2399
|
|
|
@@ -2434,15 +2431,15 @@ var get = function get(http, params) {
|
|
|
2434
2431
|
/*!**********************************************************!*\
|
|
2435
2432
|
!*** ./adapters/REST/endpoints/personal-access-token.ts ***!
|
|
2436
2433
|
\**********************************************************/
|
|
2437
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
2434
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
2438
2435
|
|
|
2439
2436
|
"use strict";
|
|
2440
2437
|
__webpack_require__.r(__webpack_exports__);
|
|
2441
2438
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
2442
|
-
/* harmony export */ create: ()
|
|
2443
|
-
/* harmony export */ get: ()
|
|
2444
|
-
/* harmony export */ getMany: ()
|
|
2445
|
-
/* harmony export */ revoke: ()
|
|
2439
|
+
/* harmony export */ create: function() { return /* binding */ create; },
|
|
2440
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
2441
|
+
/* harmony export */ getMany: function() { return /* binding */ getMany; },
|
|
2442
|
+
/* harmony export */ revoke: function() { return /* binding */ revoke; }
|
|
2446
2443
|
/* harmony export */ });
|
|
2447
2444
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
2448
2445
|
|
|
@@ -2485,13 +2482,13 @@ var revoke = function revoke(http, params) {
|
|
|
2485
2482
|
/*!****************************************************!*\
|
|
2486
2483
|
!*** ./adapters/REST/endpoints/preview-api-key.ts ***!
|
|
2487
2484
|
\****************************************************/
|
|
2488
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
2485
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
2489
2486
|
|
|
2490
2487
|
"use strict";
|
|
2491
2488
|
__webpack_require__.r(__webpack_exports__);
|
|
2492
2489
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
2493
|
-
/* harmony export */ get: ()
|
|
2494
|
-
/* harmony export */ getMany: ()
|
|
2490
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
2491
|
+
/* harmony export */ getMany: function() { return /* binding */ getMany; }
|
|
2495
2492
|
/* harmony export */ });
|
|
2496
2493
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
2497
2494
|
|
|
@@ -2510,17 +2507,17 @@ var getMany = function getMany(http, params) {
|
|
|
2510
2507
|
/*!****************************************!*\
|
|
2511
2508
|
!*** ./adapters/REST/endpoints/raw.ts ***!
|
|
2512
2509
|
\****************************************/
|
|
2513
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
2510
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
2514
2511
|
|
|
2515
2512
|
"use strict";
|
|
2516
2513
|
__webpack_require__.r(__webpack_exports__);
|
|
2517
2514
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
2518
|
-
/* harmony export */ del: ()
|
|
2519
|
-
/* harmony export */ get: ()
|
|
2520
|
-
/* harmony export */ http: ()
|
|
2521
|
-
/* harmony export */ patch: ()
|
|
2522
|
-
/* harmony export */ post: ()
|
|
2523
|
-
/* harmony export */ put: ()
|
|
2515
|
+
/* harmony export */ del: function() { return /* binding */ del; },
|
|
2516
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
2517
|
+
/* harmony export */ http: function() { return /* binding */ http; },
|
|
2518
|
+
/* harmony export */ patch: function() { return /* binding */ patch; },
|
|
2519
|
+
/* harmony export */ post: function() { return /* binding */ post; },
|
|
2520
|
+
/* harmony export */ put: function() { return /* binding */ put; }
|
|
2524
2521
|
/* harmony export */ });
|
|
2525
2522
|
/* 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");
|
|
2526
2523
|
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
@@ -2585,14 +2582,14 @@ function http(http, url, config) {
|
|
|
2585
2582
|
/*!***************************************************!*\
|
|
2586
2583
|
!*** ./adapters/REST/endpoints/release-action.ts ***!
|
|
2587
2584
|
\***************************************************/
|
|
2588
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
2585
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
2589
2586
|
|
|
2590
2587
|
"use strict";
|
|
2591
2588
|
__webpack_require__.r(__webpack_exports__);
|
|
2592
2589
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
2593
|
-
/* harmony export */ get: ()
|
|
2594
|
-
/* harmony export */ getMany: ()
|
|
2595
|
-
/* harmony export */ queryForRelease: ()
|
|
2590
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
2591
|
+
/* harmony export */ getMany: function() { return /* binding */ getMany; },
|
|
2592
|
+
/* harmony export */ queryForRelease: function() { return /* binding */ queryForRelease; }
|
|
2596
2593
|
/* harmony export */ });
|
|
2597
2594
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
2598
2595
|
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
@@ -2626,21 +2623,21 @@ var queryForRelease = function queryForRelease(http, params) {
|
|
|
2626
2623
|
/*!********************************************!*\
|
|
2627
2624
|
!*** ./adapters/REST/endpoints/release.ts ***!
|
|
2628
2625
|
\********************************************/
|
|
2629
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
2626
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
2630
2627
|
|
|
2631
2628
|
"use strict";
|
|
2632
2629
|
__webpack_require__.r(__webpack_exports__);
|
|
2633
2630
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
2634
|
-
/* harmony export */ archive: ()
|
|
2635
|
-
/* harmony export */ create: ()
|
|
2636
|
-
/* harmony export */ del: ()
|
|
2637
|
-
/* harmony export */ get: ()
|
|
2638
|
-
/* harmony export */ publish: ()
|
|
2639
|
-
/* harmony export */ query: ()
|
|
2640
|
-
/* harmony export */ unarchive: ()
|
|
2641
|
-
/* harmony export */ unpublish: ()
|
|
2642
|
-
/* harmony export */ update: ()
|
|
2643
|
-
/* harmony export */ validate: ()
|
|
2631
|
+
/* harmony export */ archive: function() { return /* binding */ archive; },
|
|
2632
|
+
/* harmony export */ create: function() { return /* binding */ create; },
|
|
2633
|
+
/* harmony export */ del: function() { return /* binding */ del; },
|
|
2634
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
2635
|
+
/* harmony export */ publish: function() { return /* binding */ publish; },
|
|
2636
|
+
/* harmony export */ query: function() { return /* binding */ query; },
|
|
2637
|
+
/* harmony export */ unarchive: function() { return /* binding */ unarchive; },
|
|
2638
|
+
/* harmony export */ unpublish: function() { return /* binding */ unpublish; },
|
|
2639
|
+
/* harmony export */ update: function() { return /* binding */ update; },
|
|
2640
|
+
/* harmony export */ validate: function() { return /* binding */ validate; }
|
|
2644
2641
|
/* harmony export */ });
|
|
2645
2642
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
2646
2643
|
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
@@ -2709,18 +2706,18 @@ var unarchive = function unarchive(http, params) {
|
|
|
2709
2706
|
/*!*****************************************!*\
|
|
2710
2707
|
!*** ./adapters/REST/endpoints/role.ts ***!
|
|
2711
2708
|
\*****************************************/
|
|
2712
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
2709
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
2713
2710
|
|
|
2714
2711
|
"use strict";
|
|
2715
2712
|
__webpack_require__.r(__webpack_exports__);
|
|
2716
2713
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
2717
|
-
/* harmony export */ create: ()
|
|
2718
|
-
/* harmony export */ createWithId: ()
|
|
2719
|
-
/* harmony export */ del: ()
|
|
2720
|
-
/* harmony export */ get: ()
|
|
2721
|
-
/* harmony export */ getMany: ()
|
|
2722
|
-
/* harmony export */ getManyForOrganization: ()
|
|
2723
|
-
/* harmony export */ update: ()
|
|
2714
|
+
/* harmony export */ create: function() { return /* binding */ create; },
|
|
2715
|
+
/* harmony export */ createWithId: function() { return /* binding */ createWithId; },
|
|
2716
|
+
/* harmony export */ del: function() { return /* binding */ del; },
|
|
2717
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
2718
|
+
/* harmony export */ getMany: function() { return /* binding */ getMany; },
|
|
2719
|
+
/* harmony export */ getManyForOrganization: function() { return /* binding */ getManyForOrganization; },
|
|
2720
|
+
/* harmony export */ update: function() { return /* binding */ update; }
|
|
2724
2721
|
/* harmony export */ });
|
|
2725
2722
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
2726
2723
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
@@ -2777,16 +2774,16 @@ var del = function del(http, params) {
|
|
|
2777
2774
|
/*!*****************************************************!*\
|
|
2778
2775
|
!*** ./adapters/REST/endpoints/scheduled-action.ts ***!
|
|
2779
2776
|
\*****************************************************/
|
|
2780
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
2777
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
2781
2778
|
|
|
2782
2779
|
"use strict";
|
|
2783
2780
|
__webpack_require__.r(__webpack_exports__);
|
|
2784
2781
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
2785
|
-
/* harmony export */ create: ()
|
|
2786
|
-
/* harmony export */ del: ()
|
|
2787
|
-
/* harmony export */ get: ()
|
|
2788
|
-
/* harmony export */ getMany: ()
|
|
2789
|
-
/* harmony export */ update: ()
|
|
2782
|
+
/* harmony export */ create: function() { return /* binding */ create; },
|
|
2783
|
+
/* harmony export */ del: function() { return /* binding */ del; },
|
|
2784
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
2785
|
+
/* harmony export */ getMany: function() { return /* binding */ getMany; },
|
|
2786
|
+
/* harmony export */ update: function() { return /* binding */ update; }
|
|
2790
2787
|
/* harmony export */ });
|
|
2791
2788
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
2792
2789
|
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./utils */ "./adapters/REST/endpoints/utils.ts");
|
|
@@ -2832,15 +2829,15 @@ var update = function update(http, params, data) {
|
|
|
2832
2829
|
/*!*********************************************!*\
|
|
2833
2830
|
!*** ./adapters/REST/endpoints/snapshot.ts ***!
|
|
2834
2831
|
\*********************************************/
|
|
2835
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
2832
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
2836
2833
|
|
|
2837
2834
|
"use strict";
|
|
2838
2835
|
__webpack_require__.r(__webpack_exports__);
|
|
2839
2836
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
2840
|
-
/* harmony export */ getForContentType: ()
|
|
2841
|
-
/* harmony export */ getForEntry: ()
|
|
2842
|
-
/* harmony export */ getManyForContentType: ()
|
|
2843
|
-
/* harmony export */ getManyForEntry: ()
|
|
2837
|
+
/* harmony export */ getForContentType: function() { return /* binding */ getForContentType; },
|
|
2838
|
+
/* harmony export */ getForEntry: function() { return /* binding */ getForEntry; },
|
|
2839
|
+
/* harmony export */ getManyForContentType: function() { return /* binding */ getManyForContentType; },
|
|
2840
|
+
/* harmony export */ getManyForEntry: function() { return /* binding */ getManyForEntry; }
|
|
2844
2841
|
/* harmony export */ });
|
|
2845
2842
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
2846
2843
|
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./utils */ "./adapters/REST/endpoints/utils.ts");
|
|
@@ -2881,13 +2878,13 @@ var getForContentType = function getForContentType(http, params) {
|
|
|
2881
2878
|
/*!*************************************************!*\
|
|
2882
2879
|
!*** ./adapters/REST/endpoints/space-member.ts ***!
|
|
2883
2880
|
\*************************************************/
|
|
2884
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
2881
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
2885
2882
|
|
|
2886
2883
|
"use strict";
|
|
2887
2884
|
__webpack_require__.r(__webpack_exports__);
|
|
2888
2885
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
2889
|
-
/* harmony export */ get: ()
|
|
2890
|
-
/* harmony export */ getMany: ()
|
|
2886
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
2887
|
+
/* harmony export */ getMany: function() { return /* binding */ getMany; }
|
|
2891
2888
|
/* harmony export */ });
|
|
2892
2889
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
2893
2890
|
|
|
@@ -2906,19 +2903,19 @@ var getMany = function getMany(http, params) {
|
|
|
2906
2903
|
/*!*****************************************************!*\
|
|
2907
2904
|
!*** ./adapters/REST/endpoints/space-membership.ts ***!
|
|
2908
2905
|
\*****************************************************/
|
|
2909
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
2906
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
2910
2907
|
|
|
2911
2908
|
"use strict";
|
|
2912
2909
|
__webpack_require__.r(__webpack_exports__);
|
|
2913
2910
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
2914
|
-
/* harmony export */ create: ()
|
|
2915
|
-
/* harmony export */ createWithId: ()
|
|
2916
|
-
/* harmony export */ del: ()
|
|
2917
|
-
/* harmony export */ get: ()
|
|
2918
|
-
/* harmony export */ getForOrganization: ()
|
|
2919
|
-
/* harmony export */ getMany: ()
|
|
2920
|
-
/* harmony export */ getManyForOrganization: ()
|
|
2921
|
-
/* harmony export */ update: ()
|
|
2911
|
+
/* harmony export */ create: function() { return /* binding */ create; },
|
|
2912
|
+
/* harmony export */ createWithId: function() { return /* binding */ createWithId; },
|
|
2913
|
+
/* harmony export */ del: function() { return /* binding */ del; },
|
|
2914
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
2915
|
+
/* harmony export */ getForOrganization: function() { return /* binding */ getForOrganization; },
|
|
2916
|
+
/* harmony export */ getMany: function() { return /* binding */ getMany; },
|
|
2917
|
+
/* harmony export */ getManyForOrganization: function() { return /* binding */ getManyForOrganization; },
|
|
2918
|
+
/* harmony export */ update: function() { return /* binding */ update; }
|
|
2922
2919
|
/* harmony export */ });
|
|
2923
2920
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
2924
2921
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
@@ -2989,17 +2986,17 @@ var del = function del(http, params) {
|
|
|
2989
2986
|
/*!******************************************!*\
|
|
2990
2987
|
!*** ./adapters/REST/endpoints/space.ts ***!
|
|
2991
2988
|
\******************************************/
|
|
2992
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
2989
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
2993
2990
|
|
|
2994
2991
|
"use strict";
|
|
2995
2992
|
__webpack_require__.r(__webpack_exports__);
|
|
2996
2993
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
2997
|
-
/* harmony export */ create: ()
|
|
2998
|
-
/* harmony export */ del: ()
|
|
2999
|
-
/* harmony export */ get: ()
|
|
3000
|
-
/* harmony export */ getMany: ()
|
|
3001
|
-
/* harmony export */ getManyForOrganization: ()
|
|
3002
|
-
/* harmony export */ update: ()
|
|
2994
|
+
/* harmony export */ create: function() { return /* binding */ create; },
|
|
2995
|
+
/* harmony export */ del: function() { return /* binding */ del; },
|
|
2996
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
2997
|
+
/* harmony export */ getMany: function() { return /* binding */ getMany; },
|
|
2998
|
+
/* harmony export */ getManyForOrganization: function() { return /* binding */ getManyForOrganization; },
|
|
2999
|
+
/* harmony export */ update: function() { return /* binding */ update; }
|
|
3003
3000
|
/* harmony export */ });
|
|
3004
3001
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
3005
3002
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
@@ -3051,16 +3048,16 @@ var del = function del(http, params) {
|
|
|
3051
3048
|
/*!****************************************!*\
|
|
3052
3049
|
!*** ./adapters/REST/endpoints/tag.ts ***!
|
|
3053
3050
|
\****************************************/
|
|
3054
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
3051
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
3055
3052
|
|
|
3056
3053
|
"use strict";
|
|
3057
3054
|
__webpack_require__.r(__webpack_exports__);
|
|
3058
3055
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
3059
|
-
/* harmony export */ createWithId: ()
|
|
3060
|
-
/* harmony export */ del: ()
|
|
3061
|
-
/* harmony export */ get: ()
|
|
3062
|
-
/* harmony export */ getMany: ()
|
|
3063
|
-
/* harmony export */ update: ()
|
|
3056
|
+
/* harmony export */ createWithId: function() { return /* binding */ createWithId; },
|
|
3057
|
+
/* harmony export */ del: function() { return /* binding */ del; },
|
|
3058
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
3059
|
+
/* harmony export */ getMany: function() { return /* binding */ getMany; },
|
|
3060
|
+
/* harmony export */ update: function() { return /* binding */ update; }
|
|
3064
3061
|
/* harmony export */ });
|
|
3065
3062
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
3066
3063
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
@@ -3124,17 +3121,17 @@ var del = function del(http, _ref) {
|
|
|
3124
3121
|
/*!*****************************************!*\
|
|
3125
3122
|
!*** ./adapters/REST/endpoints/task.ts ***!
|
|
3126
3123
|
\*****************************************/
|
|
3127
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
3124
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
3128
3125
|
|
|
3129
3126
|
"use strict";
|
|
3130
3127
|
__webpack_require__.r(__webpack_exports__);
|
|
3131
3128
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
3132
|
-
/* harmony export */ create: ()
|
|
3133
|
-
/* harmony export */ del: ()
|
|
3134
|
-
/* harmony export */ get: ()
|
|
3135
|
-
/* harmony export */ getAll: ()
|
|
3136
|
-
/* harmony export */ getMany: ()
|
|
3137
|
-
/* harmony export */ update: ()
|
|
3129
|
+
/* harmony export */ create: function() { return /* binding */ create; },
|
|
3130
|
+
/* harmony export */ del: function() { return /* binding */ del; },
|
|
3131
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
3132
|
+
/* harmony export */ getAll: function() { return /* binding */ getAll; },
|
|
3133
|
+
/* harmony export */ getMany: function() { return /* binding */ getMany; },
|
|
3134
|
+
/* harmony export */ update: function() { return /* binding */ update; }
|
|
3138
3135
|
/* harmony export */ });
|
|
3139
3136
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
3140
3137
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
@@ -3200,17 +3197,17 @@ var del = function del(http, _ref) {
|
|
|
3200
3197
|
/*!****************************************************!*\
|
|
3201
3198
|
!*** ./adapters/REST/endpoints/team-membership.ts ***!
|
|
3202
3199
|
\****************************************************/
|
|
3203
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
3200
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
3204
3201
|
|
|
3205
3202
|
"use strict";
|
|
3206
3203
|
__webpack_require__.r(__webpack_exports__);
|
|
3207
3204
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
3208
|
-
/* harmony export */ create: ()
|
|
3209
|
-
/* harmony export */ del: ()
|
|
3210
|
-
/* harmony export */ get: ()
|
|
3211
|
-
/* harmony export */ getManyForOrganization: ()
|
|
3212
|
-
/* harmony export */ getManyForTeam: ()
|
|
3213
|
-
/* harmony export */ update: ()
|
|
3205
|
+
/* harmony export */ create: function() { return /* binding */ create; },
|
|
3206
|
+
/* harmony export */ del: function() { return /* binding */ del; },
|
|
3207
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
3208
|
+
/* harmony export */ getManyForOrganization: function() { return /* binding */ getManyForOrganization; },
|
|
3209
|
+
/* harmony export */ getManyForTeam: function() { return /* binding */ getManyForTeam; },
|
|
3210
|
+
/* harmony export */ update: function() { return /* binding */ update; }
|
|
3214
3211
|
/* harmony export */ });
|
|
3215
3212
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
3216
3213
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
@@ -3267,18 +3264,18 @@ var del = function del(http, params) {
|
|
|
3267
3264
|
/*!**********************************************************!*\
|
|
3268
3265
|
!*** ./adapters/REST/endpoints/team-space-membership.ts ***!
|
|
3269
3266
|
\**********************************************************/
|
|
3270
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
3267
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
3271
3268
|
|
|
3272
3269
|
"use strict";
|
|
3273
3270
|
__webpack_require__.r(__webpack_exports__);
|
|
3274
3271
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
3275
|
-
/* harmony export */ create: ()
|
|
3276
|
-
/* harmony export */ del: ()
|
|
3277
|
-
/* harmony export */ get: ()
|
|
3278
|
-
/* harmony export */ getForOrganization: ()
|
|
3279
|
-
/* harmony export */ getMany: ()
|
|
3280
|
-
/* harmony export */ getManyForOrganization: ()
|
|
3281
|
-
/* harmony export */ update: ()
|
|
3272
|
+
/* harmony export */ create: function() { return /* binding */ create; },
|
|
3273
|
+
/* harmony export */ del: function() { return /* binding */ del; },
|
|
3274
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
3275
|
+
/* harmony export */ getForOrganization: function() { return /* binding */ getForOrganization; },
|
|
3276
|
+
/* harmony export */ getMany: function() { return /* binding */ getMany; },
|
|
3277
|
+
/* harmony export */ getManyForOrganization: function() { return /* binding */ getManyForOrganization; },
|
|
3278
|
+
/* harmony export */ update: function() { return /* binding */ update; }
|
|
3282
3279
|
/* harmony export */ });
|
|
3283
3280
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
3284
3281
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
@@ -3343,17 +3340,17 @@ var del = function del(http, params) {
|
|
|
3343
3340
|
/*!*****************************************!*\
|
|
3344
3341
|
!*** ./adapters/REST/endpoints/team.ts ***!
|
|
3345
3342
|
\*****************************************/
|
|
3346
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
3343
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
3347
3344
|
|
|
3348
3345
|
"use strict";
|
|
3349
3346
|
__webpack_require__.r(__webpack_exports__);
|
|
3350
3347
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
3351
|
-
/* harmony export */ create: ()
|
|
3352
|
-
/* harmony export */ del: ()
|
|
3353
|
-
/* harmony export */ get: ()
|
|
3354
|
-
/* harmony export */ getMany: ()
|
|
3355
|
-
/* harmony export */ getManyForSpace: ()
|
|
3356
|
-
/* harmony export */ update: ()
|
|
3348
|
+
/* harmony export */ create: function() { return /* binding */ create; },
|
|
3349
|
+
/* harmony export */ del: function() { return /* binding */ del; },
|
|
3350
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
3351
|
+
/* harmony export */ getMany: function() { return /* binding */ getMany; },
|
|
3352
|
+
/* harmony export */ getManyForSpace: function() { return /* binding */ getManyForSpace; },
|
|
3353
|
+
/* harmony export */ update: function() { return /* binding */ update; }
|
|
3357
3354
|
/* harmony export */ });
|
|
3358
3355
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
3359
3356
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
@@ -3411,13 +3408,13 @@ var del = function del(http, params) {
|
|
|
3411
3408
|
/*!**********************************************!*\
|
|
3412
3409
|
!*** ./adapters/REST/endpoints/ui-config.ts ***!
|
|
3413
3410
|
\**********************************************/
|
|
3414
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
3411
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
3415
3412
|
|
|
3416
3413
|
"use strict";
|
|
3417
3414
|
__webpack_require__.r(__webpack_exports__);
|
|
3418
3415
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
3419
|
-
/* harmony export */ get: ()
|
|
3420
|
-
/* harmony export */ update: ()
|
|
3416
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
3417
|
+
/* harmony export */ update: function() { return /* binding */ update; }
|
|
3421
3418
|
/* harmony export */ });
|
|
3422
3419
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
3423
3420
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
@@ -3446,14 +3443,14 @@ var update = function update(http, params, rawData) {
|
|
|
3446
3443
|
/*!*******************************************!*\
|
|
3447
3444
|
!*** ./adapters/REST/endpoints/upload.ts ***!
|
|
3448
3445
|
\*******************************************/
|
|
3449
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
3446
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
3450
3447
|
|
|
3451
3448
|
"use strict";
|
|
3452
3449
|
__webpack_require__.r(__webpack_exports__);
|
|
3453
3450
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
3454
|
-
/* harmony export */ create: ()
|
|
3455
|
-
/* harmony export */ del: ()
|
|
3456
|
-
/* harmony export */ get: ()
|
|
3451
|
+
/* harmony export */ create: function() { return /* binding */ create; },
|
|
3452
|
+
/* harmony export */ del: function() { return /* binding */ del; },
|
|
3453
|
+
/* harmony export */ get: function() { return /* binding */ get; }
|
|
3457
3454
|
/* harmony export */ });
|
|
3458
3455
|
/* harmony import */ var _upload_http_client__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../upload-http-client */ "./upload-http-client.ts");
|
|
3459
3456
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
@@ -3499,13 +3496,13 @@ var get = function get(http, params) {
|
|
|
3499
3496
|
/*!******************************************!*\
|
|
3500
3497
|
!*** ./adapters/REST/endpoints/usage.ts ***!
|
|
3501
3498
|
\******************************************/
|
|
3502
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
3499
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
3503
3500
|
|
|
3504
3501
|
"use strict";
|
|
3505
3502
|
__webpack_require__.r(__webpack_exports__);
|
|
3506
3503
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
3507
|
-
/* harmony export */ getManyForOrganization: ()
|
|
3508
|
-
/* harmony export */ getManyForSpace: ()
|
|
3504
|
+
/* harmony export */ getManyForOrganization: function() { return /* binding */ getManyForOrganization; },
|
|
3505
|
+
/* harmony export */ getManyForSpace: function() { return /* binding */ getManyForSpace; }
|
|
3509
3506
|
/* harmony export */ });
|
|
3510
3507
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
3511
3508
|
|
|
@@ -3526,13 +3523,13 @@ var getManyForOrganization = function getManyForOrganization(http, params) {
|
|
|
3526
3523
|
/*!***************************************************!*\
|
|
3527
3524
|
!*** ./adapters/REST/endpoints/user-ui-config.ts ***!
|
|
3528
3525
|
\***************************************************/
|
|
3529
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
3526
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
3530
3527
|
|
|
3531
3528
|
"use strict";
|
|
3532
3529
|
__webpack_require__.r(__webpack_exports__);
|
|
3533
3530
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
3534
|
-
/* harmony export */ get: ()
|
|
3535
|
-
/* harmony export */ update: ()
|
|
3531
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
3532
|
+
/* harmony export */ update: function() { return /* binding */ update; }
|
|
3536
3533
|
/* harmony export */ });
|
|
3537
3534
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
3538
3535
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
@@ -3561,16 +3558,16 @@ var update = function update(http, params, rawData) {
|
|
|
3561
3558
|
/*!*****************************************!*\
|
|
3562
3559
|
!*** ./adapters/REST/endpoints/user.ts ***!
|
|
3563
3560
|
\*****************************************/
|
|
3564
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
3561
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
3565
3562
|
|
|
3566
3563
|
"use strict";
|
|
3567
3564
|
__webpack_require__.r(__webpack_exports__);
|
|
3568
3565
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
3569
|
-
/* harmony export */ getCurrent: ()
|
|
3570
|
-
/* harmony export */ getForOrganization: ()
|
|
3571
|
-
/* harmony export */ getForSpace: ()
|
|
3572
|
-
/* harmony export */ getManyForOrganization: ()
|
|
3573
|
-
/* harmony export */ getManyForSpace: ()
|
|
3566
|
+
/* harmony export */ getCurrent: function() { return /* binding */ getCurrent; },
|
|
3567
|
+
/* harmony export */ getForOrganization: function() { return /* binding */ getForOrganization; },
|
|
3568
|
+
/* harmony export */ getForSpace: function() { return /* binding */ getForSpace; },
|
|
3569
|
+
/* harmony export */ getManyForOrganization: function() { return /* binding */ getManyForOrganization; },
|
|
3570
|
+
/* harmony export */ getManyForSpace: function() { return /* binding */ getManyForSpace; }
|
|
3574
3571
|
/* harmony export */ });
|
|
3575
3572
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
3576
3573
|
|
|
@@ -3602,13 +3599,13 @@ var getManyForOrganization = function getManyForOrganization(http, params) {
|
|
|
3602
3599
|
/*!******************************************!*\
|
|
3603
3600
|
!*** ./adapters/REST/endpoints/utils.ts ***!
|
|
3604
3601
|
\******************************************/
|
|
3605
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
3602
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
3606
3603
|
|
|
3607
3604
|
"use strict";
|
|
3608
3605
|
__webpack_require__.r(__webpack_exports__);
|
|
3609
3606
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
3610
|
-
/* harmony export */ normalizeSelect: ()
|
|
3611
|
-
/* harmony export */ normalizeSpaceId: ()
|
|
3607
|
+
/* harmony export */ normalizeSelect: function() { return /* binding */ normalizeSelect; },
|
|
3608
|
+
/* harmony export */ normalizeSpaceId: function() { return /* binding */ normalizeSpaceId; }
|
|
3612
3609
|
/* harmony export */ });
|
|
3613
3610
|
var _excluded = ["spaceId"];
|
|
3614
3611
|
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
@@ -3644,26 +3641,26 @@ function normalizeSpaceId(query) {
|
|
|
3644
3641
|
/*!********************************************!*\
|
|
3645
3642
|
!*** ./adapters/REST/endpoints/webhook.ts ***!
|
|
3646
3643
|
\********************************************/
|
|
3647
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
3644
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
3648
3645
|
|
|
3649
3646
|
"use strict";
|
|
3650
3647
|
__webpack_require__.r(__webpack_exports__);
|
|
3651
3648
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
3652
|
-
/* harmony export */ create: ()
|
|
3653
|
-
/* harmony export */ createWithId: ()
|
|
3654
|
-
/* harmony export */ del: ()
|
|
3655
|
-
/* harmony export */ deleteRetryPolicy: ()
|
|
3656
|
-
/* harmony export */ deleteSigningSecret: ()
|
|
3657
|
-
/* harmony export */ get: ()
|
|
3658
|
-
/* harmony export */ getCallDetails: ()
|
|
3659
|
-
/* harmony export */ getHealthStatus: ()
|
|
3660
|
-
/* harmony export */ getMany: ()
|
|
3661
|
-
/* harmony export */ getManyCallDetails: ()
|
|
3662
|
-
/* harmony export */ getRetryPolicy: ()
|
|
3663
|
-
/* harmony export */ getSigningSecret: ()
|
|
3664
|
-
/* harmony export */ update: ()
|
|
3665
|
-
/* harmony export */ upsertRetryPolicy: ()
|
|
3666
|
-
/* harmony export */ upsertSigningSecret: ()
|
|
3649
|
+
/* harmony export */ create: function() { return /* binding */ create; },
|
|
3650
|
+
/* harmony export */ createWithId: function() { return /* binding */ createWithId; },
|
|
3651
|
+
/* harmony export */ del: function() { return /* binding */ del; },
|
|
3652
|
+
/* harmony export */ deleteRetryPolicy: function() { return /* binding */ deleteRetryPolicy; },
|
|
3653
|
+
/* harmony export */ deleteSigningSecret: function() { return /* binding */ deleteSigningSecret; },
|
|
3654
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
3655
|
+
/* harmony export */ getCallDetails: function() { return /* binding */ getCallDetails; },
|
|
3656
|
+
/* harmony export */ getHealthStatus: function() { return /* binding */ getHealthStatus; },
|
|
3657
|
+
/* harmony export */ getMany: function() { return /* binding */ getMany; },
|
|
3658
|
+
/* harmony export */ getManyCallDetails: function() { return /* binding */ getManyCallDetails; },
|
|
3659
|
+
/* harmony export */ getRetryPolicy: function() { return /* binding */ getRetryPolicy; },
|
|
3660
|
+
/* harmony export */ getSigningSecret: function() { return /* binding */ getSigningSecret; },
|
|
3661
|
+
/* harmony export */ update: function() { return /* binding */ update; },
|
|
3662
|
+
/* harmony export */ upsertRetryPolicy: function() { return /* binding */ upsertRetryPolicy; },
|
|
3663
|
+
/* harmony export */ upsertSigningSecret: function() { return /* binding */ upsertSigningSecret; }
|
|
3667
3664
|
/* harmony export */ });
|
|
3668
3665
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
3669
3666
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
@@ -3846,16 +3843,16 @@ var deleteRetryPolicy = /*#__PURE__*/function () {
|
|
|
3846
3843
|
/*!********************************************************!*\
|
|
3847
3844
|
!*** ./adapters/REST/endpoints/workflow-definition.ts ***!
|
|
3848
3845
|
\********************************************************/
|
|
3849
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
3846
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
3850
3847
|
|
|
3851
3848
|
"use strict";
|
|
3852
3849
|
__webpack_require__.r(__webpack_exports__);
|
|
3853
3850
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
3854
|
-
/* harmony export */ create: ()
|
|
3855
|
-
/* harmony export */ del: ()
|
|
3856
|
-
/* harmony export */ get: ()
|
|
3857
|
-
/* harmony export */ getMany: ()
|
|
3858
|
-
/* harmony export */ update: ()
|
|
3851
|
+
/* harmony export */ create: function() { return /* binding */ create; },
|
|
3852
|
+
/* harmony export */ del: function() { return /* binding */ del; },
|
|
3853
|
+
/* harmony export */ get: function() { return /* binding */ get; },
|
|
3854
|
+
/* harmony export */ getMany: function() { return /* binding */ getMany; },
|
|
3855
|
+
/* harmony export */ update: function() { return /* binding */ update; }
|
|
3859
3856
|
/* harmony export */ });
|
|
3860
3857
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
3861
3858
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
@@ -3919,16 +3916,16 @@ var del = function del(http, _ref, headers) {
|
|
|
3919
3916
|
/*!*********************************************!*\
|
|
3920
3917
|
!*** ./adapters/REST/endpoints/workflow.ts ***!
|
|
3921
3918
|
\*********************************************/
|
|
3922
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
3919
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
3923
3920
|
|
|
3924
3921
|
"use strict";
|
|
3925
3922
|
__webpack_require__.r(__webpack_exports__);
|
|
3926
3923
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
3927
|
-
/* harmony export */ complete: ()
|
|
3928
|
-
/* harmony export */ create: ()
|
|
3929
|
-
/* harmony export */ del: ()
|
|
3930
|
-
/* harmony export */ getMany: ()
|
|
3931
|
-
/* harmony export */ update: ()
|
|
3924
|
+
/* harmony export */ complete: function() { return /* binding */ complete; },
|
|
3925
|
+
/* harmony export */ create: function() { return /* binding */ create; },
|
|
3926
|
+
/* harmony export */ del: function() { return /* binding */ del; },
|
|
3927
|
+
/* harmony export */ getMany: function() { return /* binding */ getMany; },
|
|
3928
|
+
/* harmony export */ update: function() { return /* binding */ update; }
|
|
3932
3929
|
/* harmony export */ });
|
|
3933
3930
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
3934
3931
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
@@ -4000,12 +3997,12 @@ var complete = function complete(http, _ref2, headers) {
|
|
|
4000
3997
|
/*!********************************************************!*\
|
|
4001
3998
|
!*** ./adapters/REST/endpoints/workflows-changelog.ts ***!
|
|
4002
3999
|
\********************************************************/
|
|
4003
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
4000
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
4004
4001
|
|
|
4005
4002
|
"use strict";
|
|
4006
4003
|
__webpack_require__.r(__webpack_exports__);
|
|
4007
4004
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
4008
|
-
/* harmony export */ getMany: ()
|
|
4005
|
+
/* harmony export */ getMany: function() { return /* binding */ getMany; }
|
|
4009
4006
|
/* harmony export */ });
|
|
4010
4007
|
/* harmony import */ var _raw__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./raw */ "./adapters/REST/endpoints/raw.ts");
|
|
4011
4008
|
|
|
@@ -4025,12 +4022,12 @@ var getMany = function getMany(http, params, headers) {
|
|
|
4025
4022
|
/*!***************************************!*\
|
|
4026
4023
|
!*** ./adapters/REST/rest-adapter.ts ***!
|
|
4027
4024
|
\***************************************/
|
|
4028
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
4025
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
4029
4026
|
|
|
4030
4027
|
"use strict";
|
|
4031
4028
|
__webpack_require__.r(__webpack_exports__);
|
|
4032
4029
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
4033
|
-
/* harmony export */ RestAdapter: ()
|
|
4030
|
+
/* harmony export */ RestAdapter: function() { return /* binding */ RestAdapter; }
|
|
4034
4031
|
/* harmony export */ });
|
|
4035
4032
|
/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! axios */ "../node_modules/axios/lib/axios.js");
|
|
4036
4033
|
/* 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");
|
|
@@ -4124,12 +4121,12 @@ var RestAdapter = /*#__PURE__*/function () {
|
|
|
4124
4121
|
/*!*************************!*\
|
|
4125
4122
|
!*** ./common-types.ts ***!
|
|
4126
4123
|
\*************************/
|
|
4127
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
4124
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
4128
4125
|
|
|
4129
4126
|
"use strict";
|
|
4130
4127
|
__webpack_require__.r(__webpack_exports__);
|
|
4131
4128
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
4132
|
-
/* harmony export */ ScheduledActionReferenceFilters: ()
|
|
4129
|
+
/* harmony export */ ScheduledActionReferenceFilters: function() { return /* binding */ ScheduledActionReferenceFilters; }
|
|
4133
4130
|
/* harmony export */ });
|
|
4134
4131
|
/**
|
|
4135
4132
|
* Link is a reference object to another entity that can be resolved using tools such as contentful-resolve
|
|
@@ -4189,16 +4186,16 @@ var ScheduledActionReferenceFilters = /*#__PURE__*/function (ScheduledActionRefe
|
|
|
4189
4186
|
/*!*************************!*\
|
|
4190
4187
|
!*** ./common-utils.ts ***!
|
|
4191
4188
|
\*************************/
|
|
4192
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
4189
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
4193
4190
|
|
|
4194
4191
|
"use strict";
|
|
4195
4192
|
__webpack_require__.r(__webpack_exports__);
|
|
4196
4193
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
4197
|
-
/* harmony export */ isSuccessful: ()
|
|
4198
|
-
/* harmony export */ shouldRePoll: ()
|
|
4199
|
-
/* harmony export */ waitFor: ()
|
|
4200
|
-
/* harmony export */ wrapCollection: ()
|
|
4201
|
-
/* harmony export */ wrapCursorPaginatedCollection: ()
|
|
4194
|
+
/* harmony export */ isSuccessful: function() { return /* binding */ isSuccessful; },
|
|
4195
|
+
/* harmony export */ shouldRePoll: function() { return /* binding */ shouldRePoll; },
|
|
4196
|
+
/* harmony export */ waitFor: function() { return /* binding */ waitFor; },
|
|
4197
|
+
/* harmony export */ wrapCollection: function() { return /* binding */ wrapCollection; },
|
|
4198
|
+
/* harmony export */ wrapCursorPaginatedCollection: function() { return /* binding */ wrapCursorPaginatedCollection; }
|
|
4202
4199
|
/* harmony export */ });
|
|
4203
4200
|
/* 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");
|
|
4204
4201
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
@@ -4276,17 +4273,17 @@ function _waitFor() {
|
|
|
4276
4273
|
/*!******************************************************************!*\
|
|
4277
4274
|
!*** ./constants/editor-interface-defaults/controls-defaults.ts ***!
|
|
4278
4275
|
\******************************************************************/
|
|
4279
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
4276
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
4280
4277
|
|
|
4281
4278
|
"use strict";
|
|
4282
4279
|
__webpack_require__.r(__webpack_exports__);
|
|
4283
4280
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
4284
|
-
/* harmony export */ DEFAULTS_SETTINGS: ()
|
|
4285
|
-
/* harmony export */ DEFAULTS_WIDGET: ()
|
|
4286
|
-
/* harmony export */ FIELD_TYPES: ()
|
|
4287
|
-
/* harmony export */ "default": ()
|
|
4288
|
-
/* harmony export */ toApiFieldType: ()
|
|
4289
|
-
/* harmony export */ toInternalFieldType: ()
|
|
4281
|
+
/* harmony export */ DEFAULTS_SETTINGS: function() { return /* binding */ DEFAULTS_SETTINGS; },
|
|
4282
|
+
/* harmony export */ DEFAULTS_WIDGET: function() { return /* binding */ DEFAULTS_WIDGET; },
|
|
4283
|
+
/* harmony export */ FIELD_TYPES: function() { return /* binding */ FIELD_TYPES; },
|
|
4284
|
+
/* harmony export */ "default": function() { return /* binding */ getDefaultControlOfField; },
|
|
4285
|
+
/* harmony export */ toApiFieldType: function() { return /* binding */ toApiFieldType; },
|
|
4286
|
+
/* harmony export */ toInternalFieldType: function() { return /* binding */ toInternalFieldType; }
|
|
4290
4287
|
/* harmony export */ });
|
|
4291
4288
|
/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./types */ "./constants/editor-interface-defaults/types.ts");
|
|
4292
4289
|
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
@@ -4554,13 +4551,13 @@ function getDefaultControlOfField(field) {
|
|
|
4554
4551
|
/*!*****************************************************************!*\
|
|
4555
4552
|
!*** ./constants/editor-interface-defaults/editors-defaults.ts ***!
|
|
4556
4553
|
\*****************************************************************/
|
|
4557
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
4554
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
4558
4555
|
|
|
4559
4556
|
"use strict";
|
|
4560
4557
|
__webpack_require__.r(__webpack_exports__);
|
|
4561
4558
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
4562
|
-
/* harmony export */ EntryConfiguration: ()
|
|
4563
|
-
/* harmony export */ EntryEditorWidgetTypes: ()
|
|
4559
|
+
/* harmony export */ EntryConfiguration: function() { return /* binding */ EntryConfiguration; },
|
|
4560
|
+
/* harmony export */ EntryEditorWidgetTypes: function() { return /* binding */ EntryEditorWidgetTypes; }
|
|
4564
4561
|
/* harmony export */ });
|
|
4565
4562
|
/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./types */ "./constants/editor-interface-defaults/types.ts");
|
|
4566
4563
|
|
|
@@ -4604,20 +4601,17 @@ var EntryConfiguration = [DefaultEntryEditor, ReferencesEntryEditor, TagsEditor]
|
|
|
4604
4601
|
/*!******************************************************!*\
|
|
4605
4602
|
!*** ./constants/editor-interface-defaults/index.ts ***!
|
|
4606
4603
|
\******************************************************/
|
|
4607
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
4604
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
4608
4605
|
|
|
4609
4606
|
"use strict";
|
|
4610
4607
|
__webpack_require__.r(__webpack_exports__);
|
|
4611
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
4612
|
-
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
4613
|
-
/* harmony export */ });
|
|
4614
4608
|
/* harmony import */ var _sidebar_defaults__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./sidebar-defaults */ "./constants/editor-interface-defaults/sidebar-defaults.ts");
|
|
4615
4609
|
/* harmony import */ var _editors_defaults__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./editors-defaults */ "./constants/editor-interface-defaults/editors-defaults.ts");
|
|
4616
4610
|
/* harmony import */ var _controls_defaults__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./controls-defaults */ "./constants/editor-interface-defaults/controls-defaults.ts");
|
|
4617
4611
|
|
|
4618
4612
|
|
|
4619
4613
|
|
|
4620
|
-
/* harmony default export */
|
|
4614
|
+
/* harmony default export */ __webpack_exports__["default"] = ({
|
|
4621
4615
|
SidebarEntryConfiguration: _sidebar_defaults__WEBPACK_IMPORTED_MODULE_0__.SidebarEntryConfiguration,
|
|
4622
4616
|
SidebarAssetConfiguration: _sidebar_defaults__WEBPACK_IMPORTED_MODULE_0__.SidebarAssetConfiguration,
|
|
4623
4617
|
EntryConfiguration: _editors_defaults__WEBPACK_IMPORTED_MODULE_1__.EntryConfiguration,
|
|
@@ -4630,13 +4624,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
4630
4624
|
/*!*****************************************************************!*\
|
|
4631
4625
|
!*** ./constants/editor-interface-defaults/sidebar-defaults.ts ***!
|
|
4632
4626
|
\*****************************************************************/
|
|
4633
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
4627
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
4634
4628
|
|
|
4635
4629
|
"use strict";
|
|
4636
4630
|
__webpack_require__.r(__webpack_exports__);
|
|
4637
4631
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
4638
|
-
/* harmony export */ SidebarAssetConfiguration: ()
|
|
4639
|
-
/* harmony export */ SidebarEntryConfiguration: ()
|
|
4632
|
+
/* harmony export */ SidebarAssetConfiguration: function() { return /* binding */ SidebarAssetConfiguration; },
|
|
4633
|
+
/* harmony export */ SidebarEntryConfiguration: function() { return /* binding */ SidebarEntryConfiguration; }
|
|
4640
4634
|
/* harmony export */ });
|
|
4641
4635
|
/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./types */ "./constants/editor-interface-defaults/types.ts");
|
|
4642
4636
|
|
|
@@ -4703,14 +4697,14 @@ var SidebarAssetConfiguration = [Publication, Releases, Links, Translation, User
|
|
|
4703
4697
|
/*!******************************************************!*\
|
|
4704
4698
|
!*** ./constants/editor-interface-defaults/types.ts ***!
|
|
4705
4699
|
\******************************************************/
|
|
4706
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
4700
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
4707
4701
|
|
|
4708
4702
|
"use strict";
|
|
4709
4703
|
__webpack_require__.r(__webpack_exports__);
|
|
4710
4704
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
4711
|
-
/* harmony export */ DEFAULT_EDITOR_ID: ()
|
|
4712
|
-
/* harmony export */ WidgetNamespace: ()
|
|
4713
|
-
/* harmony export */ in_: ()
|
|
4705
|
+
/* harmony export */ DEFAULT_EDITOR_ID: function() { return /* binding */ DEFAULT_EDITOR_ID; },
|
|
4706
|
+
/* harmony export */ WidgetNamespace: function() { return /* binding */ WidgetNamespace; },
|
|
4707
|
+
/* harmony export */ in_: function() { return /* binding */ in_; }
|
|
4714
4708
|
/* harmony export */ });
|
|
4715
4709
|
var WidgetNamespace = /*#__PURE__*/function (WidgetNamespace) {
|
|
4716
4710
|
WidgetNamespace["BUILTIN"] = "builtin";
|
|
@@ -4735,12 +4729,12 @@ var in_ = function in_(key, object) {
|
|
|
4735
4729
|
/*!***************************!*\
|
|
4736
4730
|
!*** ./create-adapter.ts ***!
|
|
4737
4731
|
\***************************/
|
|
4738
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
4732
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
4739
4733
|
|
|
4740
4734
|
"use strict";
|
|
4741
4735
|
__webpack_require__.r(__webpack_exports__);
|
|
4742
4736
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
4743
|
-
/* harmony export */ createAdapter: ()
|
|
4737
|
+
/* harmony export */ createAdapter: function() { return /* binding */ createAdapter; }
|
|
4744
4738
|
/* harmony export */ });
|
|
4745
4739
|
/* harmony import */ var _adapters_REST_rest_adapter__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./adapters/REST/rest-adapter */ "./adapters/REST/rest-adapter.ts");
|
|
4746
4740
|
/**
|
|
@@ -4766,12 +4760,12 @@ function createAdapter(params) {
|
|
|
4766
4760
|
/*!**************************************!*\
|
|
4767
4761
|
!*** ./create-app-definition-api.ts ***!
|
|
4768
4762
|
\**************************************/
|
|
4769
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
4763
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
4770
4764
|
|
|
4771
4765
|
"use strict";
|
|
4772
4766
|
__webpack_require__.r(__webpack_exports__);
|
|
4773
4767
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
4774
|
-
/* harmony export */ "default": ()
|
|
4768
|
+
/* harmony export */ "default": function() { return /* binding */ createAppDefinitionApi; }
|
|
4775
4769
|
/* harmony export */ });
|
|
4776
4770
|
/* harmony import */ var _entities__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./entities */ "./entities/index.ts");
|
|
4777
4771
|
/* harmony import */ var _entities_app_definition__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./entities/app-definition */ "./entities/app-definition.ts");
|
|
@@ -4984,12 +4978,12 @@ function createAppDefinitionApi(makeRequest) {
|
|
|
4984
4978
|
/*!**********************************!*\
|
|
4985
4979
|
!*** ./create-contentful-api.ts ***!
|
|
4986
4980
|
\**********************************/
|
|
4987
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
4981
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
4988
4982
|
|
|
4989
4983
|
"use strict";
|
|
4990
4984
|
__webpack_require__.r(__webpack_exports__);
|
|
4991
4985
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
4992
|
-
/* harmony export */ "default": ()
|
|
4986
|
+
/* harmony export */ "default": function() { return /* binding */ createClientApi; }
|
|
4993
4987
|
/* harmony export */ });
|
|
4994
4988
|
/* 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");
|
|
4995
4989
|
/* harmony import */ var _entities__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./entities */ "./entities/index.ts");
|
|
@@ -5605,12 +5599,12 @@ function createClientApi(makeRequest) {
|
|
|
5605
5599
|
/*!*****************************!*\
|
|
5606
5600
|
!*** ./create-entry-api.ts ***!
|
|
5607
5601
|
\*****************************/
|
|
5608
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
5602
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
5609
5603
|
|
|
5610
5604
|
"use strict";
|
|
5611
5605
|
__webpack_require__.r(__webpack_exports__);
|
|
5612
5606
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
5613
|
-
/* harmony export */ "default": ()
|
|
5607
|
+
/* harmony export */ "default": function() { return /* binding */ createEntryApi; }
|
|
5614
5608
|
/* harmony export */ });
|
|
5615
5609
|
/* harmony import */ var _plain_checks__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./plain/checks */ "./plain/checks.ts");
|
|
5616
5610
|
/* harmony import */ var _entities__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./entities */ "./entities/index.ts");
|
|
@@ -6183,12 +6177,12 @@ function createEntryApi(makeRequest) {
|
|
|
6183
6177
|
/*!***********************************!*\
|
|
6184
6178
|
!*** ./create-environment-api.ts ***!
|
|
6185
6179
|
\***********************************/
|
|
6186
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
6180
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
6187
6181
|
|
|
6188
6182
|
"use strict";
|
|
6189
6183
|
__webpack_require__.r(__webpack_exports__);
|
|
6190
6184
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
6191
|
-
/* harmony export */ "default": ()
|
|
6185
|
+
/* harmony export */ "default": function() { return /* binding */ createEnvironmentApi; }
|
|
6192
6186
|
/* harmony export */ });
|
|
6193
6187
|
/* 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");
|
|
6194
6188
|
/* harmony import */ var _entities__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./entities */ "./entities/index.ts");
|
|
@@ -8553,12 +8547,12 @@ function createEnvironmentApi(makeRequest) {
|
|
|
8553
8547
|
/*!********************************************!*\
|
|
8554
8548
|
!*** ./create-environment-template-api.ts ***!
|
|
8555
8549
|
\********************************************/
|
|
8556
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
8550
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
8557
8551
|
|
|
8558
8552
|
"use strict";
|
|
8559
8553
|
__webpack_require__.r(__webpack_exports__);
|
|
8560
8554
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
8561
|
-
/* harmony export */ createEnvironmentTemplateApi: ()
|
|
8555
|
+
/* harmony export */ createEnvironmentTemplateApi: function() { return /* binding */ createEnvironmentTemplateApi; }
|
|
8562
8556
|
/* harmony export */ });
|
|
8563
8557
|
/* 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");
|
|
8564
8558
|
/* harmony import */ var _entities__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./entities */ "./entities/index.ts");
|
|
@@ -8886,12 +8880,12 @@ function createEnvironmentTemplateApi(makeRequest, organizationId) {
|
|
|
8886
8880
|
/*!************************************!*\
|
|
8887
8881
|
!*** ./create-organization-api.ts ***!
|
|
8888
8882
|
\************************************/
|
|
8889
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
8883
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
8890
8884
|
|
|
8891
8885
|
"use strict";
|
|
8892
8886
|
__webpack_require__.r(__webpack_exports__);
|
|
8893
8887
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
8894
|
-
/* harmony export */ "default": ()
|
|
8888
|
+
/* harmony export */ "default": function() { return /* binding */ createOrganizationApi; }
|
|
8895
8889
|
/* harmony export */ });
|
|
8896
8890
|
/* 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");
|
|
8897
8891
|
/* harmony import */ var _entities__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./entities */ "./entities/index.ts");
|
|
@@ -10214,12 +10208,12 @@ function createOrganizationApi(makeRequest) {
|
|
|
10214
10208
|
/*!*****************************!*\
|
|
10215
10209
|
!*** ./create-space-api.ts ***!
|
|
10216
10210
|
\*****************************/
|
|
10217
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
10211
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
10218
10212
|
|
|
10219
10213
|
"use strict";
|
|
10220
10214
|
__webpack_require__.r(__webpack_exports__);
|
|
10221
10215
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
10222
|
-
/* harmony export */ "default": ()
|
|
10216
|
+
/* harmony export */ "default": function() { return /* binding */ createSpaceApi; }
|
|
10223
10217
|
/* harmony export */ });
|
|
10224
10218
|
/* 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");
|
|
10225
10219
|
/* harmony import */ var _entities__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./entities */ "./entities/index.ts");
|
|
@@ -11863,12 +11857,12 @@ function createSpaceApi(makeRequest) {
|
|
|
11863
11857
|
/*!*********************************!*\
|
|
11864
11858
|
!*** ./create-ui-config-api.ts ***!
|
|
11865
11859
|
\*********************************/
|
|
11866
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
11860
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
11867
11861
|
|
|
11868
11862
|
"use strict";
|
|
11869
11863
|
__webpack_require__.r(__webpack_exports__);
|
|
11870
11864
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
11871
|
-
/* harmony export */ "default": ()
|
|
11865
|
+
/* harmony export */ "default": function() { return /* binding */ createUIConfigApi; }
|
|
11872
11866
|
/* harmony export */ });
|
|
11873
11867
|
/* harmony import */ var _entities__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./entities */ "./entities/index.ts");
|
|
11874
11868
|
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
@@ -11955,12 +11949,12 @@ function createUIConfigApi(makeRequest) {
|
|
|
11955
11949
|
/*!**************************************!*\
|
|
11956
11950
|
!*** ./create-user-ui-config-api.ts ***!
|
|
11957
11951
|
\**************************************/
|
|
11958
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
11952
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
11959
11953
|
|
|
11960
11954
|
"use strict";
|
|
11961
11955
|
__webpack_require__.r(__webpack_exports__);
|
|
11962
11956
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
11963
|
-
/* harmony export */ "default": ()
|
|
11957
|
+
/* harmony export */ "default": function() { return /* binding */ createUserUIConfigApi; }
|
|
11964
11958
|
/* harmony export */ });
|
|
11965
11959
|
/* harmony import */ var _entities__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./entities */ "./entities/index.ts");
|
|
11966
11960
|
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
@@ -12047,12 +12041,12 @@ function createUserUIConfigApi(makeRequest) {
|
|
|
12047
12041
|
/*!*********************************!*\
|
|
12048
12042
|
!*** ./enhance-with-methods.ts ***!
|
|
12049
12043
|
\*********************************/
|
|
12050
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
12044
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12051
12045
|
|
|
12052
12046
|
"use strict";
|
|
12053
12047
|
__webpack_require__.r(__webpack_exports__);
|
|
12054
12048
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
12055
|
-
/* harmony export */ "default": ()
|
|
12049
|
+
/* harmony export */ "default": function() { return /* binding */ enhanceWithMethods; }
|
|
12056
12050
|
/* harmony export */ });
|
|
12057
12051
|
/**
|
|
12058
12052
|
* This method enhances a base object which would normally contain data, with
|
|
@@ -12084,13 +12078,13 @@ function enhanceWithMethods(baseObject, methodsObject) {
|
|
|
12084
12078
|
/*!**********************************!*\
|
|
12085
12079
|
!*** ./entities/access-token.ts ***!
|
|
12086
12080
|
\**********************************/
|
|
12087
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
12081
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12088
12082
|
|
|
12089
12083
|
"use strict";
|
|
12090
12084
|
__webpack_require__.r(__webpack_exports__);
|
|
12091
12085
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
12092
|
-
/* harmony export */ wrapAccessToken: ()
|
|
12093
|
-
/* harmony export */ wrapAccessTokenCollection: ()
|
|
12086
|
+
/* harmony export */ wrapAccessToken: function() { return /* binding */ wrapAccessToken; },
|
|
12087
|
+
/* harmony export */ wrapAccessTokenCollection: function() { return /* binding */ wrapAccessTokenCollection; }
|
|
12094
12088
|
/* harmony export */ });
|
|
12095
12089
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
12096
12090
|
/* 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");
|
|
@@ -12138,13 +12132,13 @@ var wrapAccessTokenCollection = (0,_common_utils__WEBPACK_IMPORTED_MODULE_3__.wr
|
|
|
12138
12132
|
/*!*****************************!*\
|
|
12139
12133
|
!*** ./entities/api-key.ts ***!
|
|
12140
12134
|
\*****************************/
|
|
12141
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
12135
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12142
12136
|
|
|
12143
12137
|
"use strict";
|
|
12144
12138
|
__webpack_require__.r(__webpack_exports__);
|
|
12145
12139
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
12146
|
-
/* harmony export */ wrapApiKey: ()
|
|
12147
|
-
/* harmony export */ wrapApiKeyCollection: ()
|
|
12140
|
+
/* harmony export */ wrapApiKey: function() { return /* binding */ wrapApiKey; },
|
|
12141
|
+
/* harmony export */ wrapApiKeyCollection: function() { return /* binding */ wrapApiKeyCollection; }
|
|
12148
12142
|
/* harmony export */ });
|
|
12149
12143
|
/* 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");
|
|
12150
12144
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
@@ -12214,14 +12208,14 @@ var wrapApiKeyCollection = (0,_common_utils__WEBPACK_IMPORTED_MODULE_2__.wrapCol
|
|
|
12214
12208
|
/*!*************************************!*\
|
|
12215
12209
|
!*** ./entities/app-action-call.ts ***!
|
|
12216
12210
|
\*************************************/
|
|
12217
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
12211
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12218
12212
|
|
|
12219
12213
|
"use strict";
|
|
12220
12214
|
__webpack_require__.r(__webpack_exports__);
|
|
12221
12215
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
12222
|
-
/* harmony export */ "default": ()
|
|
12223
|
-
/* harmony export */ wrapAppActionCall: ()
|
|
12224
|
-
/* harmony export */ wrapAppActionCallResponse: ()
|
|
12216
|
+
/* harmony export */ "default": function() { return /* binding */ createAppActionCallApi; },
|
|
12217
|
+
/* harmony export */ wrapAppActionCall: function() { return /* binding */ wrapAppActionCall; },
|
|
12218
|
+
/* harmony export */ wrapAppActionCallResponse: function() { return /* binding */ wrapAppActionCallResponse; }
|
|
12225
12219
|
/* harmony export */ });
|
|
12226
12220
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
12227
12221
|
/* 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");
|
|
@@ -12308,13 +12302,13 @@ function wrapAppActionCallResponse(makeRequest, data, retryOptions) {
|
|
|
12308
12302
|
/*!********************************!*\
|
|
12309
12303
|
!*** ./entities/app-action.ts ***!
|
|
12310
12304
|
\********************************/
|
|
12311
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
12305
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12312
12306
|
|
|
12313
12307
|
"use strict";
|
|
12314
12308
|
__webpack_require__.r(__webpack_exports__);
|
|
12315
12309
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
12316
|
-
/* harmony export */ wrapAppAction: ()
|
|
12317
|
-
/* harmony export */ wrapAppActionCollection: ()
|
|
12310
|
+
/* harmony export */ wrapAppAction: function() { return /* binding */ wrapAppAction; },
|
|
12311
|
+
/* harmony export */ wrapAppActionCollection: function() { return /* binding */ wrapAppActionCollection; }
|
|
12318
12312
|
/* harmony export */ });
|
|
12319
12313
|
/* 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");
|
|
12320
12314
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
@@ -12373,13 +12367,13 @@ var wrapAppActionCollection = (0,_common_utils__WEBPACK_IMPORTED_MODULE_2__.wrap
|
|
|
12373
12367
|
/*!********************************!*\
|
|
12374
12368
|
!*** ./entities/app-bundle.ts ***!
|
|
12375
12369
|
\********************************/
|
|
12376
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
12370
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12377
12371
|
|
|
12378
12372
|
"use strict";
|
|
12379
12373
|
__webpack_require__.r(__webpack_exports__);
|
|
12380
12374
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
12381
|
-
/* harmony export */ wrapAppBundle: ()
|
|
12382
|
-
/* harmony export */ wrapAppBundleCollection: ()
|
|
12375
|
+
/* harmony export */ wrapAppBundle: function() { return /* binding */ wrapAppBundle; },
|
|
12376
|
+
/* harmony export */ wrapAppBundleCollection: function() { return /* binding */ wrapAppBundleCollection; }
|
|
12383
12377
|
/* harmony export */ });
|
|
12384
12378
|
/* 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");
|
|
12385
12379
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
@@ -12438,13 +12432,13 @@ var wrapAppBundleCollection = (0,_common_utils__WEBPACK_IMPORTED_MODULE_2__.wrap
|
|
|
12438
12432
|
/*!************************************!*\
|
|
12439
12433
|
!*** ./entities/app-definition.ts ***!
|
|
12440
12434
|
\************************************/
|
|
12441
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
12435
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12442
12436
|
|
|
12443
12437
|
"use strict";
|
|
12444
12438
|
__webpack_require__.r(__webpack_exports__);
|
|
12445
12439
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
12446
|
-
/* harmony export */ wrapAppDefinition: ()
|
|
12447
|
-
/* harmony export */ wrapAppDefinitionCollection: ()
|
|
12440
|
+
/* harmony export */ wrapAppDefinition: function() { return /* binding */ wrapAppDefinition; },
|
|
12441
|
+
/* harmony export */ wrapAppDefinitionCollection: function() { return /* binding */ wrapAppDefinitionCollection; }
|
|
12448
12442
|
/* harmony export */ });
|
|
12449
12443
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
12450
12444
|
/* 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");
|
|
@@ -12482,12 +12476,12 @@ var wrapAppDefinitionCollection = (0,_common_utils__WEBPACK_IMPORTED_MODULE_3__.
|
|
|
12482
12476
|
/*!*********************************!*\
|
|
12483
12477
|
!*** ./entities/app-details.ts ***!
|
|
12484
12478
|
\*********************************/
|
|
12485
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
12479
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12486
12480
|
|
|
12487
12481
|
"use strict";
|
|
12488
12482
|
__webpack_require__.r(__webpack_exports__);
|
|
12489
12483
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
12490
|
-
/* harmony export */ wrapAppDetails: ()
|
|
12484
|
+
/* harmony export */ wrapAppDetails: function() { return /* binding */ wrapAppDetails; }
|
|
12491
12485
|
/* harmony export */ });
|
|
12492
12486
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
12493
12487
|
/* 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");
|
|
@@ -12536,12 +12530,12 @@ function wrapAppDetails(makeRequest, data) {
|
|
|
12536
12530
|
/*!********************************************!*\
|
|
12537
12531
|
!*** ./entities/app-event-subscription.ts ***!
|
|
12538
12532
|
\********************************************/
|
|
12539
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
12533
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12540
12534
|
|
|
12541
12535
|
"use strict";
|
|
12542
12536
|
__webpack_require__.r(__webpack_exports__);
|
|
12543
12537
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
12544
|
-
/* harmony export */ wrapAppEventSubscription: ()
|
|
12538
|
+
/* harmony export */ wrapAppEventSubscription: function() { return /* binding */ wrapAppEventSubscription; }
|
|
12545
12539
|
/* harmony export */ });
|
|
12546
12540
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
12547
12541
|
/* 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");
|
|
@@ -12585,13 +12579,13 @@ function wrapAppEventSubscription(makeRequest, data) {
|
|
|
12585
12579
|
/*!**************************************!*\
|
|
12586
12580
|
!*** ./entities/app-installation.ts ***!
|
|
12587
12581
|
\**************************************/
|
|
12588
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
12582
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12589
12583
|
|
|
12590
12584
|
"use strict";
|
|
12591
12585
|
__webpack_require__.r(__webpack_exports__);
|
|
12592
12586
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
12593
|
-
/* harmony export */ wrapAppInstallation: ()
|
|
12594
|
-
/* harmony export */ wrapAppInstallationCollection: ()
|
|
12587
|
+
/* harmony export */ wrapAppInstallation: function() { return /* binding */ wrapAppInstallation; },
|
|
12588
|
+
/* harmony export */ wrapAppInstallationCollection: function() { return /* binding */ wrapAppInstallationCollection; }
|
|
12595
12589
|
/* harmony export */ });
|
|
12596
12590
|
/* 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");
|
|
12597
12591
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
@@ -12659,13 +12653,13 @@ var wrapAppInstallationCollection = (0,_common_utils__WEBPACK_IMPORTED_MODULE_3_
|
|
|
12659
12653
|
/*!*****************************!*\
|
|
12660
12654
|
!*** ./entities/app-key.ts ***!
|
|
12661
12655
|
\*****************************/
|
|
12662
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
12656
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12663
12657
|
|
|
12664
12658
|
"use strict";
|
|
12665
12659
|
__webpack_require__.r(__webpack_exports__);
|
|
12666
12660
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
12667
|
-
/* harmony export */ wrapAppKey: ()
|
|
12668
|
-
/* harmony export */ wrapAppKeyCollection: ()
|
|
12661
|
+
/* harmony export */ wrapAppKey: function() { return /* binding */ wrapAppKey; },
|
|
12662
|
+
/* harmony export */ wrapAppKeyCollection: function() { return /* binding */ wrapAppKeyCollection; }
|
|
12669
12663
|
/* harmony export */ });
|
|
12670
12664
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
12671
12665
|
/* 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");
|
|
@@ -12720,12 +12714,12 @@ var wrapAppKeyCollection = (0,_common_utils__WEBPACK_IMPORTED_MODULE_3__.wrapCol
|
|
|
12720
12714
|
/*!****************************************!*\
|
|
12721
12715
|
!*** ./entities/app-signed-request.ts ***!
|
|
12722
12716
|
\****************************************/
|
|
12723
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
12717
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12724
12718
|
|
|
12725
12719
|
"use strict";
|
|
12726
12720
|
__webpack_require__.r(__webpack_exports__);
|
|
12727
12721
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
12728
|
-
/* harmony export */ wrapAppSignedRequest: ()
|
|
12722
|
+
/* harmony export */ wrapAppSignedRequest: function() { return /* binding */ wrapAppSignedRequest; }
|
|
12729
12723
|
/* harmony export */ });
|
|
12730
12724
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
12731
12725
|
/* 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");
|
|
@@ -12748,12 +12742,12 @@ function wrapAppSignedRequest(_makeRequest, data) {
|
|
|
12748
12742
|
/*!****************************************!*\
|
|
12749
12743
|
!*** ./entities/app-signing-secret.ts ***!
|
|
12750
12744
|
\****************************************/
|
|
12751
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
12745
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12752
12746
|
|
|
12753
12747
|
"use strict";
|
|
12754
12748
|
__webpack_require__.r(__webpack_exports__);
|
|
12755
12749
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
12756
|
-
/* harmony export */ wrapAppSigningSecret: ()
|
|
12750
|
+
/* harmony export */ wrapAppSigningSecret: function() { return /* binding */ wrapAppSigningSecret; }
|
|
12757
12751
|
/* harmony export */ });
|
|
12758
12752
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
12759
12753
|
/* 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");
|
|
@@ -12797,13 +12791,13 @@ function wrapAppSigningSecret(makeRequest, data) {
|
|
|
12797
12791
|
/*!********************************!*\
|
|
12798
12792
|
!*** ./entities/app-upload.ts ***!
|
|
12799
12793
|
\********************************/
|
|
12800
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
12794
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12801
12795
|
|
|
12802
12796
|
"use strict";
|
|
12803
12797
|
__webpack_require__.r(__webpack_exports__);
|
|
12804
12798
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
12805
|
-
/* harmony export */ wrapAppUpload: ()
|
|
12806
|
-
/* harmony export */ wrapAppUploadCollection: ()
|
|
12799
|
+
/* harmony export */ wrapAppUpload: function() { return /* binding */ wrapAppUpload; },
|
|
12800
|
+
/* harmony export */ wrapAppUploadCollection: function() { return /* binding */ wrapAppUploadCollection; }
|
|
12807
12801
|
/* harmony export */ });
|
|
12808
12802
|
/* 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");
|
|
12809
12803
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
@@ -12861,12 +12855,12 @@ var wrapAppUploadCollection = (0,_common_utils__WEBPACK_IMPORTED_MODULE_2__.wrap
|
|
|
12861
12855
|
/*!*******************************!*\
|
|
12862
12856
|
!*** ./entities/asset-key.ts ***!
|
|
12863
12857
|
\*******************************/
|
|
12864
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
12858
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12865
12859
|
|
|
12866
12860
|
"use strict";
|
|
12867
12861
|
__webpack_require__.r(__webpack_exports__);
|
|
12868
12862
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
12869
|
-
/* harmony export */ wrapAssetKey: ()
|
|
12863
|
+
/* harmony export */ wrapAssetKey: function() { return /* binding */ wrapAssetKey; }
|
|
12870
12864
|
/* harmony export */ });
|
|
12871
12865
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
12872
12866
|
/* 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");
|
|
@@ -12889,13 +12883,13 @@ function wrapAssetKey(_makeRequest, data) {
|
|
|
12889
12883
|
/*!***************************!*\
|
|
12890
12884
|
!*** ./entities/asset.ts ***!
|
|
12891
12885
|
\***************************/
|
|
12892
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
12886
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
12893
12887
|
|
|
12894
12888
|
"use strict";
|
|
12895
12889
|
__webpack_require__.r(__webpack_exports__);
|
|
12896
12890
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
12897
|
-
/* harmony export */ wrapAsset: ()
|
|
12898
|
-
/* harmony export */ wrapAssetCollection: ()
|
|
12891
|
+
/* harmony export */ wrapAsset: function() { return /* binding */ wrapAsset; },
|
|
12892
|
+
/* harmony export */ wrapAssetCollection: function() { return /* binding */ wrapAssetCollection; }
|
|
12899
12893
|
/* harmony export */ });
|
|
12900
12894
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
12901
12895
|
/* 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");
|
|
@@ -13055,13 +13049,13 @@ var wrapAssetCollection = (0,_common_utils__WEBPACK_IMPORTED_MODULE_3__.wrapColl
|
|
|
13055
13049
|
/*!*********************************!*\
|
|
13056
13050
|
!*** ./entities/bulk-action.ts ***!
|
|
13057
13051
|
\*********************************/
|
|
13058
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
13052
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13059
13053
|
|
|
13060
13054
|
"use strict";
|
|
13061
13055
|
__webpack_require__.r(__webpack_exports__);
|
|
13062
13056
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
13063
|
-
/* harmony export */ BulkActionStatus: ()
|
|
13064
|
-
/* harmony export */ wrapBulkAction: ()
|
|
13057
|
+
/* harmony export */ BulkActionStatus: function() { return /* binding */ BulkActionStatus; },
|
|
13058
|
+
/* harmony export */ wrapBulkAction: function() { return /* binding */ wrapBulkAction; }
|
|
13065
13059
|
/* harmony export */ });
|
|
13066
13060
|
/* 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");
|
|
13067
13061
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
@@ -13170,15 +13164,15 @@ function wrapBulkAction(makeRequest, data) {
|
|
|
13170
13164
|
/*!*****************************!*\
|
|
13171
13165
|
!*** ./entities/comment.ts ***!
|
|
13172
13166
|
\*****************************/
|
|
13173
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
13167
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13174
13168
|
|
|
13175
13169
|
"use strict";
|
|
13176
13170
|
__webpack_require__.r(__webpack_exports__);
|
|
13177
13171
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
13178
|
-
/* harmony export */ CommentNode: ()
|
|
13179
|
-
/* harmony export */ "default": ()
|
|
13180
|
-
/* harmony export */ wrapComment: ()
|
|
13181
|
-
/* harmony export */ wrapCommentCollection: ()
|
|
13172
|
+
/* harmony export */ CommentNode: function() { return /* binding */ CommentNode; },
|
|
13173
|
+
/* harmony export */ "default": function() { return /* binding */ createCommentApi; },
|
|
13174
|
+
/* harmony export */ wrapComment: function() { return /* binding */ wrapComment; },
|
|
13175
|
+
/* harmony export */ wrapCommentCollection: function() { return /* binding */ wrapCommentCollection; }
|
|
13182
13176
|
/* harmony export */ });
|
|
13183
13177
|
/* 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");
|
|
13184
13178
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
@@ -13308,13 +13302,13 @@ var wrapCommentCollection = (0,_common_utils__WEBPACK_IMPORTED_MODULE_2__.wrapCo
|
|
|
13308
13302
|
/*!**********************************!*\
|
|
13309
13303
|
!*** ./entities/content-type.ts ***!
|
|
13310
13304
|
\**********************************/
|
|
13311
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
13305
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13312
13306
|
|
|
13313
13307
|
"use strict";
|
|
13314
13308
|
__webpack_require__.r(__webpack_exports__);
|
|
13315
13309
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
13316
|
-
/* harmony export */ wrapContentType: ()
|
|
13317
|
-
/* harmony export */ wrapContentTypeCollection: ()
|
|
13310
|
+
/* harmony export */ wrapContentType: function() { return /* binding */ wrapContentType; },
|
|
13311
|
+
/* harmony export */ wrapContentTypeCollection: function() { return /* binding */ wrapContentTypeCollection; }
|
|
13318
13312
|
/* harmony export */ });
|
|
13319
13313
|
/* 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");
|
|
13320
13314
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
@@ -13485,13 +13479,13 @@ var wrapContentTypeCollection = (0,_common_utils__WEBPACK_IMPORTED_MODULE_2__.wr
|
|
|
13485
13479
|
/*!**************************************!*\
|
|
13486
13480
|
!*** ./entities/editor-interface.ts ***!
|
|
13487
13481
|
\**************************************/
|
|
13488
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
13482
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13489
13483
|
|
|
13490
13484
|
"use strict";
|
|
13491
13485
|
__webpack_require__.r(__webpack_exports__);
|
|
13492
13486
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
13493
|
-
/* harmony export */ wrapEditorInterface: ()
|
|
13494
|
-
/* harmony export */ wrapEditorInterfaceCollection: ()
|
|
13487
|
+
/* harmony export */ wrapEditorInterface: function() { return /* binding */ wrapEditorInterface; },
|
|
13488
|
+
/* harmony export */ wrapEditorInterfaceCollection: function() { return /* binding */ wrapEditorInterfaceCollection; }
|
|
13495
13489
|
/* harmony export */ });
|
|
13496
13490
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
13497
13491
|
/* 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");
|
|
@@ -13552,13 +13546,13 @@ var wrapEditorInterfaceCollection = (0,_common_utils__WEBPACK_IMPORTED_MODULE_3_
|
|
|
13552
13546
|
/*!***************************!*\
|
|
13553
13547
|
!*** ./entities/entry.ts ***!
|
|
13554
13548
|
\***************************/
|
|
13555
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
13549
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13556
13550
|
|
|
13557
13551
|
"use strict";
|
|
13558
13552
|
__webpack_require__.r(__webpack_exports__);
|
|
13559
13553
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
13560
|
-
/* harmony export */ wrapEntry: ()
|
|
13561
|
-
/* harmony export */ wrapEntryCollection: ()
|
|
13554
|
+
/* harmony export */ wrapEntry: function() { return /* binding */ wrapEntry; },
|
|
13555
|
+
/* harmony export */ wrapEntryCollection: function() { return /* binding */ wrapEntryCollection; }
|
|
13562
13556
|
/* harmony export */ });
|
|
13563
13557
|
/* 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");
|
|
13564
13558
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
@@ -13594,13 +13588,13 @@ var wrapEntryCollection = (0,_common_utils__WEBPACK_IMPORTED_MODULE_2__.wrapColl
|
|
|
13594
13588
|
/*!***************************************!*\
|
|
13595
13589
|
!*** ./entities/environment-alias.ts ***!
|
|
13596
13590
|
\***************************************/
|
|
13597
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
13591
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13598
13592
|
|
|
13599
13593
|
"use strict";
|
|
13600
13594
|
__webpack_require__.r(__webpack_exports__);
|
|
13601
13595
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
13602
|
-
/* harmony export */ wrapEnvironmentAlias: ()
|
|
13603
|
-
/* harmony export */ wrapEnvironmentAliasCollection: ()
|
|
13596
|
+
/* harmony export */ wrapEnvironmentAlias: function() { return /* binding */ wrapEnvironmentAlias; },
|
|
13597
|
+
/* harmony export */ wrapEnvironmentAliasCollection: function() { return /* binding */ wrapEnvironmentAliasCollection; }
|
|
13604
13598
|
/* harmony export */ });
|
|
13605
13599
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
13606
13600
|
/* 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");
|
|
@@ -13671,13 +13665,13 @@ var wrapEnvironmentAliasCollection = (0,_common_utils__WEBPACK_IMPORTED_MODULE_3
|
|
|
13671
13665
|
/*!*******************************************************!*\
|
|
13672
13666
|
!*** ./entities/environment-template-installation.ts ***!
|
|
13673
13667
|
\*******************************************************/
|
|
13674
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
13668
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13675
13669
|
|
|
13676
13670
|
"use strict";
|
|
13677
13671
|
__webpack_require__.r(__webpack_exports__);
|
|
13678
13672
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
13679
|
-
/* harmony export */ wrapEnvironmentTemplateInstallation: ()
|
|
13680
|
-
/* harmony export */ wrapEnvironmentTemplateInstallationCollection: ()
|
|
13673
|
+
/* harmony export */ wrapEnvironmentTemplateInstallation: function() { return /* binding */ wrapEnvironmentTemplateInstallation; },
|
|
13674
|
+
/* harmony export */ wrapEnvironmentTemplateInstallationCollection: function() { return /* binding */ wrapEnvironmentTemplateInstallationCollection; }
|
|
13681
13675
|
/* harmony export */ });
|
|
13682
13676
|
/* 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");
|
|
13683
13677
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
@@ -13706,13 +13700,13 @@ var wrapEnvironmentTemplateInstallationCollection = (0,_common_utils__WEBPACK_IM
|
|
|
13706
13700
|
/*!******************************************!*\
|
|
13707
13701
|
!*** ./entities/environment-template.ts ***!
|
|
13708
13702
|
\******************************************/
|
|
13709
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
13703
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13710
13704
|
|
|
13711
13705
|
"use strict";
|
|
13712
13706
|
__webpack_require__.r(__webpack_exports__);
|
|
13713
13707
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
13714
|
-
/* harmony export */ wrapEnvironmentTemplate: ()
|
|
13715
|
-
/* harmony export */ wrapEnvironmentTemplateCollection: ()
|
|
13708
|
+
/* harmony export */ wrapEnvironmentTemplate: function() { return /* binding */ wrapEnvironmentTemplate; },
|
|
13709
|
+
/* harmony export */ wrapEnvironmentTemplateCollection: function() { return /* binding */ wrapEnvironmentTemplateCollection; }
|
|
13716
13710
|
/* harmony export */ });
|
|
13717
13711
|
/* 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");
|
|
13718
13712
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
@@ -13738,13 +13732,13 @@ var wrapEnvironmentTemplateCollection = (0,_common_utils__WEBPACK_IMPORTED_MODUL
|
|
|
13738
13732
|
/*!*********************************!*\
|
|
13739
13733
|
!*** ./entities/environment.ts ***!
|
|
13740
13734
|
\*********************************/
|
|
13741
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
13735
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13742
13736
|
|
|
13743
13737
|
"use strict";
|
|
13744
13738
|
__webpack_require__.r(__webpack_exports__);
|
|
13745
13739
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
13746
|
-
/* harmony export */ wrapEnvironment: ()
|
|
13747
|
-
/* harmony export */ wrapEnvironmentCollection: ()
|
|
13740
|
+
/* harmony export */ wrapEnvironment: function() { return /* binding */ wrapEnvironment; },
|
|
13741
|
+
/* harmony export */ wrapEnvironmentCollection: function() { return /* binding */ wrapEnvironmentCollection; }
|
|
13748
13742
|
/* harmony export */ });
|
|
13749
13743
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
13750
13744
|
/* 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");
|
|
@@ -13787,13 +13781,13 @@ var wrapEnvironmentCollection = (0,_common_utils__WEBPACK_IMPORTED_MODULE_4__.wr
|
|
|
13787
13781
|
/*!*******************************!*\
|
|
13788
13782
|
!*** ./entities/extension.ts ***!
|
|
13789
13783
|
\*******************************/
|
|
13790
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
13784
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13791
13785
|
|
|
13792
13786
|
"use strict";
|
|
13793
13787
|
__webpack_require__.r(__webpack_exports__);
|
|
13794
13788
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
13795
|
-
/* harmony export */ wrapExtension: ()
|
|
13796
|
-
/* harmony export */ wrapExtensionCollection: ()
|
|
13789
|
+
/* harmony export */ wrapExtension: function() { return /* binding */ wrapExtension; },
|
|
13790
|
+
/* harmony export */ wrapExtensionCollection: function() { return /* binding */ wrapExtensionCollection; }
|
|
13797
13791
|
/* harmony export */ });
|
|
13798
13792
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
13799
13793
|
/* 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");
|
|
@@ -13860,13 +13854,10 @@ var wrapExtensionCollection = (0,_common_utils__WEBPACK_IMPORTED_MODULE_3__.wrap
|
|
|
13860
13854
|
/*!***************************!*\
|
|
13861
13855
|
!*** ./entities/index.ts ***!
|
|
13862
13856
|
\***************************/
|
|
13863
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
13857
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
13864
13858
|
|
|
13865
13859
|
"use strict";
|
|
13866
13860
|
__webpack_require__.r(__webpack_exports__);
|
|
13867
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
13868
|
-
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
13869
|
-
/* harmony export */ });
|
|
13870
13861
|
/* harmony import */ var _api_key__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./api-key */ "./entities/api-key.ts");
|
|
13871
13862
|
/* harmony import */ var _app_action__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./app-action */ "./entities/app-action.ts");
|
|
13872
13863
|
/* harmony import */ var _app_action_call__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./app-action-call */ "./entities/app-action-call.ts");
|
|
@@ -13969,7 +13960,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
13969
13960
|
|
|
13970
13961
|
|
|
13971
13962
|
|
|
13972
|
-
/* harmony default export */
|
|
13963
|
+
/* harmony default export */ __webpack_exports__["default"] = ({
|
|
13973
13964
|
accessToken: _access_token__WEBPACK_IMPORTED_MODULE_29__,
|
|
13974
13965
|
appAction: _app_action__WEBPACK_IMPORTED_MODULE_1__,
|
|
13975
13966
|
appActionCall: _app_action_call__WEBPACK_IMPORTED_MODULE_2__,
|
|
@@ -14029,13 +14020,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
14029
14020
|
/*!****************************!*\
|
|
14030
14021
|
!*** ./entities/locale.ts ***!
|
|
14031
14022
|
\****************************/
|
|
14032
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
14023
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14033
14024
|
|
|
14034
14025
|
"use strict";
|
|
14035
14026
|
__webpack_require__.r(__webpack_exports__);
|
|
14036
14027
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
14037
|
-
/* harmony export */ wrapLocale: ()
|
|
14038
|
-
/* harmony export */ wrapLocaleCollection: ()
|
|
14028
|
+
/* harmony export */ wrapLocale: function() { return /* binding */ wrapLocale; },
|
|
14029
|
+
/* harmony export */ wrapLocaleCollection: function() { return /* binding */ wrapLocaleCollection; }
|
|
14039
14030
|
/* harmony export */ });
|
|
14040
14031
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
14041
14032
|
/* 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");
|
|
@@ -14105,12 +14096,12 @@ var wrapLocaleCollection = (0,_common_utils__WEBPACK_IMPORTED_MODULE_3__.wrapCol
|
|
|
14105
14096
|
/*!*********************************************!*\
|
|
14106
14097
|
!*** ./entities/organization-invitation.ts ***!
|
|
14107
14098
|
\*********************************************/
|
|
14108
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
14099
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14109
14100
|
|
|
14110
14101
|
"use strict";
|
|
14111
14102
|
__webpack_require__.r(__webpack_exports__);
|
|
14112
14103
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
14113
|
-
/* harmony export */ wrapOrganizationInvitation: ()
|
|
14104
|
+
/* harmony export */ wrapOrganizationInvitation: function() { return /* binding */ wrapOrganizationInvitation; }
|
|
14114
14105
|
/* harmony export */ });
|
|
14115
14106
|
/* 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");
|
|
14116
14107
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
@@ -14133,13 +14124,13 @@ function wrapOrganizationInvitation(_makeRequest, data) {
|
|
|
14133
14124
|
/*!*********************************************!*\
|
|
14134
14125
|
!*** ./entities/organization-membership.ts ***!
|
|
14135
14126
|
\*********************************************/
|
|
14136
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
14127
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14137
14128
|
|
|
14138
14129
|
"use strict";
|
|
14139
14130
|
__webpack_require__.r(__webpack_exports__);
|
|
14140
14131
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
14141
|
-
/* harmony export */ wrapOrganizationMembership: ()
|
|
14142
|
-
/* harmony export */ wrapOrganizationMembershipCollection: ()
|
|
14132
|
+
/* harmony export */ wrapOrganizationMembership: function() { return /* binding */ wrapOrganizationMembership; },
|
|
14133
|
+
/* harmony export */ wrapOrganizationMembershipCollection: function() { return /* binding */ wrapOrganizationMembershipCollection; }
|
|
14143
14134
|
/* harmony export */ });
|
|
14144
14135
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
14145
14136
|
/* 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");
|
|
@@ -14205,13 +14196,13 @@ var wrapOrganizationMembershipCollection = (0,_common_utils__WEBPACK_IMPORTED_MO
|
|
|
14205
14196
|
/*!**********************************!*\
|
|
14206
14197
|
!*** ./entities/organization.ts ***!
|
|
14207
14198
|
\**********************************/
|
|
14208
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
14199
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14209
14200
|
|
|
14210
14201
|
"use strict";
|
|
14211
14202
|
__webpack_require__.r(__webpack_exports__);
|
|
14212
14203
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
14213
|
-
/* harmony export */ wrapOrganization: ()
|
|
14214
|
-
/* harmony export */ wrapOrganizationCollection: ()
|
|
14204
|
+
/* harmony export */ wrapOrganization: function() { return /* binding */ wrapOrganization; },
|
|
14205
|
+
/* harmony export */ wrapOrganizationCollection: function() { return /* binding */ wrapOrganizationCollection; }
|
|
14215
14206
|
/* harmony export */ });
|
|
14216
14207
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
14217
14208
|
/* 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");
|
|
@@ -14252,13 +14243,13 @@ var wrapOrganizationCollection = (0,_common_utils__WEBPACK_IMPORTED_MODULE_4__.w
|
|
|
14252
14243
|
/*!*******************************************!*\
|
|
14253
14244
|
!*** ./entities/personal-access-token.ts ***!
|
|
14254
14245
|
\*******************************************/
|
|
14255
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
14246
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14256
14247
|
|
|
14257
14248
|
"use strict";
|
|
14258
14249
|
__webpack_require__.r(__webpack_exports__);
|
|
14259
14250
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
14260
|
-
/* harmony export */ wrapPersonalAccessToken: ()
|
|
14261
|
-
/* harmony export */ wrapPersonalAccessTokenCollection: ()
|
|
14251
|
+
/* harmony export */ wrapPersonalAccessToken: function() { return /* binding */ wrapPersonalAccessToken; },
|
|
14252
|
+
/* harmony export */ wrapPersonalAccessTokenCollection: function() { return /* binding */ wrapPersonalAccessTokenCollection; }
|
|
14262
14253
|
/* harmony export */ });
|
|
14263
14254
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
14264
14255
|
/* 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");
|
|
@@ -14306,13 +14297,13 @@ var wrapPersonalAccessTokenCollection = (0,_common_utils__WEBPACK_IMPORTED_MODUL
|
|
|
14306
14297
|
/*!*************************************!*\
|
|
14307
14298
|
!*** ./entities/preview-api-key.ts ***!
|
|
14308
14299
|
\*************************************/
|
|
14309
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
14300
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14310
14301
|
|
|
14311
14302
|
"use strict";
|
|
14312
14303
|
__webpack_require__.r(__webpack_exports__);
|
|
14313
14304
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
14314
|
-
/* harmony export */ wrapPreviewApiKey: ()
|
|
14315
|
-
/* harmony export */ wrapPreviewApiKeyCollection: ()
|
|
14305
|
+
/* harmony export */ wrapPreviewApiKey: function() { return /* binding */ wrapPreviewApiKey; },
|
|
14306
|
+
/* harmony export */ wrapPreviewApiKeyCollection: function() { return /* binding */ wrapPreviewApiKeyCollection; }
|
|
14316
14307
|
/* harmony export */ });
|
|
14317
14308
|
/* 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");
|
|
14318
14309
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
@@ -14352,13 +14343,13 @@ var wrapPreviewApiKeyCollection = (0,_common_utils__WEBPACK_IMPORTED_MODULE_2__.
|
|
|
14352
14343
|
/*!************************************!*\
|
|
14353
14344
|
!*** ./entities/release-action.ts ***!
|
|
14354
14345
|
\************************************/
|
|
14355
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
14346
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14356
14347
|
|
|
14357
14348
|
"use strict";
|
|
14358
14349
|
__webpack_require__.r(__webpack_exports__);
|
|
14359
14350
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
14360
|
-
/* harmony export */ wrapReleaseAction: ()
|
|
14361
|
-
/* harmony export */ wrapReleaseActionCollection: ()
|
|
14351
|
+
/* harmony export */ wrapReleaseAction: function() { return /* binding */ wrapReleaseAction; },
|
|
14352
|
+
/* harmony export */ wrapReleaseActionCollection: function() { return /* binding */ wrapReleaseActionCollection; }
|
|
14362
14353
|
/* harmony export */ });
|
|
14363
14354
|
/* 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");
|
|
14364
14355
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
@@ -14463,14 +14454,14 @@ var wrapReleaseActionCollection = (0,_common_utils__WEBPACK_IMPORTED_MODULE_2__.
|
|
|
14463
14454
|
/*!*****************************!*\
|
|
14464
14455
|
!*** ./entities/release.ts ***!
|
|
14465
14456
|
\*****************************/
|
|
14466
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
14457
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14467
14458
|
|
|
14468
14459
|
"use strict";
|
|
14469
14460
|
__webpack_require__.r(__webpack_exports__);
|
|
14470
14461
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
14471
|
-
/* harmony export */ ReleaseReferenceFilters: ()
|
|
14472
|
-
/* harmony export */ wrapRelease: ()
|
|
14473
|
-
/* harmony export */ wrapReleaseCollection: ()
|
|
14462
|
+
/* harmony export */ ReleaseReferenceFilters: function() { return /* binding */ ReleaseReferenceFilters; },
|
|
14463
|
+
/* harmony export */ wrapRelease: function() { return /* binding */ wrapRelease; },
|
|
14464
|
+
/* harmony export */ wrapReleaseCollection: function() { return /* binding */ wrapReleaseCollection; }
|
|
14474
14465
|
/* harmony export */ });
|
|
14475
14466
|
/* 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");
|
|
14476
14467
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
@@ -14697,13 +14688,13 @@ var wrapReleaseCollection = (0,_common_utils__WEBPACK_IMPORTED_MODULE_3__.wrapCu
|
|
|
14697
14688
|
/*!**************************!*\
|
|
14698
14689
|
!*** ./entities/role.ts ***!
|
|
14699
14690
|
\**************************/
|
|
14700
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
14691
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14701
14692
|
|
|
14702
14693
|
"use strict";
|
|
14703
14694
|
__webpack_require__.r(__webpack_exports__);
|
|
14704
14695
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
14705
|
-
/* harmony export */ wrapRole: ()
|
|
14706
|
-
/* harmony export */ wrapRoleCollection: ()
|
|
14696
|
+
/* harmony export */ wrapRole: function() { return /* binding */ wrapRole; },
|
|
14697
|
+
/* harmony export */ wrapRoleCollection: function() { return /* binding */ wrapRoleCollection; }
|
|
14707
14698
|
/* harmony export */ });
|
|
14708
14699
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
14709
14700
|
/* 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");
|
|
@@ -14769,14 +14760,14 @@ var wrapRoleCollection = (0,_common_utils__WEBPACK_IMPORTED_MODULE_3__.wrapColle
|
|
|
14769
14760
|
/*!**************************************!*\
|
|
14770
14761
|
!*** ./entities/scheduled-action.ts ***!
|
|
14771
14762
|
\**************************************/
|
|
14772
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
14763
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14773
14764
|
|
|
14774
14765
|
"use strict";
|
|
14775
14766
|
__webpack_require__.r(__webpack_exports__);
|
|
14776
14767
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
14777
|
-
/* harmony export */ "default": ()
|
|
14778
|
-
/* harmony export */ wrapScheduledAction: ()
|
|
14779
|
-
/* harmony export */ wrapScheduledActionCollection: ()
|
|
14768
|
+
/* harmony export */ "default": function() { return /* binding */ getInstanceMethods; },
|
|
14769
|
+
/* harmony export */ wrapScheduledAction: function() { return /* binding */ wrapScheduledAction; },
|
|
14770
|
+
/* harmony export */ wrapScheduledActionCollection: function() { return /* binding */ wrapScheduledActionCollection; }
|
|
14780
14771
|
/* harmony export */ });
|
|
14781
14772
|
/* 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");
|
|
14782
14773
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
@@ -14965,13 +14956,13 @@ var wrapScheduledActionCollection = (0,_common_utils__WEBPACK_IMPORTED_MODULE_2_
|
|
|
14965
14956
|
/*!******************************!*\
|
|
14966
14957
|
!*** ./entities/snapshot.ts ***!
|
|
14967
14958
|
\******************************/
|
|
14968
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
14959
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
14969
14960
|
|
|
14970
14961
|
"use strict";
|
|
14971
14962
|
__webpack_require__.r(__webpack_exports__);
|
|
14972
14963
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
14973
|
-
/* harmony export */ wrapSnapshot: ()
|
|
14974
|
-
/* harmony export */ wrapSnapshotCollection: ()
|
|
14964
|
+
/* harmony export */ wrapSnapshot: function() { return /* binding */ wrapSnapshot; },
|
|
14965
|
+
/* harmony export */ wrapSnapshotCollection: function() { return /* binding */ wrapSnapshotCollection; }
|
|
14975
14966
|
/* harmony export */ });
|
|
14976
14967
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
14977
14968
|
/* 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");
|
|
@@ -15015,13 +15006,13 @@ var wrapSnapshotCollection = (0,_common_utils__WEBPACK_IMPORTED_MODULE_3__.wrapC
|
|
|
15015
15006
|
/*!**********************************!*\
|
|
15016
15007
|
!*** ./entities/space-member.ts ***!
|
|
15017
15008
|
\**********************************/
|
|
15018
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
15009
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
15019
15010
|
|
|
15020
15011
|
"use strict";
|
|
15021
15012
|
__webpack_require__.r(__webpack_exports__);
|
|
15022
15013
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
15023
|
-
/* harmony export */ wrapSpaceMember: ()
|
|
15024
|
-
/* harmony export */ wrapSpaceMemberCollection: ()
|
|
15014
|
+
/* harmony export */ wrapSpaceMember: function() { return /* binding */ wrapSpaceMember; },
|
|
15015
|
+
/* harmony export */ wrapSpaceMemberCollection: function() { return /* binding */ wrapSpaceMemberCollection; }
|
|
15025
15016
|
/* harmony export */ });
|
|
15026
15017
|
/* 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");
|
|
15027
15018
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
@@ -15051,13 +15042,13 @@ var wrapSpaceMemberCollection = (0,_common_utils__WEBPACK_IMPORTED_MODULE_2__.wr
|
|
|
15051
15042
|
/*!**************************************!*\
|
|
15052
15043
|
!*** ./entities/space-membership.ts ***!
|
|
15053
15044
|
\**************************************/
|
|
15054
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
15045
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
15055
15046
|
|
|
15056
15047
|
"use strict";
|
|
15057
15048
|
__webpack_require__.r(__webpack_exports__);
|
|
15058
15049
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
15059
|
-
/* harmony export */ wrapSpaceMembership: ()
|
|
15060
|
-
/* harmony export */ wrapSpaceMembershipCollection: ()
|
|
15050
|
+
/* harmony export */ wrapSpaceMembership: function() { return /* binding */ wrapSpaceMembership; },
|
|
15051
|
+
/* harmony export */ wrapSpaceMembershipCollection: function() { return /* binding */ wrapSpaceMembershipCollection; }
|
|
15061
15052
|
/* harmony export */ });
|
|
15062
15053
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
15063
15054
|
/* 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");
|
|
@@ -15123,13 +15114,13 @@ var wrapSpaceMembershipCollection = (0,_common_utils__WEBPACK_IMPORTED_MODULE_3_
|
|
|
15123
15114
|
/*!***************************!*\
|
|
15124
15115
|
!*** ./entities/space.ts ***!
|
|
15125
15116
|
\***************************/
|
|
15126
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
15117
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
15127
15118
|
|
|
15128
15119
|
"use strict";
|
|
15129
15120
|
__webpack_require__.r(__webpack_exports__);
|
|
15130
15121
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
15131
|
-
/* harmony export */ wrapSpace: ()
|
|
15132
|
-
/* harmony export */ wrapSpaceCollection: ()
|
|
15122
|
+
/* harmony export */ wrapSpace: function() { return /* binding */ wrapSpace; },
|
|
15123
|
+
/* harmony export */ wrapSpaceCollection: function() { return /* binding */ wrapSpaceCollection; }
|
|
15133
15124
|
/* harmony export */ });
|
|
15134
15125
|
/* 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");
|
|
15135
15126
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
@@ -15171,14 +15162,14 @@ var wrapSpaceCollection = (0,_common_utils__WEBPACK_IMPORTED_MODULE_2__.wrapColl
|
|
|
15171
15162
|
/*!*************************!*\
|
|
15172
15163
|
!*** ./entities/tag.ts ***!
|
|
15173
15164
|
\*************************/
|
|
15174
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
15165
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
15175
15166
|
|
|
15176
15167
|
"use strict";
|
|
15177
15168
|
__webpack_require__.r(__webpack_exports__);
|
|
15178
15169
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
15179
|
-
/* harmony export */ "default": ()
|
|
15180
|
-
/* harmony export */ wrapTag: ()
|
|
15181
|
-
/* harmony export */ wrapTagCollection: ()
|
|
15170
|
+
/* harmony export */ "default": function() { return /* binding */ createTagApi; },
|
|
15171
|
+
/* harmony export */ wrapTag: function() { return /* binding */ wrapTag; },
|
|
15172
|
+
/* harmony export */ wrapTagCollection: function() { return /* binding */ wrapTagCollection; }
|
|
15182
15173
|
/* harmony export */ });
|
|
15183
15174
|
/* 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");
|
|
15184
15175
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
@@ -15252,14 +15243,14 @@ var wrapTagCollection = (0,_common_utils__WEBPACK_IMPORTED_MODULE_2__.wrapCollec
|
|
|
15252
15243
|
/*!**************************!*\
|
|
15253
15244
|
!*** ./entities/task.ts ***!
|
|
15254
15245
|
\**************************/
|
|
15255
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
15246
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
15256
15247
|
|
|
15257
15248
|
"use strict";
|
|
15258
15249
|
__webpack_require__.r(__webpack_exports__);
|
|
15259
15250
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
15260
|
-
/* harmony export */ "default": ()
|
|
15261
|
-
/* harmony export */ wrapTask: ()
|
|
15262
|
-
/* harmony export */ wrapTaskCollection: ()
|
|
15251
|
+
/* harmony export */ "default": function() { return /* binding */ createTaskApi; },
|
|
15252
|
+
/* harmony export */ wrapTask: function() { return /* binding */ wrapTask; },
|
|
15253
|
+
/* harmony export */ wrapTaskCollection: function() { return /* binding */ wrapTaskCollection; }
|
|
15263
15254
|
/* harmony export */ });
|
|
15264
15255
|
/* 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");
|
|
15265
15256
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
@@ -15334,13 +15325,13 @@ var wrapTaskCollection = (0,_common_utils__WEBPACK_IMPORTED_MODULE_2__.wrapColle
|
|
|
15334
15325
|
/*!*************************************!*\
|
|
15335
15326
|
!*** ./entities/team-membership.ts ***!
|
|
15336
15327
|
\*************************************/
|
|
15337
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
15328
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
15338
15329
|
|
|
15339
15330
|
"use strict";
|
|
15340
15331
|
__webpack_require__.r(__webpack_exports__);
|
|
15341
15332
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
15342
|
-
/* harmony export */ wrapTeamMembership: ()
|
|
15343
|
-
/* harmony export */ wrapTeamMembershipCollection: ()
|
|
15333
|
+
/* harmony export */ wrapTeamMembership: function() { return /* binding */ wrapTeamMembership; },
|
|
15334
|
+
/* harmony export */ wrapTeamMembershipCollection: function() { return /* binding */ wrapTeamMembershipCollection; }
|
|
15344
15335
|
/* harmony export */ });
|
|
15345
15336
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
15346
15337
|
/* 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");
|
|
@@ -15407,13 +15398,13 @@ var wrapTeamMembershipCollection = (0,_common_utils__WEBPACK_IMPORTED_MODULE_3__
|
|
|
15407
15398
|
/*!*******************************************!*\
|
|
15408
15399
|
!*** ./entities/team-space-membership.ts ***!
|
|
15409
15400
|
\*******************************************/
|
|
15410
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
15401
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
15411
15402
|
|
|
15412
15403
|
"use strict";
|
|
15413
15404
|
__webpack_require__.r(__webpack_exports__);
|
|
15414
15405
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
15415
|
-
/* harmony export */ wrapTeamSpaceMembership: ()
|
|
15416
|
-
/* harmony export */ wrapTeamSpaceMembershipCollection: ()
|
|
15406
|
+
/* harmony export */ wrapTeamSpaceMembership: function() { return /* binding */ wrapTeamSpaceMembership; },
|
|
15407
|
+
/* harmony export */ wrapTeamSpaceMembershipCollection: function() { return /* binding */ wrapTeamSpaceMembershipCollection; }
|
|
15417
15408
|
/* harmony export */ });
|
|
15418
15409
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
15419
15410
|
/* 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");
|
|
@@ -15479,13 +15470,13 @@ var wrapTeamSpaceMembershipCollection = (0,_common_utils__WEBPACK_IMPORTED_MODUL
|
|
|
15479
15470
|
/*!**************************!*\
|
|
15480
15471
|
!*** ./entities/team.ts ***!
|
|
15481
15472
|
\**************************/
|
|
15482
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
15473
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
15483
15474
|
|
|
15484
15475
|
"use strict";
|
|
15485
15476
|
__webpack_require__.r(__webpack_exports__);
|
|
15486
15477
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
15487
|
-
/* harmony export */ wrapTeam: ()
|
|
15488
|
-
/* harmony export */ wrapTeamCollection: ()
|
|
15478
|
+
/* harmony export */ wrapTeam: function() { return /* binding */ wrapTeam; },
|
|
15479
|
+
/* harmony export */ wrapTeamCollection: function() { return /* binding */ wrapTeamCollection; }
|
|
15489
15480
|
/* harmony export */ });
|
|
15490
15481
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
15491
15482
|
/* 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");
|
|
@@ -15551,12 +15542,12 @@ var wrapTeamCollection = (0,_common_utils__WEBPACK_IMPORTED_MODULE_3__.wrapColle
|
|
|
15551
15542
|
/*!*******************************!*\
|
|
15552
15543
|
!*** ./entities/ui-config.ts ***!
|
|
15553
15544
|
\*******************************/
|
|
15554
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
15545
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
15555
15546
|
|
|
15556
15547
|
"use strict";
|
|
15557
15548
|
__webpack_require__.r(__webpack_exports__);
|
|
15558
15549
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
15559
|
-
/* harmony export */ wrapUIConfig: ()
|
|
15550
|
+
/* harmony export */ wrapUIConfig: function() { return /* binding */ wrapUIConfig; }
|
|
15560
15551
|
/* harmony export */ });
|
|
15561
15552
|
/* 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");
|
|
15562
15553
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
@@ -15584,12 +15575,12 @@ function wrapUIConfig(makeRequest, data) {
|
|
|
15584
15575
|
/*!****************************!*\
|
|
15585
15576
|
!*** ./entities/upload.ts ***!
|
|
15586
15577
|
\****************************/
|
|
15587
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
15578
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
15588
15579
|
|
|
15589
15580
|
"use strict";
|
|
15590
15581
|
__webpack_require__.r(__webpack_exports__);
|
|
15591
15582
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
15592
|
-
/* harmony export */ wrapUpload: ()
|
|
15583
|
+
/* harmony export */ wrapUpload: function() { return /* binding */ wrapUpload; }
|
|
15593
15584
|
/* harmony export */ });
|
|
15594
15585
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
15595
15586
|
/* 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");
|
|
@@ -15655,13 +15646,13 @@ function wrapUpload(makeRequest, data) {
|
|
|
15655
15646
|
/*!***************************!*\
|
|
15656
15647
|
!*** ./entities/usage.ts ***!
|
|
15657
15648
|
\***************************/
|
|
15658
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
15649
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
15659
15650
|
|
|
15660
15651
|
"use strict";
|
|
15661
15652
|
__webpack_require__.r(__webpack_exports__);
|
|
15662
15653
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
15663
|
-
/* harmony export */ wrapUsage: ()
|
|
15664
|
-
/* harmony export */ wrapUsageCollection: ()
|
|
15654
|
+
/* harmony export */ wrapUsage: function() { return /* binding */ wrapUsage; },
|
|
15655
|
+
/* harmony export */ wrapUsageCollection: function() { return /* binding */ wrapUsageCollection; }
|
|
15665
15656
|
/* harmony export */ });
|
|
15666
15657
|
/* 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");
|
|
15667
15658
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
@@ -15694,12 +15685,12 @@ var wrapUsageCollection = (0,_common_utils__WEBPACK_IMPORTED_MODULE_2__.wrapColl
|
|
|
15694
15685
|
/*!************************************!*\
|
|
15695
15686
|
!*** ./entities/user-ui-config.ts ***!
|
|
15696
15687
|
\************************************/
|
|
15697
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
15688
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
15698
15689
|
|
|
15699
15690
|
"use strict";
|
|
15700
15691
|
__webpack_require__.r(__webpack_exports__);
|
|
15701
15692
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
15702
|
-
/* harmony export */ wrapUserUIConfig: ()
|
|
15693
|
+
/* harmony export */ wrapUserUIConfig: function() { return /* binding */ wrapUserUIConfig; }
|
|
15703
15694
|
/* harmony export */ });
|
|
15704
15695
|
/* 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");
|
|
15705
15696
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
@@ -15727,13 +15718,13 @@ function wrapUserUIConfig(makeRequest, data) {
|
|
|
15727
15718
|
/*!**************************!*\
|
|
15728
15719
|
!*** ./entities/user.ts ***!
|
|
15729
15720
|
\**************************/
|
|
15730
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
15721
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
15731
15722
|
|
|
15732
15723
|
"use strict";
|
|
15733
15724
|
__webpack_require__.r(__webpack_exports__);
|
|
15734
15725
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
15735
|
-
/* harmony export */ wrapUser: ()
|
|
15736
|
-
/* harmony export */ wrapUserCollection: ()
|
|
15726
|
+
/* harmony export */ wrapUser: function() { return /* binding */ wrapUser; },
|
|
15727
|
+
/* harmony export */ wrapUserCollection: function() { return /* binding */ wrapUserCollection; }
|
|
15737
15728
|
/* harmony export */ });
|
|
15738
15729
|
/* 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");
|
|
15739
15730
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
@@ -15769,13 +15760,13 @@ var wrapUserCollection = (0,_common_utils__WEBPACK_IMPORTED_MODULE_3__.wrapColle
|
|
|
15769
15760
|
/*!*****************************!*\
|
|
15770
15761
|
!*** ./entities/webhook.ts ***!
|
|
15771
15762
|
\*****************************/
|
|
15772
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
15763
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
15773
15764
|
|
|
15774
15765
|
"use strict";
|
|
15775
15766
|
__webpack_require__.r(__webpack_exports__);
|
|
15776
15767
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
15777
|
-
/* harmony export */ wrapWebhook: ()
|
|
15778
|
-
/* harmony export */ wrapWebhookCollection: ()
|
|
15768
|
+
/* harmony export */ wrapWebhook: function() { return /* binding */ wrapWebhook; },
|
|
15769
|
+
/* harmony export */ wrapWebhookCollection: function() { return /* binding */ wrapWebhookCollection; }
|
|
15779
15770
|
/* harmony export */ });
|
|
15780
15771
|
/* 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");
|
|
15781
15772
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
@@ -15873,18 +15864,18 @@ var wrapWebhookCollection = (0,_common_utils__WEBPACK_IMPORTED_MODULE_2__.wrapCo
|
|
|
15873
15864
|
/*!*****************************************!*\
|
|
15874
15865
|
!*** ./entities/workflow-definition.ts ***!
|
|
15875
15866
|
\*****************************************/
|
|
15876
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
15867
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
15877
15868
|
|
|
15878
15869
|
"use strict";
|
|
15879
15870
|
__webpack_require__.r(__webpack_exports__);
|
|
15880
15871
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
15881
|
-
/* harmony export */ WorkflowStepActionType: ()
|
|
15882
|
-
/* harmony export */ WorkflowStepPermissionAction: ()
|
|
15883
|
-
/* harmony export */ WorkflowStepPermissionEffect: ()
|
|
15884
|
-
/* harmony export */ WorkflowStepPermissionType: ()
|
|
15885
|
-
/* harmony export */ "default": ()
|
|
15886
|
-
/* harmony export */ wrapWorkflowDefinition: ()
|
|
15887
|
-
/* harmony export */ wrapWorkflowDefinitionCollection: ()
|
|
15872
|
+
/* harmony export */ WorkflowStepActionType: function() { return /* binding */ WorkflowStepActionType; },
|
|
15873
|
+
/* harmony export */ WorkflowStepPermissionAction: function() { return /* binding */ WorkflowStepPermissionAction; },
|
|
15874
|
+
/* harmony export */ WorkflowStepPermissionEffect: function() { return /* binding */ WorkflowStepPermissionEffect; },
|
|
15875
|
+
/* harmony export */ WorkflowStepPermissionType: function() { return /* binding */ WorkflowStepPermissionType; },
|
|
15876
|
+
/* harmony export */ "default": function() { return /* binding */ createWorkflowDefinitionApi; },
|
|
15877
|
+
/* harmony export */ wrapWorkflowDefinition: function() { return /* binding */ wrapWorkflowDefinition; },
|
|
15878
|
+
/* harmony export */ wrapWorkflowDefinitionCollection: function() { return /* binding */ wrapWorkflowDefinitionCollection; }
|
|
15888
15879
|
/* harmony export */ });
|
|
15889
15880
|
/* 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");
|
|
15890
15881
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
@@ -15988,12 +15979,12 @@ var wrapWorkflowDefinitionCollection = (0,_common_utils__WEBPACK_IMPORTED_MODULE
|
|
|
15988
15979
|
/*!*************************!*\
|
|
15989
15980
|
!*** ./export-types.ts ***!
|
|
15990
15981
|
\*************************/
|
|
15991
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
15982
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
15992
15983
|
|
|
15993
15984
|
"use strict";
|
|
15994
15985
|
__webpack_require__.r(__webpack_exports__);
|
|
15995
15986
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
15996
|
-
/* harmony export */ ScheduledActionReferenceFilters: ()
|
|
15987
|
+
/* harmony export */ ScheduledActionReferenceFilters: function() { return /* reexport safe */ _common_types__WEBPACK_IMPORTED_MODULE_0__.ScheduledActionReferenceFilters; }
|
|
15997
15988
|
/* harmony export */ });
|
|
15998
15989
|
/* harmony import */ var _common_types__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./common-types */ "./common-types.ts");
|
|
15999
15990
|
/* harmony import */ var _plain_common_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./plain/common-types */ "./plain/common-types.ts");
|
|
@@ -16007,14 +15998,14 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
16007
15998
|
/*!***************************!*\
|
|
16008
15999
|
!*** ./methods/action.ts ***!
|
|
16009
16000
|
\***************************/
|
|
16010
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
16001
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
16011
16002
|
|
|
16012
16003
|
"use strict";
|
|
16013
16004
|
__webpack_require__.r(__webpack_exports__);
|
|
16014
16005
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
16015
|
-
/* harmony export */ AsyncActionFailedError: ()
|
|
16016
|
-
/* harmony export */ AsyncActionProcessingError: ()
|
|
16017
|
-
/* harmony export */ pollAsyncActionStatus: ()
|
|
16006
|
+
/* harmony export */ AsyncActionFailedError: function() { return /* binding */ AsyncActionFailedError; },
|
|
16007
|
+
/* harmony export */ AsyncActionProcessingError: function() { return /* binding */ AsyncActionProcessingError; },
|
|
16008
|
+
/* harmony export */ pollAsyncActionStatus: function() { return /* binding */ pollAsyncActionStatus; }
|
|
16018
16009
|
/* harmony export */ });
|
|
16019
16010
|
/* harmony import */ var _utils__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./utils */ "./methods/utils.ts");
|
|
16020
16011
|
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 e; }; var t, e = {}, r = Object.prototype, n = r.hasOwnProperty, o = Object.defineProperty || function (t, e, r) { t[e] = r.value; }, i = "function" == typeof Symbol ? Symbol : {}, a = i.iterator || "@@iterator", c = i.asyncIterator || "@@asyncIterator", u = i.toStringTag || "@@toStringTag"; function define(t, e, r) { return Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }), t[e]; } try { define({}, ""); } catch (t) { define = function define(t, e, r) { return t[e] = r; }; } function wrap(t, e, r, n) { var i = e && e.prototype instanceof Generator ? e : Generator, a = Object.create(i.prototype), c = new Context(n || []); return o(a, "_invoke", { value: makeInvokeMethod(t, r, c) }), a; } function tryCatch(t, e, r) { try { return { type: "normal", arg: t.call(e, r) }; } catch (t) { return { type: "throw", arg: t }; } } e.wrap = wrap; var h = "suspendedStart", l = "suspendedYield", f = "executing", s = "completed", y = {}; function Generator() {} function GeneratorFunction() {} function GeneratorFunctionPrototype() {} var p = {}; define(p, a, function () { return this; }); var d = Object.getPrototypeOf, v = d && d(d(values([]))); v && v !== r && n.call(v, a) && (p = v); var g = GeneratorFunctionPrototype.prototype = Generator.prototype = Object.create(p); function defineIteratorMethods(t) { ["next", "throw", "return"].forEach(function (e) { define(t, e, function (t) { return this._invoke(e, t); }); }); } function AsyncIterator(t, e) { function invoke(r, o, i, a) { var c = tryCatch(t[r], t, o); if ("throw" !== c.type) { var u = c.arg, h = u.value; return h && "object" == _typeof(h) && n.call(h, "__await") ? e.resolve(h.__await).then(function (t) { invoke("next", t, i, a); }, function (t) { invoke("throw", t, i, a); }) : e.resolve(h).then(function (t) { u.value = t, i(u); }, function (t) { return invoke("throw", t, i, a); }); } a(c.arg); } var r; o(this, "_invoke", { value: function value(t, n) { function callInvokeWithMethodAndArg() { return new e(function (e, r) { invoke(t, n, e, r); }); } return r = r ? r.then(callInvokeWithMethodAndArg, callInvokeWithMethodAndArg) : callInvokeWithMethodAndArg(); } }); } function makeInvokeMethod(e, r, n) { var o = h; return function (i, a) { if (o === f) throw new Error("Generator is already running"); if (o === s) { if ("throw" === i) throw a; return { value: t, done: !0 }; } for (n.method = i, n.arg = a;;) { var c = n.delegate; if (c) { var u = maybeInvokeDelegate(c, n); if (u) { if (u === y) continue; return u; } } if ("next" === n.method) n.sent = n._sent = n.arg;else if ("throw" === n.method) { if (o === h) throw o = s, n.arg; n.dispatchException(n.arg); } else "return" === n.method && n.abrupt("return", n.arg); o = f; var p = tryCatch(e, r, n); if ("normal" === p.type) { if (o = n.done ? s : l, p.arg === y) continue; return { value: p.arg, done: n.done }; } "throw" === p.type && (o = s, n.method = "throw", n.arg = p.arg); } }; } function maybeInvokeDelegate(e, r) { var n = r.method, o = e.iterator[n]; if (o === t) return r.delegate = null, "throw" === n && e.iterator.return && (r.method = "return", r.arg = t, maybeInvokeDelegate(e, r), "throw" === r.method) || "return" !== n && (r.method = "throw", r.arg = new TypeError("The iterator does not provide a '" + n + "' method")), y; var i = tryCatch(o, e.iterator, r.arg); if ("throw" === i.type) return r.method = "throw", r.arg = i.arg, r.delegate = null, y; var a = i.arg; return a ? a.done ? (r[e.resultName] = a.value, r.next = e.nextLoc, "return" !== r.method && (r.method = "next", r.arg = t), r.delegate = null, y) : a : (r.method = "throw", r.arg = new TypeError("iterator result is not an object"), r.delegate = null, y); } function pushTryEntry(t) { var e = { tryLoc: t[0] }; 1 in t && (e.catchLoc = t[1]), 2 in t && (e.finallyLoc = t[2], e.afterLoc = t[3]), this.tryEntries.push(e); } function resetTryEntry(t) { var e = t.completion || {}; e.type = "normal", delete e.arg, t.completion = e; } function Context(t) { this.tryEntries = [{ tryLoc: "root" }], t.forEach(pushTryEntry, this), this.reset(!0); } function values(e) { if (e || "" === e) { var r = e[a]; if (r) return r.call(e); if ("function" == typeof e.next) return e; if (!isNaN(e.length)) { var o = -1, i = function next() { for (; ++o < e.length;) if (n.call(e, o)) return next.value = e[o], next.done = !1, next; return next.value = t, next.done = !0, next; }; return i.next = i; } } throw new TypeError(_typeof(e) + " is not iterable"); } return GeneratorFunction.prototype = GeneratorFunctionPrototype, o(g, "constructor", { value: GeneratorFunctionPrototype, configurable: !0 }), o(GeneratorFunctionPrototype, "constructor", { value: GeneratorFunction, configurable: !0 }), GeneratorFunction.displayName = define(GeneratorFunctionPrototype, u, "GeneratorFunction"), e.isGeneratorFunction = function (t) { var e = "function" == typeof t && t.constructor; return !!e && (e === GeneratorFunction || "GeneratorFunction" === (e.displayName || e.name)); }, e.mark = function (t) { return Object.setPrototypeOf ? Object.setPrototypeOf(t, GeneratorFunctionPrototype) : (t.__proto__ = GeneratorFunctionPrototype, define(t, u, "GeneratorFunction")), t.prototype = Object.create(g), t; }, e.awrap = function (t) { return { __await: t }; }, defineIteratorMethods(AsyncIterator.prototype), define(AsyncIterator.prototype, c, function () { return this; }), e.AsyncIterator = AsyncIterator, e.async = function (t, r, n, o, i) { void 0 === i && (i = Promise); var a = new AsyncIterator(wrap(t, r, n, o), i); return e.isGeneratorFunction(r) ? a : a.next().then(function (t) { return t.done ? t.value : a.next(); }); }, defineIteratorMethods(g), define(g, u, "Generator"), define(g, a, function () { return this; }), define(g, "toString", function () { return "[object Generator]"; }), e.keys = function (t) { var e = Object(t), r = []; for (var n in e) r.push(n); return r.reverse(), function next() { for (; r.length;) { var t = r.pop(); if (t in e) return next.value = t, next.done = !1, next; } return next.done = !0, next; }; }, e.values = values, Context.prototype = { constructor: Context, reset: function reset(e) { if (this.prev = 0, this.next = 0, this.sent = this._sent = t, this.done = !1, this.delegate = null, this.method = "next", this.arg = t, this.tryEntries.forEach(resetTryEntry), !e) for (var r in this) "t" === r.charAt(0) && n.call(this, r) && !isNaN(+r.slice(1)) && (this[r] = t); }, stop: function stop() { this.done = !0; var t = this.tryEntries[0].completion; if ("throw" === t.type) throw t.arg; return this.rval; }, dispatchException: function dispatchException(e) { if (this.done) throw e; var r = this; function handle(n, o) { return a.type = "throw", a.arg = e, r.next = n, o && (r.method = "next", r.arg = t), !!o; } for (var o = this.tryEntries.length - 1; o >= 0; --o) { var i = this.tryEntries[o], a = i.completion; if ("root" === i.tryLoc) return handle("end"); if (i.tryLoc <= this.prev) { var c = n.call(i, "catchLoc"), u = n.call(i, "finallyLoc"); if (c && u) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } else if (c) { if (this.prev < i.catchLoc) return handle(i.catchLoc, !0); } else { if (!u) throw new Error("try statement without catch or finally"); if (this.prev < i.finallyLoc) return handle(i.finallyLoc); } } } }, abrupt: function abrupt(t, e) { for (var r = this.tryEntries.length - 1; r >= 0; --r) { var o = this.tryEntries[r]; if (o.tryLoc <= this.prev && n.call(o, "finallyLoc") && this.prev < o.finallyLoc) { var i = o; break; } } i && ("break" === t || "continue" === t) && i.tryLoc <= e && e <= i.finallyLoc && (i = null); var a = i ? i.completion : {}; return a.type = t, a.arg = e, i ? (this.method = "next", this.next = i.finallyLoc, y) : this.complete(a); }, complete: function complete(t, e) { if ("throw" === t.type) throw t.arg; return "break" === t.type || "continue" === t.type ? this.next = t.arg : "return" === t.type ? (this.rval = this.arg = t.arg, this.method = "return", this.next = "end") : "normal" === t.type && e && (this.next = e), y; }, finish: function finish(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.finallyLoc === t) return this.complete(r.completion, r.afterLoc), resetTryEntry(r), y; } }, catch: function _catch(t) { for (var e = this.tryEntries.length - 1; e >= 0; --e) { var r = this.tryEntries[e]; if (r.tryLoc === t) { var n = r.completion; if ("throw" === n.type) { var o = n.arg; resetTryEntry(r); } return o; } } throw new Error("illegal catch attempt"); }, delegateYield: function delegateYield(e, r, n) { return this.delegate = { iterator: values(e), resultName: r, nextLoc: n }, "next" === this.method && (this.arg = t), y; } }, e; }
|
|
@@ -16148,12 +16139,12 @@ function _pollAsyncActionStatus() {
|
|
|
16148
16139
|
/*!*********************************!*\
|
|
16149
16140
|
!*** ./methods/content-type.ts ***!
|
|
16150
16141
|
\*********************************/
|
|
16151
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
16142
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
16152
16143
|
|
|
16153
16144
|
"use strict";
|
|
16154
16145
|
__webpack_require__.r(__webpack_exports__);
|
|
16155
16146
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
16156
|
-
/* harmony export */ omitAndDeleteField: ()
|
|
16147
|
+
/* harmony export */ omitAndDeleteField: function() { return /* binding */ omitAndDeleteField; }
|
|
16157
16148
|
/* harmony export */ });
|
|
16158
16149
|
var _excluded = ["fieldId"];
|
|
16159
16150
|
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
|
|
@@ -16209,12 +16200,12 @@ var omitAndDeleteField = function omitAndDeleteField(makeRequest, _ref, contentT
|
|
|
16209
16200
|
/*!**************************!*\
|
|
16210
16201
|
!*** ./methods/utils.ts ***!
|
|
16211
16202
|
\**************************/
|
|
16212
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
16203
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
16213
16204
|
|
|
16214
16205
|
"use strict";
|
|
16215
16206
|
__webpack_require__.r(__webpack_exports__);
|
|
16216
16207
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
16217
|
-
/* harmony export */ sleep: ()
|
|
16208
|
+
/* harmony export */ sleep: function() { return /* binding */ sleep; }
|
|
16218
16209
|
/* harmony export */ });
|
|
16219
16210
|
/**
|
|
16220
16211
|
* Helper function that resolves a Promise after the specified duration (in milliseconds)
|
|
@@ -16232,12 +16223,12 @@ function sleep(durationMs) {
|
|
|
16232
16223
|
/*!******************************!*\
|
|
16233
16224
|
!*** ./plain/as-iterator.ts ***!
|
|
16234
16225
|
\******************************/
|
|
16235
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
16226
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
16236
16227
|
|
|
16237
16228
|
"use strict";
|
|
16238
16229
|
__webpack_require__.r(__webpack_exports__);
|
|
16239
16230
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
16240
|
-
/* harmony export */ asIterator: ()
|
|
16231
|
+
/* harmony export */ asIterator: function() { return /* binding */ asIterator; }
|
|
16241
16232
|
/* harmony export */ });
|
|
16242
16233
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/fast-copy/dist/esm/index.mjs");
|
|
16243
16234
|
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
@@ -16319,15 +16310,15 @@ var asIterator = function asIterator(fn, params) {
|
|
|
16319
16310
|
/*!*************************!*\
|
|
16320
16311
|
!*** ./plain/checks.ts ***!
|
|
16321
16312
|
\*************************/
|
|
16322
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
16313
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
16323
16314
|
|
|
16324
16315
|
"use strict";
|
|
16325
16316
|
__webpack_require__.r(__webpack_exports__);
|
|
16326
16317
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
16327
|
-
/* harmony export */ isArchived: ()
|
|
16328
|
-
/* harmony export */ isDraft: ()
|
|
16329
|
-
/* harmony export */ isPublished: ()
|
|
16330
|
-
/* harmony export */ isUpdated: ()
|
|
16318
|
+
/* harmony export */ isArchived: function() { return /* binding */ isArchived; },
|
|
16319
|
+
/* harmony export */ isDraft: function() { return /* binding */ isDraft; },
|
|
16320
|
+
/* harmony export */ isPublished: function() { return /* binding */ isPublished; },
|
|
16321
|
+
/* harmony export */ isUpdated: function() { return /* binding */ isUpdated; }
|
|
16331
16322
|
/* harmony export */ });
|
|
16332
16323
|
var isPublished = function isPublished(data) {
|
|
16333
16324
|
return !!data.sys.publishedVersion;
|
|
@@ -16350,7 +16341,7 @@ var isArchived = function isArchived(data) {
|
|
|
16350
16341
|
/*!*******************************!*\
|
|
16351
16342
|
!*** ./plain/common-types.ts ***!
|
|
16352
16343
|
\*******************************/
|
|
16353
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
16344
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
16354
16345
|
|
|
16355
16346
|
"use strict";
|
|
16356
16347
|
__webpack_require__.r(__webpack_exports__);
|
|
@@ -16362,12 +16353,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
16362
16353
|
/*!*******************************!*\
|
|
16363
16354
|
!*** ./plain/plain-client.ts ***!
|
|
16364
16355
|
\*******************************/
|
|
16365
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
16356
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
16366
16357
|
|
|
16367
16358
|
"use strict";
|
|
16368
16359
|
__webpack_require__.r(__webpack_exports__);
|
|
16369
16360
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
16370
|
-
/* harmony export */ createPlainClient: ()
|
|
16361
|
+
/* harmony export */ createPlainClient: function() { return /* binding */ createPlainClient; }
|
|
16371
16362
|
/* harmony export */ });
|
|
16372
16363
|
/* harmony import */ var _methods_content_type__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../methods/content-type */ "./methods/content-type.ts");
|
|
16373
16364
|
/* harmony import */ var _wrappers_wrap__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./wrappers/wrap */ "./plain/wrappers/wrap.ts");
|
|
@@ -16875,12 +16866,12 @@ var createPlainClient = function createPlainClient(makeRequest, defaults) {
|
|
|
16875
16866
|
/*!********************************!*\
|
|
16876
16867
|
!*** ./plain/wrappers/wrap.ts ***!
|
|
16877
16868
|
\********************************/
|
|
16878
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
16869
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
16879
16870
|
|
|
16880
16871
|
"use strict";
|
|
16881
16872
|
__webpack_require__.r(__webpack_exports__);
|
|
16882
16873
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
16883
|
-
/* harmony export */ wrap: ()
|
|
16874
|
+
/* harmony export */ wrap: function() { return /* binding */ wrap; }
|
|
16884
16875
|
/* harmony export */ });
|
|
16885
16876
|
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
16886
16877
|
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
@@ -16934,12 +16925,12 @@ var wrap = function wrap(_ref, entityType, action) {
|
|
|
16934
16925
|
/*!*******************************!*\
|
|
16935
16926
|
!*** ./upload-http-client.ts ***!
|
|
16936
16927
|
\*******************************/
|
|
16937
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
16928
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
16938
16929
|
|
|
16939
16930
|
"use strict";
|
|
16940
16931
|
__webpack_require__.r(__webpack_exports__);
|
|
16941
16932
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
16942
|
-
/* harmony export */ getUploadHttpClient: ()
|
|
16933
|
+
/* harmony export */ getUploadHttpClient: function() { return /* binding */ getUploadHttpClient; }
|
|
16943
16934
|
/* harmony export */ });
|
|
16944
16935
|
/**
|
|
16945
16936
|
* @private
|
|
@@ -16964,7 +16955,7 @@ function getUploadHttpClient(http, options) {
|
|
|
16964
16955
|
/*!**********************************************!*\
|
|
16965
16956
|
!*** ../node_modules/call-bind/callBound.js ***!
|
|
16966
16957
|
\**********************************************/
|
|
16967
|
-
/***/ ((module, __unused_webpack_exports, __webpack_require__)
|
|
16958
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
16968
16959
|
|
|
16969
16960
|
"use strict";
|
|
16970
16961
|
|
|
@@ -16990,7 +16981,7 @@ module.exports = function callBoundIntrinsic(name, allowMissing) {
|
|
|
16990
16981
|
/*!******************************************!*\
|
|
16991
16982
|
!*** ../node_modules/call-bind/index.js ***!
|
|
16992
16983
|
\******************************************/
|
|
16993
|
-
/***/ ((module, __unused_webpack_exports, __webpack_require__)
|
|
16984
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
16994
16985
|
|
|
16995
16986
|
"use strict";
|
|
16996
16987
|
|
|
@@ -17048,18 +17039,18 @@ if ($defineProperty) {
|
|
|
17048
17039
|
/*!********************************************************************!*\
|
|
17049
17040
|
!*** ../node_modules/contentful-sdk-core/dist/index.es-modules.js ***!
|
|
17050
17041
|
\********************************************************************/
|
|
17051
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__)
|
|
17042
|
+
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
17052
17043
|
|
|
17053
17044
|
"use strict";
|
|
17054
17045
|
__webpack_require__.r(__webpack_exports__);
|
|
17055
17046
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
17056
|
-
/* harmony export */ createHttpClient: ()
|
|
17057
|
-
/* harmony export */ createRequestConfig: ()
|
|
17058
|
-
/* harmony export */ enforceObjPath: ()
|
|
17059
|
-
/* harmony export */ errorHandler: ()
|
|
17060
|
-
/* harmony export */ freezeSys: ()
|
|
17061
|
-
/* harmony export */ getUserAgentHeader: ()
|
|
17062
|
-
/* harmony export */ toPlainObject: ()
|
|
17047
|
+
/* harmony export */ createHttpClient: function() { return /* binding */ createHttpClient; },
|
|
17048
|
+
/* harmony export */ createRequestConfig: function() { return /* binding */ createRequestConfig; },
|
|
17049
|
+
/* harmony export */ enforceObjPath: function() { return /* binding */ enforceObjPath; },
|
|
17050
|
+
/* harmony export */ errorHandler: function() { return /* binding */ errorHandler; },
|
|
17051
|
+
/* harmony export */ freezeSys: function() { return /* binding */ freezeSys; },
|
|
17052
|
+
/* harmony export */ getUserAgentHeader: function() { return /* binding */ getUserAgentHeader; },
|
|
17053
|
+
/* harmony export */ toPlainObject: function() { return /* binding */ toPlainObject; }
|
|
17063
17054
|
/* harmony export */ });
|
|
17064
17055
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! fast-copy */ "../node_modules/contentful-sdk-core/node_modules/fast-copy/dist/fast-copy.js");
|
|
17065
17056
|
/* harmony import */ var fast_copy__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(fast_copy__WEBPACK_IMPORTED_MODULE_0__);
|
|
@@ -18198,7 +18189,7 @@ function errorHandler(errorResponse) {
|
|
|
18198
18189
|
/*!**************************************************************************!*\
|
|
18199
18190
|
!*** ../node_modules/contentful-sdk-core/node_modules/qs/lib/formats.js ***!
|
|
18200
18191
|
\**************************************************************************/
|
|
18201
|
-
/***/ ((module)
|
|
18192
|
+
/***/ (function(module) {
|
|
18202
18193
|
|
|
18203
18194
|
"use strict";
|
|
18204
18195
|
|
|
@@ -18232,7 +18223,7 @@ module.exports = {
|
|
|
18232
18223
|
/*!************************************************************************!*\
|
|
18233
18224
|
!*** ../node_modules/contentful-sdk-core/node_modules/qs/lib/index.js ***!
|
|
18234
18225
|
\************************************************************************/
|
|
18235
|
-
/***/ ((module, __unused_webpack_exports, __webpack_require__)
|
|
18226
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
18236
18227
|
|
|
18237
18228
|
"use strict";
|
|
18238
18229
|
|
|
@@ -18254,7 +18245,7 @@ module.exports = {
|
|
|
18254
18245
|
/*!************************************************************************!*\
|
|
18255
18246
|
!*** ../node_modules/contentful-sdk-core/node_modules/qs/lib/parse.js ***!
|
|
18256
18247
|
\************************************************************************/
|
|
18257
|
-
/***/ ((module, __unused_webpack_exports, __webpack_require__)
|
|
18248
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
18258
18249
|
|
|
18259
18250
|
"use strict";
|
|
18260
18251
|
|
|
@@ -18529,7 +18520,7 @@ module.exports = function (str, opts) {
|
|
|
18529
18520
|
/*!****************************************************************************!*\
|
|
18530
18521
|
!*** ../node_modules/contentful-sdk-core/node_modules/qs/lib/stringify.js ***!
|
|
18531
18522
|
\****************************************************************************/
|
|
18532
|
-
/***/ ((module, __unused_webpack_exports, __webpack_require__)
|
|
18523
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
18533
18524
|
|
|
18534
18525
|
"use strict";
|
|
18535
18526
|
|
|
@@ -18860,7 +18851,7 @@ module.exports = function (object, opts) {
|
|
|
18860
18851
|
/*!************************************************************************!*\
|
|
18861
18852
|
!*** ../node_modules/contentful-sdk-core/node_modules/qs/lib/utils.js ***!
|
|
18862
18853
|
\************************************************************************/
|
|
18863
|
-
/***/ ((module, __unused_webpack_exports, __webpack_require__)
|
|
18854
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
18864
18855
|
|
|
18865
18856
|
"use strict";
|
|
18866
18857
|
|
|
@@ -19123,7 +19114,7 @@ module.exports = {
|
|
|
19123
19114
|
/*!*******************************************************!*\
|
|
19124
19115
|
!*** ../node_modules/function-bind/implementation.js ***!
|
|
19125
19116
|
\*******************************************************/
|
|
19126
|
-
/***/ ((module)
|
|
19117
|
+
/***/ (function(module) {
|
|
19127
19118
|
|
|
19128
19119
|
"use strict";
|
|
19129
19120
|
|
|
@@ -19218,7 +19209,7 @@ module.exports = function bind(that) {
|
|
|
19218
19209
|
/*!**********************************************!*\
|
|
19219
19210
|
!*** ../node_modules/function-bind/index.js ***!
|
|
19220
19211
|
\**********************************************/
|
|
19221
|
-
/***/ ((module, __unused_webpack_exports, __webpack_require__)
|
|
19212
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
19222
19213
|
|
|
19223
19214
|
"use strict";
|
|
19224
19215
|
|
|
@@ -19234,7 +19225,7 @@ module.exports = Function.prototype.bind || implementation;
|
|
|
19234
19225
|
/*!**********************************************!*\
|
|
19235
19226
|
!*** ../node_modules/get-intrinsic/index.js ***!
|
|
19236
19227
|
\**********************************************/
|
|
19237
|
-
/***/ ((module, __unused_webpack_exports, __webpack_require__)
|
|
19228
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
19238
19229
|
|
|
19239
19230
|
"use strict";
|
|
19240
19231
|
|
|
@@ -19596,7 +19587,7 @@ module.exports = function GetIntrinsic(name, allowMissing) {
|
|
|
19596
19587
|
/*!******************************************!*\
|
|
19597
19588
|
!*** ../node_modules/has-proto/index.js ***!
|
|
19598
19589
|
\******************************************/
|
|
19599
|
-
/***/ ((module)
|
|
19590
|
+
/***/ (function(module) {
|
|
19600
19591
|
|
|
19601
19592
|
"use strict";
|
|
19602
19593
|
|
|
@@ -19618,7 +19609,7 @@ module.exports = function hasProto() {
|
|
|
19618
19609
|
/*!********************************************!*\
|
|
19619
19610
|
!*** ../node_modules/has-symbols/index.js ***!
|
|
19620
19611
|
\********************************************/
|
|
19621
|
-
/***/ ((module, __unused_webpack_exports, __webpack_require__)
|
|
19612
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
19622
19613
|
|
|
19623
19614
|
"use strict";
|
|
19624
19615
|
|
|
@@ -19642,7 +19633,7 @@ module.exports = function hasNativeSymbols() {
|
|
|
19642
19633
|
/*!********************************************!*\
|
|
19643
19634
|
!*** ../node_modules/has-symbols/shams.js ***!
|
|
19644
19635
|
\********************************************/
|
|
19645
|
-
/***/ ((module)
|
|
19636
|
+
/***/ (function(module) {
|
|
19646
19637
|
|
|
19647
19638
|
"use strict";
|
|
19648
19639
|
|
|
@@ -19695,7 +19686,7 @@ module.exports = function hasSymbols() {
|
|
|
19695
19686
|
/*!****************************************!*\
|
|
19696
19687
|
!*** ../node_modules/has/src/index.js ***!
|
|
19697
19688
|
\****************************************/
|
|
19698
|
-
/***/ ((module, __unused_webpack_exports, __webpack_require__)
|
|
19689
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
19699
19690
|
|
|
19700
19691
|
"use strict";
|
|
19701
19692
|
|
|
@@ -19711,7 +19702,7 @@ module.exports = bind.call(Function.call, Object.prototype.hasOwnProperty);
|
|
|
19711
19702
|
/*!*****************************************************!*\
|
|
19712
19703
|
!*** ../node_modules/lodash.isplainobject/index.js ***!
|
|
19713
19704
|
\*****************************************************/
|
|
19714
|
-
/***/ ((module)
|
|
19705
|
+
/***/ (function(module) {
|
|
19715
19706
|
|
|
19716
19707
|
/**
|
|
19717
19708
|
* lodash (Custom Build) <https://lodash.com/>
|
|
@@ -19860,7 +19851,7 @@ module.exports = isPlainObject;
|
|
|
19860
19851
|
/*!************************************************!*\
|
|
19861
19852
|
!*** ../node_modules/lodash.isstring/index.js ***!
|
|
19862
19853
|
\************************************************/
|
|
19863
|
-
/***/ ((module)
|
|
19854
|
+
/***/ (function(module) {
|
|
19864
19855
|
|
|
19865
19856
|
/**
|
|
19866
19857
|
* lodash 4.0.1 (Custom Build) <https://lodash.com/>
|
|
@@ -19965,7 +19956,7 @@ module.exports = isString;
|
|
|
19965
19956
|
/*!***********************************************!*\
|
|
19966
19957
|
!*** ../node_modules/object-inspect/index.js ***!
|
|
19967
19958
|
\***********************************************/
|
|
19968
|
-
/***/ ((module, __unused_webpack_exports, __webpack_require__)
|
|
19959
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
19969
19960
|
|
|
19970
19961
|
var hasMap = typeof Map === 'function' && Map.prototype;
|
|
19971
19962
|
var mapSizeDescriptor = Object.getOwnPropertyDescriptor && hasMap ? Object.getOwnPropertyDescriptor(Map.prototype, 'size') : null;
|
|
@@ -20491,7 +20482,7 @@ function arrObjKeys(obj, inspect) {
|
|
|
20491
20482
|
/*!*******************************************!*\
|
|
20492
20483
|
!*** ../node_modules/p-throttle/index.js ***!
|
|
20493
20484
|
\*******************************************/
|
|
20494
|
-
/***/ ((module)
|
|
20485
|
+
/***/ (function(module) {
|
|
20495
20486
|
|
|
20496
20487
|
"use strict";
|
|
20497
20488
|
|
|
@@ -20604,7 +20595,7 @@ module.exports.AbortError = AbortError;
|
|
|
20604
20595
|
/*!*********************************************!*\
|
|
20605
20596
|
!*** ../node_modules/side-channel/index.js ***!
|
|
20606
20597
|
\*********************************************/
|
|
20607
|
-
/***/ ((module, __unused_webpack_exports, __webpack_require__)
|
|
20598
|
+
/***/ (function(module, __unused_webpack_exports, __webpack_require__) {
|
|
20608
20599
|
|
|
20609
20600
|
"use strict";
|
|
20610
20601
|
|
|
@@ -20739,7 +20730,7 @@ module.exports = function getSideChannel() {
|
|
|
20739
20730
|
/*!********************************!*\
|
|
20740
20731
|
!*** ./util.inspect (ignored) ***!
|
|
20741
20732
|
\********************************/
|
|
20742
|
-
/***/ (()
|
|
20733
|
+
/***/ (function() {
|
|
20743
20734
|
|
|
20744
20735
|
/* (ignored) */
|
|
20745
20736
|
|
|
@@ -20749,13 +20740,10 @@ module.exports = function getSideChannel() {
|
|
|
20749
20740
|
/*!******************************************************!*\
|
|
20750
20741
|
!*** ../node_modules/axios/lib/adapters/adapters.js ***!
|
|
20751
20742
|
\******************************************************/
|
|
20752
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
20743
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
20753
20744
|
|
|
20754
20745
|
"use strict";
|
|
20755
20746
|
__webpack_require__.r(__webpack_exports__);
|
|
20756
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
20757
|
-
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
20758
|
-
/* harmony export */ });
|
|
20759
20747
|
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../utils.js */ "../node_modules/axios/lib/utils.js");
|
|
20760
20748
|
/* harmony import */ var _http_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./http.js */ "../node_modules/axios/lib/helpers/null.js");
|
|
20761
20749
|
/* harmony import */ var _xhr_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./xhr.js */ "../node_modules/axios/lib/adapters/xhr.js");
|
|
@@ -20785,7 +20773,7 @@ const renderReason = (reason) => `- ${reason}`;
|
|
|
20785
20773
|
|
|
20786
20774
|
const isResolvedHandle = (adapter) => _utils_js__WEBPACK_IMPORTED_MODULE_2__["default"].isFunction(adapter) || adapter === null || adapter === false;
|
|
20787
20775
|
|
|
20788
|
-
/* harmony default export */
|
|
20776
|
+
/* harmony default export */ __webpack_exports__["default"] = ({
|
|
20789
20777
|
getAdapter: (adapters) => {
|
|
20790
20778
|
adapters = _utils_js__WEBPACK_IMPORTED_MODULE_2__["default"].isArray(adapters) ? adapters : [adapters];
|
|
20791
20779
|
|
|
@@ -20845,13 +20833,10 @@ const isResolvedHandle = (adapter) => _utils_js__WEBPACK_IMPORTED_MODULE_2__["de
|
|
|
20845
20833
|
/*!*************************************************!*\
|
|
20846
20834
|
!*** ../node_modules/axios/lib/adapters/xhr.js ***!
|
|
20847
20835
|
\*************************************************/
|
|
20848
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
20836
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
20849
20837
|
|
|
20850
20838
|
"use strict";
|
|
20851
20839
|
__webpack_require__.r(__webpack_exports__);
|
|
20852
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
20853
|
-
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
20854
|
-
/* harmony export */ });
|
|
20855
20840
|
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./../utils.js */ "../node_modules/axios/lib/utils.js");
|
|
20856
20841
|
/* harmony import */ var _core_settle_js__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./../core/settle.js */ "../node_modules/axios/lib/core/settle.js");
|
|
20857
20842
|
/* harmony import */ var _helpers_cookies_js__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./../helpers/cookies.js */ "../node_modules/axios/lib/helpers/cookies.js");
|
|
@@ -20912,7 +20897,7 @@ function progressEventReducer(listener, isDownloadStream) {
|
|
|
20912
20897
|
|
|
20913
20898
|
const isXHRAdapterSupported = typeof XMLHttpRequest !== 'undefined';
|
|
20914
20899
|
|
|
20915
|
-
/* harmony default export */
|
|
20900
|
+
/* harmony default export */ __webpack_exports__["default"] = (isXHRAdapterSupported && function (config) {
|
|
20916
20901
|
return new Promise(function dispatchXhrRequest(resolve, reject) {
|
|
20917
20902
|
let requestData = config.data;
|
|
20918
20903
|
const requestHeaders = _core_AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_1__["default"].from(config.headers).normalize();
|
|
@@ -21133,13 +21118,10 @@ const isXHRAdapterSupported = typeof XMLHttpRequest !== 'undefined';
|
|
|
21133
21118
|
/*!******************************************!*\
|
|
21134
21119
|
!*** ../node_modules/axios/lib/axios.js ***!
|
|
21135
21120
|
\******************************************/
|
|
21136
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
21121
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
21137
21122
|
|
|
21138
21123
|
"use strict";
|
|
21139
21124
|
__webpack_require__.r(__webpack_exports__);
|
|
21140
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
21141
|
-
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
21142
|
-
/* harmony export */ });
|
|
21143
21125
|
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils.js */ "../node_modules/axios/lib/utils.js");
|
|
21144
21126
|
/* harmony import */ var _helpers_bind_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./helpers/bind.js */ "../node_modules/axios/lib/helpers/bind.js");
|
|
21145
21127
|
/* harmony import */ var _core_Axios_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./core/Axios.js */ "../node_modules/axios/lib/core/Axios.js");
|
|
@@ -21245,7 +21227,7 @@ axios.HttpStatusCode = _helpers_HttpStatusCode_js__WEBPACK_IMPORTED_MODULE_16__[
|
|
|
21245
21227
|
axios.default = axios;
|
|
21246
21228
|
|
|
21247
21229
|
// this module should only have a default export
|
|
21248
|
-
/* harmony default export */
|
|
21230
|
+
/* harmony default export */ __webpack_exports__["default"] = (axios);
|
|
21249
21231
|
|
|
21250
21232
|
|
|
21251
21233
|
/***/ }),
|
|
@@ -21254,13 +21236,10 @@ axios.default = axios;
|
|
|
21254
21236
|
/*!*******************************************************!*\
|
|
21255
21237
|
!*** ../node_modules/axios/lib/cancel/CancelToken.js ***!
|
|
21256
21238
|
\*******************************************************/
|
|
21257
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
21239
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
21258
21240
|
|
|
21259
21241
|
"use strict";
|
|
21260
21242
|
__webpack_require__.r(__webpack_exports__);
|
|
21261
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
21262
|
-
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
21263
|
-
/* harmony export */ });
|
|
21264
21243
|
/* harmony import */ var _CanceledError_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./CanceledError.js */ "../node_modules/axios/lib/cancel/CanceledError.js");
|
|
21265
21244
|
|
|
21266
21245
|
|
|
@@ -21382,7 +21361,7 @@ class CancelToken {
|
|
|
21382
21361
|
}
|
|
21383
21362
|
}
|
|
21384
21363
|
|
|
21385
|
-
/* harmony default export */
|
|
21364
|
+
/* harmony default export */ __webpack_exports__["default"] = (CancelToken);
|
|
21386
21365
|
|
|
21387
21366
|
|
|
21388
21367
|
/***/ }),
|
|
@@ -21391,13 +21370,10 @@ class CancelToken {
|
|
|
21391
21370
|
/*!*********************************************************!*\
|
|
21392
21371
|
!*** ../node_modules/axios/lib/cancel/CanceledError.js ***!
|
|
21393
21372
|
\*********************************************************/
|
|
21394
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
21373
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
21395
21374
|
|
|
21396
21375
|
"use strict";
|
|
21397
21376
|
__webpack_require__.r(__webpack_exports__);
|
|
21398
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
21399
|
-
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
21400
|
-
/* harmony export */ });
|
|
21401
21377
|
/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../core/AxiosError.js */ "../node_modules/axios/lib/core/AxiosError.js");
|
|
21402
21378
|
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../utils.js */ "../node_modules/axios/lib/utils.js");
|
|
21403
21379
|
|
|
@@ -21424,7 +21400,7 @@ _utils_js__WEBPACK_IMPORTED_MODULE_1__["default"].inherits(CanceledError, _core_
|
|
|
21424
21400
|
__CANCEL__: true
|
|
21425
21401
|
});
|
|
21426
21402
|
|
|
21427
|
-
/* harmony default export */
|
|
21403
|
+
/* harmony default export */ __webpack_exports__["default"] = (CanceledError);
|
|
21428
21404
|
|
|
21429
21405
|
|
|
21430
21406
|
/***/ }),
|
|
@@ -21433,12 +21409,12 @@ _utils_js__WEBPACK_IMPORTED_MODULE_1__["default"].inherits(CanceledError, _core_
|
|
|
21433
21409
|
/*!****************************************************!*\
|
|
21434
21410
|
!*** ../node_modules/axios/lib/cancel/isCancel.js ***!
|
|
21435
21411
|
\****************************************************/
|
|
21436
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
21412
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
21437
21413
|
|
|
21438
21414
|
"use strict";
|
|
21439
21415
|
__webpack_require__.r(__webpack_exports__);
|
|
21440
21416
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
21441
|
-
/* harmony export */ "default": ()
|
|
21417
|
+
/* harmony export */ "default": function() { return /* binding */ isCancel; }
|
|
21442
21418
|
/* harmony export */ });
|
|
21443
21419
|
|
|
21444
21420
|
|
|
@@ -21453,13 +21429,10 @@ function isCancel(value) {
|
|
|
21453
21429
|
/*!***********************************************!*\
|
|
21454
21430
|
!*** ../node_modules/axios/lib/core/Axios.js ***!
|
|
21455
21431
|
\***********************************************/
|
|
21456
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
21432
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
21457
21433
|
|
|
21458
21434
|
"use strict";
|
|
21459
21435
|
__webpack_require__.r(__webpack_exports__);
|
|
21460
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
21461
|
-
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
21462
|
-
/* harmony export */ });
|
|
21463
21436
|
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./../utils.js */ "../node_modules/axios/lib/utils.js");
|
|
21464
21437
|
/* harmony import */ var _helpers_buildURL_js__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ../helpers/buildURL.js */ "../node_modules/axios/lib/helpers/buildURL.js");
|
|
21465
21438
|
/* harmony import */ var _InterceptorManager_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./InterceptorManager.js */ "../node_modules/axios/lib/core/InterceptorManager.js");
|
|
@@ -21692,7 +21665,7 @@ _utils_js__WEBPACK_IMPORTED_MODULE_3__["default"].forEach(['post', 'put', 'patch
|
|
|
21692
21665
|
Axios.prototype[method + 'Form'] = generateHTTPMethod(true);
|
|
21693
21666
|
});
|
|
21694
21667
|
|
|
21695
|
-
/* harmony default export */
|
|
21668
|
+
/* harmony default export */ __webpack_exports__["default"] = (Axios);
|
|
21696
21669
|
|
|
21697
21670
|
|
|
21698
21671
|
/***/ }),
|
|
@@ -21701,13 +21674,10 @@ _utils_js__WEBPACK_IMPORTED_MODULE_3__["default"].forEach(['post', 'put', 'patch
|
|
|
21701
21674
|
/*!****************************************************!*\
|
|
21702
21675
|
!*** ../node_modules/axios/lib/core/AxiosError.js ***!
|
|
21703
21676
|
\****************************************************/
|
|
21704
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
21677
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
21705
21678
|
|
|
21706
21679
|
"use strict";
|
|
21707
21680
|
__webpack_require__.r(__webpack_exports__);
|
|
21708
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
21709
|
-
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
21710
|
-
/* harmony export */ });
|
|
21711
21681
|
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../node_modules/axios/lib/utils.js");
|
|
21712
21682
|
|
|
21713
21683
|
|
|
@@ -21808,7 +21778,7 @@ AxiosError.from = (error, code, config, request, response, customProps) => {
|
|
|
21808
21778
|
return axiosError;
|
|
21809
21779
|
};
|
|
21810
21780
|
|
|
21811
|
-
/* harmony default export */
|
|
21781
|
+
/* harmony default export */ __webpack_exports__["default"] = (AxiosError);
|
|
21812
21782
|
|
|
21813
21783
|
|
|
21814
21784
|
/***/ }),
|
|
@@ -21817,13 +21787,10 @@ AxiosError.from = (error, code, config, request, response, customProps) => {
|
|
|
21817
21787
|
/*!******************************************************!*\
|
|
21818
21788
|
!*** ../node_modules/axios/lib/core/AxiosHeaders.js ***!
|
|
21819
21789
|
\******************************************************/
|
|
21820
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
21790
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
21821
21791
|
|
|
21822
21792
|
"use strict";
|
|
21823
21793
|
__webpack_require__.r(__webpack_exports__);
|
|
21824
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
21825
|
-
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
21826
|
-
/* harmony export */ });
|
|
21827
21794
|
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../node_modules/axios/lib/utils.js");
|
|
21828
21795
|
/* harmony import */ var _helpers_parseHeaders_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../helpers/parseHeaders.js */ "../node_modules/axios/lib/helpers/parseHeaders.js");
|
|
21829
21796
|
|
|
@@ -22123,7 +22090,7 @@ _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].reduceDescriptors(AxiosHeaders
|
|
|
22123
22090
|
|
|
22124
22091
|
_utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].freezeMethods(AxiosHeaders);
|
|
22125
22092
|
|
|
22126
|
-
/* harmony default export */
|
|
22093
|
+
/* harmony default export */ __webpack_exports__["default"] = (AxiosHeaders);
|
|
22127
22094
|
|
|
22128
22095
|
|
|
22129
22096
|
/***/ }),
|
|
@@ -22132,13 +22099,10 @@ _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].freezeMethods(AxiosHeaders);
|
|
|
22132
22099
|
/*!************************************************************!*\
|
|
22133
22100
|
!*** ../node_modules/axios/lib/core/InterceptorManager.js ***!
|
|
22134
22101
|
\************************************************************/
|
|
22135
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
22102
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
22136
22103
|
|
|
22137
22104
|
"use strict";
|
|
22138
22105
|
__webpack_require__.r(__webpack_exports__);
|
|
22139
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
22140
|
-
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
22141
|
-
/* harmony export */ });
|
|
22142
22106
|
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./../utils.js */ "../node_modules/axios/lib/utils.js");
|
|
22143
22107
|
|
|
22144
22108
|
|
|
@@ -22210,7 +22174,7 @@ class InterceptorManager {
|
|
|
22210
22174
|
}
|
|
22211
22175
|
}
|
|
22212
22176
|
|
|
22213
|
-
/* harmony default export */
|
|
22177
|
+
/* harmony default export */ __webpack_exports__["default"] = (InterceptorManager);
|
|
22214
22178
|
|
|
22215
22179
|
|
|
22216
22180
|
/***/ }),
|
|
@@ -22219,12 +22183,12 @@ class InterceptorManager {
|
|
|
22219
22183
|
/*!*******************************************************!*\
|
|
22220
22184
|
!*** ../node_modules/axios/lib/core/buildFullPath.js ***!
|
|
22221
22185
|
\*******************************************************/
|
|
22222
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
22186
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
22223
22187
|
|
|
22224
22188
|
"use strict";
|
|
22225
22189
|
__webpack_require__.r(__webpack_exports__);
|
|
22226
22190
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
22227
|
-
/* harmony export */ "default": ()
|
|
22191
|
+
/* harmony export */ "default": function() { return /* binding */ buildFullPath; }
|
|
22228
22192
|
/* harmony export */ });
|
|
22229
22193
|
/* harmony import */ var _helpers_isAbsoluteURL_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../helpers/isAbsoluteURL.js */ "../node_modules/axios/lib/helpers/isAbsoluteURL.js");
|
|
22230
22194
|
/* harmony import */ var _helpers_combineURLs_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../helpers/combineURLs.js */ "../node_modules/axios/lib/helpers/combineURLs.js");
|
|
@@ -22257,12 +22221,12 @@ function buildFullPath(baseURL, requestedURL) {
|
|
|
22257
22221
|
/*!*********************************************************!*\
|
|
22258
22222
|
!*** ../node_modules/axios/lib/core/dispatchRequest.js ***!
|
|
22259
22223
|
\*********************************************************/
|
|
22260
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
22224
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
22261
22225
|
|
|
22262
22226
|
"use strict";
|
|
22263
22227
|
__webpack_require__.r(__webpack_exports__);
|
|
22264
22228
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
22265
|
-
/* harmony export */ "default": ()
|
|
22229
|
+
/* harmony export */ "default": function() { return /* binding */ dispatchRequest; }
|
|
22266
22230
|
/* harmony export */ });
|
|
22267
22231
|
/* harmony import */ var _transformData_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./transformData.js */ "../node_modules/axios/lib/core/transformData.js");
|
|
22268
22232
|
/* harmony import */ var _cancel_isCancel_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../cancel/isCancel.js */ "../node_modules/axios/lib/cancel/isCancel.js");
|
|
@@ -22359,12 +22323,12 @@ function dispatchRequest(config) {
|
|
|
22359
22323
|
/*!*****************************************************!*\
|
|
22360
22324
|
!*** ../node_modules/axios/lib/core/mergeConfig.js ***!
|
|
22361
22325
|
\*****************************************************/
|
|
22362
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
22326
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
22363
22327
|
|
|
22364
22328
|
"use strict";
|
|
22365
22329
|
__webpack_require__.r(__webpack_exports__);
|
|
22366
22330
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
22367
|
-
/* harmony export */ "default": ()
|
|
22331
|
+
/* harmony export */ "default": function() { return /* binding */ mergeConfig; }
|
|
22368
22332
|
/* harmony export */ });
|
|
22369
22333
|
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../utils.js */ "../node_modules/axios/lib/utils.js");
|
|
22370
22334
|
/* harmony import */ var _AxiosHeaders_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AxiosHeaders.js */ "../node_modules/axios/lib/core/AxiosHeaders.js");
|
|
@@ -22482,12 +22446,12 @@ function mergeConfig(config1, config2) {
|
|
|
22482
22446
|
/*!************************************************!*\
|
|
22483
22447
|
!*** ../node_modules/axios/lib/core/settle.js ***!
|
|
22484
22448
|
\************************************************/
|
|
22485
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
22449
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
22486
22450
|
|
|
22487
22451
|
"use strict";
|
|
22488
22452
|
__webpack_require__.r(__webpack_exports__);
|
|
22489
22453
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
22490
|
-
/* harmony export */ "default": ()
|
|
22454
|
+
/* harmony export */ "default": function() { return /* binding */ settle; }
|
|
22491
22455
|
/* harmony export */ });
|
|
22492
22456
|
/* harmony import */ var _AxiosError_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AxiosError.js */ "../node_modules/axios/lib/core/AxiosError.js");
|
|
22493
22457
|
|
|
@@ -22525,12 +22489,12 @@ function settle(resolve, reject, response) {
|
|
|
22525
22489
|
/*!*******************************************************!*\
|
|
22526
22490
|
!*** ../node_modules/axios/lib/core/transformData.js ***!
|
|
22527
22491
|
\*******************************************************/
|
|
22528
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
22492
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
22529
22493
|
|
|
22530
22494
|
"use strict";
|
|
22531
22495
|
__webpack_require__.r(__webpack_exports__);
|
|
22532
22496
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
22533
|
-
/* harmony export */ "default": ()
|
|
22497
|
+
/* harmony export */ "default": function() { return /* binding */ transformData; }
|
|
22534
22498
|
/* harmony export */ });
|
|
22535
22499
|
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./../utils.js */ "../node_modules/axios/lib/utils.js");
|
|
22536
22500
|
/* harmony import */ var _defaults_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../defaults/index.js */ "../node_modules/axios/lib/defaults/index.js");
|
|
@@ -22571,13 +22535,10 @@ function transformData(fns, response) {
|
|
|
22571
22535
|
/*!***************************************************!*\
|
|
22572
22536
|
!*** ../node_modules/axios/lib/defaults/index.js ***!
|
|
22573
22537
|
\***************************************************/
|
|
22574
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
22538
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
22575
22539
|
|
|
22576
22540
|
"use strict";
|
|
22577
22541
|
__webpack_require__.r(__webpack_exports__);
|
|
22578
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
22579
|
-
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
22580
|
-
/* harmony export */ });
|
|
22581
22542
|
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../node_modules/axios/lib/utils.js");
|
|
22582
22543
|
/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../core/AxiosError.js */ "../node_modules/axios/lib/core/AxiosError.js");
|
|
22583
22544
|
/* harmony import */ var _transitional_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./transitional.js */ "../node_modules/axios/lib/defaults/transitional.js");
|
|
@@ -22740,7 +22701,7 @@ _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].forEach(['delete', 'get', 'hea
|
|
|
22740
22701
|
defaults.headers[method] = {};
|
|
22741
22702
|
});
|
|
22742
22703
|
|
|
22743
|
-
/* harmony default export */
|
|
22704
|
+
/* harmony default export */ __webpack_exports__["default"] = (defaults);
|
|
22744
22705
|
|
|
22745
22706
|
|
|
22746
22707
|
/***/ }),
|
|
@@ -22749,16 +22710,13 @@ _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].forEach(['delete', 'get', 'hea
|
|
|
22749
22710
|
/*!**********************************************************!*\
|
|
22750
22711
|
!*** ../node_modules/axios/lib/defaults/transitional.js ***!
|
|
22751
22712
|
\**********************************************************/
|
|
22752
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
22713
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
22753
22714
|
|
|
22754
22715
|
"use strict";
|
|
22755
22716
|
__webpack_require__.r(__webpack_exports__);
|
|
22756
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
22757
|
-
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
22758
|
-
/* harmony export */ });
|
|
22759
22717
|
|
|
22760
22718
|
|
|
22761
|
-
/* harmony default export */
|
|
22719
|
+
/* harmony default export */ __webpack_exports__["default"] = ({
|
|
22762
22720
|
silentJSONParsing: true,
|
|
22763
22721
|
forcedJSONParsing: true,
|
|
22764
22722
|
clarifyTimeoutError: false
|
|
@@ -22771,12 +22729,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
22771
22729
|
/*!*********************************************!*\
|
|
22772
22730
|
!*** ../node_modules/axios/lib/env/data.js ***!
|
|
22773
22731
|
\*********************************************/
|
|
22774
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
22732
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
22775
22733
|
|
|
22776
22734
|
"use strict";
|
|
22777
22735
|
__webpack_require__.r(__webpack_exports__);
|
|
22778
22736
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
22779
|
-
/* harmony export */ VERSION: ()
|
|
22737
|
+
/* harmony export */ VERSION: function() { return /* binding */ VERSION; }
|
|
22780
22738
|
/* harmony export */ });
|
|
22781
22739
|
const VERSION = "1.6.7";
|
|
22782
22740
|
|
|
@@ -22786,13 +22744,10 @@ const VERSION = "1.6.7";
|
|
|
22786
22744
|
/*!*****************************************************************!*\
|
|
22787
22745
|
!*** ../node_modules/axios/lib/helpers/AxiosURLSearchParams.js ***!
|
|
22788
22746
|
\*****************************************************************/
|
|
22789
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
22747
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
22790
22748
|
|
|
22791
22749
|
"use strict";
|
|
22792
22750
|
__webpack_require__.r(__webpack_exports__);
|
|
22793
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
22794
|
-
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
22795
|
-
/* harmony export */ });
|
|
22796
22751
|
/* harmony import */ var _toFormData_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toFormData.js */ "../node_modules/axios/lib/helpers/toFormData.js");
|
|
22797
22752
|
|
|
22798
22753
|
|
|
@@ -22851,7 +22806,7 @@ prototype.toString = function toString(encoder) {
|
|
|
22851
22806
|
}, '').join('&');
|
|
22852
22807
|
};
|
|
22853
22808
|
|
|
22854
|
-
/* harmony default export */
|
|
22809
|
+
/* harmony default export */ __webpack_exports__["default"] = (AxiosURLSearchParams);
|
|
22855
22810
|
|
|
22856
22811
|
|
|
22857
22812
|
/***/ }),
|
|
@@ -22860,13 +22815,10 @@ prototype.toString = function toString(encoder) {
|
|
|
22860
22815
|
/*!***********************************************************!*\
|
|
22861
22816
|
!*** ../node_modules/axios/lib/helpers/HttpStatusCode.js ***!
|
|
22862
22817
|
\***********************************************************/
|
|
22863
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
22818
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
22864
22819
|
|
|
22865
22820
|
"use strict";
|
|
22866
22821
|
__webpack_require__.r(__webpack_exports__);
|
|
22867
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
22868
|
-
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
22869
|
-
/* harmony export */ });
|
|
22870
22822
|
const HttpStatusCode = {
|
|
22871
22823
|
Continue: 100,
|
|
22872
22824
|
SwitchingProtocols: 101,
|
|
@@ -22937,7 +22889,7 @@ Object.entries(HttpStatusCode).forEach(([key, value]) => {
|
|
|
22937
22889
|
HttpStatusCode[value] = key;
|
|
22938
22890
|
});
|
|
22939
22891
|
|
|
22940
|
-
/* harmony default export */
|
|
22892
|
+
/* harmony default export */ __webpack_exports__["default"] = (HttpStatusCode);
|
|
22941
22893
|
|
|
22942
22894
|
|
|
22943
22895
|
/***/ }),
|
|
@@ -22946,12 +22898,12 @@ Object.entries(HttpStatusCode).forEach(([key, value]) => {
|
|
|
22946
22898
|
/*!*************************************************!*\
|
|
22947
22899
|
!*** ../node_modules/axios/lib/helpers/bind.js ***!
|
|
22948
22900
|
\*************************************************/
|
|
22949
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
22901
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
22950
22902
|
|
|
22951
22903
|
"use strict";
|
|
22952
22904
|
__webpack_require__.r(__webpack_exports__);
|
|
22953
22905
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
22954
|
-
/* harmony export */ "default": ()
|
|
22906
|
+
/* harmony export */ "default": function() { return /* binding */ bind; }
|
|
22955
22907
|
/* harmony export */ });
|
|
22956
22908
|
|
|
22957
22909
|
|
|
@@ -22968,12 +22920,12 @@ function bind(fn, thisArg) {
|
|
|
22968
22920
|
/*!*****************************************************!*\
|
|
22969
22921
|
!*** ../node_modules/axios/lib/helpers/buildURL.js ***!
|
|
22970
22922
|
\*****************************************************/
|
|
22971
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
22923
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
22972
22924
|
|
|
22973
22925
|
"use strict";
|
|
22974
22926
|
__webpack_require__.r(__webpack_exports__);
|
|
22975
22927
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
22976
|
-
/* harmony export */ "default": ()
|
|
22928
|
+
/* harmony export */ "default": function() { return /* binding */ buildURL; }
|
|
22977
22929
|
/* harmony export */ });
|
|
22978
22930
|
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../node_modules/axios/lib/utils.js");
|
|
22979
22931
|
/* harmony import */ var _helpers_AxiosURLSearchParams_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../helpers/AxiosURLSearchParams.js */ "../node_modules/axios/lib/helpers/AxiosURLSearchParams.js");
|
|
@@ -23048,12 +23000,12 @@ function buildURL(url, params, options) {
|
|
|
23048
23000
|
/*!********************************************************!*\
|
|
23049
23001
|
!*** ../node_modules/axios/lib/helpers/combineURLs.js ***!
|
|
23050
23002
|
\********************************************************/
|
|
23051
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
23003
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
23052
23004
|
|
|
23053
23005
|
"use strict";
|
|
23054
23006
|
__webpack_require__.r(__webpack_exports__);
|
|
23055
23007
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
23056
|
-
/* harmony export */ "default": ()
|
|
23008
|
+
/* harmony export */ "default": function() { return /* binding */ combineURLs; }
|
|
23057
23009
|
/* harmony export */ });
|
|
23058
23010
|
|
|
23059
23011
|
|
|
@@ -23078,19 +23030,16 @@ function combineURLs(baseURL, relativeURL) {
|
|
|
23078
23030
|
/*!****************************************************!*\
|
|
23079
23031
|
!*** ../node_modules/axios/lib/helpers/cookies.js ***!
|
|
23080
23032
|
\****************************************************/
|
|
23081
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
23033
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
23082
23034
|
|
|
23083
23035
|
"use strict";
|
|
23084
23036
|
__webpack_require__.r(__webpack_exports__);
|
|
23085
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
23086
|
-
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
23087
|
-
/* harmony export */ });
|
|
23088
23037
|
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./../utils.js */ "../node_modules/axios/lib/utils.js");
|
|
23089
23038
|
/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../platform/index.js */ "../node_modules/axios/lib/platform/index.js");
|
|
23090
23039
|
|
|
23091
23040
|
|
|
23092
23041
|
|
|
23093
|
-
/* harmony default export */
|
|
23042
|
+
/* harmony default export */ __webpack_exports__["default"] = (_platform_index_js__WEBPACK_IMPORTED_MODULE_0__["default"].hasStandardBrowserEnv ?
|
|
23094
23043
|
|
|
23095
23044
|
// Standard browser envs support document.cookie
|
|
23096
23045
|
{
|
|
@@ -23137,13 +23086,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
23137
23086
|
/*!***********************************************************!*\
|
|
23138
23087
|
!*** ../node_modules/axios/lib/helpers/formDataToJSON.js ***!
|
|
23139
23088
|
\***********************************************************/
|
|
23140
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
23089
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
23141
23090
|
|
|
23142
23091
|
"use strict";
|
|
23143
23092
|
__webpack_require__.r(__webpack_exports__);
|
|
23144
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
23145
|
-
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
23146
|
-
/* harmony export */ });
|
|
23147
23093
|
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../node_modules/axios/lib/utils.js");
|
|
23148
23094
|
|
|
23149
23095
|
|
|
@@ -23239,7 +23185,7 @@ function formDataToJSON(formData) {
|
|
|
23239
23185
|
return null;
|
|
23240
23186
|
}
|
|
23241
23187
|
|
|
23242
|
-
/* harmony default export */
|
|
23188
|
+
/* harmony default export */ __webpack_exports__["default"] = (formDataToJSON);
|
|
23243
23189
|
|
|
23244
23190
|
|
|
23245
23191
|
/***/ }),
|
|
@@ -23248,12 +23194,12 @@ function formDataToJSON(formData) {
|
|
|
23248
23194
|
/*!**********************************************************!*\
|
|
23249
23195
|
!*** ../node_modules/axios/lib/helpers/isAbsoluteURL.js ***!
|
|
23250
23196
|
\**********************************************************/
|
|
23251
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
23197
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
23252
23198
|
|
|
23253
23199
|
"use strict";
|
|
23254
23200
|
__webpack_require__.r(__webpack_exports__);
|
|
23255
23201
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
23256
|
-
/* harmony export */ "default": ()
|
|
23202
|
+
/* harmony export */ "default": function() { return /* binding */ isAbsoluteURL; }
|
|
23257
23203
|
/* harmony export */ });
|
|
23258
23204
|
|
|
23259
23205
|
|
|
@@ -23278,12 +23224,12 @@ function isAbsoluteURL(url) {
|
|
|
23278
23224
|
/*!*********************************************************!*\
|
|
23279
23225
|
!*** ../node_modules/axios/lib/helpers/isAxiosError.js ***!
|
|
23280
23226
|
\*********************************************************/
|
|
23281
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
23227
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
23282
23228
|
|
|
23283
23229
|
"use strict";
|
|
23284
23230
|
__webpack_require__.r(__webpack_exports__);
|
|
23285
23231
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
23286
|
-
/* harmony export */ "default": ()
|
|
23232
|
+
/* harmony export */ "default": function() { return /* binding */ isAxiosError; }
|
|
23287
23233
|
/* harmony export */ });
|
|
23288
23234
|
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./../utils.js */ "../node_modules/axios/lib/utils.js");
|
|
23289
23235
|
|
|
@@ -23308,13 +23254,10 @@ function isAxiosError(payload) {
|
|
|
23308
23254
|
/*!************************************************************!*\
|
|
23309
23255
|
!*** ../node_modules/axios/lib/helpers/isURLSameOrigin.js ***!
|
|
23310
23256
|
\************************************************************/
|
|
23311
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
23257
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
23312
23258
|
|
|
23313
23259
|
"use strict";
|
|
23314
23260
|
__webpack_require__.r(__webpack_exports__);
|
|
23315
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
23316
|
-
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
23317
|
-
/* harmony export */ });
|
|
23318
23261
|
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./../utils.js */ "../node_modules/axios/lib/utils.js");
|
|
23319
23262
|
/* harmony import */ var _platform_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../platform/index.js */ "../node_modules/axios/lib/platform/index.js");
|
|
23320
23263
|
|
|
@@ -23322,7 +23265,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
23322
23265
|
|
|
23323
23266
|
|
|
23324
23267
|
|
|
23325
|
-
/* harmony default export */
|
|
23268
|
+
/* harmony default export */ __webpack_exports__["default"] = (_platform_index_js__WEBPACK_IMPORTED_MODULE_0__["default"].hasStandardBrowserEnv ?
|
|
23326
23269
|
|
|
23327
23270
|
// Standard browser envs have full support of the APIs needed to test
|
|
23328
23271
|
// whether the request URL is of the same origin as current location.
|
|
@@ -23392,15 +23335,12 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
23392
23335
|
/*!*************************************************!*\
|
|
23393
23336
|
!*** ../node_modules/axios/lib/helpers/null.js ***!
|
|
23394
23337
|
\*************************************************/
|
|
23395
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
23338
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
23396
23339
|
|
|
23397
23340
|
"use strict";
|
|
23398
23341
|
__webpack_require__.r(__webpack_exports__);
|
|
23399
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
23400
|
-
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
23401
|
-
/* harmony export */ });
|
|
23402
23342
|
// eslint-disable-next-line strict
|
|
23403
|
-
/* harmony default export */
|
|
23343
|
+
/* harmony default export */ __webpack_exports__["default"] = (null);
|
|
23404
23344
|
|
|
23405
23345
|
|
|
23406
23346
|
/***/ }),
|
|
@@ -23409,13 +23349,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
23409
23349
|
/*!*********************************************************!*\
|
|
23410
23350
|
!*** ../node_modules/axios/lib/helpers/parseHeaders.js ***!
|
|
23411
23351
|
\*********************************************************/
|
|
23412
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
23352
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
23413
23353
|
|
|
23414
23354
|
"use strict";
|
|
23415
23355
|
__webpack_require__.r(__webpack_exports__);
|
|
23416
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
23417
|
-
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
23418
|
-
/* harmony export */ });
|
|
23419
23356
|
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./../utils.js */ "../node_modules/axios/lib/utils.js");
|
|
23420
23357
|
|
|
23421
23358
|
|
|
@@ -23444,7 +23381,7 @@ const ignoreDuplicateOf = _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].toOb
|
|
|
23444
23381
|
*
|
|
23445
23382
|
* @returns {Object} Headers parsed into an object
|
|
23446
23383
|
*/
|
|
23447
|
-
/* harmony default export */
|
|
23384
|
+
/* harmony default export */ __webpack_exports__["default"] = (rawHeaders => {
|
|
23448
23385
|
const parsed = {};
|
|
23449
23386
|
let key;
|
|
23450
23387
|
let val;
|
|
@@ -23480,12 +23417,12 @@ const ignoreDuplicateOf = _utils_js__WEBPACK_IMPORTED_MODULE_0__["default"].toOb
|
|
|
23480
23417
|
/*!**********************************************************!*\
|
|
23481
23418
|
!*** ../node_modules/axios/lib/helpers/parseProtocol.js ***!
|
|
23482
23419
|
\**********************************************************/
|
|
23483
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
23420
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
23484
23421
|
|
|
23485
23422
|
"use strict";
|
|
23486
23423
|
__webpack_require__.r(__webpack_exports__);
|
|
23487
23424
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
23488
|
-
/* harmony export */ "default": ()
|
|
23425
|
+
/* harmony export */ "default": function() { return /* binding */ parseProtocol; }
|
|
23489
23426
|
/* harmony export */ });
|
|
23490
23427
|
|
|
23491
23428
|
|
|
@@ -23501,13 +23438,10 @@ function parseProtocol(url) {
|
|
|
23501
23438
|
/*!********************************************************!*\
|
|
23502
23439
|
!*** ../node_modules/axios/lib/helpers/speedometer.js ***!
|
|
23503
23440
|
\********************************************************/
|
|
23504
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
23441
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
23505
23442
|
|
|
23506
23443
|
"use strict";
|
|
23507
23444
|
__webpack_require__.r(__webpack_exports__);
|
|
23508
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
23509
|
-
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
23510
|
-
/* harmony export */ });
|
|
23511
23445
|
|
|
23512
23446
|
|
|
23513
23447
|
/**
|
|
@@ -23562,7 +23496,7 @@ function speedometer(samplesCount, min) {
|
|
|
23562
23496
|
};
|
|
23563
23497
|
}
|
|
23564
23498
|
|
|
23565
|
-
/* harmony default export */
|
|
23499
|
+
/* harmony default export */ __webpack_exports__["default"] = (speedometer);
|
|
23566
23500
|
|
|
23567
23501
|
|
|
23568
23502
|
/***/ }),
|
|
@@ -23571,12 +23505,12 @@ function speedometer(samplesCount, min) {
|
|
|
23571
23505
|
/*!***************************************************!*\
|
|
23572
23506
|
!*** ../node_modules/axios/lib/helpers/spread.js ***!
|
|
23573
23507
|
\***************************************************/
|
|
23574
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
23508
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
23575
23509
|
|
|
23576
23510
|
"use strict";
|
|
23577
23511
|
__webpack_require__.r(__webpack_exports__);
|
|
23578
23512
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
23579
|
-
/* harmony export */ "default": ()
|
|
23513
|
+
/* harmony export */ "default": function() { return /* binding */ spread; }
|
|
23580
23514
|
/* harmony export */ });
|
|
23581
23515
|
|
|
23582
23516
|
|
|
@@ -23614,13 +23548,10 @@ function spread(callback) {
|
|
|
23614
23548
|
/*!*******************************************************!*\
|
|
23615
23549
|
!*** ../node_modules/axios/lib/helpers/toFormData.js ***!
|
|
23616
23550
|
\*******************************************************/
|
|
23617
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
23551
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
23618
23552
|
|
|
23619
23553
|
"use strict";
|
|
23620
23554
|
__webpack_require__.r(__webpack_exports__);
|
|
23621
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
23622
|
-
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
23623
|
-
/* harmony export */ });
|
|
23624
23555
|
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../utils.js */ "../node_modules/axios/lib/utils.js");
|
|
23625
23556
|
/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../core/AxiosError.js */ "../node_modules/axios/lib/core/AxiosError.js");
|
|
23626
23557
|
/* harmony import */ var _platform_node_classes_FormData_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../platform/node/classes/FormData.js */ "../node_modules/axios/lib/helpers/null.js");
|
|
@@ -23842,7 +23773,7 @@ function toFormData(obj, formData, options) {
|
|
|
23842
23773
|
return formData;
|
|
23843
23774
|
}
|
|
23844
23775
|
|
|
23845
|
-
/* harmony default export */
|
|
23776
|
+
/* harmony default export */ __webpack_exports__["default"] = (toFormData);
|
|
23846
23777
|
|
|
23847
23778
|
|
|
23848
23779
|
/***/ }),
|
|
@@ -23851,12 +23782,12 @@ function toFormData(obj, formData, options) {
|
|
|
23851
23782
|
/*!*************************************************************!*\
|
|
23852
23783
|
!*** ../node_modules/axios/lib/helpers/toURLEncodedForm.js ***!
|
|
23853
23784
|
\*************************************************************/
|
|
23854
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
23785
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
23855
23786
|
|
|
23856
23787
|
"use strict";
|
|
23857
23788
|
__webpack_require__.r(__webpack_exports__);
|
|
23858
23789
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
23859
|
-
/* harmony export */ "default": ()
|
|
23790
|
+
/* harmony export */ "default": function() { return /* binding */ toURLEncodedForm; }
|
|
23860
23791
|
/* harmony export */ });
|
|
23861
23792
|
/* harmony import */ var _utils_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../utils.js */ "../node_modules/axios/lib/utils.js");
|
|
23862
23793
|
/* harmony import */ var _toFormData_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./toFormData.js */ "../node_modules/axios/lib/helpers/toFormData.js");
|
|
@@ -23887,13 +23818,10 @@ function toURLEncodedForm(data, options) {
|
|
|
23887
23818
|
/*!******************************************************!*\
|
|
23888
23819
|
!*** ../node_modules/axios/lib/helpers/validator.js ***!
|
|
23889
23820
|
\******************************************************/
|
|
23890
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
23821
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
23891
23822
|
|
|
23892
23823
|
"use strict";
|
|
23893
23824
|
__webpack_require__.r(__webpack_exports__);
|
|
23894
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
23895
|
-
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
23896
|
-
/* harmony export */ });
|
|
23897
23825
|
/* harmony import */ var _env_data_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../env/data.js */ "../node_modules/axios/lib/env/data.js");
|
|
23898
23826
|
/* harmony import */ var _core_AxiosError_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../core/AxiosError.js */ "../node_modules/axios/lib/core/AxiosError.js");
|
|
23899
23827
|
|
|
@@ -23983,7 +23911,7 @@ function assertOptions(options, schema, allowUnknown) {
|
|
|
23983
23911
|
}
|
|
23984
23912
|
}
|
|
23985
23913
|
|
|
23986
|
-
/* harmony default export */
|
|
23914
|
+
/* harmony default export */ __webpack_exports__["default"] = ({
|
|
23987
23915
|
assertOptions,
|
|
23988
23916
|
validators
|
|
23989
23917
|
});
|
|
@@ -23995,16 +23923,13 @@ function assertOptions(options, schema, allowUnknown) {
|
|
|
23995
23923
|
/*!******************************************************************!*\
|
|
23996
23924
|
!*** ../node_modules/axios/lib/platform/browser/classes/Blob.js ***!
|
|
23997
23925
|
\******************************************************************/
|
|
23998
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
23926
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
23999
23927
|
|
|
24000
23928
|
"use strict";
|
|
24001
23929
|
__webpack_require__.r(__webpack_exports__);
|
|
24002
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
24003
|
-
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
24004
|
-
/* harmony export */ });
|
|
24005
23930
|
|
|
24006
23931
|
|
|
24007
|
-
/* harmony default export */
|
|
23932
|
+
/* harmony default export */ __webpack_exports__["default"] = (typeof Blob !== 'undefined' ? Blob : null);
|
|
24008
23933
|
|
|
24009
23934
|
|
|
24010
23935
|
/***/ }),
|
|
@@ -24013,16 +23938,13 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
24013
23938
|
/*!**********************************************************************!*\
|
|
24014
23939
|
!*** ../node_modules/axios/lib/platform/browser/classes/FormData.js ***!
|
|
24015
23940
|
\**********************************************************************/
|
|
24016
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
23941
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
24017
23942
|
|
|
24018
23943
|
"use strict";
|
|
24019
23944
|
__webpack_require__.r(__webpack_exports__);
|
|
24020
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
24021
|
-
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
24022
|
-
/* harmony export */ });
|
|
24023
23945
|
|
|
24024
23946
|
|
|
24025
|
-
/* harmony default export */
|
|
23947
|
+
/* harmony default export */ __webpack_exports__["default"] = (typeof FormData !== 'undefined' ? FormData : null);
|
|
24026
23948
|
|
|
24027
23949
|
|
|
24028
23950
|
/***/ }),
|
|
@@ -24031,18 +23953,15 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
24031
23953
|
/*!*****************************************************************************!*\
|
|
24032
23954
|
!*** ../node_modules/axios/lib/platform/browser/classes/URLSearchParams.js ***!
|
|
24033
23955
|
\*****************************************************************************/
|
|
24034
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
23956
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
24035
23957
|
|
|
24036
23958
|
"use strict";
|
|
24037
23959
|
__webpack_require__.r(__webpack_exports__);
|
|
24038
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
24039
|
-
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
24040
|
-
/* harmony export */ });
|
|
24041
23960
|
/* harmony import */ var _helpers_AxiosURLSearchParams_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../../helpers/AxiosURLSearchParams.js */ "../node_modules/axios/lib/helpers/AxiosURLSearchParams.js");
|
|
24042
23961
|
|
|
24043
23962
|
|
|
24044
23963
|
|
|
24045
|
-
/* harmony default export */
|
|
23964
|
+
/* harmony default export */ __webpack_exports__["default"] = (typeof URLSearchParams !== 'undefined' ? URLSearchParams : _helpers_AxiosURLSearchParams_js__WEBPACK_IMPORTED_MODULE_0__["default"]);
|
|
24046
23965
|
|
|
24047
23966
|
|
|
24048
23967
|
/***/ }),
|
|
@@ -24051,13 +23970,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
24051
23970
|
/*!***********************************************************!*\
|
|
24052
23971
|
!*** ../node_modules/axios/lib/platform/browser/index.js ***!
|
|
24053
23972
|
\***********************************************************/
|
|
24054
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
23973
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
24055
23974
|
|
|
24056
23975
|
"use strict";
|
|
24057
23976
|
__webpack_require__.r(__webpack_exports__);
|
|
24058
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
24059
|
-
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
24060
|
-
/* harmony export */ });
|
|
24061
23977
|
/* harmony import */ var _classes_URLSearchParams_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./classes/URLSearchParams.js */ "../node_modules/axios/lib/platform/browser/classes/URLSearchParams.js");
|
|
24062
23978
|
/* harmony import */ var _classes_FormData_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./classes/FormData.js */ "../node_modules/axios/lib/platform/browser/classes/FormData.js");
|
|
24063
23979
|
/* harmony import */ var _classes_Blob_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./classes/Blob.js */ "../node_modules/axios/lib/platform/browser/classes/Blob.js");
|
|
@@ -24065,7 +23981,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
24065
23981
|
|
|
24066
23982
|
|
|
24067
23983
|
|
|
24068
|
-
/* harmony default export */
|
|
23984
|
+
/* harmony default export */ __webpack_exports__["default"] = ({
|
|
24069
23985
|
isBrowser: true,
|
|
24070
23986
|
classes: {
|
|
24071
23987
|
URLSearchParams: _classes_URLSearchParams_js__WEBPACK_IMPORTED_MODULE_0__["default"],
|
|
@@ -24082,14 +23998,14 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
24082
23998
|
/*!**********************************************************!*\
|
|
24083
23999
|
!*** ../node_modules/axios/lib/platform/common/utils.js ***!
|
|
24084
24000
|
\**********************************************************/
|
|
24085
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
24001
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
24086
24002
|
|
|
24087
24003
|
"use strict";
|
|
24088
24004
|
__webpack_require__.r(__webpack_exports__);
|
|
24089
24005
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
24090
|
-
/* harmony export */ hasBrowserEnv: ()
|
|
24091
|
-
/* harmony export */ hasStandardBrowserEnv: ()
|
|
24092
|
-
/* harmony export */ hasStandardBrowserWebWorkerEnv: ()
|
|
24006
|
+
/* harmony export */ hasBrowserEnv: function() { return /* binding */ hasBrowserEnv; },
|
|
24007
|
+
/* harmony export */ hasStandardBrowserEnv: function() { return /* binding */ hasStandardBrowserEnv; },
|
|
24008
|
+
/* harmony export */ hasStandardBrowserWebWorkerEnv: function() { return /* binding */ hasStandardBrowserWebWorkerEnv; }
|
|
24093
24009
|
/* harmony export */ });
|
|
24094
24010
|
const hasBrowserEnv = typeof window !== 'undefined' && typeof document !== 'undefined';
|
|
24095
24011
|
|
|
@@ -24142,19 +24058,16 @@ const hasStandardBrowserWebWorkerEnv = (() => {
|
|
|
24142
24058
|
/*!***************************************************!*\
|
|
24143
24059
|
!*** ../node_modules/axios/lib/platform/index.js ***!
|
|
24144
24060
|
\***************************************************/
|
|
24145
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
24061
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
24146
24062
|
|
|
24147
24063
|
"use strict";
|
|
24148
24064
|
__webpack_require__.r(__webpack_exports__);
|
|
24149
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
24150
|
-
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
24151
|
-
/* harmony export */ });
|
|
24152
24065
|
/* harmony import */ var _node_index_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./node/index.js */ "../node_modules/axios/lib/platform/browser/index.js");
|
|
24153
24066
|
/* harmony import */ var _common_utils_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./common/utils.js */ "../node_modules/axios/lib/platform/common/utils.js");
|
|
24154
24067
|
|
|
24155
24068
|
|
|
24156
24069
|
|
|
24157
|
-
/* harmony default export */
|
|
24070
|
+
/* harmony default export */ __webpack_exports__["default"] = ({
|
|
24158
24071
|
..._common_utils_js__WEBPACK_IMPORTED_MODULE_0__,
|
|
24159
24072
|
..._node_index_js__WEBPACK_IMPORTED_MODULE_1__["default"]
|
|
24160
24073
|
});
|
|
@@ -24166,13 +24079,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
24166
24079
|
/*!******************************************!*\
|
|
24167
24080
|
!*** ../node_modules/axios/lib/utils.js ***!
|
|
24168
24081
|
\******************************************/
|
|
24169
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
24082
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
24170
24083
|
|
|
24171
24084
|
"use strict";
|
|
24172
24085
|
__webpack_require__.r(__webpack_exports__);
|
|
24173
|
-
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
24174
|
-
/* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
|
|
24175
|
-
/* harmony export */ });
|
|
24176
24086
|
/* harmony import */ var _helpers_bind_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./helpers/bind.js */ "../node_modules/axios/lib/helpers/bind.js");
|
|
24177
24087
|
|
|
24178
24088
|
|
|
@@ -24844,7 +24754,7 @@ const isAsyncFn = kindOfTest('AsyncFunction');
|
|
|
24844
24754
|
const isThenable = (thing) =>
|
|
24845
24755
|
thing && (isObject(thing) || isFunction(thing)) && isFunction(thing.then) && isFunction(thing.catch);
|
|
24846
24756
|
|
|
24847
|
-
/* harmony default export */
|
|
24757
|
+
/* harmony default export */ __webpack_exports__["default"] = ({
|
|
24848
24758
|
isArray,
|
|
24849
24759
|
isArrayBuffer,
|
|
24850
24760
|
isBuffer,
|
|
@@ -24905,15 +24815,15 @@ const isThenable = (thing) =>
|
|
|
24905
24815
|
/*!****************************************************!*\
|
|
24906
24816
|
!*** ../node_modules/fast-copy/dist/esm/index.mjs ***!
|
|
24907
24817
|
\****************************************************/
|
|
24908
|
-
/***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__)
|
|
24818
|
+
/***/ (function(__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) {
|
|
24909
24819
|
|
|
24910
24820
|
"use strict";
|
|
24911
24821
|
__webpack_require__.r(__webpack_exports__);
|
|
24912
24822
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
24913
|
-
/* harmony export */ copyStrict: ()
|
|
24914
|
-
/* harmony export */ createCopier: ()
|
|
24915
|
-
/* harmony export */ createStrictCopier: ()
|
|
24916
|
-
/* harmony export */ "default": ()
|
|
24823
|
+
/* harmony export */ copyStrict: function() { return /* binding */ copyStrict; },
|
|
24824
|
+
/* harmony export */ createCopier: function() { return /* binding */ createCopier; },
|
|
24825
|
+
/* harmony export */ createStrictCopier: function() { return /* binding */ createStrictCopier; },
|
|
24826
|
+
/* harmony export */ "default": function() { return /* binding */ index; }
|
|
24917
24827
|
/* harmony export */ });
|
|
24918
24828
|
var toStringFunction = Function.prototype.toString;
|
|
24919
24829
|
var create = Object.create;
|
|
@@ -25345,31 +25255,31 @@ var index = createCopier({});
|
|
|
25345
25255
|
/******/
|
|
25346
25256
|
/************************************************************************/
|
|
25347
25257
|
/******/ /* webpack/runtime/compat get default export */
|
|
25348
|
-
/******/ (
|
|
25258
|
+
/******/ !function() {
|
|
25349
25259
|
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
|
25350
|
-
/******/ __webpack_require__.n = (module)
|
|
25260
|
+
/******/ __webpack_require__.n = function(module) {
|
|
25351
25261
|
/******/ var getter = module && module.__esModule ?
|
|
25352
|
-
/******/ ()
|
|
25353
|
-
/******/ ()
|
|
25262
|
+
/******/ function() { return module['default']; } :
|
|
25263
|
+
/******/ function() { return module; };
|
|
25354
25264
|
/******/ __webpack_require__.d(getter, { a: getter });
|
|
25355
25265
|
/******/ return getter;
|
|
25356
25266
|
/******/ };
|
|
25357
|
-
/******/ }
|
|
25267
|
+
/******/ }();
|
|
25358
25268
|
/******/
|
|
25359
25269
|
/******/ /* webpack/runtime/define property getters */
|
|
25360
|
-
/******/ (
|
|
25270
|
+
/******/ !function() {
|
|
25361
25271
|
/******/ // define getter functions for harmony exports
|
|
25362
|
-
/******/ __webpack_require__.d = (exports, definition)
|
|
25272
|
+
/******/ __webpack_require__.d = function(exports, definition) {
|
|
25363
25273
|
/******/ for(var key in definition) {
|
|
25364
25274
|
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
|
|
25365
25275
|
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
|
|
25366
25276
|
/******/ }
|
|
25367
25277
|
/******/ }
|
|
25368
25278
|
/******/ };
|
|
25369
|
-
/******/ }
|
|
25279
|
+
/******/ }();
|
|
25370
25280
|
/******/
|
|
25371
25281
|
/******/ /* webpack/runtime/global */
|
|
25372
|
-
/******/ (
|
|
25282
|
+
/******/ !function() {
|
|
25373
25283
|
/******/ __webpack_require__.g = (function() {
|
|
25374
25284
|
/******/ if (typeof globalThis === 'object') return globalThis;
|
|
25375
25285
|
/******/ try {
|
|
@@ -25378,42 +25288,42 @@ var index = createCopier({});
|
|
|
25378
25288
|
/******/ if (typeof window === 'object') return window;
|
|
25379
25289
|
/******/ }
|
|
25380
25290
|
/******/ })();
|
|
25381
|
-
/******/ }
|
|
25291
|
+
/******/ }();
|
|
25382
25292
|
/******/
|
|
25383
25293
|
/******/ /* webpack/runtime/hasOwnProperty shorthand */
|
|
25384
|
-
/******/ (
|
|
25385
|
-
/******/ __webpack_require__.o = (obj, prop)
|
|
25386
|
-
/******/ }
|
|
25294
|
+
/******/ !function() {
|
|
25295
|
+
/******/ __webpack_require__.o = function(obj, prop) { return Object.prototype.hasOwnProperty.call(obj, prop); }
|
|
25296
|
+
/******/ }();
|
|
25387
25297
|
/******/
|
|
25388
25298
|
/******/ /* webpack/runtime/make namespace object */
|
|
25389
|
-
/******/ (
|
|
25299
|
+
/******/ !function() {
|
|
25390
25300
|
/******/ // define __esModule on exports
|
|
25391
|
-
/******/ __webpack_require__.r = (exports)
|
|
25301
|
+
/******/ __webpack_require__.r = function(exports) {
|
|
25392
25302
|
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
|
25393
25303
|
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
|
25394
25304
|
/******/ }
|
|
25395
25305
|
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
|
25396
25306
|
/******/ };
|
|
25397
|
-
/******/ }
|
|
25307
|
+
/******/ }();
|
|
25398
25308
|
/******/
|
|
25399
25309
|
/************************************************************************/
|
|
25400
25310
|
var __webpack_exports__ = {};
|
|
25401
25311
|
// This entry need to be wrapped in an IIFE because it need to be in strict mode.
|
|
25402
|
-
(
|
|
25312
|
+
!function() {
|
|
25403
25313
|
"use strict";
|
|
25404
25314
|
/*!**********************************!*\
|
|
25405
25315
|
!*** ./contentful-management.ts ***!
|
|
25406
25316
|
\**********************************/
|
|
25407
25317
|
__webpack_require__.r(__webpack_exports__);
|
|
25408
25318
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
25409
|
-
/* harmony export */ RestAdapter: ()
|
|
25410
|
-
/* harmony export */ ScheduledActionReferenceFilters: ()
|
|
25411
|
-
/* harmony export */ asIterator: ()
|
|
25412
|
-
/* harmony export */ createClient: ()
|
|
25413
|
-
/* harmony export */ editorInterfaceDefaults: ()
|
|
25414
|
-
/* harmony export */ isDraft: ()
|
|
25415
|
-
/* harmony export */ isPublished: ()
|
|
25416
|
-
/* harmony export */ isUpdated: ()
|
|
25319
|
+
/* harmony export */ RestAdapter: function() { return /* reexport safe */ _adapters_REST_rest_adapter__WEBPACK_IMPORTED_MODULE_7__.RestAdapter; },
|
|
25320
|
+
/* harmony export */ ScheduledActionReferenceFilters: function() { return /* reexport safe */ _export_types__WEBPACK_IMPORTED_MODULE_8__.ScheduledActionReferenceFilters; },
|
|
25321
|
+
/* harmony export */ asIterator: function() { return /* reexport safe */ _plain_as_iterator__WEBPACK_IMPORTED_MODULE_5__.asIterator; },
|
|
25322
|
+
/* harmony export */ createClient: function() { return /* binding */ createClient; },
|
|
25323
|
+
/* harmony export */ editorInterfaceDefaults: function() { return /* reexport module object */ _constants_editor_interface_defaults__WEBPACK_IMPORTED_MODULE_4__; },
|
|
25324
|
+
/* harmony export */ isDraft: function() { return /* reexport safe */ _plain_checks__WEBPACK_IMPORTED_MODULE_6__.isDraft; },
|
|
25325
|
+
/* harmony export */ isPublished: function() { return /* reexport safe */ _plain_checks__WEBPACK_IMPORTED_MODULE_6__.isPublished; },
|
|
25326
|
+
/* harmony export */ isUpdated: function() { return /* reexport safe */ _plain_checks__WEBPACK_IMPORTED_MODULE_6__.isUpdated; }
|
|
25417
25327
|
/* harmony export */ });
|
|
25418
25328
|
/* 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");
|
|
25419
25329
|
/* harmony import */ var _create_adapter__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./create-adapter */ "./create-adapter.ts");
|
|
@@ -25472,7 +25382,7 @@ function createClient(params) {
|
|
|
25472
25382
|
var opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
|
|
25473
25383
|
var sdkMain = opts.type === 'plain' ? 'contentful-management-plain.js' : 'contentful-management.js';
|
|
25474
25384
|
var userAgent = (0,contentful_sdk_core__WEBPACK_IMPORTED_MODULE_0__.getUserAgentHeader)( // @ts-expect-error
|
|
25475
|
-
"".concat(sdkMain, "/").concat("11.
|
|
25385
|
+
"".concat(sdkMain, "/").concat("11.20.0"), params.application, params.integration, params.feature);
|
|
25476
25386
|
var adapter = (0,_create_adapter__WEBPACK_IMPORTED_MODULE_1__.createAdapter)(_objectSpread(_objectSpread({}, params), {}, {
|
|
25477
25387
|
userAgent: userAgent
|
|
25478
25388
|
}));
|
|
@@ -25491,8 +25401,7 @@ function createClient(params) {
|
|
|
25491
25401
|
return (0,_create_contentful_api__WEBPACK_IMPORTED_MODULE_2__["default"])(makeRequest);
|
|
25492
25402
|
}
|
|
25493
25403
|
}
|
|
25494
|
-
}
|
|
25495
|
-
|
|
25404
|
+
}();
|
|
25496
25405
|
/******/ return __webpack_exports__;
|
|
25497
25406
|
/******/ })()
|
|
25498
25407
|
;
|