@shapediver/sdk.platform-api-sdk-v1 2.14.1 → 2.14.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bundle.js +184 -183
- package/dist/bundle.node.js +234 -233
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/package.json +2 -2
package/dist/bundle.js
CHANGED
|
@@ -138,9 +138,10 @@ __exportStar(__webpack_require__(79), exports);
|
|
|
138
138
|
__exportStar(__webpack_require__(80), exports);
|
|
139
139
|
__exportStar(__webpack_require__(81), exports);
|
|
140
140
|
__exportStar(__webpack_require__(82), exports);
|
|
141
|
+
__exportStar(__webpack_require__(83), exports);
|
|
141
142
|
__exportStar(__webpack_require__(63), exports);
|
|
142
143
|
__exportStar(__webpack_require__(59), exports);
|
|
143
|
-
__exportStar(__webpack_require__(
|
|
144
|
+
__exportStar(__webpack_require__(84), exports);
|
|
144
145
|
__exportStar(__webpack_require__(123), exports);
|
|
145
146
|
|
|
146
147
|
|
|
@@ -3088,6 +3089,70 @@ exports.SdPlatformNotificationApi = SdPlatformNotificationApi;
|
|
|
3088
3089
|
|
|
3089
3090
|
"use strict";
|
|
3090
3091
|
|
|
3092
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3093
|
+
exports.SdPlatformOpenIDProviderApi = exports.SdPlatformOpenIDProviderEmbeddableFields = void 0;
|
|
3094
|
+
const SdPlatformRequestId_1 = __webpack_require__(57);
|
|
3095
|
+
const ResourcesApi_1 = __webpack_require__(62);
|
|
3096
|
+
var SdPlatformOpenIDProviderEmbeddableFields;
|
|
3097
|
+
(function (SdPlatformOpenIDProviderEmbeddableFields) {
|
|
3098
|
+
SdPlatformOpenIDProviderEmbeddableFields["Organization"] = "organization";
|
|
3099
|
+
})(SdPlatformOpenIDProviderEmbeddableFields = exports.SdPlatformOpenIDProviderEmbeddableFields || (exports.SdPlatformOpenIDProviderEmbeddableFields = {}));
|
|
3100
|
+
/**
|
|
3101
|
+
* Operations for OpenID providers.
|
|
3102
|
+
*/
|
|
3103
|
+
class SdPlatformOpenIDProviderApi extends ResourcesApi_1.ResourcesApi {
|
|
3104
|
+
get __resourcePath() {
|
|
3105
|
+
return "openid_providers";
|
|
3106
|
+
}
|
|
3107
|
+
/**
|
|
3108
|
+
* Get OpenID Provider by id.
|
|
3109
|
+
* @param id - openid provider id.
|
|
3110
|
+
* @param embed - embeddable resources.
|
|
3111
|
+
*/
|
|
3112
|
+
get(id, embed) {
|
|
3113
|
+
return super.__get(SdPlatformRequestId_1.RequestId.OpenIDProviderGet, id, embed);
|
|
3114
|
+
}
|
|
3115
|
+
/**
|
|
3116
|
+
* Query OpenID providers.
|
|
3117
|
+
* @param body
|
|
3118
|
+
*/
|
|
3119
|
+
query(body = {}) {
|
|
3120
|
+
return super.__query(SdPlatformRequestId_1.RequestId.OpenIDProviderQuery, body);
|
|
3121
|
+
}
|
|
3122
|
+
/**
|
|
3123
|
+
* Create an OpenID provider.
|
|
3124
|
+
* @param body
|
|
3125
|
+
* @returns
|
|
3126
|
+
*/
|
|
3127
|
+
create(body) {
|
|
3128
|
+
return super.__post(SdPlatformRequestId_1.RequestId.OpenIDProviderCreate, body);
|
|
3129
|
+
}
|
|
3130
|
+
/**
|
|
3131
|
+
* Patch an OpenID provider.
|
|
3132
|
+
* @param id - id of the OpenID provider
|
|
3133
|
+
* @param body - properties to patch
|
|
3134
|
+
*/
|
|
3135
|
+
patch(id, body) {
|
|
3136
|
+
return super.__patch(SdPlatformRequestId_1.RequestId.OpenIDProviderPatch, id, body);
|
|
3137
|
+
}
|
|
3138
|
+
/**
|
|
3139
|
+
* Delete an OpenID provider..
|
|
3140
|
+
* @param id
|
|
3141
|
+
* @returns
|
|
3142
|
+
*/
|
|
3143
|
+
delete(id) {
|
|
3144
|
+
return super.__delete(SdPlatformRequestId_1.RequestId.OpenIDPRoviderDelete, id);
|
|
3145
|
+
}
|
|
3146
|
+
}
|
|
3147
|
+
exports.SdPlatformOpenIDProviderApi = SdPlatformOpenIDProviderApi;
|
|
3148
|
+
|
|
3149
|
+
|
|
3150
|
+
/***/ }),
|
|
3151
|
+
/* 76 */
|
|
3152
|
+
/***/ (function(module, exports, __webpack_require__) {
|
|
3153
|
+
|
|
3154
|
+
"use strict";
|
|
3155
|
+
|
|
3091
3156
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3092
3157
|
exports.SdPlatformOrganizationApi = exports.SdPlatformOrganizationEmbeddableFields = void 0;
|
|
3093
3158
|
const SdPlatformRequestId_1 = __webpack_require__(57);
|
|
@@ -3218,7 +3283,7 @@ exports.SdPlatformOrganizationApi = SdPlatformOrganizationApi;
|
|
|
3218
3283
|
|
|
3219
3284
|
|
|
3220
3285
|
/***/ }),
|
|
3221
|
-
/*
|
|
3286
|
+
/* 77 */
|
|
3222
3287
|
/***/ (function(module, exports, __webpack_require__) {
|
|
3223
3288
|
|
|
3224
3289
|
"use strict";
|
|
@@ -3280,7 +3345,7 @@ exports.SdPlatformPolicyApi = SdPlatformPolicyApi;
|
|
|
3280
3345
|
|
|
3281
3346
|
|
|
3282
3347
|
/***/ }),
|
|
3283
|
-
/*
|
|
3348
|
+
/* 78 */
|
|
3284
3349
|
/***/ (function(module, exports, __webpack_require__) {
|
|
3285
3350
|
|
|
3286
3351
|
"use strict";
|
|
@@ -3355,7 +3420,7 @@ exports.SdPlatformSavedStateApi = SdPlatformSavedStateApi;
|
|
|
3355
3420
|
|
|
3356
3421
|
|
|
3357
3422
|
/***/ }),
|
|
3358
|
-
/*
|
|
3423
|
+
/* 79 */
|
|
3359
3424
|
/***/ (function(module, exports, __webpack_require__) {
|
|
3360
3425
|
|
|
3361
3426
|
"use strict";
|
|
@@ -3449,7 +3514,7 @@ exports.SdPlatformSavedStateSharingApi = SdPlatformSavedStateSharingApi;
|
|
|
3449
3514
|
|
|
3450
3515
|
|
|
3451
3516
|
/***/ }),
|
|
3452
|
-
/*
|
|
3517
|
+
/* 80 */
|
|
3453
3518
|
/***/ (function(module, exports, __webpack_require__) {
|
|
3454
3519
|
|
|
3455
3520
|
"use strict";
|
|
@@ -3490,7 +3555,7 @@ exports.SdPlatformTagApi = SdPlatformTagApi;
|
|
|
3490
3555
|
|
|
3491
3556
|
|
|
3492
3557
|
/***/ }),
|
|
3493
|
-
/*
|
|
3558
|
+
/* 81 */
|
|
3494
3559
|
/***/ (function(module, exports, __webpack_require__) {
|
|
3495
3560
|
|
|
3496
3561
|
"use strict";
|
|
@@ -3519,7 +3584,7 @@ exports.SdPlatformUserAnalyticsApi = SdPlatformUserAnalyticsApi;
|
|
|
3519
3584
|
|
|
3520
3585
|
|
|
3521
3586
|
/***/ }),
|
|
3522
|
-
/*
|
|
3587
|
+
/* 82 */
|
|
3523
3588
|
/***/ (function(module, exports, __webpack_require__) {
|
|
3524
3589
|
|
|
3525
3590
|
"use strict";
|
|
@@ -3643,7 +3708,7 @@ exports.SdPlatformUserApi = SdPlatformUserApi;
|
|
|
3643
3708
|
|
|
3644
3709
|
|
|
3645
3710
|
/***/ }),
|
|
3646
|
-
/*
|
|
3711
|
+
/* 83 */
|
|
3647
3712
|
/***/ (function(module, exports, __webpack_require__) {
|
|
3648
3713
|
|
|
3649
3714
|
"use strict";
|
|
@@ -3716,22 +3781,22 @@ exports.SdPlatformWebhookApi = SdPlatformWebhookApi;
|
|
|
3716
3781
|
|
|
3717
3782
|
|
|
3718
3783
|
/***/ }),
|
|
3719
|
-
/*
|
|
3784
|
+
/* 84 */
|
|
3720
3785
|
/***/ (function(module, exports, __webpack_require__) {
|
|
3721
3786
|
|
|
3722
3787
|
"use strict";
|
|
3723
3788
|
|
|
3724
3789
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3725
3790
|
exports.SdPlatformSdk = void 0;
|
|
3726
|
-
const SdPlatformSdkApi_1 = __webpack_require__(
|
|
3727
|
-
const SdPlatformSdkConfig_1 = __webpack_require__(
|
|
3791
|
+
const SdPlatformSdkApi_1 = __webpack_require__(85);
|
|
3792
|
+
const SdPlatformSdkConfig_1 = __webpack_require__(118);
|
|
3728
3793
|
const SdPlatformAuthServiceApi_1 = __webpack_require__(58);
|
|
3729
3794
|
const SdPlatformSdkContext_1 = __webpack_require__(63);
|
|
3730
3795
|
const SdPlatformApiTokenApi_1 = __webpack_require__(61);
|
|
3731
3796
|
const SdPlatformBackendSystemApi_1 = __webpack_require__(64);
|
|
3732
3797
|
const SdPlatformBookmarkApi_1 = __webpack_require__(65);
|
|
3733
3798
|
const SdPlatformChargebeeApi_1 = __webpack_require__(66);
|
|
3734
|
-
const SdPlatformDocumentApi_1 = __webpack_require__(
|
|
3799
|
+
const SdPlatformDocumentApi_1 = __webpack_require__(119);
|
|
3735
3800
|
const SdPlatformDomainApi_1 = __webpack_require__(67);
|
|
3736
3801
|
const SdPlatformHttpLogApi_1 = __webpack_require__(68);
|
|
3737
3802
|
const SdPlatformImageApi_1 = __webpack_require__(69);
|
|
@@ -3740,16 +3805,16 @@ const SdPlatformModelSharingApi_1 = __webpack_require__(71);
|
|
|
3740
3805
|
const SdPlatformModelTokenApi_1 = __webpack_require__(72);
|
|
3741
3806
|
const SdPlatformModelTransferApi_1 = __webpack_require__(73);
|
|
3742
3807
|
const SdPlatformNotificationApi_1 = __webpack_require__(74);
|
|
3743
|
-
const SdPlatformOrganizationApi_1 = __webpack_require__(
|
|
3744
|
-
const SdPlatformPolicyApi_1 = __webpack_require__(
|
|
3745
|
-
const SdPlatformSavedStateApi_1 = __webpack_require__(
|
|
3746
|
-
const SdPlatformSavedStateSharingApi_1 = __webpack_require__(
|
|
3747
|
-
const SdPlatformTagApi_1 = __webpack_require__(
|
|
3748
|
-
const SdPlatformUserAnalyticsApi_1 = __webpack_require__(
|
|
3749
|
-
const SdPlatformUserApi_1 = __webpack_require__(
|
|
3750
|
-
const SdPlatformWebhookApi_1 = __webpack_require__(
|
|
3751
|
-
const SdPlatformOrganizationAnalyticsApi_1 = __webpack_require__(
|
|
3752
|
-
const SdPlatformOpenIDProviderApi_1 = __webpack_require__(
|
|
3808
|
+
const SdPlatformOrganizationApi_1 = __webpack_require__(76);
|
|
3809
|
+
const SdPlatformPolicyApi_1 = __webpack_require__(77);
|
|
3810
|
+
const SdPlatformSavedStateApi_1 = __webpack_require__(78);
|
|
3811
|
+
const SdPlatformSavedStateSharingApi_1 = __webpack_require__(79);
|
|
3812
|
+
const SdPlatformTagApi_1 = __webpack_require__(80);
|
|
3813
|
+
const SdPlatformUserAnalyticsApi_1 = __webpack_require__(81);
|
|
3814
|
+
const SdPlatformUserApi_1 = __webpack_require__(82);
|
|
3815
|
+
const SdPlatformWebhookApi_1 = __webpack_require__(83);
|
|
3816
|
+
const SdPlatformOrganizationAnalyticsApi_1 = __webpack_require__(120);
|
|
3817
|
+
const SdPlatformOpenIDProviderApi_1 = __webpack_require__(75);
|
|
3753
3818
|
const SdPlatformApiClientsApi_1 = __webpack_require__(121);
|
|
3754
3819
|
const SdPlatformJobLogApi_1 = __webpack_require__(122);
|
|
3755
3820
|
class SdPlatformSdk {
|
|
@@ -3979,7 +4044,7 @@ exports.SdPlatformSdk = SdPlatformSdk;
|
|
|
3979
4044
|
|
|
3980
4045
|
|
|
3981
4046
|
/***/ }),
|
|
3982
|
-
/*
|
|
4047
|
+
/* 85 */
|
|
3983
4048
|
/***/ (function(module, exports, __webpack_require__) {
|
|
3984
4049
|
|
|
3985
4050
|
"use strict";
|
|
@@ -3998,8 +4063,8 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3998
4063
|
};
|
|
3999
4064
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4000
4065
|
exports.SdPlatformSdkApi = void 0;
|
|
4001
|
-
const SdPlatformSdkErrorMapping_1 = __webpack_require__(
|
|
4002
|
-
const axios_1 = __importDefault(__webpack_require__(
|
|
4066
|
+
const SdPlatformSdkErrorMapping_1 = __webpack_require__(86);
|
|
4067
|
+
const axios_1 = __importDefault(__webpack_require__(87));
|
|
4003
4068
|
var Method;
|
|
4004
4069
|
(function (Method) {
|
|
4005
4070
|
Method["GET"] = "GET";
|
|
@@ -4158,7 +4223,7 @@ exports.SdPlatformSdkApi = SdPlatformSdkApi;
|
|
|
4158
4223
|
|
|
4159
4224
|
|
|
4160
4225
|
/***/ }),
|
|
4161
|
-
/*
|
|
4226
|
+
/* 86 */
|
|
4162
4227
|
/***/ (function(module, exports, __webpack_require__) {
|
|
4163
4228
|
|
|
4164
4229
|
"use strict";
|
|
@@ -4168,7 +4233,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
4168
4233
|
};
|
|
4169
4234
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4170
4235
|
exports.mapToApiError = void 0;
|
|
4171
|
-
const axios_1 = __importDefault(__webpack_require__(
|
|
4236
|
+
const axios_1 = __importDefault(__webpack_require__(87));
|
|
4172
4237
|
const SdPlatformErrors_1 = __webpack_require__(59);
|
|
4173
4238
|
function isOAuthResponseError(response) {
|
|
4174
4239
|
return ("error" in response) && ("error_description" in response);
|
|
@@ -4248,23 +4313,23 @@ exports.mapToApiError = mapToApiError;
|
|
|
4248
4313
|
|
|
4249
4314
|
|
|
4250
4315
|
/***/ }),
|
|
4251
|
-
/*
|
|
4316
|
+
/* 87 */
|
|
4252
4317
|
/***/ (function(module, exports, __webpack_require__) {
|
|
4253
4318
|
|
|
4254
|
-
module.exports = __webpack_require__(
|
|
4319
|
+
module.exports = __webpack_require__(88);
|
|
4255
4320
|
|
|
4256
4321
|
/***/ }),
|
|
4257
|
-
/*
|
|
4322
|
+
/* 88 */
|
|
4258
4323
|
/***/ (function(module, exports, __webpack_require__) {
|
|
4259
4324
|
|
|
4260
4325
|
"use strict";
|
|
4261
4326
|
|
|
4262
4327
|
|
|
4263
|
-
var utils = __webpack_require__(
|
|
4264
|
-
var bind = __webpack_require__(
|
|
4265
|
-
var Axios = __webpack_require__(
|
|
4266
|
-
var mergeConfig = __webpack_require__(
|
|
4267
|
-
var defaults = __webpack_require__(
|
|
4328
|
+
var utils = __webpack_require__(89);
|
|
4329
|
+
var bind = __webpack_require__(90);
|
|
4330
|
+
var Axios = __webpack_require__(91);
|
|
4331
|
+
var mergeConfig = __webpack_require__(112);
|
|
4332
|
+
var defaults = __webpack_require__(96);
|
|
4268
4333
|
|
|
4269
4334
|
/**
|
|
4270
4335
|
* Create an instance of Axios
|
|
@@ -4297,19 +4362,19 @@ var axios = createInstance(defaults);
|
|
|
4297
4362
|
axios.Axios = Axios;
|
|
4298
4363
|
|
|
4299
4364
|
// Expose Cancel & CancelToken
|
|
4300
|
-
axios.Cancel = __webpack_require__(
|
|
4301
|
-
axios.CancelToken = __webpack_require__(
|
|
4302
|
-
axios.isCancel = __webpack_require__(
|
|
4303
|
-
axios.VERSION = __webpack_require__(
|
|
4365
|
+
axios.Cancel = __webpack_require__(110);
|
|
4366
|
+
axios.CancelToken = __webpack_require__(115);
|
|
4367
|
+
axios.isCancel = __webpack_require__(111);
|
|
4368
|
+
axios.VERSION = __webpack_require__(114).version;
|
|
4304
4369
|
|
|
4305
4370
|
// Expose all/spread
|
|
4306
4371
|
axios.all = function all(promises) {
|
|
4307
4372
|
return Promise.all(promises);
|
|
4308
4373
|
};
|
|
4309
|
-
axios.spread = __webpack_require__(
|
|
4374
|
+
axios.spread = __webpack_require__(116);
|
|
4310
4375
|
|
|
4311
4376
|
// Expose isAxiosError
|
|
4312
|
-
axios.isAxiosError = __webpack_require__(
|
|
4377
|
+
axios.isAxiosError = __webpack_require__(117);
|
|
4313
4378
|
|
|
4314
4379
|
module.exports = axios;
|
|
4315
4380
|
|
|
@@ -4318,13 +4383,13 @@ module.exports.default = axios;
|
|
|
4318
4383
|
|
|
4319
4384
|
|
|
4320
4385
|
/***/ }),
|
|
4321
|
-
/*
|
|
4386
|
+
/* 89 */
|
|
4322
4387
|
/***/ (function(module, exports, __webpack_require__) {
|
|
4323
4388
|
|
|
4324
4389
|
"use strict";
|
|
4325
4390
|
|
|
4326
4391
|
|
|
4327
|
-
var bind = __webpack_require__(
|
|
4392
|
+
var bind = __webpack_require__(90);
|
|
4328
4393
|
|
|
4329
4394
|
// utils is a library of generic helper functions non-specific to axios
|
|
4330
4395
|
|
|
@@ -4674,7 +4739,7 @@ module.exports = {
|
|
|
4674
4739
|
|
|
4675
4740
|
|
|
4676
4741
|
/***/ }),
|
|
4677
|
-
/*
|
|
4742
|
+
/* 90 */
|
|
4678
4743
|
/***/ (function(module, exports, __webpack_require__) {
|
|
4679
4744
|
|
|
4680
4745
|
"use strict";
|
|
@@ -4692,18 +4757,18 @@ module.exports = function bind(fn, thisArg) {
|
|
|
4692
4757
|
|
|
4693
4758
|
|
|
4694
4759
|
/***/ }),
|
|
4695
|
-
/*
|
|
4760
|
+
/* 91 */
|
|
4696
4761
|
/***/ (function(module, exports, __webpack_require__) {
|
|
4697
4762
|
|
|
4698
4763
|
"use strict";
|
|
4699
4764
|
|
|
4700
4765
|
|
|
4701
|
-
var utils = __webpack_require__(
|
|
4702
|
-
var buildURL = __webpack_require__(
|
|
4703
|
-
var InterceptorManager = __webpack_require__(
|
|
4704
|
-
var dispatchRequest = __webpack_require__(
|
|
4705
|
-
var mergeConfig = __webpack_require__(
|
|
4706
|
-
var validator = __webpack_require__(
|
|
4766
|
+
var utils = __webpack_require__(89);
|
|
4767
|
+
var buildURL = __webpack_require__(92);
|
|
4768
|
+
var InterceptorManager = __webpack_require__(93);
|
|
4769
|
+
var dispatchRequest = __webpack_require__(94);
|
|
4770
|
+
var mergeConfig = __webpack_require__(112);
|
|
4771
|
+
var validator = __webpack_require__(113);
|
|
4707
4772
|
|
|
4708
4773
|
var validators = validator.validators;
|
|
4709
4774
|
/**
|
|
@@ -4847,13 +4912,13 @@ module.exports = Axios;
|
|
|
4847
4912
|
|
|
4848
4913
|
|
|
4849
4914
|
/***/ }),
|
|
4850
|
-
/*
|
|
4915
|
+
/* 92 */
|
|
4851
4916
|
/***/ (function(module, exports, __webpack_require__) {
|
|
4852
4917
|
|
|
4853
4918
|
"use strict";
|
|
4854
4919
|
|
|
4855
4920
|
|
|
4856
|
-
var utils = __webpack_require__(
|
|
4921
|
+
var utils = __webpack_require__(89);
|
|
4857
4922
|
|
|
4858
4923
|
function encode(val) {
|
|
4859
4924
|
return encodeURIComponent(val).
|
|
@@ -4924,13 +4989,13 @@ module.exports = function buildURL(url, params, paramsSerializer) {
|
|
|
4924
4989
|
|
|
4925
4990
|
|
|
4926
4991
|
/***/ }),
|
|
4927
|
-
/*
|
|
4992
|
+
/* 93 */
|
|
4928
4993
|
/***/ (function(module, exports, __webpack_require__) {
|
|
4929
4994
|
|
|
4930
4995
|
"use strict";
|
|
4931
4996
|
|
|
4932
4997
|
|
|
4933
|
-
var utils = __webpack_require__(
|
|
4998
|
+
var utils = __webpack_require__(89);
|
|
4934
4999
|
|
|
4935
5000
|
function InterceptorManager() {
|
|
4936
5001
|
this.handlers = [];
|
|
@@ -4985,17 +5050,17 @@ module.exports = InterceptorManager;
|
|
|
4985
5050
|
|
|
4986
5051
|
|
|
4987
5052
|
/***/ }),
|
|
4988
|
-
/*
|
|
5053
|
+
/* 94 */
|
|
4989
5054
|
/***/ (function(module, exports, __webpack_require__) {
|
|
4990
5055
|
|
|
4991
5056
|
"use strict";
|
|
4992
5057
|
|
|
4993
5058
|
|
|
4994
|
-
var utils = __webpack_require__(
|
|
4995
|
-
var transformData = __webpack_require__(
|
|
4996
|
-
var isCancel = __webpack_require__(
|
|
4997
|
-
var defaults = __webpack_require__(
|
|
4998
|
-
var Cancel = __webpack_require__(
|
|
5059
|
+
var utils = __webpack_require__(89);
|
|
5060
|
+
var transformData = __webpack_require__(95);
|
|
5061
|
+
var isCancel = __webpack_require__(111);
|
|
5062
|
+
var defaults = __webpack_require__(96);
|
|
5063
|
+
var Cancel = __webpack_require__(110);
|
|
4999
5064
|
|
|
5000
5065
|
/**
|
|
5001
5066
|
* Throws a `Cancel` if cancellation has been requested.
|
|
@@ -5079,14 +5144,14 @@ module.exports = function dispatchRequest(config) {
|
|
|
5079
5144
|
|
|
5080
5145
|
|
|
5081
5146
|
/***/ }),
|
|
5082
|
-
/*
|
|
5147
|
+
/* 95 */
|
|
5083
5148
|
/***/ (function(module, exports, __webpack_require__) {
|
|
5084
5149
|
|
|
5085
5150
|
"use strict";
|
|
5086
5151
|
|
|
5087
5152
|
|
|
5088
|
-
var utils = __webpack_require__(
|
|
5089
|
-
var defaults = __webpack_require__(
|
|
5153
|
+
var utils = __webpack_require__(89);
|
|
5154
|
+
var defaults = __webpack_require__(96);
|
|
5090
5155
|
|
|
5091
5156
|
/**
|
|
5092
5157
|
* Transform the data for a request or a response
|
|
@@ -5108,16 +5173,16 @@ module.exports = function transformData(data, headers, fns) {
|
|
|
5108
5173
|
|
|
5109
5174
|
|
|
5110
5175
|
/***/ }),
|
|
5111
|
-
/*
|
|
5176
|
+
/* 96 */
|
|
5112
5177
|
/***/ (function(module, exports, __webpack_require__) {
|
|
5113
5178
|
|
|
5114
5179
|
"use strict";
|
|
5115
5180
|
/* WEBPACK VAR INJECTION */(function(process) {
|
|
5116
5181
|
|
|
5117
|
-
var utils = __webpack_require__(
|
|
5118
|
-
var normalizeHeaderName = __webpack_require__(
|
|
5119
|
-
var enhanceError = __webpack_require__(
|
|
5120
|
-
var transitionalDefaults = __webpack_require__(
|
|
5182
|
+
var utils = __webpack_require__(89);
|
|
5183
|
+
var normalizeHeaderName = __webpack_require__(98);
|
|
5184
|
+
var enhanceError = __webpack_require__(99);
|
|
5185
|
+
var transitionalDefaults = __webpack_require__(100);
|
|
5121
5186
|
|
|
5122
5187
|
var DEFAULT_CONTENT_TYPE = {
|
|
5123
5188
|
'Content-Type': 'application/x-www-form-urlencoded'
|
|
@@ -5133,10 +5198,10 @@ function getDefaultAdapter() {
|
|
|
5133
5198
|
var adapter;
|
|
5134
5199
|
if (typeof XMLHttpRequest !== 'undefined') {
|
|
5135
5200
|
// For browsers use XHR adapter
|
|
5136
|
-
adapter = __webpack_require__(
|
|
5201
|
+
adapter = __webpack_require__(101);
|
|
5137
5202
|
} else if (typeof process !== 'undefined' && Object.prototype.toString.call(process) === '[object process]') {
|
|
5138
5203
|
// For node use HTTP adapter
|
|
5139
|
-
adapter = __webpack_require__(
|
|
5204
|
+
adapter = __webpack_require__(101);
|
|
5140
5205
|
}
|
|
5141
5206
|
return adapter;
|
|
5142
5207
|
}
|
|
@@ -5244,10 +5309,10 @@ utils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {
|
|
|
5244
5309
|
|
|
5245
5310
|
module.exports = defaults;
|
|
5246
5311
|
|
|
5247
|
-
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(
|
|
5312
|
+
/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(97)))
|
|
5248
5313
|
|
|
5249
5314
|
/***/ }),
|
|
5250
|
-
/*
|
|
5315
|
+
/* 97 */
|
|
5251
5316
|
/***/ (function(module, exports) {
|
|
5252
5317
|
|
|
5253
5318
|
// shim for using process in browser
|
|
@@ -5437,13 +5502,13 @@ process.umask = function() { return 0; };
|
|
|
5437
5502
|
|
|
5438
5503
|
|
|
5439
5504
|
/***/ }),
|
|
5440
|
-
/*
|
|
5505
|
+
/* 98 */
|
|
5441
5506
|
/***/ (function(module, exports, __webpack_require__) {
|
|
5442
5507
|
|
|
5443
5508
|
"use strict";
|
|
5444
5509
|
|
|
5445
5510
|
|
|
5446
|
-
var utils = __webpack_require__(
|
|
5511
|
+
var utils = __webpack_require__(89);
|
|
5447
5512
|
|
|
5448
5513
|
module.exports = function normalizeHeaderName(headers, normalizedName) {
|
|
5449
5514
|
utils.forEach(headers, function processHeader(value, name) {
|
|
@@ -5456,7 +5521,7 @@ module.exports = function normalizeHeaderName(headers, normalizedName) {
|
|
|
5456
5521
|
|
|
5457
5522
|
|
|
5458
5523
|
/***/ }),
|
|
5459
|
-
/*
|
|
5524
|
+
/* 99 */
|
|
5460
5525
|
/***/ (function(module, exports, __webpack_require__) {
|
|
5461
5526
|
|
|
5462
5527
|
"use strict";
|
|
@@ -5506,7 +5571,7 @@ module.exports = function enhanceError(error, config, code, request, response) {
|
|
|
5506
5571
|
|
|
5507
5572
|
|
|
5508
5573
|
/***/ }),
|
|
5509
|
-
/*
|
|
5574
|
+
/* 100 */
|
|
5510
5575
|
/***/ (function(module, exports, __webpack_require__) {
|
|
5511
5576
|
|
|
5512
5577
|
"use strict";
|
|
@@ -5520,22 +5585,22 @@ module.exports = {
|
|
|
5520
5585
|
|
|
5521
5586
|
|
|
5522
5587
|
/***/ }),
|
|
5523
|
-
/*
|
|
5588
|
+
/* 101 */
|
|
5524
5589
|
/***/ (function(module, exports, __webpack_require__) {
|
|
5525
5590
|
|
|
5526
5591
|
"use strict";
|
|
5527
5592
|
|
|
5528
5593
|
|
|
5529
|
-
var utils = __webpack_require__(
|
|
5530
|
-
var settle = __webpack_require__(
|
|
5531
|
-
var cookies = __webpack_require__(
|
|
5532
|
-
var buildURL = __webpack_require__(
|
|
5533
|
-
var buildFullPath = __webpack_require__(
|
|
5534
|
-
var parseHeaders = __webpack_require__(
|
|
5535
|
-
var isURLSameOrigin = __webpack_require__(
|
|
5536
|
-
var createError = __webpack_require__(
|
|
5537
|
-
var transitionalDefaults = __webpack_require__(
|
|
5538
|
-
var Cancel = __webpack_require__(
|
|
5594
|
+
var utils = __webpack_require__(89);
|
|
5595
|
+
var settle = __webpack_require__(102);
|
|
5596
|
+
var cookies = __webpack_require__(104);
|
|
5597
|
+
var buildURL = __webpack_require__(92);
|
|
5598
|
+
var buildFullPath = __webpack_require__(105);
|
|
5599
|
+
var parseHeaders = __webpack_require__(108);
|
|
5600
|
+
var isURLSameOrigin = __webpack_require__(109);
|
|
5601
|
+
var createError = __webpack_require__(103);
|
|
5602
|
+
var transitionalDefaults = __webpack_require__(100);
|
|
5603
|
+
var Cancel = __webpack_require__(110);
|
|
5539
5604
|
|
|
5540
5605
|
module.exports = function xhrAdapter(config) {
|
|
5541
5606
|
return new Promise(function dispatchXhrRequest(resolve, reject) {
|
|
@@ -5739,13 +5804,13 @@ module.exports = function xhrAdapter(config) {
|
|
|
5739
5804
|
|
|
5740
5805
|
|
|
5741
5806
|
/***/ }),
|
|
5742
|
-
/*
|
|
5807
|
+
/* 102 */
|
|
5743
5808
|
/***/ (function(module, exports, __webpack_require__) {
|
|
5744
5809
|
|
|
5745
5810
|
"use strict";
|
|
5746
5811
|
|
|
5747
5812
|
|
|
5748
|
-
var createError = __webpack_require__(
|
|
5813
|
+
var createError = __webpack_require__(103);
|
|
5749
5814
|
|
|
5750
5815
|
/**
|
|
5751
5816
|
* Resolve or reject a Promise based on response status.
|
|
@@ -5771,13 +5836,13 @@ module.exports = function settle(resolve, reject, response) {
|
|
|
5771
5836
|
|
|
5772
5837
|
|
|
5773
5838
|
/***/ }),
|
|
5774
|
-
/*
|
|
5839
|
+
/* 103 */
|
|
5775
5840
|
/***/ (function(module, exports, __webpack_require__) {
|
|
5776
5841
|
|
|
5777
5842
|
"use strict";
|
|
5778
5843
|
|
|
5779
5844
|
|
|
5780
|
-
var enhanceError = __webpack_require__(
|
|
5845
|
+
var enhanceError = __webpack_require__(99);
|
|
5781
5846
|
|
|
5782
5847
|
/**
|
|
5783
5848
|
* Create an Error with the specified message, config, error code, request and response.
|
|
@@ -5796,13 +5861,13 @@ module.exports = function createError(message, config, code, request, response)
|
|
|
5796
5861
|
|
|
5797
5862
|
|
|
5798
5863
|
/***/ }),
|
|
5799
|
-
/*
|
|
5864
|
+
/* 104 */
|
|
5800
5865
|
/***/ (function(module, exports, __webpack_require__) {
|
|
5801
5866
|
|
|
5802
5867
|
"use strict";
|
|
5803
5868
|
|
|
5804
5869
|
|
|
5805
|
-
var utils = __webpack_require__(
|
|
5870
|
+
var utils = __webpack_require__(89);
|
|
5806
5871
|
|
|
5807
5872
|
module.exports = (
|
|
5808
5873
|
utils.isStandardBrowserEnv() ?
|
|
@@ -5856,14 +5921,14 @@ module.exports = (
|
|
|
5856
5921
|
|
|
5857
5922
|
|
|
5858
5923
|
/***/ }),
|
|
5859
|
-
/*
|
|
5924
|
+
/* 105 */
|
|
5860
5925
|
/***/ (function(module, exports, __webpack_require__) {
|
|
5861
5926
|
|
|
5862
5927
|
"use strict";
|
|
5863
5928
|
|
|
5864
5929
|
|
|
5865
|
-
var isAbsoluteURL = __webpack_require__(
|
|
5866
|
-
var combineURLs = __webpack_require__(
|
|
5930
|
+
var isAbsoluteURL = __webpack_require__(106);
|
|
5931
|
+
var combineURLs = __webpack_require__(107);
|
|
5867
5932
|
|
|
5868
5933
|
/**
|
|
5869
5934
|
* Creates a new URL by combining the baseURL with the requestedURL,
|
|
@@ -5883,7 +5948,7 @@ module.exports = function buildFullPath(baseURL, requestedURL) {
|
|
|
5883
5948
|
|
|
5884
5949
|
|
|
5885
5950
|
/***/ }),
|
|
5886
|
-
/*
|
|
5951
|
+
/* 106 */
|
|
5887
5952
|
/***/ (function(module, exports, __webpack_require__) {
|
|
5888
5953
|
|
|
5889
5954
|
"use strict";
|
|
@@ -5904,7 +5969,7 @@ module.exports = function isAbsoluteURL(url) {
|
|
|
5904
5969
|
|
|
5905
5970
|
|
|
5906
5971
|
/***/ }),
|
|
5907
|
-
/*
|
|
5972
|
+
/* 107 */
|
|
5908
5973
|
/***/ (function(module, exports, __webpack_require__) {
|
|
5909
5974
|
|
|
5910
5975
|
"use strict";
|
|
@@ -5925,13 +5990,13 @@ module.exports = function combineURLs(baseURL, relativeURL) {
|
|
|
5925
5990
|
|
|
5926
5991
|
|
|
5927
5992
|
/***/ }),
|
|
5928
|
-
/*
|
|
5993
|
+
/* 108 */
|
|
5929
5994
|
/***/ (function(module, exports, __webpack_require__) {
|
|
5930
5995
|
|
|
5931
5996
|
"use strict";
|
|
5932
5997
|
|
|
5933
5998
|
|
|
5934
|
-
var utils = __webpack_require__(
|
|
5999
|
+
var utils = __webpack_require__(89);
|
|
5935
6000
|
|
|
5936
6001
|
// Headers whose duplicates are ignored by node
|
|
5937
6002
|
// c.f. https://nodejs.org/api/http.html#http_message_headers
|
|
@@ -5985,13 +6050,13 @@ module.exports = function parseHeaders(headers) {
|
|
|
5985
6050
|
|
|
5986
6051
|
|
|
5987
6052
|
/***/ }),
|
|
5988
|
-
/*
|
|
6053
|
+
/* 109 */
|
|
5989
6054
|
/***/ (function(module, exports, __webpack_require__) {
|
|
5990
6055
|
|
|
5991
6056
|
"use strict";
|
|
5992
6057
|
|
|
5993
6058
|
|
|
5994
|
-
var utils = __webpack_require__(
|
|
6059
|
+
var utils = __webpack_require__(89);
|
|
5995
6060
|
|
|
5996
6061
|
module.exports = (
|
|
5997
6062
|
utils.isStandardBrowserEnv() ?
|
|
@@ -6060,7 +6125,7 @@ module.exports = (
|
|
|
6060
6125
|
|
|
6061
6126
|
|
|
6062
6127
|
/***/ }),
|
|
6063
|
-
/*
|
|
6128
|
+
/* 110 */
|
|
6064
6129
|
/***/ (function(module, exports, __webpack_require__) {
|
|
6065
6130
|
|
|
6066
6131
|
"use strict";
|
|
@@ -6086,7 +6151,7 @@ module.exports = Cancel;
|
|
|
6086
6151
|
|
|
6087
6152
|
|
|
6088
6153
|
/***/ }),
|
|
6089
|
-
/*
|
|
6154
|
+
/* 111 */
|
|
6090
6155
|
/***/ (function(module, exports, __webpack_require__) {
|
|
6091
6156
|
|
|
6092
6157
|
"use strict";
|
|
@@ -6098,13 +6163,13 @@ module.exports = function isCancel(value) {
|
|
|
6098
6163
|
|
|
6099
6164
|
|
|
6100
6165
|
/***/ }),
|
|
6101
|
-
/*
|
|
6166
|
+
/* 112 */
|
|
6102
6167
|
/***/ (function(module, exports, __webpack_require__) {
|
|
6103
6168
|
|
|
6104
6169
|
"use strict";
|
|
6105
6170
|
|
|
6106
6171
|
|
|
6107
|
-
var utils = __webpack_require__(
|
|
6172
|
+
var utils = __webpack_require__(89);
|
|
6108
6173
|
|
|
6109
6174
|
/**
|
|
6110
6175
|
* Config-specific merge-function which creates a new config-object
|
|
@@ -6204,13 +6269,13 @@ module.exports = function mergeConfig(config1, config2) {
|
|
|
6204
6269
|
|
|
6205
6270
|
|
|
6206
6271
|
/***/ }),
|
|
6207
|
-
/*
|
|
6272
|
+
/* 113 */
|
|
6208
6273
|
/***/ (function(module, exports, __webpack_require__) {
|
|
6209
6274
|
|
|
6210
6275
|
"use strict";
|
|
6211
6276
|
|
|
6212
6277
|
|
|
6213
|
-
var VERSION = __webpack_require__(
|
|
6278
|
+
var VERSION = __webpack_require__(114).version;
|
|
6214
6279
|
|
|
6215
6280
|
var validators = {};
|
|
6216
6281
|
|
|
@@ -6293,7 +6358,7 @@ module.exports = {
|
|
|
6293
6358
|
|
|
6294
6359
|
|
|
6295
6360
|
/***/ }),
|
|
6296
|
-
/*
|
|
6361
|
+
/* 114 */
|
|
6297
6362
|
/***/ (function(module, exports) {
|
|
6298
6363
|
|
|
6299
6364
|
module.exports = {
|
|
@@ -6301,13 +6366,13 @@ module.exports = {
|
|
|
6301
6366
|
};
|
|
6302
6367
|
|
|
6303
6368
|
/***/ }),
|
|
6304
|
-
/*
|
|
6369
|
+
/* 115 */
|
|
6305
6370
|
/***/ (function(module, exports, __webpack_require__) {
|
|
6306
6371
|
|
|
6307
6372
|
"use strict";
|
|
6308
6373
|
|
|
6309
6374
|
|
|
6310
|
-
var Cancel = __webpack_require__(
|
|
6375
|
+
var Cancel = __webpack_require__(110);
|
|
6311
6376
|
|
|
6312
6377
|
/**
|
|
6313
6378
|
* A `CancelToken` is an object that can be used to request cancellation of an operation.
|
|
@@ -6427,7 +6492,7 @@ module.exports = CancelToken;
|
|
|
6427
6492
|
|
|
6428
6493
|
|
|
6429
6494
|
/***/ }),
|
|
6430
|
-
/*
|
|
6495
|
+
/* 116 */
|
|
6431
6496
|
/***/ (function(module, exports, __webpack_require__) {
|
|
6432
6497
|
|
|
6433
6498
|
"use strict";
|
|
@@ -6461,13 +6526,13 @@ module.exports = function spread(callback) {
|
|
|
6461
6526
|
|
|
6462
6527
|
|
|
6463
6528
|
/***/ }),
|
|
6464
|
-
/*
|
|
6529
|
+
/* 117 */
|
|
6465
6530
|
/***/ (function(module, exports, __webpack_require__) {
|
|
6466
6531
|
|
|
6467
6532
|
"use strict";
|
|
6468
6533
|
|
|
6469
6534
|
|
|
6470
|
-
var utils = __webpack_require__(
|
|
6535
|
+
var utils = __webpack_require__(89);
|
|
6471
6536
|
|
|
6472
6537
|
/**
|
|
6473
6538
|
* Determines whether the payload is an error thrown by Axios
|
|
@@ -6481,7 +6546,7 @@ module.exports = function isAxiosError(payload) {
|
|
|
6481
6546
|
|
|
6482
6547
|
|
|
6483
6548
|
/***/ }),
|
|
6484
|
-
/*
|
|
6549
|
+
/* 118 */
|
|
6485
6550
|
/***/ (function(module, exports, __webpack_require__) {
|
|
6486
6551
|
|
|
6487
6552
|
"use strict";
|
|
@@ -6508,7 +6573,7 @@ exports.SdPlatformSdkConfig = SdPlatformSdkConfig;
|
|
|
6508
6573
|
|
|
6509
6574
|
|
|
6510
6575
|
/***/ }),
|
|
6511
|
-
/*
|
|
6576
|
+
/* 119 */
|
|
6512
6577
|
/***/ (function(module, exports, __webpack_require__) {
|
|
6513
6578
|
|
|
6514
6579
|
"use strict";
|
|
@@ -6600,7 +6665,7 @@ exports.SdPlatformDocumentApi = SdPlatformDocumentApi;
|
|
|
6600
6665
|
|
|
6601
6666
|
|
|
6602
6667
|
/***/ }),
|
|
6603
|
-
/*
|
|
6668
|
+
/* 120 */
|
|
6604
6669
|
/***/ (function(module, exports, __webpack_require__) {
|
|
6605
6670
|
|
|
6606
6671
|
"use strict";
|
|
@@ -6628,70 +6693,6 @@ class SdPlatformOrganizationAnalyticsApi extends ResourcesApi_1.ResourcesApi {
|
|
|
6628
6693
|
exports.SdPlatformOrganizationAnalyticsApi = SdPlatformOrganizationAnalyticsApi;
|
|
6629
6694
|
|
|
6630
6695
|
|
|
6631
|
-
/***/ }),
|
|
6632
|
-
/* 120 */
|
|
6633
|
-
/***/ (function(module, exports, __webpack_require__) {
|
|
6634
|
-
|
|
6635
|
-
"use strict";
|
|
6636
|
-
|
|
6637
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6638
|
-
exports.SdPlatformOpenIDProviderApi = exports.SdPlatformOpenIDProviderEmbeddableFields = void 0;
|
|
6639
|
-
const SdPlatformRequestId_1 = __webpack_require__(57);
|
|
6640
|
-
const ResourcesApi_1 = __webpack_require__(62);
|
|
6641
|
-
var SdPlatformOpenIDProviderEmbeddableFields;
|
|
6642
|
-
(function (SdPlatformOpenIDProviderEmbeddableFields) {
|
|
6643
|
-
SdPlatformOpenIDProviderEmbeddableFields["Organization"] = "organization";
|
|
6644
|
-
})(SdPlatformOpenIDProviderEmbeddableFields = exports.SdPlatformOpenIDProviderEmbeddableFields || (exports.SdPlatformOpenIDProviderEmbeddableFields = {}));
|
|
6645
|
-
/**
|
|
6646
|
-
* Operations for OpenID providers.
|
|
6647
|
-
*/
|
|
6648
|
-
class SdPlatformOpenIDProviderApi extends ResourcesApi_1.ResourcesApi {
|
|
6649
|
-
get __resourcePath() {
|
|
6650
|
-
return "openid_providers";
|
|
6651
|
-
}
|
|
6652
|
-
/**
|
|
6653
|
-
* Get OpenID Provider by id.
|
|
6654
|
-
* @param id - openid provider id.
|
|
6655
|
-
* @param embed - embeddable resources.
|
|
6656
|
-
*/
|
|
6657
|
-
get(id, embed) {
|
|
6658
|
-
return super.__get(SdPlatformRequestId_1.RequestId.OpenIDProviderGet, id, embed);
|
|
6659
|
-
}
|
|
6660
|
-
/**
|
|
6661
|
-
* Query OpenID providers.
|
|
6662
|
-
* @param body
|
|
6663
|
-
*/
|
|
6664
|
-
query(body = {}) {
|
|
6665
|
-
return super.__query(SdPlatformRequestId_1.RequestId.OpenIDProviderQuery, body);
|
|
6666
|
-
}
|
|
6667
|
-
/**
|
|
6668
|
-
* Create an OpenID provider.
|
|
6669
|
-
* @param body
|
|
6670
|
-
* @returns
|
|
6671
|
-
*/
|
|
6672
|
-
create(body) {
|
|
6673
|
-
return super.__post(SdPlatformRequestId_1.RequestId.OpenIDProviderCreate, body);
|
|
6674
|
-
}
|
|
6675
|
-
/**
|
|
6676
|
-
* Patch an OpenID provider.
|
|
6677
|
-
* @param id - id of the OpenID provider
|
|
6678
|
-
* @param body - properties to patch
|
|
6679
|
-
*/
|
|
6680
|
-
patch(id, body) {
|
|
6681
|
-
return super.__patch(SdPlatformRequestId_1.RequestId.OpenIDProviderPatch, id, body);
|
|
6682
|
-
}
|
|
6683
|
-
/**
|
|
6684
|
-
* Delete an OpenID provider..
|
|
6685
|
-
* @param id
|
|
6686
|
-
* @returns
|
|
6687
|
-
*/
|
|
6688
|
-
delete(id) {
|
|
6689
|
-
return super.__delete(SdPlatformRequestId_1.RequestId.OpenIDPRoviderDelete, id);
|
|
6690
|
-
}
|
|
6691
|
-
}
|
|
6692
|
-
exports.SdPlatformOpenIDProviderApi = SdPlatformOpenIDProviderApi;
|
|
6693
|
-
|
|
6694
|
-
|
|
6695
6696
|
/***/ }),
|
|
6696
6697
|
/* 121 */
|
|
6697
6698
|
/***/ (function(module, exports, __webpack_require__) {
|
|
@@ -6789,7 +6790,7 @@ exports.SdPlatformJobLogApi = SdPlatformJobLogApi;
|
|
|
6789
6790
|
|
|
6790
6791
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6791
6792
|
exports.create = void 0;
|
|
6792
|
-
const SdPlatformSdk_1 = __webpack_require__(
|
|
6793
|
+
const SdPlatformSdk_1 = __webpack_require__(84);
|
|
6793
6794
|
function create(clientId, clientSecret, baseUrl) {
|
|
6794
6795
|
const checkIfCredential = (clientId) => {
|
|
6795
6796
|
return !!(clientId && clientId.clientId);
|