@itwin/rpcinterface-full-stack-tests 4.0.0-dev.10 → 4.0.0-dev.15
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/lib/dist/_07c5.bundled-tests.js.map +1 -1
- package/lib/dist/bundled-tests.js +542 -446
- package/lib/dist/bundled-tests.js.map +1 -1
- package/lib/dist/core_frontend_lib_esm_ApproximateTerrainHeightsProps_js.bundled-tests.js.map +1 -1
- package/lib/dist/object-storage.bundled-tests.js.map +1 -1
- package/lib/dist/vendors-common_temp_node_modules_pnpm_itwin_object-storage-azure_1_4_0_node_modules_itwin_obj-3576c6.bundled-tests.js.map +1 -1
- package/lib/dist/vendors-common_temp_node_modules_pnpm_loaders_gl_draco_3_2_13_node_modules_loaders_gl_draco_d-e0d984.bundled-tests.js.map +1 -1
- package/lib/dist/vendors-common_temp_node_modules_pnpm_reflect-metadata_0_1_13_node_modules_reflect-metadata_R-610cb3.bundled-tests.js.map +1 -1
- package/package.json +14 -14
|
@@ -21,53 +21,53 @@
|
|
|
21
21
|
|
|
22
22
|
/***/ }),
|
|
23
23
|
|
|
24
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+certa@3.
|
|
24
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+certa@3.6.0/node_modules/@itwin/certa/lib/utils/CallbackUtils.js":
|
|
25
25
|
/*!********************************************************************************************************************!*\
|
|
26
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+certa@3.
|
|
26
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+certa@3.6.0/node_modules/@itwin/certa/lib/utils/CallbackUtils.js ***!
|
|
27
27
|
\********************************************************************************************************************/
|
|
28
28
|
/***/ ((__unused_webpack_module, exports, __webpack_require__) => {
|
|
29
29
|
|
|
30
30
|
"use strict";
|
|
31
|
-
|
|
32
|
-
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33
|
-
exports.executeBackendCallback = exports.registerBackendCallback = exports.executeRegisteredCallback = exports.getCallbacksRegisteredOnBackend = void 0;
|
|
34
|
-
const isFrontend = (typeof (window) !== "undefined");
|
|
35
|
-
/** @internal */
|
|
36
|
-
function getCallbacksRegisteredOnBackend() {
|
|
37
|
-
if (isFrontend)
|
|
38
|
-
throw new Error("This should only be called on the backend!");
|
|
39
|
-
__webpack_require__.g._CertaRegisteredCallbacks = __webpack_require__.g._CertaRegisteredCallbacks || {};
|
|
40
|
-
return __webpack_require__.g._CertaRegisteredCallbacks;
|
|
41
|
-
}
|
|
42
|
-
exports.getCallbacksRegisteredOnBackend = getCallbacksRegisteredOnBackend;
|
|
43
|
-
/** @internal */
|
|
44
|
-
function executeRegisteredCallback(name, args) {
|
|
45
|
-
const registeredCallbacks = getCallbacksRegisteredOnBackend();
|
|
46
|
-
if (!(name in registeredCallbacks))
|
|
47
|
-
throw new Error(`Unknown certa backend callback "${name}"`);
|
|
48
|
-
return registeredCallbacks[name](...args);
|
|
49
|
-
}
|
|
50
|
-
exports.executeRegisteredCallback = executeRegisteredCallback;
|
|
51
|
-
function registerBackendCallback(name, cb) {
|
|
52
|
-
if (isFrontend)
|
|
53
|
-
throw new Error("This should only be called on the backend!");
|
|
54
|
-
__webpack_require__.g._CertaRegisteredCallbacks = __webpack_require__.g._CertaRegisteredCallbacks || {};
|
|
55
|
-
__webpack_require__.g._CertaRegisteredCallbacks[name] = cb;
|
|
56
|
-
}
|
|
57
|
-
exports.registerBackendCallback = registerBackendCallback;
|
|
58
|
-
async function executeBackendCallback(name, ...args) {
|
|
59
|
-
if (!isFrontend)
|
|
60
|
-
return executeRegisteredCallback(name, args);
|
|
61
|
-
return window._CertaSendToBackend(name, args);
|
|
62
|
-
}
|
|
63
|
-
exports.executeBackendCallback = executeBackendCallback;
|
|
31
|
+
|
|
32
|
+
Object.defineProperty(exports, "__esModule", ({ value: true }));
|
|
33
|
+
exports.executeBackendCallback = exports.registerBackendCallback = exports.executeRegisteredCallback = exports.getCallbacksRegisteredOnBackend = void 0;
|
|
34
|
+
const isFrontend = (typeof (window) !== "undefined");
|
|
35
|
+
/** @internal */
|
|
36
|
+
function getCallbacksRegisteredOnBackend() {
|
|
37
|
+
if (isFrontend)
|
|
38
|
+
throw new Error("This should only be called on the backend!");
|
|
39
|
+
__webpack_require__.g._CertaRegisteredCallbacks = __webpack_require__.g._CertaRegisteredCallbacks || {};
|
|
40
|
+
return __webpack_require__.g._CertaRegisteredCallbacks;
|
|
41
|
+
}
|
|
42
|
+
exports.getCallbacksRegisteredOnBackend = getCallbacksRegisteredOnBackend;
|
|
43
|
+
/** @internal */
|
|
44
|
+
function executeRegisteredCallback(name, args) {
|
|
45
|
+
const registeredCallbacks = getCallbacksRegisteredOnBackend();
|
|
46
|
+
if (!(name in registeredCallbacks))
|
|
47
|
+
throw new Error(`Unknown certa backend callback "${name}"`);
|
|
48
|
+
return registeredCallbacks[name](...args);
|
|
49
|
+
}
|
|
50
|
+
exports.executeRegisteredCallback = executeRegisteredCallback;
|
|
51
|
+
function registerBackendCallback(name, cb) {
|
|
52
|
+
if (isFrontend)
|
|
53
|
+
throw new Error("This should only be called on the backend!");
|
|
54
|
+
__webpack_require__.g._CertaRegisteredCallbacks = __webpack_require__.g._CertaRegisteredCallbacks || {};
|
|
55
|
+
__webpack_require__.g._CertaRegisteredCallbacks[name] = cb;
|
|
56
|
+
}
|
|
57
|
+
exports.registerBackendCallback = registerBackendCallback;
|
|
58
|
+
async function executeBackendCallback(name, ...args) {
|
|
59
|
+
if (!isFrontend)
|
|
60
|
+
return executeRegisteredCallback(name, args);
|
|
61
|
+
return window._CertaSendToBackend(name, args);
|
|
62
|
+
}
|
|
63
|
+
exports.executeBackendCallback = executeBackendCallback;
|
|
64
64
|
|
|
65
65
|
|
|
66
66
|
/***/ }),
|
|
67
67
|
|
|
68
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@2.
|
|
68
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@2.3.0/node_modules/@itwin/imodels-access-frontend/lib/esm/FrontendIModelsAccess.js":
|
|
69
69
|
/*!**************************************************************************************************************************************************************!*\
|
|
70
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@2.
|
|
70
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@2.3.0/node_modules/@itwin/imodels-access-frontend/lib/esm/FrontendIModelsAccess.js ***!
|
|
71
71
|
\**************************************************************************************************************************************************************/
|
|
72
72
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
73
73
|
|
|
@@ -79,8 +79,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
79
79
|
/* harmony import */ var _itwin_core_bentley__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! @itwin/core-bentley */ "../../core/bentley/lib/esm/core-bentley.js");
|
|
80
80
|
/* harmony import */ var _itwin_core_common__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
81
81
|
/* harmony import */ var _itwin_core_frontend__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @itwin/core-frontend */ "../../core/frontend/lib/esm/core-frontend.js");
|
|
82
|
-
/* harmony import */ var _itwin_imodels_client_management__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @itwin/imodels-client-management */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
83
|
-
/* harmony import */ var _interface_adapters_AccessTokenAdapter__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./interface-adapters/AccessTokenAdapter */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@2.
|
|
82
|
+
/* harmony import */ var _itwin_imodels_client_management__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! @itwin/imodels-client-management */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/index.js");
|
|
83
|
+
/* harmony import */ var _interface_adapters_AccessTokenAdapter__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./interface-adapters/AccessTokenAdapter */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@2.3.0/node_modules/@itwin/imodels-access-frontend/lib/esm/interface-adapters/AccessTokenAdapter.js");
|
|
84
84
|
/*---------------------------------------------------------------------------------------------
|
|
85
85
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
86
86
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -186,9 +186,9 @@ class FrontendIModelsAccess {
|
|
|
186
186
|
|
|
187
187
|
/***/ }),
|
|
188
188
|
|
|
189
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@2.
|
|
189
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@2.3.0/node_modules/@itwin/imodels-access-frontend/lib/esm/index.js":
|
|
190
190
|
/*!**********************************************************************************************************************************************!*\
|
|
191
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@2.
|
|
191
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@2.3.0/node_modules/@itwin/imodels-access-frontend/lib/esm/index.js ***!
|
|
192
192
|
\**********************************************************************************************************************************************/
|
|
193
193
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
194
194
|
|
|
@@ -198,8 +198,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
198
198
|
/* harmony export */ "AccessTokenAdapter": () => (/* reexport safe */ _interface_adapters_AccessTokenAdapter__WEBPACK_IMPORTED_MODULE_0__.AccessTokenAdapter),
|
|
199
199
|
/* harmony export */ "FrontendIModelsAccess": () => (/* reexport safe */ _FrontendIModelsAccess__WEBPACK_IMPORTED_MODULE_1__.FrontendIModelsAccess)
|
|
200
200
|
/* harmony export */ });
|
|
201
|
-
/* harmony import */ var _interface_adapters_AccessTokenAdapter__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./interface-adapters/AccessTokenAdapter */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@2.
|
|
202
|
-
/* harmony import */ var _FrontendIModelsAccess__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./FrontendIModelsAccess */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@2.
|
|
201
|
+
/* harmony import */ var _interface_adapters_AccessTokenAdapter__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./interface-adapters/AccessTokenAdapter */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@2.3.0/node_modules/@itwin/imodels-access-frontend/lib/esm/interface-adapters/AccessTokenAdapter.js");
|
|
202
|
+
/* harmony import */ var _FrontendIModelsAccess__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./FrontendIModelsAccess */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@2.3.0/node_modules/@itwin/imodels-access-frontend/lib/esm/FrontendIModelsAccess.js");
|
|
203
203
|
/*---------------------------------------------------------------------------------------------
|
|
204
204
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
205
205
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -210,9 +210,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
210
210
|
|
|
211
211
|
/***/ }),
|
|
212
212
|
|
|
213
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@2.
|
|
213
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@2.3.0/node_modules/@itwin/imodels-access-frontend/lib/esm/interface-adapters/AccessTokenAdapter.js":
|
|
214
214
|
/*!******************************************************************************************************************************************************************************!*\
|
|
215
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@2.
|
|
215
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@2.3.0/node_modules/@itwin/imodels-access-frontend/lib/esm/interface-adapters/AccessTokenAdapter.js ***!
|
|
216
216
|
\******************************************************************************************************************************************************************************/
|
|
217
217
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
218
218
|
|
|
@@ -248,9 +248,9 @@ class AccessTokenAdapter {
|
|
|
248
248
|
|
|
249
249
|
/***/ }),
|
|
250
250
|
|
|
251
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
251
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/Constants.js":
|
|
252
252
|
/*!******************************************************************************************************************************************************!*\
|
|
253
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
253
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/Constants.js ***!
|
|
254
254
|
\******************************************************************************************************************************************************/
|
|
255
255
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
256
256
|
|
|
@@ -283,9 +283,9 @@ Constants.time = {
|
|
|
283
283
|
|
|
284
284
|
/***/ }),
|
|
285
285
|
|
|
286
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
286
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/IModelsClient.js":
|
|
287
287
|
/*!**********************************************************************************************************************************************************!*\
|
|
288
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
288
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/IModelsClient.js ***!
|
|
289
289
|
\**********************************************************************************************************************************************************/
|
|
290
290
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
291
291
|
|
|
@@ -294,11 +294,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
294
294
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
295
295
|
/* harmony export */ "IModelsClient": () => (/* binding */ IModelsClient)
|
|
296
296
|
/* harmony export */ });
|
|
297
|
-
/* harmony import */ var _base_internal__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./base/internal */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
298
|
-
/* harmony import */ var _Constants__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Constants */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
299
|
-
/* harmony import */ var _operations__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./operations */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
300
|
-
/* harmony import */ var _operations_checkpoint_CheckpointOperations__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./operations/checkpoint/CheckpointOperations */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
301
|
-
/* harmony import */ var _operations_IModelsApiUrlFormatter__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./operations/IModelsApiUrlFormatter */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
297
|
+
/* harmony import */ var _base_internal__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./base/internal */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/internal/index.js");
|
|
298
|
+
/* harmony import */ var _Constants__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Constants */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/Constants.js");
|
|
299
|
+
/* harmony import */ var _operations__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./operations */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/index.js");
|
|
300
|
+
/* harmony import */ var _operations_checkpoint_CheckpointOperations__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./operations/checkpoint/CheckpointOperations */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/checkpoint/CheckpointOperations.js");
|
|
301
|
+
/* harmony import */ var _operations_IModelsApiUrlFormatter__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./operations/IModelsApiUrlFormatter */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/IModelsApiUrlFormatter.js");
|
|
302
302
|
/*---------------------------------------------------------------------------------------------
|
|
303
303
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
304
304
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -327,7 +327,7 @@ class IModelsClient {
|
|
|
327
327
|
}
|
|
328
328
|
/** iModel operations. See {@link iModelOperations}. */
|
|
329
329
|
get iModels() {
|
|
330
|
-
return new _operations__WEBPACK_IMPORTED_MODULE_2__.IModelOperations(this._operationsOptions);
|
|
330
|
+
return new _operations__WEBPACK_IMPORTED_MODULE_2__.IModelOperations(this._operationsOptions, this);
|
|
331
331
|
}
|
|
332
332
|
/** Briefcase operations. See {@link BriefcaseOperations}. */
|
|
333
333
|
get briefcases() {
|
|
@@ -376,9 +376,9 @@ class IModelsClient {
|
|
|
376
376
|
|
|
377
377
|
/***/ }),
|
|
378
378
|
|
|
379
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
379
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/internal/ApiResponseInterfaces.js":
|
|
380
380
|
/*!********************************************************************************************************************************************************************************!*\
|
|
381
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
381
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/internal/ApiResponseInterfaces.js ***!
|
|
382
382
|
\********************************************************************************************************************************************************************************/
|
|
383
383
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
384
384
|
|
|
@@ -389,9 +389,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
389
389
|
|
|
390
390
|
/***/ }),
|
|
391
391
|
|
|
392
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
392
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/internal/AxiosRestClient.js":
|
|
393
393
|
/*!**************************************************************************************************************************************************************************!*\
|
|
394
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
394
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/internal/AxiosRestClient.js ***!
|
|
395
395
|
\**************************************************************************************************************************************************************************/
|
|
396
396
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
397
397
|
|
|
@@ -402,7 +402,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
402
402
|
/* harmony export */ });
|
|
403
403
|
/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! axios */ "../../common/temp/node_modules/.pnpm/axios@0.21.4/node_modules/axios/index.js");
|
|
404
404
|
/* harmony import */ var axios__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(axios__WEBPACK_IMPORTED_MODULE_0__);
|
|
405
|
-
/* harmony import */ var _types_RestClient__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../types/RestClient */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
405
|
+
/* harmony import */ var _types_RestClient__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../types/RestClient */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/RestClient.js");
|
|
406
406
|
/*---------------------------------------------------------------------------------------------
|
|
407
407
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
408
408
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -452,14 +452,14 @@ class AxiosRestClient {
|
|
|
452
452
|
return this.executeRequest(async () => axios__WEBPACK_IMPORTED_MODULE_0___default()["delete"](params.url, requestConfig));
|
|
453
453
|
}
|
|
454
454
|
async executeRequest(requestFunc) {
|
|
455
|
-
var _a;
|
|
455
|
+
var _a, _b;
|
|
456
456
|
try {
|
|
457
457
|
const response = await requestFunc();
|
|
458
458
|
return response.data;
|
|
459
459
|
}
|
|
460
460
|
catch (error) {
|
|
461
461
|
if (axios__WEBPACK_IMPORTED_MODULE_0___default().isAxiosError(error)) {
|
|
462
|
-
const parsedError = this._parseErrorFunc({
|
|
462
|
+
const parsedError = this._parseErrorFunc({ statusCode: (_a = error.response) === null || _a === void 0 ? void 0 : _a.status, body: (_b = error.response) === null || _b === void 0 ? void 0 : _b.data });
|
|
463
463
|
throw parsedError;
|
|
464
464
|
}
|
|
465
465
|
throw new Error("AxiosRestClient: unknown error occurred.");
|
|
@@ -470,9 +470,9 @@ class AxiosRestClient {
|
|
|
470
470
|
|
|
471
471
|
/***/ }),
|
|
472
472
|
|
|
473
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
473
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/internal/IModelsErrorParser.js":
|
|
474
474
|
/*!*****************************************************************************************************************************************************************************!*\
|
|
475
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
475
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/internal/IModelsErrorParser.js ***!
|
|
476
476
|
\*****************************************************************************************************************************************************************************/
|
|
477
477
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
478
478
|
|
|
@@ -483,7 +483,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
483
483
|
/* harmony export */ "IModelsErrorImpl": () => (/* binding */ IModelsErrorImpl),
|
|
484
484
|
/* harmony export */ "IModelsErrorParser": () => (/* binding */ IModelsErrorParser)
|
|
485
485
|
/* harmony export */ });
|
|
486
|
-
/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../types */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
486
|
+
/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../types */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/index.js");
|
|
487
487
|
/*---------------------------------------------------------------------------------------------
|
|
488
488
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
489
489
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -508,6 +508,11 @@ class IModelsErrorParser {
|
|
|
508
508
|
if (!response.body)
|
|
509
509
|
return new IModelsErrorImpl(IModelsErrorParser._unknownErrorProperties);
|
|
510
510
|
const errorFromApi = response.body;
|
|
511
|
+
if (response.statusCode === 401)
|
|
512
|
+
return new IModelsErrorImpl({
|
|
513
|
+
code: _types__WEBPACK_IMPORTED_MODULE_0__.IModelsErrorCode.Unauthorized,
|
|
514
|
+
message: IModelsErrorParser.resolveUnauthorizedMessage(response.body)
|
|
515
|
+
});
|
|
511
516
|
const errorCode = IModelsErrorParser.parseCode((_a = errorFromApi === null || errorFromApi === void 0 ? void 0 : errorFromApi.error) === null || _a === void 0 ? void 0 : _a.code);
|
|
512
517
|
const errorDetails = IModelsErrorParser.parseDetails((_b = errorFromApi.error) === null || _b === void 0 ? void 0 : _b.details);
|
|
513
518
|
const errorMessage = IModelsErrorParser.parseAndFormatMessage((_c = errorFromApi === null || errorFromApi === void 0 ? void 0 : errorFromApi.error) === null || _c === void 0 ? void 0 : _c.message, errorDetails);
|
|
@@ -549,16 +554,21 @@ class IModelsErrorParser {
|
|
|
549
554
|
}
|
|
550
555
|
return result;
|
|
551
556
|
}
|
|
557
|
+
static resolveUnauthorizedMessage(responseBody) {
|
|
558
|
+
var _a, _b, _c, _d, _e;
|
|
559
|
+
return (_e = (_c = (_b = (_a = responseBody) === null || _a === void 0 ? void 0 : _a.error) === null || _b === void 0 ? void 0 : _b.message) !== null && _c !== void 0 ? _c : (_d = responseBody) === null || _d === void 0 ? void 0 : _d.message) !== null && _e !== void 0 ? _e : IModelsErrorParser._defaultUnauthorizedMessage;
|
|
560
|
+
}
|
|
552
561
|
}
|
|
553
562
|
IModelsErrorParser._defaultErrorMessage = "Unknown error occurred";
|
|
563
|
+
IModelsErrorParser._defaultUnauthorizedMessage = "Authorization failed";
|
|
554
564
|
IModelsErrorParser._unknownErrorProperties = { code: _types__WEBPACK_IMPORTED_MODULE_0__.IModelsErrorCode.Unknown, message: IModelsErrorParser._defaultErrorMessage };
|
|
555
565
|
|
|
556
566
|
|
|
557
567
|
/***/ }),
|
|
558
568
|
|
|
559
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
569
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/internal/OperationsBase.js":
|
|
560
570
|
/*!*************************************************************************************************************************************************************************!*\
|
|
561
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
571
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/internal/OperationsBase.js ***!
|
|
562
572
|
\*************************************************************************************************************************************************************************/
|
|
563
573
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
564
574
|
|
|
@@ -567,8 +577,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
567
577
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
568
578
|
/* harmony export */ "OperationsBase": () => (/* binding */ OperationsBase)
|
|
569
579
|
/* harmony export */ });
|
|
570
|
-
/* harmony import */ var _Constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../Constants */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
571
|
-
/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../types */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
580
|
+
/* harmony import */ var _Constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../Constants */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/Constants.js");
|
|
581
|
+
/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../types */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/index.js");
|
|
572
582
|
/*---------------------------------------------------------------------------------------------
|
|
573
583
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
574
584
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -656,9 +666,9 @@ class OperationsBase {
|
|
|
656
666
|
|
|
657
667
|
/***/ }),
|
|
658
668
|
|
|
659
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
669
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/internal/UtilityFunctions.js":
|
|
660
670
|
/*!***************************************************************************************************************************************************************************!*\
|
|
661
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
671
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/internal/UtilityFunctions.js ***!
|
|
662
672
|
\***************************************************************************************************************************************************************************/
|
|
663
673
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
664
674
|
|
|
@@ -668,7 +678,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
668
678
|
/* harmony export */ "sleep": () => (/* binding */ sleep),
|
|
669
679
|
/* harmony export */ "waitForCondition": () => (/* binding */ waitForCondition)
|
|
670
680
|
/* harmony export */ });
|
|
671
|
-
/* harmony import */ var _Constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../Constants */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
681
|
+
/* harmony import */ var _Constants__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../Constants */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/Constants.js");
|
|
672
682
|
/*---------------------------------------------------------------------------------------------
|
|
673
683
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
674
684
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -694,9 +704,9 @@ async function waitForCondition(params) {
|
|
|
694
704
|
|
|
695
705
|
/***/ }),
|
|
696
706
|
|
|
697
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
707
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/internal/UtilityTypes.js":
|
|
698
708
|
/*!***********************************************************************************************************************************************************************!*\
|
|
699
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
709
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/internal/UtilityTypes.js ***!
|
|
700
710
|
\***********************************************************************************************************************************************************************/
|
|
701
711
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
702
712
|
|
|
@@ -711,9 +721,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
711
721
|
|
|
712
722
|
/***/ }),
|
|
713
723
|
|
|
714
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
724
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/internal/index.js":
|
|
715
725
|
/*!****************************************************************************************************************************************************************!*\
|
|
716
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
726
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/internal/index.js ***!
|
|
717
727
|
\****************************************************************************************************************************************************************/
|
|
718
728
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
719
729
|
|
|
@@ -730,14 +740,14 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
730
740
|
/* harmony export */ "sleep": () => (/* reexport safe */ _UtilityFunctions__WEBPACK_IMPORTED_MODULE_7__.sleep),
|
|
731
741
|
/* harmony export */ "waitForCondition": () => (/* reexport safe */ _UtilityFunctions__WEBPACK_IMPORTED_MODULE_7__.waitForCondition)
|
|
732
742
|
/* harmony export */ });
|
|
733
|
-
/* harmony import */ var _iterators_EntityListIteratorImpl__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./iterators/EntityListIteratorImpl */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
734
|
-
/* harmony import */ var _iterators_EntityPageListIterator__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./iterators/EntityPageListIterator */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
735
|
-
/* harmony import */ var _ApiResponseInterfaces__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./ApiResponseInterfaces */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
736
|
-
/* harmony import */ var _AxiosRestClient__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./AxiosRestClient */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
737
|
-
/* harmony import */ var _IModelsErrorParser__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./IModelsErrorParser */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
738
|
-
/* harmony import */ var _OperationsBase__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./OperationsBase */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
739
|
-
/* harmony import */ var _UtilityTypes__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./UtilityTypes */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
740
|
-
/* harmony import */ var _UtilityFunctions__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./UtilityFunctions */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
743
|
+
/* harmony import */ var _iterators_EntityListIteratorImpl__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./iterators/EntityListIteratorImpl */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/internal/iterators/EntityListIteratorImpl.js");
|
|
744
|
+
/* harmony import */ var _iterators_EntityPageListIterator__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./iterators/EntityPageListIterator */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/internal/iterators/EntityPageListIterator.js");
|
|
745
|
+
/* harmony import */ var _ApiResponseInterfaces__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./ApiResponseInterfaces */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/internal/ApiResponseInterfaces.js");
|
|
746
|
+
/* harmony import */ var _AxiosRestClient__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./AxiosRestClient */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/internal/AxiosRestClient.js");
|
|
747
|
+
/* harmony import */ var _IModelsErrorParser__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./IModelsErrorParser */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/internal/IModelsErrorParser.js");
|
|
748
|
+
/* harmony import */ var _OperationsBase__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./OperationsBase */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/internal/OperationsBase.js");
|
|
749
|
+
/* harmony import */ var _UtilityTypes__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./UtilityTypes */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/internal/UtilityTypes.js");
|
|
750
|
+
/* harmony import */ var _UtilityFunctions__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./UtilityFunctions */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/internal/UtilityFunctions.js");
|
|
741
751
|
/*---------------------------------------------------------------------------------------------
|
|
742
752
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
743
753
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -754,9 +764,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
754
764
|
|
|
755
765
|
/***/ }),
|
|
756
766
|
|
|
757
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
767
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/internal/iterators/EntityListIteratorImpl.js":
|
|
758
768
|
/*!*******************************************************************************************************************************************************************************************!*\
|
|
759
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
769
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/internal/iterators/EntityListIteratorImpl.js ***!
|
|
760
770
|
\*******************************************************************************************************************************************************************************************/
|
|
761
771
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
762
772
|
|
|
@@ -765,8 +775,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
765
775
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
766
776
|
/* harmony export */ "EntityListIteratorImpl": () => (/* binding */ EntityListIteratorImpl)
|
|
767
777
|
/* harmony export */ });
|
|
768
|
-
/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../types */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
769
|
-
/* harmony import */ var _EntityPageListIterator__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./EntityPageListIterator */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
778
|
+
/* harmony import */ var _types__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../types */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/index.js");
|
|
779
|
+
/* harmony import */ var _EntityPageListIterator__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./EntityPageListIterator */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/internal/iterators/EntityPageListIterator.js");
|
|
770
780
|
/*---------------------------------------------------------------------------------------------
|
|
771
781
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
772
782
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -792,9 +802,9 @@ class EntityListIteratorImpl {
|
|
|
792
802
|
|
|
793
803
|
/***/ }),
|
|
794
804
|
|
|
795
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
805
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/internal/iterators/EntityPageListIterator.js":
|
|
796
806
|
/*!*******************************************************************************************************************************************************************************************!*\
|
|
797
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
807
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/internal/iterators/EntityPageListIterator.js ***!
|
|
798
808
|
\*******************************************************************************************************************************************************************************************/
|
|
799
809
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
800
810
|
|
|
@@ -826,9 +836,9 @@ class EntityPageListIterator {
|
|
|
826
836
|
|
|
827
837
|
/***/ }),
|
|
828
838
|
|
|
829
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
839
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/CommonInterfaces.js":
|
|
830
840
|
/*!************************************************************************************************************************************************************************!*\
|
|
831
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
841
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/CommonInterfaces.js ***!
|
|
832
842
|
\************************************************************************************************************************************************************************/
|
|
833
843
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
834
844
|
|
|
@@ -865,9 +875,9 @@ var PreferReturn;
|
|
|
865
875
|
|
|
866
876
|
/***/ }),
|
|
867
877
|
|
|
868
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
878
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/IModelsErrorInterfaces.js":
|
|
869
879
|
/*!******************************************************************************************************************************************************************************!*\
|
|
870
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
880
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/IModelsErrorInterfaces.js ***!
|
|
871
881
|
\******************************************************************************************************************************************************************************/
|
|
872
882
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
873
883
|
|
|
@@ -935,9 +945,9 @@ function isIModelsApiError(error) {
|
|
|
935
945
|
|
|
936
946
|
/***/ }),
|
|
937
947
|
|
|
938
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
948
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/RestClient.js":
|
|
939
949
|
/*!******************************************************************************************************************************************************************!*\
|
|
940
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
950
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/RestClient.js ***!
|
|
941
951
|
\******************************************************************************************************************************************************************/
|
|
942
952
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
943
953
|
|
|
@@ -959,9 +969,9 @@ var ContentType;
|
|
|
959
969
|
|
|
960
970
|
/***/ }),
|
|
961
971
|
|
|
962
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
972
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/UtilityTypes.js":
|
|
963
973
|
/*!********************************************************************************************************************************************************************!*\
|
|
964
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
974
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/UtilityTypes.js ***!
|
|
965
975
|
\********************************************************************************************************************************************************************/
|
|
966
976
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
967
977
|
|
|
@@ -976,9 +986,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
976
986
|
|
|
977
987
|
/***/ }),
|
|
978
988
|
|
|
979
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
989
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/apiEntities/BriefcaseInterfaces.js":
|
|
980
990
|
/*!***************************************************************************************************************************************************************************************!*\
|
|
981
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
991
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/apiEntities/BriefcaseInterfaces.js ***!
|
|
982
992
|
\***************************************************************************************************************************************************************************************/
|
|
983
993
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
984
994
|
|
|
@@ -989,9 +999,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
989
999
|
|
|
990
1000
|
/***/ }),
|
|
991
1001
|
|
|
992
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1002
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/apiEntities/ChangesetInterfaces.js":
|
|
993
1003
|
/*!***************************************************************************************************************************************************************************************!*\
|
|
994
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1004
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/apiEntities/ChangesetInterfaces.js ***!
|
|
995
1005
|
\***************************************************************************************************************************************************************************************/
|
|
996
1006
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
997
1007
|
|
|
@@ -1024,9 +1034,9 @@ var ContainingChanges;
|
|
|
1024
1034
|
|
|
1025
1035
|
/***/ }),
|
|
1026
1036
|
|
|
1027
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1037
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/apiEntities/CheckpointInterfaces.js":
|
|
1028
1038
|
/*!****************************************************************************************************************************************************************************************!*\
|
|
1029
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1039
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/apiEntities/CheckpointInterfaces.js ***!
|
|
1030
1040
|
\****************************************************************************************************************************************************************************************/
|
|
1031
1041
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
1032
1042
|
|
|
@@ -1051,9 +1061,9 @@ var CheckpointState;
|
|
|
1051
1061
|
|
|
1052
1062
|
/***/ }),
|
|
1053
1063
|
|
|
1054
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1064
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/apiEntities/IModelInterfaces.js":
|
|
1055
1065
|
/*!************************************************************************************************************************************************************************************!*\
|
|
1056
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1066
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/apiEntities/IModelInterfaces.js ***!
|
|
1057
1067
|
\************************************************************************************************************************************************************************************/
|
|
1058
1068
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
1059
1069
|
|
|
@@ -1077,9 +1087,9 @@ var IModelState;
|
|
|
1077
1087
|
|
|
1078
1088
|
/***/ }),
|
|
1079
1089
|
|
|
1080
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1090
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/apiEntities/NamedVersionInterfaces.js":
|
|
1081
1091
|
/*!******************************************************************************************************************************************************************************************!*\
|
|
1082
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1092
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/apiEntities/NamedVersionInterfaces.js ***!
|
|
1083
1093
|
\******************************************************************************************************************************************************************************************/
|
|
1084
1094
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
1085
1095
|
|
|
@@ -1100,9 +1110,9 @@ var NamedVersionState;
|
|
|
1100
1110
|
|
|
1101
1111
|
/***/ }),
|
|
1102
1112
|
|
|
1103
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1113
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/apiEntities/ThumbnailInterfaces.js":
|
|
1104
1114
|
/*!***************************************************************************************************************************************************************************************!*\
|
|
1105
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1115
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/apiEntities/ThumbnailInterfaces.js ***!
|
|
1106
1116
|
\***************************************************************************************************************************************************************************************/
|
|
1107
1117
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
1108
1118
|
|
|
@@ -1123,9 +1133,9 @@ var ThumbnailSize;
|
|
|
1123
1133
|
|
|
1124
1134
|
/***/ }),
|
|
1125
1135
|
|
|
1126
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1136
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/apiEntities/UserInterfaces.js":
|
|
1127
1137
|
/*!**********************************************************************************************************************************************************************************!*\
|
|
1128
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1138
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/apiEntities/UserInterfaces.js ***!
|
|
1129
1139
|
\**********************************************************************************************************************************************************************************/
|
|
1130
1140
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
1131
1141
|
|
|
@@ -1136,9 +1146,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
1136
1146
|
|
|
1137
1147
|
/***/ }),
|
|
1138
1148
|
|
|
1139
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1149
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/apiEntities/UserPermissionInterfaces.js":
|
|
1140
1150
|
/*!********************************************************************************************************************************************************************************************!*\
|
|
1141
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1151
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/apiEntities/UserPermissionInterfaces.js ***!
|
|
1142
1152
|
\********************************************************************************************************************************************************************************************/
|
|
1143
1153
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
1144
1154
|
|
|
@@ -1181,9 +1191,9 @@ var IModelPermission;
|
|
|
1181
1191
|
|
|
1182
1192
|
/***/ }),
|
|
1183
1193
|
|
|
1184
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1194
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/index.js":
|
|
1185
1195
|
/*!*************************************************************************************************************************************************************!*\
|
|
1186
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1196
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/index.js ***!
|
|
1187
1197
|
\*************************************************************************************************************************************************************/
|
|
1188
1198
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
1189
1199
|
|
|
@@ -1207,20 +1217,20 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
1207
1217
|
/* harmony export */ "take": () => (/* reexport safe */ _iterators_IteratorUtilFunctions__WEBPACK_IMPORTED_MODULE_9__.take),
|
|
1208
1218
|
/* harmony export */ "toArray": () => (/* reexport safe */ _iterators_IteratorUtilFunctions__WEBPACK_IMPORTED_MODULE_9__.toArray)
|
|
1209
1219
|
/* harmony export */ });
|
|
1210
|
-
/* harmony import */ var _apiEntities_IModelInterfaces__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./apiEntities/IModelInterfaces */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1211
|
-
/* harmony import */ var _apiEntities_BriefcaseInterfaces__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./apiEntities/BriefcaseInterfaces */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1212
|
-
/* harmony import */ var _apiEntities_ChangesetInterfaces__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./apiEntities/ChangesetInterfaces */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1213
|
-
/* harmony import */ var _apiEntities_NamedVersionInterfaces__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./apiEntities/NamedVersionInterfaces */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1214
|
-
/* harmony import */ var _apiEntities_CheckpointInterfaces__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./apiEntities/CheckpointInterfaces */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1215
|
-
/* harmony import */ var _apiEntities_ThumbnailInterfaces__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./apiEntities/ThumbnailInterfaces */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1216
|
-
/* harmony import */ var _apiEntities_UserInterfaces__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./apiEntities/UserInterfaces */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1217
|
-
/* harmony import */ var _apiEntities_UserPermissionInterfaces__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./apiEntities/UserPermissionInterfaces */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1218
|
-
/* harmony import */ var _iterators_EntityListIterator__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./iterators/EntityListIterator */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1219
|
-
/* harmony import */ var _iterators_IteratorUtilFunctions__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./iterators/IteratorUtilFunctions */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1220
|
-
/* harmony import */ var _RestClient__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./RestClient */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1221
|
-
/* harmony import */ var _CommonInterfaces__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./CommonInterfaces */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1222
|
-
/* harmony import */ var _UtilityTypes__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./UtilityTypes */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1223
|
-
/* harmony import */ var _IModelsErrorInterfaces__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./IModelsErrorInterfaces */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1220
|
+
/* harmony import */ var _apiEntities_IModelInterfaces__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./apiEntities/IModelInterfaces */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/apiEntities/IModelInterfaces.js");
|
|
1221
|
+
/* harmony import */ var _apiEntities_BriefcaseInterfaces__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./apiEntities/BriefcaseInterfaces */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/apiEntities/BriefcaseInterfaces.js");
|
|
1222
|
+
/* harmony import */ var _apiEntities_ChangesetInterfaces__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./apiEntities/ChangesetInterfaces */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/apiEntities/ChangesetInterfaces.js");
|
|
1223
|
+
/* harmony import */ var _apiEntities_NamedVersionInterfaces__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./apiEntities/NamedVersionInterfaces */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/apiEntities/NamedVersionInterfaces.js");
|
|
1224
|
+
/* harmony import */ var _apiEntities_CheckpointInterfaces__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./apiEntities/CheckpointInterfaces */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/apiEntities/CheckpointInterfaces.js");
|
|
1225
|
+
/* harmony import */ var _apiEntities_ThumbnailInterfaces__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./apiEntities/ThumbnailInterfaces */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/apiEntities/ThumbnailInterfaces.js");
|
|
1226
|
+
/* harmony import */ var _apiEntities_UserInterfaces__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./apiEntities/UserInterfaces */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/apiEntities/UserInterfaces.js");
|
|
1227
|
+
/* harmony import */ var _apiEntities_UserPermissionInterfaces__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./apiEntities/UserPermissionInterfaces */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/apiEntities/UserPermissionInterfaces.js");
|
|
1228
|
+
/* harmony import */ var _iterators_EntityListIterator__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./iterators/EntityListIterator */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/iterators/EntityListIterator.js");
|
|
1229
|
+
/* harmony import */ var _iterators_IteratorUtilFunctions__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./iterators/IteratorUtilFunctions */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/iterators/IteratorUtilFunctions.js");
|
|
1230
|
+
/* harmony import */ var _RestClient__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./RestClient */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/RestClient.js");
|
|
1231
|
+
/* harmony import */ var _CommonInterfaces__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./CommonInterfaces */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/CommonInterfaces.js");
|
|
1232
|
+
/* harmony import */ var _UtilityTypes__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./UtilityTypes */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/UtilityTypes.js");
|
|
1233
|
+
/* harmony import */ var _IModelsErrorInterfaces__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./IModelsErrorInterfaces */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/IModelsErrorInterfaces.js");
|
|
1224
1234
|
/*---------------------------------------------------------------------------------------------
|
|
1225
1235
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
1226
1236
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -1243,9 +1253,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
1243
1253
|
|
|
1244
1254
|
/***/ }),
|
|
1245
1255
|
|
|
1246
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1256
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/iterators/EntityListIterator.js":
|
|
1247
1257
|
/*!************************************************************************************************************************************************************************************!*\
|
|
1248
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1258
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/iterators/EntityListIterator.js ***!
|
|
1249
1259
|
\************************************************************************************************************************************************************************************/
|
|
1250
1260
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
1251
1261
|
|
|
@@ -1260,9 +1270,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
1260
1270
|
|
|
1261
1271
|
/***/ }),
|
|
1262
1272
|
|
|
1263
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1273
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/iterators/IteratorUtilFunctions.js":
|
|
1264
1274
|
/*!***************************************************************************************************************************************************************************************!*\
|
|
1265
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1275
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/iterators/IteratorUtilFunctions.js ***!
|
|
1266
1276
|
\***************************************************************************************************************************************************************************************/
|
|
1267
1277
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
1268
1278
|
|
|
@@ -1330,9 +1340,9 @@ async function take(iterator, entityCount) {
|
|
|
1330
1340
|
|
|
1331
1341
|
/***/ }),
|
|
1332
1342
|
|
|
1333
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1343
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/index.js":
|
|
1334
1344
|
/*!**************************************************************************************************************************************************!*\
|
|
1335
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1345
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/index.js ***!
|
|
1336
1346
|
\**************************************************************************************************************************************************/
|
|
1337
1347
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
1338
1348
|
|
|
@@ -1361,9 +1371,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
1361
1371
|
/* harmony export */ "take": () => (/* reexport safe */ _base_types__WEBPACK_IMPORTED_MODULE_0__.take),
|
|
1362
1372
|
/* harmony export */ "toArray": () => (/* reexport safe */ _base_types__WEBPACK_IMPORTED_MODULE_0__.toArray)
|
|
1363
1373
|
/* harmony export */ });
|
|
1364
|
-
/* harmony import */ var _base_types__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./base/types */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1365
|
-
/* harmony import */ var _operations_OperationParamExports__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./operations/OperationParamExports */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1366
|
-
/* harmony import */ var _IModelsClient__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./IModelsClient */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1374
|
+
/* harmony import */ var _base_types__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./base/types */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/index.js");
|
|
1375
|
+
/* harmony import */ var _operations_OperationParamExports__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./operations/OperationParamExports */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/OperationParamExports.js");
|
|
1376
|
+
/* harmony import */ var _IModelsClient__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./IModelsClient */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/IModelsClient.js");
|
|
1367
1377
|
/*---------------------------------------------------------------------------------------------
|
|
1368
1378
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
1369
1379
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -1375,9 +1385,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
1375
1385
|
|
|
1376
1386
|
/***/ }),
|
|
1377
1387
|
|
|
1378
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1388
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/IModelsApiUrlFormatter.js":
|
|
1379
1389
|
/*!******************************************************************************************************************************************************************************!*\
|
|
1380
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1390
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/IModelsApiUrlFormatter.js ***!
|
|
1381
1391
|
\******************************************************************************************************************************************************************************/
|
|
1382
1392
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
1383
1393
|
|
|
@@ -1532,9 +1542,9 @@ class IModelsApiUrlFormatter {
|
|
|
1532
1542
|
|
|
1533
1543
|
/***/ }),
|
|
1534
1544
|
|
|
1535
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1545
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/OperationExports.js":
|
|
1536
1546
|
/*!************************************************************************************************************************************************************************!*\
|
|
1537
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1547
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/OperationExports.js ***!
|
|
1538
1548
|
\************************************************************************************************************************************************************************/
|
|
1539
1549
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
1540
1550
|
|
|
@@ -1550,14 +1560,14 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
1550
1560
|
/* harmony export */ "UserOperations": () => (/* reexport safe */ _user_UserOperations__WEBPACK_IMPORTED_MODULE_6__.UserOperations),
|
|
1551
1561
|
/* harmony export */ "UserPermissionOperations": () => (/* reexport safe */ _user_permission_UserPermissionOperations__WEBPACK_IMPORTED_MODULE_7__.UserPermissionOperations)
|
|
1552
1562
|
/* harmony export */ });
|
|
1553
|
-
/* harmony import */ var _imodel_IModelOperations__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./imodel/IModelOperations */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1554
|
-
/* harmony import */ var _briefcase_BriefcaseOperations__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./briefcase/BriefcaseOperations */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1555
|
-
/* harmony import */ var _changeset_ChangesetOperations__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./changeset/ChangesetOperations */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1556
|
-
/* harmony import */ var _named_version_NamedVersionOperations__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./named-version/NamedVersionOperations */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1557
|
-
/* harmony import */ var _checkpoint_CheckpointOperations__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./checkpoint/CheckpointOperations */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1558
|
-
/* harmony import */ var _thumbnail_ThumbnailOperations__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./thumbnail/ThumbnailOperations */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1559
|
-
/* harmony import */ var _user_UserOperations__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./user/UserOperations */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1560
|
-
/* harmony import */ var _user_permission_UserPermissionOperations__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./user-permission/UserPermissionOperations */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1563
|
+
/* harmony import */ var _imodel_IModelOperations__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./imodel/IModelOperations */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/imodel/IModelOperations.js");
|
|
1564
|
+
/* harmony import */ var _briefcase_BriefcaseOperations__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./briefcase/BriefcaseOperations */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/briefcase/BriefcaseOperations.js");
|
|
1565
|
+
/* harmony import */ var _changeset_ChangesetOperations__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./changeset/ChangesetOperations */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/changeset/ChangesetOperations.js");
|
|
1566
|
+
/* harmony import */ var _named_version_NamedVersionOperations__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./named-version/NamedVersionOperations */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/named-version/NamedVersionOperations.js");
|
|
1567
|
+
/* harmony import */ var _checkpoint_CheckpointOperations__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./checkpoint/CheckpointOperations */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/checkpoint/CheckpointOperations.js");
|
|
1568
|
+
/* harmony import */ var _thumbnail_ThumbnailOperations__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./thumbnail/ThumbnailOperations */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/thumbnail/ThumbnailOperations.js");
|
|
1569
|
+
/* harmony import */ var _user_UserOperations__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./user/UserOperations */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/user/UserOperations.js");
|
|
1570
|
+
/* harmony import */ var _user_permission_UserPermissionOperations__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./user-permission/UserPermissionOperations */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/user-permission/UserPermissionOperations.js");
|
|
1561
1571
|
/*---------------------------------------------------------------------------------------------
|
|
1562
1572
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
1563
1573
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -1574,9 +1584,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
1574
1584
|
|
|
1575
1585
|
/***/ }),
|
|
1576
1586
|
|
|
1577
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1587
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/OperationOptions.js":
|
|
1578
1588
|
/*!************************************************************************************************************************************************************************!*\
|
|
1579
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1589
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/OperationOptions.js ***!
|
|
1580
1590
|
\************************************************************************************************************************************************************************/
|
|
1581
1591
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
1582
1592
|
|
|
@@ -1587,9 +1597,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
1587
1597
|
|
|
1588
1598
|
/***/ }),
|
|
1589
1599
|
|
|
1590
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1600
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/OperationParamExports.js":
|
|
1591
1601
|
/*!*****************************************************************************************************************************************************************************!*\
|
|
1592
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1602
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/OperationParamExports.js ***!
|
|
1593
1603
|
\*****************************************************************************************************************************************************************************/
|
|
1594
1604
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
1595
1605
|
|
|
@@ -1601,14 +1611,14 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
1601
1611
|
/* harmony export */ "NamedVersionOrderByProperty": () => (/* reexport safe */ _named_version_NamedVersionOperationParams__WEBPACK_IMPORTED_MODULE_3__.NamedVersionOrderByProperty),
|
|
1602
1612
|
/* harmony export */ "SPECIAL_VALUES_ME": () => (/* reexport safe */ _briefcase_BriefcaseOperationParams__WEBPACK_IMPORTED_MODULE_1__.SPECIAL_VALUES_ME)
|
|
1603
1613
|
/* harmony export */ });
|
|
1604
|
-
/* harmony import */ var _imodel_IModelOperationParams__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./imodel/IModelOperationParams */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1605
|
-
/* harmony import */ var _briefcase_BriefcaseOperationParams__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./briefcase/BriefcaseOperationParams */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1606
|
-
/* harmony import */ var _changeset_ChangesetOperationParams__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./changeset/ChangesetOperationParams */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1607
|
-
/* harmony import */ var _named_version_NamedVersionOperationParams__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./named-version/NamedVersionOperationParams */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1608
|
-
/* harmony import */ var _checkpoint_CheckpointOperationParams__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./checkpoint/CheckpointOperationParams */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1609
|
-
/* harmony import */ var _thumbnail_ThumbnailOperationParams__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./thumbnail/ThumbnailOperationParams */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1610
|
-
/* harmony import */ var _user_UserOperationParams__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./user/UserOperationParams */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1611
|
-
/* harmony import */ var _user_permission_UserPermissionOperationParams__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./user-permission/UserPermissionOperationParams */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1614
|
+
/* harmony import */ var _imodel_IModelOperationParams__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./imodel/IModelOperationParams */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/imodel/IModelOperationParams.js");
|
|
1615
|
+
/* harmony import */ var _briefcase_BriefcaseOperationParams__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./briefcase/BriefcaseOperationParams */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/briefcase/BriefcaseOperationParams.js");
|
|
1616
|
+
/* harmony import */ var _changeset_ChangesetOperationParams__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./changeset/ChangesetOperationParams */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/changeset/ChangesetOperationParams.js");
|
|
1617
|
+
/* harmony import */ var _named_version_NamedVersionOperationParams__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./named-version/NamedVersionOperationParams */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/named-version/NamedVersionOperationParams.js");
|
|
1618
|
+
/* harmony import */ var _checkpoint_CheckpointOperationParams__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./checkpoint/CheckpointOperationParams */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/checkpoint/CheckpointOperationParams.js");
|
|
1619
|
+
/* harmony import */ var _thumbnail_ThumbnailOperationParams__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./thumbnail/ThumbnailOperationParams */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/thumbnail/ThumbnailOperationParams.js");
|
|
1620
|
+
/* harmony import */ var _user_UserOperationParams__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./user/UserOperationParams */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/user/UserOperationParams.js");
|
|
1621
|
+
/* harmony import */ var _user_permission_UserPermissionOperationParams__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./user-permission/UserPermissionOperationParams */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/user-permission/UserPermissionOperationParams.js");
|
|
1612
1622
|
/*---------------------------------------------------------------------------------------------
|
|
1613
1623
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
1614
1624
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -1625,9 +1635,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
1625
1635
|
|
|
1626
1636
|
/***/ }),
|
|
1627
1637
|
|
|
1628
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1638
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/SharedFunctions.js":
|
|
1629
1639
|
/*!***********************************************************************************************************************************************************************!*\
|
|
1630
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1640
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/SharedFunctions.js ***!
|
|
1631
1641
|
\***********************************************************************************************************************************************************************/
|
|
1632
1642
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
1633
1643
|
|
|
@@ -1650,9 +1660,9 @@ async function getUser(authorization, userOperations, urlFormatter, userLink) {
|
|
|
1650
1660
|
|
|
1651
1661
|
/***/ }),
|
|
1652
1662
|
|
|
1653
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1663
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/briefcase/BriefcaseOperationParams.js":
|
|
1654
1664
|
/*!******************************************************************************************************************************************************************************************!*\
|
|
1655
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1665
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/briefcase/BriefcaseOperationParams.js ***!
|
|
1656
1666
|
\******************************************************************************************************************************************************************************************/
|
|
1657
1667
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
1658
1668
|
|
|
@@ -1667,9 +1677,9 @@ const SPECIAL_VALUES_ME = "me";
|
|
|
1667
1677
|
|
|
1668
1678
|
/***/ }),
|
|
1669
1679
|
|
|
1670
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1680
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/briefcase/BriefcaseOperations.js":
|
|
1671
1681
|
/*!*************************************************************************************************************************************************************************************!*\
|
|
1672
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1682
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/briefcase/BriefcaseOperations.js ***!
|
|
1673
1683
|
\*************************************************************************************************************************************************************************************/
|
|
1674
1684
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
1675
1685
|
|
|
@@ -1678,9 +1688,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
1678
1688
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
1679
1689
|
/* harmony export */ "BriefcaseOperations": () => (/* binding */ BriefcaseOperations)
|
|
1680
1690
|
/* harmony export */ });
|
|
1681
|
-
/* harmony import */ var _base_internal__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../base/internal */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1682
|
-
/* harmony import */ var _base_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../base/types */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1683
|
-
/* harmony import */ var _SharedFunctions__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../SharedFunctions */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1691
|
+
/* harmony import */ var _base_internal__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../base/internal */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/internal/index.js");
|
|
1692
|
+
/* harmony import */ var _base_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../base/types */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/index.js");
|
|
1693
|
+
/* harmony import */ var _SharedFunctions__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../SharedFunctions */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/SharedFunctions.js");
|
|
1684
1694
|
/*---------------------------------------------------------------------------------------------
|
|
1685
1695
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
1686
1696
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -1762,9 +1772,9 @@ class BriefcaseOperations extends _base_internal__WEBPACK_IMPORTED_MODULE_0__.Op
|
|
|
1762
1772
|
|
|
1763
1773
|
/***/ }),
|
|
1764
1774
|
|
|
1765
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1775
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/changeset/ChangesetOperationParams.js":
|
|
1766
1776
|
/*!******************************************************************************************************************************************************************************************!*\
|
|
1767
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1777
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/changeset/ChangesetOperationParams.js ***!
|
|
1768
1778
|
\******************************************************************************************************************************************************************************************/
|
|
1769
1779
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
1770
1780
|
|
|
@@ -1785,9 +1795,9 @@ var ChangesetOrderByProperty;
|
|
|
1785
1795
|
|
|
1786
1796
|
/***/ }),
|
|
1787
1797
|
|
|
1788
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1798
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/changeset/ChangesetOperations.js":
|
|
1789
1799
|
/*!*************************************************************************************************************************************************************************************!*\
|
|
1790
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1800
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/changeset/ChangesetOperations.js ***!
|
|
1791
1801
|
\*************************************************************************************************************************************************************************************/
|
|
1792
1802
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
1793
1803
|
|
|
@@ -1796,9 +1806,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
1796
1806
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
1797
1807
|
/* harmony export */ "ChangesetOperations": () => (/* binding */ ChangesetOperations)
|
|
1798
1808
|
/* harmony export */ });
|
|
1799
|
-
/* harmony import */ var _base_internal__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../base/internal */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1800
|
-
/* harmony import */ var _base_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../base/types */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1801
|
-
/* harmony import */ var _SharedFunctions__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../SharedFunctions */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1809
|
+
/* harmony import */ var _base_internal__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../base/internal */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/internal/index.js");
|
|
1810
|
+
/* harmony import */ var _base_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../base/types */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/index.js");
|
|
1811
|
+
/* harmony import */ var _SharedFunctions__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../SharedFunctions */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/SharedFunctions.js");
|
|
1802
1812
|
/*---------------------------------------------------------------------------------------------
|
|
1803
1813
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
1804
1814
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -1921,9 +1931,9 @@ class ChangesetOperations extends _base_internal__WEBPACK_IMPORTED_MODULE_0__.Op
|
|
|
1921
1931
|
|
|
1922
1932
|
/***/ }),
|
|
1923
1933
|
|
|
1924
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1934
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/checkpoint/CheckpointOperationParams.js":
|
|
1925
1935
|
/*!********************************************************************************************************************************************************************************************!*\
|
|
1926
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1936
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/checkpoint/CheckpointOperationParams.js ***!
|
|
1927
1937
|
\********************************************************************************************************************************************************************************************/
|
|
1928
1938
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
1929
1939
|
|
|
@@ -1934,9 +1944,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
1934
1944
|
|
|
1935
1945
|
/***/ }),
|
|
1936
1946
|
|
|
1937
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1947
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/checkpoint/CheckpointOperations.js":
|
|
1938
1948
|
/*!***************************************************************************************************************************************************************************************!*\
|
|
1939
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1949
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/checkpoint/CheckpointOperations.js ***!
|
|
1940
1950
|
\***************************************************************************************************************************************************************************************/
|
|
1941
1951
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
1942
1952
|
|
|
@@ -1945,7 +1955,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
1945
1955
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
1946
1956
|
/* harmony export */ "CheckpointOperations": () => (/* binding */ CheckpointOperations)
|
|
1947
1957
|
/* harmony export */ });
|
|
1948
|
-
/* harmony import */ var _base_internal__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../base/internal */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1958
|
+
/* harmony import */ var _base_internal__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../base/internal */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/internal/index.js");
|
|
1949
1959
|
/*---------------------------------------------------------------------------------------------
|
|
1950
1960
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
1951
1961
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -1974,9 +1984,9 @@ class CheckpointOperations extends _base_internal__WEBPACK_IMPORTED_MODULE_0__.O
|
|
|
1974
1984
|
|
|
1975
1985
|
/***/ }),
|
|
1976
1986
|
|
|
1977
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1987
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/imodel/IModelOperationParams.js":
|
|
1978
1988
|
/*!************************************************************************************************************************************************************************************!*\
|
|
1979
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
1989
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/imodel/IModelOperationParams.js ***!
|
|
1980
1990
|
\************************************************************************************************************************************************************************************/
|
|
1981
1991
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
1982
1992
|
|
|
@@ -1997,9 +2007,9 @@ var IModelOrderByProperty;
|
|
|
1997
2007
|
|
|
1998
2008
|
/***/ }),
|
|
1999
2009
|
|
|
2000
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
2010
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/imodel/IModelOperations.js":
|
|
2001
2011
|
/*!*******************************************************************************************************************************************************************************!*\
|
|
2002
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
2012
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/imodel/IModelOperations.js ***!
|
|
2003
2013
|
\*******************************************************************************************************************************************************************************/
|
|
2004
2014
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
2005
2015
|
|
|
@@ -2008,8 +2018,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2008
2018
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
2009
2019
|
/* harmony export */ "IModelOperations": () => (/* binding */ IModelOperations)
|
|
2010
2020
|
/* harmony export */ });
|
|
2011
|
-
/* harmony import */ var _base_internal__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../base/internal */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
2012
|
-
/* harmony import */ var _base_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../base/types */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
2021
|
+
/* harmony import */ var _base_internal__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../base/internal */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/internal/index.js");
|
|
2022
|
+
/* harmony import */ var _base_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../base/types */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/index.js");
|
|
2013
2023
|
/*---------------------------------------------------------------------------------------------
|
|
2014
2024
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
2015
2025
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -2017,6 +2027,10 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2017
2027
|
|
|
2018
2028
|
|
|
2019
2029
|
class IModelOperations extends _base_internal__WEBPACK_IMPORTED_MODULE_0__.OperationsBase {
|
|
2030
|
+
constructor(options, _iModelsClient) {
|
|
2031
|
+
super(options);
|
|
2032
|
+
this._iModelsClient = _iModelsClient;
|
|
2033
|
+
}
|
|
2020
2034
|
/**
|
|
2021
2035
|
* Gets iModels for a specific project. This method returns iModels in their minimal representation. The returned iterator
|
|
2022
2036
|
* internally queries entities in pages. Wraps the {@link https://developer.bentley.com/apis/imodels/operations/get-project-imodels/ Get Project iModels}
|
|
@@ -2040,11 +2054,16 @@ class IModelOperations extends _base_internal__WEBPACK_IMPORTED_MODULE_0__.Opera
|
|
|
2040
2054
|
* @returns {EntityListIterator<iModel>} iterator for iModel list. See {@link EntityListIterator}, {@link iModel}.
|
|
2041
2055
|
*/
|
|
2042
2056
|
getRepresentationList(params) {
|
|
2057
|
+
const entityCollectionAccessor = (response) => {
|
|
2058
|
+
const iModels = response.iModels;
|
|
2059
|
+
const mappedIModels = iModels.map((iModel) => this.appendRelatedEntityCallbacks(params.authorization, iModel));
|
|
2060
|
+
return mappedIModels;
|
|
2061
|
+
};
|
|
2043
2062
|
return new _base_internal__WEBPACK_IMPORTED_MODULE_0__.EntityListIteratorImpl(async () => this.getEntityCollectionPage({
|
|
2044
2063
|
authorization: params.authorization,
|
|
2045
2064
|
url: this._options.urlFormatter.getIModelListUrl({ urlParams: params.urlParams }),
|
|
2046
2065
|
preferReturn: _base_types__WEBPACK_IMPORTED_MODULE_1__.PreferReturn.Representation,
|
|
2047
|
-
entityCollectionAccessor
|
|
2066
|
+
entityCollectionAccessor
|
|
2048
2067
|
}));
|
|
2049
2068
|
}
|
|
2050
2069
|
/**
|
|
@@ -2058,7 +2077,8 @@ class IModelOperations extends _base_internal__WEBPACK_IMPORTED_MODULE_0__.Opera
|
|
|
2058
2077
|
authorization: params.authorization,
|
|
2059
2078
|
url: this._options.urlFormatter.getSingleIModelUrl({ iModelId: params.iModelId })
|
|
2060
2079
|
});
|
|
2061
|
-
|
|
2080
|
+
const result = this.appendRelatedEntityCallbacks(params.authorization, response.iModel);
|
|
2081
|
+
return result;
|
|
2062
2082
|
}
|
|
2063
2083
|
/**
|
|
2064
2084
|
* Creates an empty iModel with specified properties. Wraps the
|
|
@@ -2068,7 +2088,9 @@ class IModelOperations extends _base_internal__WEBPACK_IMPORTED_MODULE_0__.Opera
|
|
|
2068
2088
|
*/
|
|
2069
2089
|
async createEmpty(params) {
|
|
2070
2090
|
const createIModelBody = this.getCreateEmptyIModelRequestBody(params.iModelProperties);
|
|
2071
|
-
|
|
2091
|
+
const createdIModel = await this.sendIModelPostRequest(params.authorization, createIModelBody);
|
|
2092
|
+
const result = this.appendRelatedEntityCallbacks(params.authorization, createdIModel);
|
|
2093
|
+
return result;
|
|
2072
2094
|
}
|
|
2073
2095
|
/**
|
|
2074
2096
|
* Creates an iModel from a template. Wraps the
|
|
@@ -2107,7 +2129,8 @@ class IModelOperations extends _base_internal__WEBPACK_IMPORTED_MODULE_0__.Opera
|
|
|
2107
2129
|
url: this._options.urlFormatter.getSingleIModelUrl({ iModelId: params.iModelId }),
|
|
2108
2130
|
body: updateIModelBody
|
|
2109
2131
|
});
|
|
2110
|
-
|
|
2132
|
+
const result = this.appendRelatedEntityCallbacks(params.authorization, updateIModelResponse.iModel);
|
|
2133
|
+
return result;
|
|
2111
2134
|
}
|
|
2112
2135
|
/**
|
|
2113
2136
|
* Deletes an iModel with specified id. Wraps the {@link https://developer.bentley.com/apis/imodels/operations/delete-imodel/ Delete iModel}
|
|
@@ -2121,6 +2144,14 @@ class IModelOperations extends _base_internal__WEBPACK_IMPORTED_MODULE_0__.Opera
|
|
|
2121
2144
|
url: this._options.urlFormatter.getSingleIModelUrl({ iModelId: params.iModelId })
|
|
2122
2145
|
});
|
|
2123
2146
|
}
|
|
2147
|
+
appendRelatedEntityCallbacks(authorization, iModel) {
|
|
2148
|
+
const getCreator = async () => { var _a; return this.getCreator(authorization, (_a = iModel._links.creator) === null || _a === void 0 ? void 0 : _a.href); };
|
|
2149
|
+
const result = {
|
|
2150
|
+
...iModel,
|
|
2151
|
+
getCreator
|
|
2152
|
+
};
|
|
2153
|
+
return result;
|
|
2154
|
+
}
|
|
2124
2155
|
getCreateEmptyIModelRequestBody(iModelProperties) {
|
|
2125
2156
|
return {
|
|
2126
2157
|
projectId: iModelProperties.projectId,
|
|
@@ -2137,6 +2168,16 @@ class IModelOperations extends _base_internal__WEBPACK_IMPORTED_MODULE_0__.Opera
|
|
|
2137
2168
|
});
|
|
2138
2169
|
return createIModelResponse.iModel;
|
|
2139
2170
|
}
|
|
2171
|
+
async getCreator(authorization, creatorLink) {
|
|
2172
|
+
if (!creatorLink)
|
|
2173
|
+
return undefined;
|
|
2174
|
+
const { iModelId, userId } = this._options.urlFormatter.parseUserUrl(creatorLink);
|
|
2175
|
+
return this._iModelsClient.users.getSingle({
|
|
2176
|
+
authorization,
|
|
2177
|
+
iModelId,
|
|
2178
|
+
userId
|
|
2179
|
+
});
|
|
2180
|
+
}
|
|
2140
2181
|
getCreateIModelFromTemplateRequestBody(iModelProperties) {
|
|
2141
2182
|
return {
|
|
2142
2183
|
...this.getCreateEmptyIModelRequestBody(iModelProperties),
|
|
@@ -2175,9 +2216,9 @@ class IModelOperations extends _base_internal__WEBPACK_IMPORTED_MODULE_0__.Opera
|
|
|
2175
2216
|
|
|
2176
2217
|
/***/ }),
|
|
2177
2218
|
|
|
2178
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
2219
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/index.js":
|
|
2179
2220
|
/*!*************************************************************************************************************************************************************!*\
|
|
2180
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
2221
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/index.js ***!
|
|
2181
2222
|
\*************************************************************************************************************************************************************/
|
|
2182
2223
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
2183
2224
|
|
|
@@ -2199,11 +2240,11 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2199
2240
|
/* harmony export */ "UserPermissionOperations": () => (/* reexport safe */ _OperationExports__WEBPACK_IMPORTED_MODULE_0__.UserPermissionOperations),
|
|
2200
2241
|
/* harmony export */ "getUser": () => (/* reexport safe */ _SharedFunctions__WEBPACK_IMPORTED_MODULE_4__.getUser)
|
|
2201
2242
|
/* harmony export */ });
|
|
2202
|
-
/* harmony import */ var _OperationExports__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./OperationExports */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
2203
|
-
/* harmony import */ var _OperationParamExports__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./OperationParamExports */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
2204
|
-
/* harmony import */ var _OperationOptions__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./OperationOptions */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
2205
|
-
/* harmony import */ var _IModelsApiUrlFormatter__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./IModelsApiUrlFormatter */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
2206
|
-
/* harmony import */ var _SharedFunctions__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./SharedFunctions */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
2243
|
+
/* harmony import */ var _OperationExports__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./OperationExports */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/OperationExports.js");
|
|
2244
|
+
/* harmony import */ var _OperationParamExports__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./OperationParamExports */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/OperationParamExports.js");
|
|
2245
|
+
/* harmony import */ var _OperationOptions__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./OperationOptions */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/OperationOptions.js");
|
|
2246
|
+
/* harmony import */ var _IModelsApiUrlFormatter__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./IModelsApiUrlFormatter */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/IModelsApiUrlFormatter.js");
|
|
2247
|
+
/* harmony import */ var _SharedFunctions__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./SharedFunctions */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/SharedFunctions.js");
|
|
2207
2248
|
/*---------------------------------------------------------------------------------------------
|
|
2208
2249
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
2209
2250
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -2217,9 +2258,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2217
2258
|
|
|
2218
2259
|
/***/ }),
|
|
2219
2260
|
|
|
2220
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
2261
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/named-version/NamedVersionOperationParams.js":
|
|
2221
2262
|
/*!*************************************************************************************************************************************************************************************************!*\
|
|
2222
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
2263
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/named-version/NamedVersionOperationParams.js ***!
|
|
2223
2264
|
\*************************************************************************************************************************************************************************************************/
|
|
2224
2265
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
2225
2266
|
|
|
@@ -2240,9 +2281,9 @@ var NamedVersionOrderByProperty;
|
|
|
2240
2281
|
|
|
2241
2282
|
/***/ }),
|
|
2242
2283
|
|
|
2243
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
2284
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/named-version/NamedVersionOperations.js":
|
|
2244
2285
|
/*!********************************************************************************************************************************************************************************************!*\
|
|
2245
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
2286
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/named-version/NamedVersionOperations.js ***!
|
|
2246
2287
|
\********************************************************************************************************************************************************************************************/
|
|
2247
2288
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
2248
2289
|
|
|
@@ -2251,9 +2292,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2251
2292
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
2252
2293
|
/* harmony export */ "NamedVersionOperations": () => (/* binding */ NamedVersionOperations)
|
|
2253
2294
|
/* harmony export */ });
|
|
2254
|
-
/* harmony import */ var _base_internal__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../base/internal */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
2255
|
-
/* harmony import */ var _base_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../base/types */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
2256
|
-
/* harmony import */ var _SharedFunctions__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../SharedFunctions */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
2295
|
+
/* harmony import */ var _base_internal__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../base/internal */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/internal/index.js");
|
|
2296
|
+
/* harmony import */ var _base_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../base/types */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/index.js");
|
|
2297
|
+
/* harmony import */ var _SharedFunctions__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../SharedFunctions */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/SharedFunctions.js");
|
|
2257
2298
|
/*---------------------------------------------------------------------------------------------
|
|
2258
2299
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
2259
2300
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -2395,9 +2436,9 @@ class NamedVersionOperations extends _base_internal__WEBPACK_IMPORTED_MODULE_0__
|
|
|
2395
2436
|
|
|
2396
2437
|
/***/ }),
|
|
2397
2438
|
|
|
2398
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
2439
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/thumbnail/ThumbnailOperationParams.js":
|
|
2399
2440
|
/*!******************************************************************************************************************************************************************************************!*\
|
|
2400
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
2441
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/thumbnail/ThumbnailOperationParams.js ***!
|
|
2401
2442
|
\******************************************************************************************************************************************************************************************/
|
|
2402
2443
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
2403
2444
|
|
|
@@ -2408,9 +2449,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2408
2449
|
|
|
2409
2450
|
/***/ }),
|
|
2410
2451
|
|
|
2411
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
2452
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/thumbnail/ThumbnailOperations.js":
|
|
2412
2453
|
/*!*************************************************************************************************************************************************************************************!*\
|
|
2413
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
2454
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/thumbnail/ThumbnailOperations.js ***!
|
|
2414
2455
|
\*************************************************************************************************************************************************************************************/
|
|
2415
2456
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
2416
2457
|
|
|
@@ -2419,8 +2460,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2419
2460
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
2420
2461
|
/* harmony export */ "ThumbnailOperations": () => (/* binding */ ThumbnailOperations)
|
|
2421
2462
|
/* harmony export */ });
|
|
2422
|
-
/* harmony import */ var _base_internal__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../base/internal */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
2423
|
-
/* harmony import */ var _base_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../base/types */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
2463
|
+
/* harmony import */ var _base_internal__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../base/internal */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/internal/index.js");
|
|
2464
|
+
/* harmony import */ var _base_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../base/types */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/index.js");
|
|
2424
2465
|
/*---------------------------------------------------------------------------------------------
|
|
2425
2466
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
2426
2467
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -2484,9 +2525,9 @@ class ThumbnailOperations extends _base_internal__WEBPACK_IMPORTED_MODULE_0__.Op
|
|
|
2484
2525
|
|
|
2485
2526
|
/***/ }),
|
|
2486
2527
|
|
|
2487
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
2528
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/user-permission/UserPermissionOperationParams.js":
|
|
2488
2529
|
/*!*****************************************************************************************************************************************************************************************************!*\
|
|
2489
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
2530
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/user-permission/UserPermissionOperationParams.js ***!
|
|
2490
2531
|
\*****************************************************************************************************************************************************************************************************/
|
|
2491
2532
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
2492
2533
|
|
|
@@ -2497,9 +2538,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2497
2538
|
|
|
2498
2539
|
/***/ }),
|
|
2499
2540
|
|
|
2500
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
2541
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/user-permission/UserPermissionOperations.js":
|
|
2501
2542
|
/*!************************************************************************************************************************************************************************************************!*\
|
|
2502
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
2543
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/user-permission/UserPermissionOperations.js ***!
|
|
2503
2544
|
\************************************************************************************************************************************************************************************************/
|
|
2504
2545
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
2505
2546
|
|
|
@@ -2508,7 +2549,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2508
2549
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
2509
2550
|
/* harmony export */ "UserPermissionOperations": () => (/* binding */ UserPermissionOperations)
|
|
2510
2551
|
/* harmony export */ });
|
|
2511
|
-
/* harmony import */ var _base_internal__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../base/internal */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
2552
|
+
/* harmony import */ var _base_internal__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../base/internal */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/internal/index.js");
|
|
2512
2553
|
/*---------------------------------------------------------------------------------------------
|
|
2513
2554
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
2514
2555
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -2537,9 +2578,9 @@ class UserPermissionOperations extends _base_internal__WEBPACK_IMPORTED_MODULE_0
|
|
|
2537
2578
|
|
|
2538
2579
|
/***/ }),
|
|
2539
2580
|
|
|
2540
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
2581
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/user/UserOperationParams.js":
|
|
2541
2582
|
/*!********************************************************************************************************************************************************************************!*\
|
|
2542
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
2583
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/user/UserOperationParams.js ***!
|
|
2543
2584
|
\********************************************************************************************************************************************************************************/
|
|
2544
2585
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
2545
2586
|
|
|
@@ -2550,9 +2591,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2550
2591
|
|
|
2551
2592
|
/***/ }),
|
|
2552
2593
|
|
|
2553
|
-
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
2594
|
+
/***/ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/user/UserOperations.js":
|
|
2554
2595
|
/*!***************************************************************************************************************************************************************************!*\
|
|
2555
|
-
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
2596
|
+
!*** ../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/operations/user/UserOperations.js ***!
|
|
2556
2597
|
\***************************************************************************************************************************************************************************/
|
|
2557
2598
|
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
|
2558
2599
|
|
|
@@ -2561,8 +2602,8 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
2561
2602
|
/* harmony export */ __webpack_require__.d(__webpack_exports__, {
|
|
2562
2603
|
/* harmony export */ "UserOperations": () => (/* binding */ UserOperations)
|
|
2563
2604
|
/* harmony export */ });
|
|
2564
|
-
/* harmony import */ var _base_internal__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../base/internal */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
2565
|
-
/* harmony import */ var _base_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../base/types */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
2605
|
+
/* harmony import */ var _base_internal__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../base/internal */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/internal/index.js");
|
|
2606
|
+
/* harmony import */ var _base_types__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../base/types */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/base/types/index.js");
|
|
2566
2607
|
/*---------------------------------------------------------------------------------------------
|
|
2567
2608
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
2568
2609
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
@@ -2772,7 +2813,7 @@ exports.getAccessTokenFromBackend = exports.getTokenCallbackName = void 0;
|
|
|
2772
2813
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
2773
2814
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
2774
2815
|
*--------------------------------------------------------------------------------------------*/
|
|
2775
|
-
const CallbackUtils_1 = __webpack_require__(/*! @itwin/certa/lib/utils/CallbackUtils */ "../../common/temp/node_modules/.pnpm/@itwin+certa@3.
|
|
2816
|
+
const CallbackUtils_1 = __webpack_require__(/*! @itwin/certa/lib/utils/CallbackUtils */ "../../common/temp/node_modules/.pnpm/@itwin+certa@3.6.0/node_modules/@itwin/certa/lib/utils/CallbackUtils.js");
|
|
2776
2817
|
// Shared by both the frontend and backend side of the tests
|
|
2777
2818
|
exports.getTokenCallbackName = "getToken";
|
|
2778
2819
|
async function getAccessTokenFromBackend(user, oidcConfig) {
|
|
@@ -100802,6 +100843,9 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
100802
100843
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
100803
100844
|
* See LICENSE.md in the project root for license terms and full copyright notice.
|
|
100804
100845
|
*--------------------------------------------------------------------------------------------*/
|
|
100846
|
+
/** @packageDocumentation
|
|
100847
|
+
* @module IModelApp
|
|
100848
|
+
*/
|
|
100805
100849
|
|
|
100806
100850
|
|
|
100807
100851
|
|
|
@@ -100856,12 +100900,16 @@ class NullRenderSystem extends _render_RenderSystem__WEBPACK_IMPORTED_MODULE_2__
|
|
|
100856
100900
|
constructor() { super(); }
|
|
100857
100901
|
createRenderGraphic() { return undefined; }
|
|
100858
100902
|
}
|
|
100859
|
-
/**
|
|
100860
|
-
*
|
|
100861
|
-
*
|
|
100862
|
-
*
|
|
100903
|
+
/** A utility class intended for applications (primarily test-runners) that run in environments that lack support for WebGL.
|
|
100904
|
+
* It installs a [[RenderSystem]] that produces no graphics.
|
|
100905
|
+
* Use [[NoRenderApp.startup]] instead of [[IModelApp.startup]] to initialize your application frontend.
|
|
100906
|
+
* You may then use the [[IModelApp]] API as normal.
|
|
100907
|
+
* @public
|
|
100863
100908
|
*/
|
|
100864
100909
|
class NoRenderApp {
|
|
100910
|
+
/** Initializes [[IModelApp]] with a [[RenderSystem]] that produces no graphics.
|
|
100911
|
+
* Use this in place of [[IModelApp.startup]], then proceed to use [[IModelApp]]'s API as normal.
|
|
100912
|
+
*/
|
|
100865
100913
|
static async startup(opts) {
|
|
100866
100914
|
var _a;
|
|
100867
100915
|
opts = opts ? opts : {};
|
|
@@ -102421,7 +102469,6 @@ class HiliteSet {
|
|
|
102421
102469
|
/** Construct a HiliteSet
|
|
102422
102470
|
* @param iModel The iModel containing the entities to be hilited.
|
|
102423
102471
|
* @param syncWithSelectionSet If true, the contents of the `elements` set will be synchronized with those in the `iModel`'s [[SelectionSet]].
|
|
102424
|
-
* @internal
|
|
102425
102472
|
*/
|
|
102426
102473
|
constructor(iModel, syncWithSelectionSet = true) {
|
|
102427
102474
|
this.iModel = iModel;
|
|
@@ -212221,6 +212268,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
212221
212268
|
* `degrees` or `radians` because both are available if requested by caller.
|
|
212222
212269
|
* * The various access method are named so that callers can specify whether untyped numbers passed in or
|
|
212223
212270
|
* out are degrees or radians.
|
|
212271
|
+
* * Visualization can be found at https://www.itwinjs.org/sandbox/SaeedTorabi/AngleSweep
|
|
212224
212272
|
* @public
|
|
212225
212273
|
*/
|
|
212226
212274
|
class Angle {
|
|
@@ -212784,6 +212832,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
212784
212832
|
* * (350,370) covers the same unit angles as (-10,10).
|
|
212785
212833
|
* * (370,350) covers the same unit angles as (10,-10).
|
|
212786
212834
|
* * math details related fraction API can be found at docs/learning/geometry/Angle.md
|
|
212835
|
+
* * Visualization can be found at https://www.itwinjs.org/sandbox/SaeedTorabi/AngleSweep
|
|
212787
212836
|
* @public
|
|
212788
212837
|
*/
|
|
212789
212838
|
class AngleSweep {
|
|
@@ -218096,7 +218145,7 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
218096
218145
|
|
|
218097
218146
|
|
|
218098
218147
|
/* eslint-disable @itwin/prefer-get */
|
|
218099
|
-
// cSpell:words XXYZ YXYZ ZXYZ
|
|
218148
|
+
// cSpell:words XXYZ YXYZ ZXYZ SaeedTorabi
|
|
218100
218149
|
/**
|
|
218101
218150
|
* PackedMatrix3dOps contains static methods for matrix operations where the matrix is a Float64Array.
|
|
218102
218151
|
* * The Float64Array contains the matrix entries in row-major order
|
|
@@ -218506,9 +218555,20 @@ class Matrix3d {
|
|
|
218506
218555
|
return result;
|
|
218507
218556
|
}
|
|
218508
218557
|
/**
|
|
218509
|
-
|
|
218510
|
-
|
|
218511
|
-
|
|
218558
|
+
* Create the inverseCoffs member (filled with zeros)
|
|
218559
|
+
* This is for use by matrix * matrix multiplications which need to be sure the member is there to be
|
|
218560
|
+
* filled with method-specific content.
|
|
218561
|
+
*/
|
|
218562
|
+
createInverseCoffsWithZeros() {
|
|
218563
|
+
if (!this.inverseCoffs) {
|
|
218564
|
+
this.inverseState = InverseMatrixState.unknown;
|
|
218565
|
+
this.inverseCoffs = new Float64Array(9);
|
|
218566
|
+
}
|
|
218567
|
+
}
|
|
218568
|
+
/**
|
|
218569
|
+
* Copy the transpose of the coffs to the inverseCoffs.
|
|
218570
|
+
* * Mark the matrix as inverseStored.
|
|
218571
|
+
*/
|
|
218512
218572
|
setupInverseTranspose() {
|
|
218513
218573
|
const coffs = this.coffs;
|
|
218514
218574
|
this.inverseState = InverseMatrixState.inverseStored;
|
|
@@ -218727,6 +218787,7 @@ class Matrix3d {
|
|
|
218727
218787
|
* Construct a rigid matrix (orthogonal matrix with +1 determinant) using vectorA and its 2 perpendicular.
|
|
218728
218788
|
* * If axisOrder is not passed then `AxisOrder = AxisOrder.ZXY` is used as default.
|
|
218729
218789
|
* * This function internally uses createPerpendicularVectorFavorXYPlane and createRigidFromColumns.
|
|
218790
|
+
* * Visualization can be found at https://www.itwinjs.org/sandbox/SaeedTorabi/2PerpendicularVectorsTo1Vector
|
|
218730
218791
|
*/
|
|
218731
218792
|
static createRigidHeadsUp(vectorA, axisOrder = _Geometry__WEBPACK_IMPORTED_MODULE_0__.AxisOrder.ZXY, result) {
|
|
218732
218793
|
const vectorB = Matrix3d.createPerpendicularVectorFavorXYPlane(vectorA);
|
|
@@ -218776,7 +218837,7 @@ class Matrix3d {
|
|
|
218776
218837
|
/**
|
|
218777
218838
|
* Replace current rows Ui and Uj with (c*Ui + s*Uj) and (c*Uj - s*Ui).
|
|
218778
218839
|
* * There is no checking for i,j being 0,1,2.
|
|
218779
|
-
* @param i first row index.
|
|
218840
|
+
* @param i first row index. **must be 0,1,2** (unchecked)
|
|
218780
218841
|
* @param j second row index. **must be 0,1,2** (unchecked)
|
|
218781
218842
|
* @param c fist coefficient
|
|
218782
218843
|
* @param s second coefficient
|
|
@@ -219476,6 +219537,7 @@ class Matrix3d {
|
|
|
219476
219537
|
* \text{The matrix is } I + (s-1) D D^T
|
|
219477
219538
|
* \\ \text{with }D\text{ being the normalized direction vector and }s\text{ being the scale.}
|
|
219478
219539
|
* ```
|
|
219540
|
+
* * Visualization can be found at itwinjs.org/sandbox/SaeedTorabi/DirectionalScale
|
|
219479
219541
|
*/
|
|
219480
219542
|
static createDirectionalScale(direction, scale, result) {
|
|
219481
219543
|
const unit = direction.normalize();
|
|
@@ -219609,7 +219671,7 @@ class Matrix3d {
|
|
|
219609
219671
|
return result;
|
|
219610
219672
|
}
|
|
219611
219673
|
/**
|
|
219612
|
-
* Multiply transpose
|
|
219674
|
+
* Multiply the transpose matrix times a vector.
|
|
219613
219675
|
* * This produces the same x,y,z as treating the vector as a row on the left of the (un-transposed) matrix.
|
|
219614
219676
|
* ```
|
|
219615
219677
|
* equation
|
|
@@ -219618,7 +219680,7 @@ class Matrix3d {
|
|
|
219618
219680
|
* \text{Treating U as a row to the left of untransposed matrix\: return row}&\rowSubXYZ{V}&=&\rowSubXYZ{U}\matrixXY{A}
|
|
219619
219681
|
* \end{matrix}
|
|
219620
219682
|
* ```
|
|
219621
|
-
* @return the vector result
|
|
219683
|
+
* @return the vector result (optional)
|
|
219622
219684
|
*/
|
|
219623
219685
|
multiplyTransposeVector(vector, result) {
|
|
219624
219686
|
result = result ? result : new _Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Vector3d();
|
|
@@ -219630,87 +219692,100 @@ class Matrix3d {
|
|
|
219630
219692
|
result.z = this.coffs[2] * x + this.coffs[5] * y + this.coffs[8] * z;
|
|
219631
219693
|
return result;
|
|
219632
219694
|
}
|
|
219633
|
-
/**
|
|
219634
|
-
*
|
|
219695
|
+
/**
|
|
219696
|
+
* Multiply the matrix * [x,y,z], i.e. the vector [x,y,z] is a column vector on the right.
|
|
219697
|
+
* @return the vector result (optional)
|
|
219635
219698
|
*/
|
|
219636
219699
|
multiplyXYZ(x, y, z, result) {
|
|
219637
219700
|
result = result ? result : new _Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Vector3d();
|
|
219638
|
-
result.x =
|
|
219639
|
-
result.y =
|
|
219640
|
-
result.z =
|
|
219701
|
+
result.x = this.coffs[0] * x + this.coffs[1] * y + this.coffs[2] * z;
|
|
219702
|
+
result.y = this.coffs[3] * x + this.coffs[4] * y + this.coffs[5] * z;
|
|
219703
|
+
result.z = this.coffs[6] * x + this.coffs[7] * y + this.coffs[8] * z;
|
|
219641
219704
|
return result;
|
|
219642
219705
|
}
|
|
219643
|
-
/**
|
|
219644
|
-
*
|
|
219645
|
-
*
|
|
219706
|
+
/**
|
|
219707
|
+
* Multiply the matrix * xyz, place result in (required) return value.
|
|
219708
|
+
* @param xyz right side
|
|
219709
|
+
* @param result the result.
|
|
219646
219710
|
*/
|
|
219647
219711
|
multiplyXYZtoXYZ(xyz, result) {
|
|
219648
219712
|
const x = xyz.x;
|
|
219649
219713
|
const y = xyz.y;
|
|
219650
219714
|
const z = xyz.z;
|
|
219651
|
-
result.x =
|
|
219652
|
-
result.y =
|
|
219653
|
-
result.z =
|
|
219715
|
+
result.x = this.coffs[0] * x + this.coffs[1] * y + this.coffs[2] * z;
|
|
219716
|
+
result.y = this.coffs[3] * x + this.coffs[4] * y + this.coffs[5] * z;
|
|
219717
|
+
result.z = this.coffs[6] * x + this.coffs[7] * y + this.coffs[8] * z;
|
|
219654
219718
|
return result;
|
|
219655
219719
|
}
|
|
219656
|
-
/**
|
|
219657
|
-
*
|
|
219720
|
+
/**
|
|
219721
|
+
* Multiply the matrix * [x,y,0], i.e. the vector [x,y,0] is a column vector on the right.
|
|
219722
|
+
* @return the vector result (optional)
|
|
219658
219723
|
*/
|
|
219659
219724
|
multiplyXY(x, y, result) {
|
|
219660
219725
|
result = result ? result : new _Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Vector3d();
|
|
219661
|
-
result.x =
|
|
219662
|
-
result.y =
|
|
219663
|
-
result.z =
|
|
219726
|
+
result.x = this.coffs[0] * x + this.coffs[1] * y;
|
|
219727
|
+
result.y = this.coffs[3] * x + this.coffs[4] * y;
|
|
219728
|
+
result.z = this.coffs[6] * x + this.coffs[7] * y;
|
|
219664
219729
|
return result;
|
|
219665
219730
|
}
|
|
219666
|
-
/**
|
|
219731
|
+
/**
|
|
219732
|
+
* Compute origin + the matrix * [x,y,0].
|
|
219733
|
+
* @return the vector result (optional)
|
|
219734
|
+
*/
|
|
219667
219735
|
originPlusMatrixTimesXY(origin, x, y, result) {
|
|
219668
219736
|
return _Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Point3d.create(origin.x + this.coffs[0] * x + this.coffs[1] * y, origin.y + this.coffs[3] * x + this.coffs[4] * y, origin.z + this.coffs[6] * x + this.coffs[7] * y, result);
|
|
219669
219737
|
}
|
|
219670
|
-
/**
|
|
219738
|
+
/**
|
|
219739
|
+
* Multiply the matrix * (x,y,z) in place, i.e. the vector (x,y,z) is a column vector on the right and
|
|
219740
|
+
* the multiplication updates the vector values.
|
|
219741
|
+
* @param xyzData the vector data
|
|
219742
|
+
*/
|
|
219671
219743
|
multiplyVectorInPlace(xyzData) {
|
|
219672
219744
|
const x = xyzData.x;
|
|
219673
219745
|
const y = xyzData.y;
|
|
219674
219746
|
const z = xyzData.z;
|
|
219675
|
-
|
|
219676
|
-
xyzData.
|
|
219677
|
-
xyzData.
|
|
219678
|
-
xyzData.z = (coffs[6] * x + coffs[7] * y + coffs[8] * z);
|
|
219747
|
+
xyzData.x = this.coffs[0] * x + this.coffs[1] * y + this.coffs[2] * z;
|
|
219748
|
+
xyzData.y = this.coffs[3] * x + this.coffs[4] * y + this.coffs[5] * z;
|
|
219749
|
+
xyzData.z = this.coffs[6] * x + this.coffs[7] * y + this.coffs[8] * z;
|
|
219679
219750
|
}
|
|
219680
|
-
/**
|
|
219681
|
-
*
|
|
219751
|
+
/**
|
|
219752
|
+
* Multiply the transpose matrix times [x,y,z] in place, i.e. the vector [x,y,z] is a column vector on
|
|
219753
|
+
* the right and the multiplication updates the vector values.
|
|
219754
|
+
* * This is equivalent to `multiplyTransposeVector` but always returns the result directly in the input.
|
|
219755
|
+
* @param xyzData the vector data
|
|
219682
219756
|
*/
|
|
219683
219757
|
multiplyTransposeVectorInPlace(vectorU) {
|
|
219684
219758
|
const x = vectorU.x;
|
|
219685
219759
|
const y = vectorU.y;
|
|
219686
219760
|
const z = vectorU.z;
|
|
219687
|
-
|
|
219688
|
-
vectorU.
|
|
219689
|
-
vectorU.
|
|
219690
|
-
vectorU.z = (coffs[2] * x + coffs[5] * y + coffs[8] * z);
|
|
219761
|
+
vectorU.x = this.coffs[0] * x + this.coffs[3] * y + this.coffs[6] * z;
|
|
219762
|
+
vectorU.y = this.coffs[1] * x + this.coffs[4] * y + this.coffs[7] * z;
|
|
219763
|
+
vectorU.z = this.coffs[2] * x + this.coffs[5] * y + this.coffs[8] * z;
|
|
219691
219764
|
}
|
|
219692
|
-
/**
|
|
219693
|
-
*
|
|
219765
|
+
/**
|
|
219766
|
+
* Multiply the transpose matrix times column using individual numeric inputs.
|
|
219767
|
+
* * This produces the same x,y,z as treating the vector as a row on the left of the (un-transposed) matrix.
|
|
219694
219768
|
* ```
|
|
219695
219769
|
* equation
|
|
219696
219770
|
* \begin{matrix}
|
|
219697
|
-
* \text{treating the input as a column } \columnXYZ{x}{y}{z}\text{ compute }&\columnSubXYZ{V} &= &A^T \columnXYZ{x}{y}{z} \\
|
|
219698
|
-
* \text{or row vector } \rowXYZ{x}{y}{z} \text{ compute }&\rowSubXYZ{V} &= &\rowXYZ{x}{y}{z} A \\
|
|
219771
|
+
* \text{treating the input as a column vector } \columnXYZ{x}{y}{z}\text{ compute }&\columnSubXYZ{V} &= &A^T \columnXYZ{x}{y}{z} \\
|
|
219772
|
+
* \text{or as a row vector } \rowXYZ{x}{y}{z} \text{ compute }&\rowSubXYZ{V} &= &\rowXYZ{x}{y}{z} A \\
|
|
219699
219773
|
* \phantom{8888}\text{and return V as a Vector3d} & & &
|
|
219700
219774
|
* \end{matrix}
|
|
219701
219775
|
* ````
|
|
219702
|
-
* @return the vector result
|
|
219776
|
+
* @return the vector result (optional)
|
|
219703
219777
|
*/
|
|
219704
219778
|
multiplyTransposeXYZ(x, y, z, result) {
|
|
219705
219779
|
result = result ? result : new _Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Vector3d();
|
|
219706
|
-
result.x =
|
|
219707
|
-
result.y =
|
|
219708
|
-
result.z =
|
|
219780
|
+
result.x = this.coffs[0] * x + this.coffs[3] * y + this.coffs[6] * z;
|
|
219781
|
+
result.y = this.coffs[1] * x + this.coffs[4] * y + this.coffs[7] * z;
|
|
219782
|
+
result.z = this.coffs[2] * x + this.coffs[5] * y + this.coffs[8] * z;
|
|
219709
219783
|
return result;
|
|
219710
219784
|
}
|
|
219711
|
-
/**
|
|
219712
|
-
*
|
|
219713
|
-
* *
|
|
219785
|
+
/**
|
|
219786
|
+
* Solve `matrix * result = vector` for an unknown `result`.
|
|
219787
|
+
* * This is equivalent to multiplication `result = inverse matrix * vector`.
|
|
219788
|
+
* * Result is undefined if the matrix is singular (e.g. has parallel columns or a zero magnitude column)
|
|
219714
219789
|
*/
|
|
219715
219790
|
multiplyInverse(vector, result) {
|
|
219716
219791
|
this.computeCachedInverse(true);
|
|
@@ -219718,13 +219793,14 @@ class Matrix3d {
|
|
|
219718
219793
|
const x = vector.x;
|
|
219719
219794
|
const y = vector.y;
|
|
219720
219795
|
const z = vector.z;
|
|
219721
|
-
return _Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Vector3d.create(
|
|
219796
|
+
return _Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Vector3d.create(this.inverseCoffs[0] * x + this.inverseCoffs[1] * y + this.inverseCoffs[2] * z, this.inverseCoffs[3] * x + this.inverseCoffs[4] * y + this.inverseCoffs[5] * z, this.inverseCoffs[6] * x + this.inverseCoffs[7] * y + this.inverseCoffs[8] * z, result);
|
|
219722
219797
|
}
|
|
219723
219798
|
return undefined;
|
|
219724
219799
|
}
|
|
219725
|
-
/**
|
|
219800
|
+
/**
|
|
219801
|
+
* Solve `matrixTranspose * result = vector` for an unknown `result`.
|
|
219726
219802
|
* * This is equivalent to multiplication `result = matrixInverseTranspose * vector`.
|
|
219727
|
-
* * Result is undefined if the matrix is singular (e.g. has parallel or zero
|
|
219803
|
+
* * Result is undefined if the matrix is singular (e.g. has parallel columns or a zero magnitude column)
|
|
219728
219804
|
*/
|
|
219729
219805
|
multiplyInverseTranspose(vector, result) {
|
|
219730
219806
|
this.computeCachedInverse(true);
|
|
@@ -219732,87 +219808,91 @@ class Matrix3d {
|
|
|
219732
219808
|
const x = vector.x;
|
|
219733
219809
|
const y = vector.y;
|
|
219734
219810
|
const z = vector.z;
|
|
219735
|
-
return _Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Vector3d.create(
|
|
219811
|
+
return _Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Vector3d.create(this.inverseCoffs[0] * x + this.inverseCoffs[3] * y + this.inverseCoffs[6] * z, this.inverseCoffs[1] * x + this.inverseCoffs[4] * y + this.inverseCoffs[7] * z, this.inverseCoffs[2] * x + this.inverseCoffs[5] * y + this.inverseCoffs[8] * z, result);
|
|
219736
219812
|
}
|
|
219737
219813
|
return undefined;
|
|
219738
219814
|
}
|
|
219739
219815
|
/**
|
|
219740
|
-
*
|
|
219741
|
-
* *
|
|
219742
|
-
* *
|
|
219816
|
+
* Multiply `matrixInverse * [x,y,z]`.
|
|
219817
|
+
* * This is equivalent to solving `matrix * result = [x,y,z]` for an unknown `result`.
|
|
219818
|
+
* * Result is undefined if the matrix is singular (e.g. has parallel columns or a zero magnitude column)
|
|
219819
|
+
* @return result as a Vector3d or undefined (if the matrix is singular).
|
|
219743
219820
|
*/
|
|
219744
219821
|
multiplyInverseXYZAsVector3d(x, y, z, result) {
|
|
219745
219822
|
this.computeCachedInverse(true);
|
|
219746
219823
|
if (this.inverseCoffs) {
|
|
219747
|
-
return _Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Vector3d.create(
|
|
219824
|
+
return _Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Vector3d.create(this.inverseCoffs[0] * x + this.inverseCoffs[1] * y + this.inverseCoffs[2] * z, this.inverseCoffs[3] * x + this.inverseCoffs[4] * y + this.inverseCoffs[5] * z, this.inverseCoffs[6] * x + this.inverseCoffs[7] * y + this.inverseCoffs[8] * z, result);
|
|
219748
219825
|
}
|
|
219749
219826
|
return undefined;
|
|
219750
219827
|
}
|
|
219751
219828
|
/**
|
|
219752
|
-
*
|
|
219753
|
-
* *
|
|
219754
|
-
* *
|
|
219755
|
-
*
|
|
219829
|
+
* Multiply `matrixInverse * [x,y,z]` and return result as `Point4d` with given weight.
|
|
219830
|
+
* * Equivalent to solving `matrix * result = [x,y,z]` for an unknown `result`.
|
|
219831
|
+
* * Result is undefined if the matrix is singular (e.g. has parallel columns or a zero magnitude column)
|
|
219832
|
+
* @return result as a Point4d with the same weight.
|
|
219756
219833
|
*/
|
|
219757
219834
|
multiplyInverseXYZW(x, y, z, w, result) {
|
|
219758
219835
|
this.computeCachedInverse(true);
|
|
219759
219836
|
if (this.inverseCoffs) {
|
|
219760
|
-
return _geometry4d_Point4d__WEBPACK_IMPORTED_MODULE_4__.Point4d.create(
|
|
219837
|
+
return _geometry4d_Point4d__WEBPACK_IMPORTED_MODULE_4__.Point4d.create(this.inverseCoffs[0] * x + this.inverseCoffs[1] * y + this.inverseCoffs[2] * z, this.inverseCoffs[3] * x + this.inverseCoffs[4] * y + this.inverseCoffs[5] * z, this.inverseCoffs[6] * x + this.inverseCoffs[7] * y + this.inverseCoffs[8] * z, w, result);
|
|
219761
219838
|
}
|
|
219762
219839
|
return undefined;
|
|
219763
219840
|
}
|
|
219764
219841
|
/**
|
|
219765
|
-
*
|
|
219766
|
-
* *
|
|
219767
|
-
*
|
|
219768
|
-
* * return as a Point3d.
|
|
219842
|
+
* Multiply `matrixInverse * [x,y,z]` and return result as `Point3d`.
|
|
219843
|
+
* * Equivalent to solving `matrix * result = [x,y,z]` for an unknown `result`.
|
|
219844
|
+
* @return result as a Point3d or undefined (if the matrix is singular).
|
|
219769
219845
|
*/
|
|
219770
219846
|
multiplyInverseXYZAsPoint3d(x, y, z, result) {
|
|
219771
219847
|
this.computeCachedInverse(true);
|
|
219772
219848
|
if (this.inverseCoffs) {
|
|
219773
|
-
return _Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Point3d.create(
|
|
219849
|
+
return _Point3dVector3d__WEBPACK_IMPORTED_MODULE_2__.Point3d.create(this.inverseCoffs[0] * x + this.inverseCoffs[1] * y + this.inverseCoffs[2] * z, this.inverseCoffs[3] * x + this.inverseCoffs[4] * y + this.inverseCoffs[5] * z, this.inverseCoffs[6] * x + this.inverseCoffs[7] * y + this.inverseCoffs[8] * z, result);
|
|
219774
219850
|
}
|
|
219775
219851
|
return undefined;
|
|
219776
219852
|
}
|
|
219777
219853
|
/**
|
|
219778
|
-
*
|
|
219779
|
-
* * set
|
|
219780
|
-
*
|
|
219854
|
+
* Invoke a given matrix*matrix operation to compute the inverse matrix and set this.inverseCoffs
|
|
219855
|
+
* * If either input coffA or coffB is undefined, set state to `InverseMatrixState.unknown` but
|
|
219856
|
+
* leave the inverseCoffs untouched.
|
|
219857
|
+
* @param f the given matrix*matrix operation that is called by this function to compute the inverse.
|
|
219858
|
+
* `f` must be a matrix*matrix operation. Otherwise, the function does not generate the inverse properly.
|
|
219781
219859
|
*/
|
|
219782
219860
|
finishInverseCoffs(f, coffA, coffB) {
|
|
219783
219861
|
if (coffA && coffB) {
|
|
219784
219862
|
this.createInverseCoffsWithZeros();
|
|
219785
219863
|
this.inverseState = InverseMatrixState.inverseStored;
|
|
219786
|
-
f(coffA, coffB, this.inverseCoffs);
|
|
219864
|
+
f(coffA, coffB, this.inverseCoffs); // call function f (which is provided by user) to compute the inverse.
|
|
219787
219865
|
}
|
|
219788
219866
|
else {
|
|
219789
219867
|
this.inverseState = InverseMatrixState.unknown;
|
|
219790
219868
|
}
|
|
219791
219869
|
}
|
|
219792
|
-
|
|
219793
|
-
|
|
219794
|
-
|
|
219795
|
-
|
|
219796
|
-
|
|
219797
|
-
|
|
219798
|
-
|
|
219799
|
-
|
|
219800
|
-
|
|
219801
|
-
* @return the matrix product A * B
|
|
219870
|
+
// Notes on inverse of matrix products:
|
|
219871
|
+
// 1) M = A * B ===> MInverse = BInverse * AInverse
|
|
219872
|
+
// 2) M = A * BInverse ===> MInverse = B * AInverse
|
|
219873
|
+
// 3) M = AInverse * B ===> MInverse = BInverse * A
|
|
219874
|
+
// 4) M = A * BTranspose ===> MInverse = BInverseTranspose * AInverse
|
|
219875
|
+
// 5) M = ATranspose * B ===> MInverse = BInverse * AInverseTranspose
|
|
219876
|
+
/**
|
|
219877
|
+
* Multiply `this` matrix times `other` matrix
|
|
219878
|
+
* @return the matrix result: this*other
|
|
219802
219879
|
*/
|
|
219803
219880
|
multiplyMatrixMatrix(other, result) {
|
|
219804
219881
|
result = result ? result : new Matrix3d();
|
|
219805
219882
|
PackedMatrix3dOps.multiplyMatrixMatrix(this.coffs, other.coffs, result.coffs);
|
|
219806
|
-
if (this.inverseState === InverseMatrixState.inverseStored
|
|
219883
|
+
if (this.inverseState === InverseMatrixState.inverseStored
|
|
219884
|
+
&& other.inverseState === InverseMatrixState.inverseStored)
|
|
219807
219885
|
result.finishInverseCoffs(PackedMatrix3dOps.multiplyMatrixMatrix, other.inverseCoffs, this.inverseCoffs);
|
|
219808
|
-
else if (this.inverseState === InverseMatrixState.singular
|
|
219886
|
+
else if (this.inverseState === InverseMatrixState.singular
|
|
219887
|
+
|| other.inverseState === InverseMatrixState.singular)
|
|
219809
219888
|
result.inverseState = InverseMatrixState.singular;
|
|
219810
219889
|
else
|
|
219811
219890
|
result.inverseState = InverseMatrixState.unknown;
|
|
219812
219891
|
return result;
|
|
219813
219892
|
}
|
|
219814
|
-
/**
|
|
219815
|
-
*
|
|
219893
|
+
/**
|
|
219894
|
+
* Multiply `this` matrix times `inverse of other` matrix
|
|
219895
|
+
* @return the matrix result: this*otherInverse
|
|
219816
219896
|
*/
|
|
219817
219897
|
multiplyMatrixMatrixInverse(other, result) {
|
|
219818
219898
|
if (!other.computeCachedInverse(true))
|
|
@@ -219826,8 +219906,9 @@ class Matrix3d {
|
|
|
219826
219906
|
PackedMatrix3dOps.copy(Matrix3d._productBuffer, result.coffs);
|
|
219827
219907
|
return result;
|
|
219828
219908
|
}
|
|
219829
|
-
/**
|
|
219830
|
-
*
|
|
219909
|
+
/**
|
|
219910
|
+
* Multiply `inverse of this` matrix times `other` matrix
|
|
219911
|
+
* @return the matrix result: thisInverse*other
|
|
219831
219912
|
*/
|
|
219832
219913
|
multiplyMatrixInverseMatrix(other, result) {
|
|
219833
219914
|
if (!this.computeCachedInverse(true))
|
|
@@ -219841,30 +219922,32 @@ class Matrix3d {
|
|
|
219841
219922
|
PackedMatrix3dOps.copy(Matrix3d._productBuffer, result.coffs);
|
|
219842
219923
|
return result;
|
|
219843
219924
|
}
|
|
219844
|
-
/**
|
|
219925
|
+
/**
|
|
219926
|
+
* Multiply `this` matrix times the transpose of `other` matrix
|
|
219845
219927
|
* ```
|
|
219846
219928
|
* equation
|
|
219847
|
-
* \text{for instance matrix }A\text{ and
|
|
219929
|
+
* \text{for instance matrix }A\text{ and matrix }B\text{ return matrix }C{\text where }\\\matrixXY{C}=\matrixXY{A}\matrixTransposeSubXY{B}
|
|
219848
219930
|
* ```
|
|
219849
|
-
* @return the matrix result
|
|
219931
|
+
* @return the matrix result: this*otherTranspose
|
|
219850
219932
|
*/
|
|
219851
|
-
multiplyMatrixMatrixTranspose(
|
|
219933
|
+
multiplyMatrixMatrixTranspose(other, result) {
|
|
219852
219934
|
result = result ? result : new Matrix3d();
|
|
219853
|
-
PackedMatrix3dOps.multiplyMatrixMatrixTranspose(this.coffs,
|
|
219854
|
-
if (this.inverseState === InverseMatrixState.inverseStored &&
|
|
219855
|
-
result.finishInverseCoffs(PackedMatrix3dOps.multiplyMatrixTransposeMatrix,
|
|
219856
|
-
else if (this.inverseState === InverseMatrixState.singular ||
|
|
219935
|
+
PackedMatrix3dOps.multiplyMatrixMatrixTranspose(this.coffs, other.coffs, result.coffs);
|
|
219936
|
+
if (this.inverseState === InverseMatrixState.inverseStored && other.inverseState === InverseMatrixState.inverseStored)
|
|
219937
|
+
result.finishInverseCoffs(PackedMatrix3dOps.multiplyMatrixTransposeMatrix, other.inverseCoffs, this.inverseCoffs);
|
|
219938
|
+
else if (this.inverseState === InverseMatrixState.singular || other.inverseState === InverseMatrixState.singular)
|
|
219857
219939
|
result.inverseState = InverseMatrixState.singular;
|
|
219858
219940
|
else
|
|
219859
219941
|
result.inverseState = InverseMatrixState.unknown;
|
|
219860
219942
|
return result;
|
|
219861
219943
|
}
|
|
219862
|
-
/**
|
|
219944
|
+
/**
|
|
219945
|
+
* Multiply the transpose of `this` matrix times `other` matrix
|
|
219863
219946
|
* ```
|
|
219864
219947
|
* equation
|
|
219865
219948
|
* \matrixXY{result}=\matrixXY{\text{this}}\matrixTransposeSubXY{\text{other}}
|
|
219866
219949
|
* ```
|
|
219867
|
-
*
|
|
219950
|
+
* @return the matrix result: thisTranspose*other
|
|
219868
219951
|
*/
|
|
219869
219952
|
multiplyMatrixTransposeMatrix(other, result) {
|
|
219870
219953
|
result = result ? result : new Matrix3d();
|
|
@@ -219877,30 +219960,31 @@ class Matrix3d {
|
|
|
219877
219960
|
result.inverseState = InverseMatrixState.unknown;
|
|
219878
219961
|
return result;
|
|
219879
219962
|
}
|
|
219880
|
-
/**
|
|
219963
|
+
/**
|
|
219964
|
+
* Multiply `this` Matrix3d (considered as a Transform with 0 translation) times `other` Transform.
|
|
219881
219965
|
* ```
|
|
219882
219966
|
* equation
|
|
219883
219967
|
* \begin{matrix}
|
|
219884
|
-
*
|
|
219885
|
-
*
|
|
219968
|
+
* \text{This matrix }\bold{A}\text{ promoted to block transform} & \blockTransform{A}{0} \\
|
|
219969
|
+
* \text{other transform with matrix part }\bold{B}\text{ and translation }\bold{b} & \blockTransform{B}{b}\\
|
|
219886
219970
|
* \text{product}& \blockTransform{A}{0}\blockTransform{B}{b}=\blockTransform{AB}{Ab}
|
|
219887
219971
|
* \end{matrix}
|
|
219888
219972
|
* ```
|
|
219889
|
-
* @param other
|
|
219890
|
-
* @param result
|
|
219973
|
+
* @param other Right hand Matrix3d for multiplication.
|
|
219974
|
+
* @param result the Transform result (optional)
|
|
219891
219975
|
*/
|
|
219892
219976
|
multiplyMatrixTransform(other, result) {
|
|
219893
219977
|
if (!result)
|
|
219894
219978
|
return _Transform__WEBPACK_IMPORTED_MODULE_5__.Transform.createRefs(this.multiplyXYZ(other.origin.x, other.origin.y, other.origin.z), this.multiplyMatrixMatrix(other.matrix));
|
|
219895
|
-
// be sure to do the point multiplication first before aliasing changes the matrix
|
|
219979
|
+
// be sure to do the point multiplication first before aliasing changes the matrix
|
|
219896
219980
|
this.multiplyXYZtoXYZ(other.origin, result.origin);
|
|
219897
219981
|
this.multiplyMatrixMatrix(other.matrix, result.matrix);
|
|
219898
219982
|
return result;
|
|
219899
219983
|
}
|
|
219900
219984
|
/**
|
|
219901
219985
|
* Return the transpose of `this` matrix.
|
|
219902
|
-
* If `result` is passed as argument, then the function copies the transpose of `this` into `result
|
|
219903
|
-
* `this` is not changed unless also passed as the result, i.e., this.transpose(this) transposes `this` in place
|
|
219986
|
+
* * If `result` is passed as argument, then the function copies the transpose of `this` into `result`.
|
|
219987
|
+
* * `this` is not changed unless also passed as the result, i.e., `this.transpose(this)` transposes `this` in place.
|
|
219904
219988
|
*/
|
|
219905
219989
|
transpose(result) {
|
|
219906
219990
|
if (!result)
|
|
@@ -219922,18 +220006,22 @@ class Matrix3d {
|
|
|
219922
220006
|
transposeInPlace() {
|
|
219923
220007
|
PackedMatrix3dOps.transposeInPlace(this.coffs);
|
|
219924
220008
|
if (this.inverseCoffs)
|
|
219925
|
-
PackedMatrix3dOps.transposeInPlace(this.inverseCoffs);
|
|
220009
|
+
PackedMatrix3dOps.transposeInPlace(this.inverseCoffs); // inverse of transpose is equal to transpose of inverse
|
|
219926
220010
|
}
|
|
219927
|
-
/**
|
|
219928
|
-
*
|
|
219929
|
-
*
|
|
219930
|
-
* *
|
|
220011
|
+
/**
|
|
220012
|
+
* Return the inverse matrix.
|
|
220013
|
+
* The return is undefined if the matrix is singular (e.g. has parallel columns or a zero magnitude column)
|
|
220014
|
+
* * If `result == this`, then content of inverse of `this` matrix is copied into `this`. Otherwise, inverse
|
|
220015
|
+
* of `this` is stored in `result`.
|
|
220016
|
+
* * **Note:** Each Matrix3d object caches its own inverse (`this.inverseCoffs`) and has methods to multiply
|
|
220017
|
+
* the inverse times matrices and vectors (e.g., `multiplyMatrixInverseMatrix`, `multiplyMatrixMatrixInverse`,
|
|
220018
|
+
* `multiplyInverse`). Hence explicitly constructing this new inverse object is rarely necessary.
|
|
219931
220019
|
*/
|
|
219932
220020
|
inverse(result) {
|
|
219933
220021
|
if (!this.computeCachedInverse(true))
|
|
219934
220022
|
return undefined;
|
|
219935
220023
|
if (result === this) {
|
|
219936
|
-
// swap the contents
|
|
220024
|
+
// swap the contents of this.coffs and this.inverseCoffs
|
|
219937
220025
|
PackedMatrix3dOps.copy(this.coffs, Matrix3d._productBuffer);
|
|
219938
220026
|
PackedMatrix3dOps.copy(this.inverseCoffs, this.coffs);
|
|
219939
220027
|
PackedMatrix3dOps.copy(Matrix3d._productBuffer, this.inverseCoffs);
|
|
@@ -219948,33 +220036,48 @@ class Matrix3d {
|
|
|
219948
220036
|
result.inverseState = this.inverseState;
|
|
219949
220037
|
return result;
|
|
219950
220038
|
}
|
|
219951
|
-
|
|
219952
|
-
|
|
219953
|
-
|
|
219954
|
-
|
|
220039
|
+
/**
|
|
220040
|
+
* Take the dot product of a row (specified by `rowStartA`) of `coffA` and `columnStartB` of `coffB`.
|
|
220041
|
+
* * **Note:** We don't validate row/column numbers. Pass 0/3/6 for row 0/1/2 and pass 0/1/2 for column 0/1/2.
|
|
220042
|
+
*/
|
|
220043
|
+
static rowColumnDot(coffA, rowStartA, coffB, columnStartB) {
|
|
220044
|
+
return coffA[rowStartA] * coffB[columnStartB] +
|
|
220045
|
+
coffA[rowStartA + 1] * coffB[columnStartB + 3] +
|
|
220046
|
+
coffA[rowStartA + 2] * coffB[columnStartB + 6];
|
|
220047
|
+
}
|
|
220048
|
+
/**
|
|
220049
|
+
* Take the cross product of 2 rows (specified by `rowStart0` and `rowStart1`) of `source` and store the result
|
|
220050
|
+
* in `columnStart` of `dest`.
|
|
220051
|
+
* * **Note:** We don't validate row/column numbers. Pass 0/3/6 for row 0/1/2 and pass 0/1/2 for column 0/1/2.
|
|
220052
|
+
*/
|
|
219955
220053
|
static indexedRowCrossProduct(source, rowStart0, rowStart1, dest, columnStart) {
|
|
219956
220054
|
dest[columnStart] = source[rowStart0 + 1] * source[rowStart1 + 2] - source[rowStart0 + 2] * source[rowStart1 + 1];
|
|
219957
220055
|
dest[columnStart + 3] = source[rowStart0 + 2] * source[rowStart1] - source[rowStart0] * source[rowStart1 + 2];
|
|
219958
220056
|
dest[columnStart + 6] = source[rowStart0] * source[rowStart1 + 1] - source[rowStart0 + 1] * source[rowStart1];
|
|
219959
220057
|
}
|
|
219960
|
-
|
|
219961
|
-
|
|
219962
|
-
|
|
220058
|
+
/**
|
|
220059
|
+
* Take the cross product of 2 columns (i.e., `colStart0` and `colStart1`) of `this` matrix and store the
|
|
220060
|
+
* result in `colStart2` of the same matrix.
|
|
220061
|
+
* * **Note:** We don't validate column numbers. Pass 0/1/2 for column 0/1/2.
|
|
220062
|
+
*/
|
|
219963
220063
|
indexedColumnCrossProductInPlace(colStart0, colStart1, colStart2) {
|
|
219964
220064
|
const coffs = this.coffs;
|
|
219965
220065
|
coffs[colStart2] = coffs[colStart0 + 3] * coffs[colStart1 + 6] - coffs[colStart0 + 6] * coffs[colStart1 + 3];
|
|
219966
220066
|
coffs[colStart2 + 3] = coffs[colStart0 + 6] * coffs[colStart1] - coffs[colStart0] * coffs[colStart1 + 6];
|
|
219967
220067
|
coffs[colStart2 + 6] = coffs[colStart0] * coffs[colStart1 + 3] - coffs[colStart0 + 3] * coffs[colStart1];
|
|
219968
220068
|
}
|
|
219969
|
-
/**
|
|
219970
|
-
*
|
|
219971
|
-
*
|
|
220069
|
+
/**
|
|
220070
|
+
* Form cross products among columns in axisOrder.
|
|
220071
|
+
* For axis order ABC:
|
|
220072
|
+
* * form cross product of column A and B, store in C.
|
|
219972
220073
|
* * form cross product of column C and A, store in B.
|
|
220074
|
+
* * [A B C] ===> [A B AxB] ===> [A (AxB)xA AxB]
|
|
220075
|
+
*
|
|
219973
220076
|
* This means that in the final matrix:
|
|
219974
|
-
* * column A is
|
|
219975
|
-
* * column B is linear combination of
|
|
220077
|
+
* * column A is same as original column A.
|
|
220078
|
+
* * column B is linear combination of original A and B (i.e., is in the plane of original A and B).
|
|
219976
220079
|
* * column C is perpendicular to A and B of both the original and final.
|
|
219977
|
-
* * original column C does not participate in the result.
|
|
220080
|
+
* * original column C is overwritten and does not participate in the result.
|
|
219978
220081
|
*/
|
|
219979
220082
|
axisOrderCrossProductsInPlace(axisOrder) {
|
|
219980
220083
|
switch (axisOrder) {
|
|
@@ -220010,41 +220113,44 @@ class Matrix3d {
|
|
|
220010
220113
|
}
|
|
220011
220114
|
}
|
|
220012
220115
|
}
|
|
220013
|
-
/**
|
|
220014
|
-
*
|
|
220015
|
-
* @
|
|
220016
|
-
* @
|
|
220116
|
+
/**
|
|
220117
|
+
* Normalize each column in place.
|
|
220118
|
+
* @param originalRowMagnitudes optional vector to store original column magnitudes.
|
|
220119
|
+
* @returns Return true if all columns have non-zero lengths. Otherwise, return false.
|
|
220120
|
+
* * If false is returned, the magnitudes are stored in the `originalRowMagnitudes` vector but no columns
|
|
220121
|
+
* are altered.
|
|
220017
220122
|
*/
|
|
220018
|
-
normalizeColumnsInPlace(
|
|
220123
|
+
normalizeColumnsInPlace(originalRowMagnitudes) {
|
|
220019
220124
|
const ax = this.columnXMagnitude();
|
|
220020
220125
|
const ay = this.columnYMagnitude();
|
|
220021
220126
|
const az = this.columnZMagnitude();
|
|
220022
|
-
if (
|
|
220023
|
-
|
|
220127
|
+
if (originalRowMagnitudes)
|
|
220128
|
+
originalRowMagnitudes.set(ax, ay, az);
|
|
220024
220129
|
if (_Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.isSmallMetricDistance(ax) || _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.isSmallMetricDistance(ay) || _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.isSmallMetricDistance(az))
|
|
220025
220130
|
return false;
|
|
220026
220131
|
this.scaleColumns(1.0 / ax, 1.0 / ay, 1.0 / az, this);
|
|
220027
220132
|
return true;
|
|
220028
220133
|
}
|
|
220029
|
-
/**
|
|
220030
|
-
|
|
220134
|
+
/**
|
|
220135
|
+
* Normalize each row in place.
|
|
220136
|
+
* @param originalColumnMagnitudes optional vector to store original row magnitudes.
|
|
220137
|
+
* @returns Return true if all rows have non-zero lengths. Otherwise, return false.
|
|
220138
|
+
* * If false is returned, the magnitudes are stored in the `originalColumnMagnitudes` vector but no rows
|
|
220139
|
+
* are altered.
|
|
220140
|
+
*/
|
|
220141
|
+
normalizeRowsInPlace(originalColumnMagnitudes) {
|
|
220031
220142
|
const ax = this.rowXMagnitude();
|
|
220032
220143
|
const ay = this.rowYMagnitude();
|
|
220033
220144
|
const az = this.rowZMagnitude();
|
|
220034
|
-
if (
|
|
220035
|
-
|
|
220145
|
+
if (originalColumnMagnitudes)
|
|
220146
|
+
originalColumnMagnitudes.set(ax, ay, az);
|
|
220036
220147
|
if (_Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.isSmallMetricDistance(ax) || _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.isSmallMetricDistance(ay) || _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.isSmallMetricDistance(az))
|
|
220037
220148
|
return false;
|
|
220038
220149
|
this.scaleRows(1.0 / ax, 1.0 / ay, 1.0 / az, this);
|
|
220039
220150
|
return true;
|
|
220040
220151
|
}
|
|
220041
|
-
// take the cross product of two rows of source.
|
|
220042
|
-
// store as a column of dest.
|
|
220043
|
-
static rowColumnDot(coffA, rowStartA, coffB, columnStartB) {
|
|
220044
|
-
return coffA[rowStartA] * coffB[columnStartB] + coffA[rowStartA + 1] * coffB[columnStartB + 3] + coffA[rowStartA + 2] * coffB[columnStartB + 6];
|
|
220045
|
-
}
|
|
220046
220152
|
/**
|
|
220047
|
-
* Returns true if the matrix is singular
|
|
220153
|
+
* Returns true if the matrix is singular.
|
|
220048
220154
|
*/
|
|
220049
220155
|
isSingular() {
|
|
220050
220156
|
return !this.computeCachedInverse(true);
|
|
@@ -220056,18 +220162,10 @@ class Matrix3d {
|
|
|
220056
220162
|
this.inverseState = InverseMatrixState.singular;
|
|
220057
220163
|
}
|
|
220058
220164
|
/**
|
|
220059
|
-
*
|
|
220060
|
-
*
|
|
220061
|
-
*
|
|
220062
|
-
|
|
220063
|
-
createInverseCoffsWithZeros() {
|
|
220064
|
-
if (!this.inverseCoffs) {
|
|
220065
|
-
this.inverseState = InverseMatrixState.unknown;
|
|
220066
|
-
this.inverseCoffs = new Float64Array(9);
|
|
220067
|
-
}
|
|
220068
|
-
}
|
|
220069
|
-
/** compute the inverse of this Matrix3d. The inverse is stored for later use.
|
|
220070
|
-
* @returns Return true if the inverse computed. (False if the columns collapse to a point, line or plane.)
|
|
220165
|
+
* Compute the inverse of `this` Matrix3d. The inverse is stored in `this.inverseCoffs` for later use.
|
|
220166
|
+
* @param useCacheIfAvailable if `true`, use the previously computed inverse if available. If `false`,
|
|
220167
|
+
* recompute the inverse.
|
|
220168
|
+
* @returns Return `true` if the inverse is computed. Return `false` if matrix is singular.
|
|
220071
220169
|
*/
|
|
220072
220170
|
computeCachedInverse(useCacheIfAvailable) {
|
|
220073
220171
|
if (useCacheIfAvailable && Matrix3d.useCachedInverse && this.inverseState !== InverseMatrixState.unknown) {
|
|
@@ -220078,71 +220176,45 @@ class Matrix3d {
|
|
|
220078
220176
|
this.createInverseCoffsWithZeros();
|
|
220079
220177
|
const coffs = this.coffs;
|
|
220080
220178
|
const inverseCoffs = this.inverseCoffs;
|
|
220081
|
-
|
|
220082
|
-
|
|
220083
|
-
|
|
220179
|
+
/**
|
|
220180
|
+
* We calculate the inverse using cross products.
|
|
220181
|
+
* Math details can be found at
|
|
220182
|
+
* https://www.chilimath.com/lessons/advanced-algebra/determinant-3x3-matrix/
|
|
220183
|
+
* In summary, if M = [A B C] then inverse of M = (1/det)[BxC CxA AxB] where det is the
|
|
220184
|
+
* determinant of matrix M and can be calculated by "A dot BxC".
|
|
220185
|
+
*/
|
|
220186
|
+
Matrix3d.indexedRowCrossProduct(coffs, 3, 6, inverseCoffs, 0); // BxC
|
|
220187
|
+
Matrix3d.indexedRowCrossProduct(coffs, 6, 0, inverseCoffs, 1); // CxA
|
|
220188
|
+
Matrix3d.indexedRowCrossProduct(coffs, 0, 3, inverseCoffs, 2); // AxB
|
|
220084
220189
|
Matrix3d.numComputeCache++;
|
|
220085
|
-
const
|
|
220086
|
-
if (
|
|
220190
|
+
const det = Matrix3d.rowColumnDot(coffs, 0, inverseCoffs, 0); // A dot BxC
|
|
220191
|
+
if (det === 0.0) {
|
|
220087
220192
|
this.inverseState = InverseMatrixState.singular;
|
|
220088
220193
|
this.inverseCoffs = undefined;
|
|
220089
220194
|
return false;
|
|
220090
220195
|
}
|
|
220091
|
-
const f = 1.0 /
|
|
220196
|
+
const f = 1.0 / det;
|
|
220092
220197
|
for (let i = 0; i < 9; i++)
|
|
220093
220198
|
inverseCoffs[i] *= f;
|
|
220094
220199
|
this.inverseState = InverseMatrixState.inverseStored;
|
|
220095
|
-
// verify inverse
|
|
220096
|
-
// const p = new Float64Array(9);
|
|
220097
|
-
// for (let i = 0; i < 9; i += 3)
|
|
220098
|
-
// for (let j = 0; j < 3; j++)
|
|
220099
|
-
// p[i + j] = Matrix3d.rowColumnDot (coffs, i, inverseCoffs, j);
|
|
220100
220200
|
return true;
|
|
220101
220201
|
}
|
|
220102
|
-
|
|
220103
|
-
|
|
220104
|
-
|
|
220105
|
-
|
|
220106
|
-
private static crossXY: Vector3d = Vector3d.create();
|
|
220107
|
-
private static crossZX: Vector3d = Vector3d.create();
|
|
220108
|
-
private static crossYZ: Vector3d = Vector3d.create();
|
|
220109
|
-
private computeCachedInverse(useCacheIfAvailable: boolean) {
|
|
220110
|
-
if (useCacheIfAvailable && Matrix3d.useCachedInverse && this.inverseState !== InverseMatrixState.unknown) {
|
|
220111
|
-
Matrix3d.numUseCache++;
|
|
220112
|
-
return this.inverseState === InverseMatrixState.inverseStored;
|
|
220113
|
-
}
|
|
220114
|
-
this.inverseState = InverseMatrixState.unknown;
|
|
220115
|
-
Matrix3d.numComputeCache++;
|
|
220116
|
-
const rowX = this.rowX(Matrix3d.rowX);
|
|
220117
|
-
const rowY = this.rowY(Matrix3d.rowY);
|
|
220118
|
-
const rowZ = this.rowZ(Matrix3d.rowZ);
|
|
220119
|
-
const crossXY = rowX.crossProduct(rowY, Matrix3d.crossXY);
|
|
220120
|
-
const crossYZ = rowY.crossProduct(rowZ, Matrix3d.crossYZ);
|
|
220121
|
-
const crossZX = rowZ.crossProduct(rowX, Matrix3d.crossZX);
|
|
220122
|
-
const d = rowX.dotProduct(crossYZ); // that's the determinant
|
|
220123
|
-
if (d === 0.0) { // better test?
|
|
220124
|
-
this.inverseState = InverseMatrixState.singular;
|
|
220125
|
-
this.inverseCoffs = undefined;
|
|
220126
|
-
return false;
|
|
220127
|
-
}
|
|
220128
|
-
const f = 1.0 / d;
|
|
220129
|
-
this.inverseState = InverseMatrixState.inverseStored; // Currently just lists that the inverse has been stored... singular case not handled
|
|
220130
|
-
this.inverseCoffs = Float64Array.from([crossYZ.x * f, crossZX.x * f, crossXY.x * f,
|
|
220131
|
-
crossYZ.y * f, crossZX.y * f, crossXY.y * f,
|
|
220132
|
-
crossYZ.z * f, crossZX.z * f, crossXY.z * f]);
|
|
220133
|
-
return true;
|
|
220134
|
-
}
|
|
220135
|
-
*/
|
|
220136
|
-
/** convert a (row,column) index pair to the single index within flattened array of 9 numbers in row-major-order */
|
|
220202
|
+
/**
|
|
220203
|
+
* Convert a (row,column) index pair to the single index within flattened array of 9 numbers in row-major-order
|
|
220204
|
+
* * **Note:** Out of range row/column is interpreted cyclically.
|
|
220205
|
+
*/
|
|
220137
220206
|
static flatIndexOf(row, column) {
|
|
220138
220207
|
return 3 * _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.cyclic3dAxis(row) + _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.cyclic3dAxis(column);
|
|
220139
220208
|
}
|
|
220140
|
-
/**
|
|
220209
|
+
/**
|
|
220210
|
+
* Get elements of column `index` packaged as a Point4d with given `weight`.
|
|
220211
|
+
* * **Note:** Out of range index is interpreted cyclically.
|
|
220212
|
+
*/
|
|
220141
220213
|
indexedColumnWithWeight(index, weight, result) {
|
|
220142
220214
|
index = _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.cyclic3dAxis(index);
|
|
220143
220215
|
return _geometry4d_Point4d__WEBPACK_IMPORTED_MODULE_4__.Point4d.create(this.coffs[index], this.coffs[index + 3], this.coffs[index + 6], weight, result);
|
|
220144
220216
|
}
|
|
220145
|
-
/**
|
|
220217
|
+
/** Return the entry at specific row and column */
|
|
220146
220218
|
at(row, column) {
|
|
220147
220219
|
return this.coffs[Matrix3d.flatIndexOf(row, column)];
|
|
220148
220220
|
}
|
|
@@ -220176,7 +220248,7 @@ class Matrix3d {
|
|
|
220176
220248
|
this.coffs[7] *= scaleY;
|
|
220177
220249
|
this.coffs[8] *= scaleZ;
|
|
220178
220250
|
if (this.inverseState === InverseMatrixState.inverseStored && this.inverseCoffs !== undefined) {
|
|
220179
|
-
// apply
|
|
220251
|
+
// apply reciprocal scales to the ROWS of the inverse
|
|
220180
220252
|
const divX = _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.conditionalDivideFraction(1.0, scaleX);
|
|
220181
220253
|
const divY = _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.conditionalDivideFraction(1.0, scaleY);
|
|
220182
220254
|
const divZ = _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.conditionalDivideFraction(1.0, scaleZ);
|
|
@@ -220252,12 +220324,11 @@ class Matrix3d {
|
|
|
220252
220324
|
/**
|
|
220253
220325
|
* Create a rigid matrix (columns and rows are unit length and pairwise perpendicular) for
|
|
220254
220326
|
* the given eye coordinate.
|
|
220255
|
-
* * column
|
|
220256
|
-
* * column
|
|
220257
|
-
* * column
|
|
220327
|
+
* * column 2 is parallel to (x,y,z).
|
|
220328
|
+
* * column 0 is perpendicular to column 2 and is in the xy plane.
|
|
220329
|
+
* * column 1 is perpendicular to both. It is the "up" vector on the view plane.
|
|
220258
220330
|
* * Multiplying the returned matrix times a local (view) vector gives the world vector.
|
|
220259
|
-
* * Multiplying transpose of the returned matrix times a world vector gives the local
|
|
220260
|
-
* (view) vector.
|
|
220331
|
+
* * Multiplying transpose of the returned matrix times a world vector gives the local (view) vector.
|
|
220261
220332
|
* @param x eye x coordinate
|
|
220262
220333
|
* @param y eye y coordinate
|
|
220263
220334
|
* @param z eye z coordinate
|
|
@@ -220272,11 +220343,27 @@ class Matrix3d {
|
|
|
220272
220343
|
result.scaleColumnsInPlace(1.0, -1.0, -1.0);
|
|
220273
220344
|
}
|
|
220274
220345
|
else {
|
|
220346
|
+
// if coordinate is (x,y,0), i.e., Front or Back or Left or Right view
|
|
220347
|
+
/**
|
|
220348
|
+
* The matrix that the "else" statement creates is
|
|
220349
|
+
* [-s -s1*c c1*c]
|
|
220350
|
+
* [c -s1*s c1*s]
|
|
220351
|
+
* [0 c1 s1 ]
|
|
220352
|
+
* where
|
|
220353
|
+
* c = x / sqrt(x*x + y*y)
|
|
220354
|
+
* s = y / sqrt(x*x + y*y)
|
|
220355
|
+
* c1 = sqrt(x*x + y*y) / sqrt(x*x + y*y + z*z)
|
|
220356
|
+
* s1 = z / sqrt(x*x + y*y + z*z)
|
|
220357
|
+
*
|
|
220358
|
+
* This is an orthogonal matrix meaning it rotates the standard XYZ axis to ABC axis system
|
|
220359
|
+
* (if matrix is [A B C]). The matrix rotates (0,0,1), i.e., the default Top view or Z axis,
|
|
220360
|
+
* to the eye point (x/r,y/r,z/r). The matrix also rotates (1,0,0) to a point on XY plane.
|
|
220361
|
+
*/
|
|
220275
220362
|
const c = x / rxy;
|
|
220276
220363
|
const s = y / rxy;
|
|
220277
|
-
// if coordinate is (x,y,0),
|
|
220364
|
+
// if coordinate is (x,y,0), e.g., Front or Back or Left or Right view (for those 4 views x or y is 0 not both)
|
|
220278
220365
|
result.setRowValues(-s, 0, c, c, 0, s, 0, 1, 0);
|
|
220279
|
-
// if coordinate is (x,y,z), i.e., other views such as Iso or RightIso
|
|
220366
|
+
// if coordinate is (x,y,z) and z is not 0, i.e., other views such as Iso or RightIso
|
|
220280
220367
|
if (z !== 0.0) {
|
|
220281
220368
|
const r = _Geometry__WEBPACK_IMPORTED_MODULE_0__.Geometry.hypotenuseXYZ(x, y, z);
|
|
220282
220369
|
const s1 = z / r;
|
|
@@ -220548,6 +220635,7 @@ Matrix3d.useCachedInverse = true; // cached inverse can be suppressed for testin
|
|
|
220548
220635
|
Matrix3d.numUseCache = 0;
|
|
220549
220636
|
/** Total number of times a cached inverse was computed. */
|
|
220550
220637
|
Matrix3d.numComputeCache = 0;
|
|
220638
|
+
/** temporary buffer to store a matrix as a Float64Array (array of 9 floats) */
|
|
220551
220639
|
Matrix3d._productBuffer = new Float64Array(9);
|
|
220552
220640
|
|
|
220553
220641
|
|
|
@@ -223330,6 +223418,8 @@ class Vector3d extends XYZ {
|
|
|
223330
223418
|
* * It's returning the signed projection magnitude divided by the target magnitude.
|
|
223331
223419
|
* * To find the projection vector, scale the target vector by the value that this function is returning.
|
|
223332
223420
|
* * math details can be found at docs/learning/geometry/PointVector.md
|
|
223421
|
+
* * Visualization can be found at https://www.itwinjs.org/sandbox/SaeedTorabi/ProjectVectorOnVector
|
|
223422
|
+
* and https://www.itwinjs.org/sandbox/SaeedTorabi/ProjectVectorOnPlane
|
|
223333
223423
|
* @param target the target vector
|
|
223334
223424
|
* @param defaultFraction the returned value in case magnitude square of target vector is very small
|
|
223335
223425
|
* */
|
|
@@ -223722,6 +223812,7 @@ class Vector3d extends XYZ {
|
|
|
223722
223812
|
}
|
|
223723
223813
|
/**
|
|
223724
223814
|
* Return the cross product of this vector and vectorB.
|
|
223815
|
+
* * Visualization can be found at https://www.itwinjs.org/sandbox/SaeedTorabi/CrossProduct
|
|
223725
223816
|
* @param vectorB second vector of cross product
|
|
223726
223817
|
* @param result optional preallocated result.
|
|
223727
223818
|
*/
|
|
@@ -286930,8 +287021,8 @@ const chai_1 = __webpack_require__(/*! chai */ "../../common/temp/node_modules/.
|
|
|
286930
287021
|
const core_frontend_1 = __webpack_require__(/*! @itwin/core-frontend */ "../../core/frontend/lib/esm/core-frontend.js");
|
|
286931
287022
|
const projects_client_1 = __webpack_require__(/*! @itwin/projects-client */ "../../common/temp/node_modules/.pnpm/@itwin+projects-client@0.6.0/node_modules/@itwin/projects-client/lib/esm/projects-client.js");
|
|
286932
287023
|
const core_common_1 = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
286933
|
-
const imodels_client_management_1 = __webpack_require__(/*! @itwin/imodels-client-management */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
286934
|
-
const imodels_access_frontend_1 = __webpack_require__(/*! @itwin/imodels-access-frontend */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@2.
|
|
287024
|
+
const imodels_client_management_1 = __webpack_require__(/*! @itwin/imodels-client-management */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/index.js");
|
|
287025
|
+
const imodels_access_frontend_1 = __webpack_require__(/*! @itwin/imodels-access-frontend */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@2.3.0/node_modules/@itwin/imodels-access-frontend/lib/esm/index.js");
|
|
286935
287026
|
class IModelSession {
|
|
286936
287027
|
constructor(iTwinId, imodelId, changesetId) {
|
|
286937
287028
|
this.iTwinId = iTwinId;
|
|
@@ -287035,8 +287126,8 @@ const core_bentley_1 = __webpack_require__(/*! @itwin/core-bentley */ "../../cor
|
|
|
287035
287126
|
const core_common_1 = __webpack_require__(/*! @itwin/core-common */ "../../core/common/lib/esm/core-common.js");
|
|
287036
287127
|
const core_frontend_1 = __webpack_require__(/*! @itwin/core-frontend */ "../../core/frontend/lib/esm/core-frontend.js");
|
|
287037
287128
|
const frontend_1 = __webpack_require__(/*! @itwin/oidc-signin-tool/lib/cjs/frontend */ "../../common/temp/node_modules/.pnpm/@itwin+oidc-signin-tool@3.6.1/node_modules/@itwin/oidc-signin-tool/lib/cjs/frontend.js");
|
|
287038
|
-
const imodels_access_frontend_1 = __webpack_require__(/*! @itwin/imodels-access-frontend */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@2.
|
|
287039
|
-
const imodels_client_management_1 = __webpack_require__(/*! @itwin/imodels-client-management */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.
|
|
287129
|
+
const imodels_access_frontend_1 = __webpack_require__(/*! @itwin/imodels-access-frontend */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-access-frontend@2.3.0/node_modules/@itwin/imodels-access-frontend/lib/esm/index.js");
|
|
287130
|
+
const imodels_client_management_1 = __webpack_require__(/*! @itwin/imodels-client-management */ "../../common/temp/node_modules/.pnpm/@itwin+imodels-client-management@2.3.0/node_modules/@itwin/imodels-client-management/lib/esm/index.js");
|
|
287040
287131
|
const Settings_1 = __webpack_require__(/*! ../../common/Settings */ "./lib/common/Settings.js");
|
|
287041
287132
|
const SideChannels_1 = __webpack_require__(/*! ../../common/SideChannels */ "./lib/common/SideChannels.js");
|
|
287042
287133
|
const IModelSession_1 = __webpack_require__(/*! ./IModelSession */ "./lib/frontend/setup/IModelSession.js");
|
|
@@ -287084,7 +287175,7 @@ class TestContext {
|
|
|
287084
287175
|
this.initializeRpcInterfaces({ title: this.settings.Backend.name, version: this.settings.Backend.version });
|
|
287085
287176
|
const iModelClient = new imodels_client_management_1.IModelsClient({ api: { baseUrl: `https://${(_a = process.env.IMJS_URL_PREFIX) !== null && _a !== void 0 ? _a : ""}api.bentley.com/imodels` } });
|
|
287086
287177
|
await core_frontend_1.NoRenderApp.startup({
|
|
287087
|
-
applicationVersion: "4.0.0-dev.
|
|
287178
|
+
applicationVersion: "4.0.0-dev.15",
|
|
287088
287179
|
applicationId: this.settings.gprid,
|
|
287089
287180
|
authorizationClient: new frontend_1.TestFrontendAuthorizationClient(this.adminUserAccessToken),
|
|
287090
287181
|
hubAccess: new imodels_access_frontend_1.FrontendIModelsAccess(iModelClient),
|
|
@@ -288563,13 +288654,18 @@ var LabelDefinition;
|
|
|
288563
288654
|
LabelDefinition.fromJSON = fromJSON;
|
|
288564
288655
|
/** @internal */
|
|
288565
288656
|
LabelDefinition.COMPOSITE_DEFINITION_TYPENAME = "composite";
|
|
288566
|
-
/**
|
|
288567
|
-
|
|
288657
|
+
/**
|
|
288658
|
+
* Checks if provided [[LabelDefinition]] has raw value of type [[LabelCompositeValue]].
|
|
288659
|
+
* @public
|
|
288660
|
+
*/
|
|
288568
288661
|
function isCompositeDefinition(def) {
|
|
288569
288662
|
return def.typeName === LabelDefinition.COMPOSITE_DEFINITION_TYPENAME;
|
|
288570
288663
|
}
|
|
288571
288664
|
LabelDefinition.isCompositeDefinition = isCompositeDefinition;
|
|
288572
|
-
/**
|
|
288665
|
+
/**
|
|
288666
|
+
* Creates [[LabelDefinition]] from string value.
|
|
288667
|
+
* @public
|
|
288668
|
+
*/
|
|
288573
288669
|
function fromLabelString(label) {
|
|
288574
288670
|
return {
|
|
288575
288671
|
displayValue: label,
|
|
@@ -306513,7 +306609,7 @@ module.exports = JSON.parse('{"name":"axios","version":"0.21.4","description":"P
|
|
|
306513
306609
|
/***/ ((module) => {
|
|
306514
306610
|
|
|
306515
306611
|
"use strict";
|
|
306516
|
-
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.0.0-dev.
|
|
306612
|
+
module.exports = JSON.parse('{"name":"@itwin/core-frontend","version":"4.0.0-dev.15","description":"iTwin.js frontend components","main":"lib/cjs/core-frontend.js","module":"lib/esm/core-frontend.js","typings":"lib/cjs/core-frontend","license":"MIT","scripts":{"build":"npm run -s copy:public && npm run -s build:cjs","build:ci":"npm run -s build && npm run -s build:esm","build:cjs":"npm run -s copy:js:cjs && tsc 1>&2 --outDir lib/cjs","build:esm":"npm run -s copy:js:esm && tsc 1>&2 --module ES2020 --outDir lib/esm","clean":"rimraf lib .rush/temp/package-deps*.json","copy:public":"cpx \\"./src/public/**/*\\" ./lib/public","copy:js:cjs":"cpx \\"./src/**/*.js\\" ./lib/cjs","copy:js:esm":"cpx \\"./src/**/*.js\\" ./lib/esm","docs":"betools docs --includes=../../generated-docs/extract --json=../../generated-docs/core/core-frontend/file.json --tsIndexFile=./core-frontend.ts --onlyJson --excludes=webgl/**/*,**/primitives,**/map/*.d.ts,**/tile/*.d.ts,**/*-css.ts","extract-api":"betools extract-api --entry=core-frontend && npm run extract-extension-api","extract-extension-api":"eslint --no-eslintrc -c \\"../../tools/eslint-plugin/dist/configs/extension-exports-config.js\\" \\"./src/**/*.ts\\" 1>&2","lint":"eslint -f visualstudio \\"./src/**/*.ts\\" 1>&2","pseudolocalize":"betools pseudolocalize --englishDir ./src/public/locales/en --out ./public/locales/en-PSEUDO","test":"npm run -s webpackTests && certa -r chrome","cover":"npm -s test","test:debug":"certa -r chrome --debug","webpackTests":"webpack --config ./src/test/utils/webpack.config.js 1>&2"},"repository":{"type":"git","url":"https://github.com/iTwin/itwinjs-core/tree/master/core/frontend"},"keywords":["Bentley","BIM","iModel","digital-twin","iTwin"],"author":{"name":"Bentley Systems, Inc.","url":"http://www.bentley.com"},"peerDependencies":{"@itwin/appui-abstract":"workspace:^4.0.0-dev.8","@itwin/core-bentley":"workspace:^4.0.0-dev.15","@itwin/core-common":"workspace:^4.0.0-dev.15","@itwin/core-geometry":"workspace:^4.0.0-dev.15","@itwin/core-orbitgt":"workspace:^4.0.0-dev.15","@itwin/core-quantity":"workspace:^4.0.0-dev.15"},"//devDependencies":["NOTE: All peerDependencies should also be listed as devDependencies since peerDependencies are not considered by npm install","NOTE: All tools used by scripts in this package must be listed as devDependencies"],"devDependencies":{"@itwin/appui-abstract":"workspace:*","@itwin/build-tools":"workspace:*","@itwin/core-bentley":"workspace:*","@itwin/core-common":"workspace:*","@itwin/core-geometry":"workspace:*","@itwin/core-orbitgt":"workspace:*","@itwin/core-quantity":"workspace:*","@itwin/certa":"workspace:*","@itwin/eslint-plugin":"workspace:*","@itwin/webgl-compatibility":"workspace:*","@types/chai":"4.3.1","@types/chai-as-promised":"^7","@types/deep-assign":"^0.1.0","@types/lodash":"^4.14.0","@types/mocha":"^8.2.2","@types/node":"18.11.5","@types/qs":"^6.5.0","@types/semver":"7.3.10","@types/superagent":"^4.1.14","@types/sinon":"^9.0.0","babel-loader":"~8.2.5","babel-plugin-istanbul":"~6.1.1","chai":"^4.1.2","chai-as-promised":"^7","cpx2":"^3.0.0","eslint":"^7.11.0","glob":"^7.1.2","mocha":"^10.0.0","nyc":"^15.1.0","rimraf":"^3.0.2","sinon":"^9.0.2","source-map-loader":"^4.0.0","typescript":"~4.4.0","webpack":"^5.64.4"},"//dependencies":["NOTE: these dependencies should be only for things that DO NOT APPEAR IN THE API","NOTE: core-frontend should remain UI technology agnostic, so no react/angular dependencies are allowed"],"dependencies":{"@itwin/object-storage-azure":"~1.4.0","@itwin/cloud-agnostic-core":"~1.4.0","@itwin/object-storage-core":"~1.4.0","@itwin/core-i18n":"workspace:*","@itwin/core-telemetry":"workspace:*","@itwin/webgl-compatibility":"workspace:*","@loaders.gl/core":"^3.1.6","@loaders.gl/draco":"^3.1.6","deep-assign":"^2.0.0","fuse.js":"^3.3.0","lodash":"^4.17.10","qs":"^6.5.3","semver":"^7.3.5","superagent":"^7.1.5","wms-capabilities":"0.4.0","reflect-metadata":"0.1.13"},"nyc":{"extends":"./node_modules/@itwin/build-tools/.nycrc"},"eslintConfig":{"plugins":["@itwin"],"extends":"plugin:@itwin/itwinjs-recommended","rules":{"@itwin/no-internal-barrel-imports":["error",{"required-barrel-modules":["./src/tile/internal.ts"]}],"@itwin/public-extension-exports":["error",{"releaseTags":["public","preview"],"outputApiFile":false}]},"overrides":[{"files":["*.test.ts","*.test.tsx","**/test/**/*.ts"],"rules":{"@itwin/no-internal-barrel-imports":"off"}}]}}');
|
|
306517
306613
|
|
|
306518
306614
|
/***/ }),
|
|
306519
306615
|
|