@itwin/analytical-backend 4.0.0-dev.52 → 4.0.0-dev.54
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/cjs/AnalyticalElements.d.ts +34 -34
- package/lib/cjs/AnalyticalElements.js +43 -43
- package/lib/cjs/AnalyticalModels.d.ts +11 -11
- package/lib/cjs/AnalyticalModels.js +19 -19
- package/lib/cjs/AnalyticalRelationships.d.ts +11 -11
- package/lib/cjs/AnalyticalRelationships.js +19 -19
- package/lib/cjs/AnalyticalSchema.d.ts +12 -12
- package/lib/cjs/AnalyticalSchema.js +32 -32
- package/lib/cjs/analytical-backend.d.ts +10 -10
- package/lib/cjs/analytical-backend.js +30 -26
- package/lib/cjs/analytical-backend.js.map +1 -1
- package/package.json +10 -10
@@ -1,35 +1,35 @@
|
|
1
|
-
/** @packageDocumentation
|
2
|
-
* @module Analytical
|
3
|
-
*/
|
4
|
-
import { GeometricElement3d, IModelDb, InformationPartitionElement, TypeDefinitionElement } from "@itwin/core-backend";
|
5
|
-
import { GeometricElement3dProps, TypeDefinitionElementProps } from "@itwin/core-common";
|
6
|
-
/** An AnalyticalPartition element indicates that there is a specialized analytical perspective within
|
7
|
-
* the overall information hierarchy. An AnalyticalPartition subclass is always parented to a Subject
|
8
|
-
* and broken down by an AnalyticalModel.
|
9
|
-
* @see [[AnalyticalModel]]
|
10
|
-
* @beta
|
11
|
-
*/
|
12
|
-
export declare class AnalyticalPartition extends InformationPartitionElement {
|
13
|
-
/** @internal */
|
14
|
-
static get className(): string;
|
15
|
-
}
|
16
|
-
/** Spatially located, simulating zero or more SpatialLocationElement or PhysicalElement instances in light of a specialized analytical perspective.
|
17
|
-
* @beta
|
18
|
-
*/
|
19
|
-
export declare abstract class AnalyticalElement extends GeometricElement3d {
|
20
|
-
/** @internal */
|
21
|
-
static get className(): string;
|
22
|
-
/** @internal */
|
23
|
-
constructor(props: GeometricElement3dProps, iModel: IModelDb);
|
24
|
-
}
|
25
|
-
/** Defines a shared set of properties (the 'type') that can be associated with an AnalyticalElement.
|
26
|
-
* It is not meant to replace a PhysicalType if it is available.
|
27
|
-
* @beta
|
28
|
-
*/
|
29
|
-
export declare abstract class AnalyticalType extends TypeDefinitionElement {
|
30
|
-
/** @internal */
|
31
|
-
static get className(): string;
|
32
|
-
/** @internal */
|
33
|
-
constructor(props: TypeDefinitionElementProps, iModel: IModelDb);
|
34
|
-
}
|
1
|
+
/** @packageDocumentation
|
2
|
+
* @module Analytical
|
3
|
+
*/
|
4
|
+
import { GeometricElement3d, IModelDb, InformationPartitionElement, TypeDefinitionElement } from "@itwin/core-backend";
|
5
|
+
import { GeometricElement3dProps, TypeDefinitionElementProps } from "@itwin/core-common";
|
6
|
+
/** An AnalyticalPartition element indicates that there is a specialized analytical perspective within
|
7
|
+
* the overall information hierarchy. An AnalyticalPartition subclass is always parented to a Subject
|
8
|
+
* and broken down by an AnalyticalModel.
|
9
|
+
* @see [[AnalyticalModel]]
|
10
|
+
* @beta
|
11
|
+
*/
|
12
|
+
export declare class AnalyticalPartition extends InformationPartitionElement {
|
13
|
+
/** @internal */
|
14
|
+
static get className(): string;
|
15
|
+
}
|
16
|
+
/** Spatially located, simulating zero or more SpatialLocationElement or PhysicalElement instances in light of a specialized analytical perspective.
|
17
|
+
* @beta
|
18
|
+
*/
|
19
|
+
export declare abstract class AnalyticalElement extends GeometricElement3d {
|
20
|
+
/** @internal */
|
21
|
+
static get className(): string;
|
22
|
+
/** @internal */
|
23
|
+
constructor(props: GeometricElement3dProps, iModel: IModelDb);
|
24
|
+
}
|
25
|
+
/** Defines a shared set of properties (the 'type') that can be associated with an AnalyticalElement.
|
26
|
+
* It is not meant to replace a PhysicalType if it is available.
|
27
|
+
* @beta
|
28
|
+
*/
|
29
|
+
export declare abstract class AnalyticalType extends TypeDefinitionElement {
|
30
|
+
/** @internal */
|
31
|
+
static get className(): string;
|
32
|
+
/** @internal */
|
33
|
+
constructor(props: TypeDefinitionElementProps, iModel: IModelDb);
|
34
|
+
}
|
35
35
|
//# sourceMappingURL=AnalyticalElements.d.ts.map
|
@@ -1,44 +1,44 @@
|
|
1
|
-
"use strict";
|
2
|
-
/*---------------------------------------------------------------------------------------------
|
3
|
-
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
4
|
-
* See LICENSE.md in the project root for license terms and full copyright notice.
|
5
|
-
*--------------------------------------------------------------------------------------------*/
|
6
|
-
/** @packageDocumentation
|
7
|
-
* @module Analytical
|
8
|
-
*/
|
9
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
10
|
-
exports.AnalyticalType = exports.AnalyticalElement = exports.AnalyticalPartition = void 0;
|
11
|
-
const core_backend_1 = require("@itwin/core-backend");
|
12
|
-
/** An AnalyticalPartition element indicates that there is a specialized analytical perspective within
|
13
|
-
* the overall information hierarchy. An AnalyticalPartition subclass is always parented to a Subject
|
14
|
-
* and broken down by an AnalyticalModel.
|
15
|
-
* @see [[AnalyticalModel]]
|
16
|
-
* @beta
|
17
|
-
*/
|
18
|
-
class AnalyticalPartition extends core_backend_1.InformationPartitionElement {
|
19
|
-
/** @internal */
|
20
|
-
static get className() { return "AnalyticalPartition"; }
|
21
|
-
}
|
22
|
-
exports.AnalyticalPartition = AnalyticalPartition;
|
23
|
-
/** Spatially located, simulating zero or more SpatialLocationElement or PhysicalElement instances in light of a specialized analytical perspective.
|
24
|
-
* @beta
|
25
|
-
*/
|
26
|
-
class AnalyticalElement extends core_backend_1.GeometricElement3d {
|
27
|
-
/** @internal */
|
28
|
-
static get className() { return "AnalyticalElement"; }
|
29
|
-
/** @internal */
|
30
|
-
constructor(props, iModel) { super(props, iModel); }
|
31
|
-
}
|
32
|
-
exports.AnalyticalElement = AnalyticalElement;
|
33
|
-
/** Defines a shared set of properties (the 'type') that can be associated with an AnalyticalElement.
|
34
|
-
* It is not meant to replace a PhysicalType if it is available.
|
35
|
-
* @beta
|
36
|
-
*/
|
37
|
-
class AnalyticalType extends core_backend_1.TypeDefinitionElement {
|
38
|
-
/** @internal */
|
39
|
-
static get className() { return "AnalyticalType"; }
|
40
|
-
/** @internal */
|
41
|
-
constructor(props, iModel) { super(props, iModel); }
|
42
|
-
}
|
43
|
-
exports.AnalyticalType = AnalyticalType;
|
1
|
+
"use strict";
|
2
|
+
/*---------------------------------------------------------------------------------------------
|
3
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
4
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
5
|
+
*--------------------------------------------------------------------------------------------*/
|
6
|
+
/** @packageDocumentation
|
7
|
+
* @module Analytical
|
8
|
+
*/
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
10
|
+
exports.AnalyticalType = exports.AnalyticalElement = exports.AnalyticalPartition = void 0;
|
11
|
+
const core_backend_1 = require("@itwin/core-backend");
|
12
|
+
/** An AnalyticalPartition element indicates that there is a specialized analytical perspective within
|
13
|
+
* the overall information hierarchy. An AnalyticalPartition subclass is always parented to a Subject
|
14
|
+
* and broken down by an AnalyticalModel.
|
15
|
+
* @see [[AnalyticalModel]]
|
16
|
+
* @beta
|
17
|
+
*/
|
18
|
+
class AnalyticalPartition extends core_backend_1.InformationPartitionElement {
|
19
|
+
/** @internal */
|
20
|
+
static get className() { return "AnalyticalPartition"; }
|
21
|
+
}
|
22
|
+
exports.AnalyticalPartition = AnalyticalPartition;
|
23
|
+
/** Spatially located, simulating zero or more SpatialLocationElement or PhysicalElement instances in light of a specialized analytical perspective.
|
24
|
+
* @beta
|
25
|
+
*/
|
26
|
+
class AnalyticalElement extends core_backend_1.GeometricElement3d {
|
27
|
+
/** @internal */
|
28
|
+
static get className() { return "AnalyticalElement"; }
|
29
|
+
/** @internal */
|
30
|
+
constructor(props, iModel) { super(props, iModel); }
|
31
|
+
}
|
32
|
+
exports.AnalyticalElement = AnalyticalElement;
|
33
|
+
/** Defines a shared set of properties (the 'type') that can be associated with an AnalyticalElement.
|
34
|
+
* It is not meant to replace a PhysicalType if it is available.
|
35
|
+
* @beta
|
36
|
+
*/
|
37
|
+
class AnalyticalType extends core_backend_1.TypeDefinitionElement {
|
38
|
+
/** @internal */
|
39
|
+
static get className() { return "AnalyticalType"; }
|
40
|
+
/** @internal */
|
41
|
+
constructor(props, iModel) { super(props, iModel); }
|
42
|
+
}
|
43
|
+
exports.AnalyticalType = AnalyticalType;
|
44
44
|
//# sourceMappingURL=AnalyticalElements.js.map
|
@@ -1,12 +1,12 @@
|
|
1
|
-
/** @packageDocumentation
|
2
|
-
* @module Analytical
|
3
|
-
*/
|
4
|
-
import { GeometricModel3d } from "@itwin/core-backend";
|
5
|
-
/** A container for persisting AnalyticalElement instances used to model a specialized analytical perspective.
|
6
|
-
* @beta
|
7
|
-
*/
|
8
|
-
export declare abstract class AnalyticalModel extends GeometricModel3d {
|
9
|
-
/** @internal */
|
10
|
-
static get className(): string;
|
11
|
-
}
|
1
|
+
/** @packageDocumentation
|
2
|
+
* @module Analytical
|
3
|
+
*/
|
4
|
+
import { GeometricModel3d } from "@itwin/core-backend";
|
5
|
+
/** A container for persisting AnalyticalElement instances used to model a specialized analytical perspective.
|
6
|
+
* @beta
|
7
|
+
*/
|
8
|
+
export declare abstract class AnalyticalModel extends GeometricModel3d {
|
9
|
+
/** @internal */
|
10
|
+
static get className(): string;
|
11
|
+
}
|
12
12
|
//# sourceMappingURL=AnalyticalModels.d.ts.map
|
@@ -1,20 +1,20 @@
|
|
1
|
-
"use strict";
|
2
|
-
/*---------------------------------------------------------------------------------------------
|
3
|
-
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
4
|
-
* See LICENSE.md in the project root for license terms and full copyright notice.
|
5
|
-
*--------------------------------------------------------------------------------------------*/
|
6
|
-
/** @packageDocumentation
|
7
|
-
* @module Analytical
|
8
|
-
*/
|
9
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
10
|
-
exports.AnalyticalModel = void 0;
|
11
|
-
const core_backend_1 = require("@itwin/core-backend");
|
12
|
-
/** A container for persisting AnalyticalElement instances used to model a specialized analytical perspective.
|
13
|
-
* @beta
|
14
|
-
*/
|
15
|
-
class AnalyticalModel extends core_backend_1.GeometricModel3d {
|
16
|
-
/** @internal */
|
17
|
-
static get className() { return "AnalyticalModel"; }
|
18
|
-
}
|
19
|
-
exports.AnalyticalModel = AnalyticalModel;
|
1
|
+
"use strict";
|
2
|
+
/*---------------------------------------------------------------------------------------------
|
3
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
4
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
5
|
+
*--------------------------------------------------------------------------------------------*/
|
6
|
+
/** @packageDocumentation
|
7
|
+
* @module Analytical
|
8
|
+
*/
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
10
|
+
exports.AnalyticalModel = void 0;
|
11
|
+
const core_backend_1 = require("@itwin/core-backend");
|
12
|
+
/** A container for persisting AnalyticalElement instances used to model a specialized analytical perspective.
|
13
|
+
* @beta
|
14
|
+
*/
|
15
|
+
class AnalyticalModel extends core_backend_1.GeometricModel3d {
|
16
|
+
/** @internal */
|
17
|
+
static get className() { return "AnalyticalModel"; }
|
18
|
+
}
|
19
|
+
exports.AnalyticalModel = AnalyticalModel;
|
20
20
|
//# sourceMappingURL=AnalyticalModels.js.map
|
@@ -1,12 +1,12 @@
|
|
1
|
-
/** @packageDocumentation
|
2
|
-
* @module Analytical
|
3
|
-
*/
|
4
|
-
import { ElementRefersToElements } from "@itwin/core-backend";
|
5
|
-
/** Relates an AnalyticalElement to the SpatialLocationElement or PhysicalElement it is simulating within the specialized analytical perspective.
|
6
|
-
* @beta
|
7
|
-
*/
|
8
|
-
export declare class AnalyticalSimulatesSpatialElement extends ElementRefersToElements {
|
9
|
-
/** @internal */
|
10
|
-
static get className(): string;
|
11
|
-
}
|
1
|
+
/** @packageDocumentation
|
2
|
+
* @module Analytical
|
3
|
+
*/
|
4
|
+
import { ElementRefersToElements } from "@itwin/core-backend";
|
5
|
+
/** Relates an AnalyticalElement to the SpatialLocationElement or PhysicalElement it is simulating within the specialized analytical perspective.
|
6
|
+
* @beta
|
7
|
+
*/
|
8
|
+
export declare class AnalyticalSimulatesSpatialElement extends ElementRefersToElements {
|
9
|
+
/** @internal */
|
10
|
+
static get className(): string;
|
11
|
+
}
|
12
12
|
//# sourceMappingURL=AnalyticalRelationships.d.ts.map
|
@@ -1,20 +1,20 @@
|
|
1
|
-
"use strict";
|
2
|
-
/*---------------------------------------------------------------------------------------------
|
3
|
-
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
4
|
-
* See LICENSE.md in the project root for license terms and full copyright notice.
|
5
|
-
*--------------------------------------------------------------------------------------------*/
|
6
|
-
/** @packageDocumentation
|
7
|
-
* @module Analytical
|
8
|
-
*/
|
9
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
10
|
-
exports.AnalyticalSimulatesSpatialElement = void 0;
|
11
|
-
const core_backend_1 = require("@itwin/core-backend");
|
12
|
-
/** Relates an AnalyticalElement to the SpatialLocationElement or PhysicalElement it is simulating within the specialized analytical perspective.
|
13
|
-
* @beta
|
14
|
-
*/
|
15
|
-
class AnalyticalSimulatesSpatialElement extends core_backend_1.ElementRefersToElements {
|
16
|
-
/** @internal */
|
17
|
-
static get className() { return "AnalyticalSimulatesSpatialElement"; }
|
18
|
-
}
|
19
|
-
exports.AnalyticalSimulatesSpatialElement = AnalyticalSimulatesSpatialElement;
|
1
|
+
"use strict";
|
2
|
+
/*---------------------------------------------------------------------------------------------
|
3
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
4
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
5
|
+
*--------------------------------------------------------------------------------------------*/
|
6
|
+
/** @packageDocumentation
|
7
|
+
* @module Analytical
|
8
|
+
*/
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
10
|
+
exports.AnalyticalSimulatesSpatialElement = void 0;
|
11
|
+
const core_backend_1 = require("@itwin/core-backend");
|
12
|
+
/** Relates an AnalyticalElement to the SpatialLocationElement or PhysicalElement it is simulating within the specialized analytical perspective.
|
13
|
+
* @beta
|
14
|
+
*/
|
15
|
+
class AnalyticalSimulatesSpatialElement extends core_backend_1.ElementRefersToElements {
|
16
|
+
/** @internal */
|
17
|
+
static get className() { return "AnalyticalSimulatesSpatialElement"; }
|
18
|
+
}
|
19
|
+
exports.AnalyticalSimulatesSpatialElement = AnalyticalSimulatesSpatialElement;
|
20
20
|
//# sourceMappingURL=AnalyticalRelationships.js.map
|
@@ -1,13 +1,13 @@
|
|
1
|
-
/** @packageDocumentation
|
2
|
-
* @module Analytical
|
3
|
-
*/
|
4
|
-
import { Schema } from "@itwin/core-backend";
|
5
|
-
/** Schema class for the Analytical domain.
|
6
|
-
* @beta
|
7
|
-
*/
|
8
|
-
export declare class AnalyticalSchema extends Schema {
|
9
|
-
static get schemaName(): string;
|
10
|
-
static get schemaFilePath(): string;
|
11
|
-
static registerSchema(): void;
|
12
|
-
}
|
1
|
+
/** @packageDocumentation
|
2
|
+
* @module Analytical
|
3
|
+
*/
|
4
|
+
import { Schema } from "@itwin/core-backend";
|
5
|
+
/** Schema class for the Analytical domain.
|
6
|
+
* @beta
|
7
|
+
*/
|
8
|
+
export declare class AnalyticalSchema extends Schema {
|
9
|
+
static get schemaName(): string;
|
10
|
+
static get schemaFilePath(): string;
|
11
|
+
static registerSchema(): void;
|
12
|
+
}
|
13
13
|
//# sourceMappingURL=AnalyticalSchema.d.ts.map
|
@@ -1,33 +1,33 @@
|
|
1
|
-
"use strict";
|
2
|
-
/*---------------------------------------------------------------------------------------------
|
3
|
-
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
4
|
-
* See LICENSE.md in the project root for license terms and full copyright notice.
|
5
|
-
*--------------------------------------------------------------------------------------------*/
|
6
|
-
/** @packageDocumentation
|
7
|
-
* @module Analytical
|
8
|
-
*/
|
9
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
10
|
-
exports.AnalyticalSchema = void 0;
|
11
|
-
const path = require("path");
|
12
|
-
const core_backend_1 = require("@itwin/core-backend");
|
13
|
-
const elementsModule = require("./AnalyticalElements");
|
14
|
-
const modelsModule = require("./AnalyticalModels");
|
15
|
-
const relationshipsModule = require("./AnalyticalRelationships");
|
16
|
-
/** Schema class for the Analytical domain.
|
17
|
-
* @beta
|
18
|
-
*/
|
19
|
-
class AnalyticalSchema extends core_backend_1.Schema {
|
20
|
-
static get schemaName() { return "Analytical"; }
|
21
|
-
static get schemaFilePath() { return path.join(core_backend_1.KnownLocations.nativeAssetsDir, "ECSchemas", "Domain", "Analytical.ecschema.xml"); }
|
22
|
-
static registerSchema() {
|
23
|
-
if (this !== core_backend_1.Schemas.getRegisteredSchema(this.schemaName)) {
|
24
|
-
core_backend_1.Schemas.unregisterSchema(this.schemaName);
|
25
|
-
core_backend_1.Schemas.registerSchema(this);
|
26
|
-
core_backend_1.ClassRegistry.registerModule(elementsModule, this);
|
27
|
-
core_backend_1.ClassRegistry.registerModule(modelsModule, this);
|
28
|
-
core_backend_1.ClassRegistry.registerModule(relationshipsModule, this);
|
29
|
-
}
|
30
|
-
}
|
31
|
-
}
|
32
|
-
exports.AnalyticalSchema = AnalyticalSchema;
|
1
|
+
"use strict";
|
2
|
+
/*---------------------------------------------------------------------------------------------
|
3
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
4
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
5
|
+
*--------------------------------------------------------------------------------------------*/
|
6
|
+
/** @packageDocumentation
|
7
|
+
* @module Analytical
|
8
|
+
*/
|
9
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
10
|
+
exports.AnalyticalSchema = void 0;
|
11
|
+
const path = require("path");
|
12
|
+
const core_backend_1 = require("@itwin/core-backend");
|
13
|
+
const elementsModule = require("./AnalyticalElements");
|
14
|
+
const modelsModule = require("./AnalyticalModels");
|
15
|
+
const relationshipsModule = require("./AnalyticalRelationships");
|
16
|
+
/** Schema class for the Analytical domain.
|
17
|
+
* @beta
|
18
|
+
*/
|
19
|
+
class AnalyticalSchema extends core_backend_1.Schema {
|
20
|
+
static get schemaName() { return "Analytical"; }
|
21
|
+
static get schemaFilePath() { return path.join(core_backend_1.KnownLocations.nativeAssetsDir, "ECSchemas", "Domain", "Analytical.ecschema.xml"); }
|
22
|
+
static registerSchema() {
|
23
|
+
if (this !== core_backend_1.Schemas.getRegisteredSchema(this.schemaName)) {
|
24
|
+
core_backend_1.Schemas.unregisterSchema(this.schemaName);
|
25
|
+
core_backend_1.Schemas.registerSchema(this);
|
26
|
+
core_backend_1.ClassRegistry.registerModule(elementsModule, this);
|
27
|
+
core_backend_1.ClassRegistry.registerModule(modelsModule, this);
|
28
|
+
core_backend_1.ClassRegistry.registerModule(relationshipsModule, this);
|
29
|
+
}
|
30
|
+
}
|
31
|
+
}
|
32
|
+
exports.AnalyticalSchema = AnalyticalSchema;
|
33
33
|
//# sourceMappingURL=AnalyticalSchema.js.map
|
@@ -1,11 +1,11 @@
|
|
1
|
-
export * from "./AnalyticalElements";
|
2
|
-
export * from "./AnalyticalModels";
|
3
|
-
export * from "./AnalyticalRelationships";
|
4
|
-
export * from "./AnalyticalSchema";
|
5
|
-
/** @docs-package-description
|
6
|
-
* The `@itwin/analytical-backend` package contains classes for working with analytical schemas on the backend.
|
7
|
-
*/
|
8
|
-
/** @docs-group-description Analytical
|
9
|
-
* The base classes that specialized Analytical domain schemas extend.
|
10
|
-
*/
|
1
|
+
export * from "./AnalyticalElements";
|
2
|
+
export * from "./AnalyticalModels";
|
3
|
+
export * from "./AnalyticalRelationships";
|
4
|
+
export * from "./AnalyticalSchema";
|
5
|
+
/** @docs-package-description
|
6
|
+
* The `@itwin/analytical-backend` package contains classes for working with analytical schemas on the backend.
|
7
|
+
*/
|
8
|
+
/** @docs-group-description Analytical
|
9
|
+
* The base classes that specialized Analytical domain schemas extend.
|
10
|
+
*/
|
11
11
|
//# sourceMappingURL=analytical-backend.d.ts.map
|
@@ -1,27 +1,31 @@
|
|
1
|
-
"use strict";
|
2
|
-
/*---------------------------------------------------------------------------------------------
|
3
|
-
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
4
|
-
* See LICENSE.md in the project root for license terms and full copyright notice.
|
5
|
-
*--------------------------------------------------------------------------------------------*/
|
6
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
7
|
-
if (k2 === undefined) k2 = k;
|
8
|
-
Object.
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
__exportStar(
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
1
|
+
"use strict";
|
2
|
+
/*---------------------------------------------------------------------------------------------
|
3
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
4
|
+
* See LICENSE.md in the project root for license terms and full copyright notice.
|
5
|
+
*--------------------------------------------------------------------------------------------*/
|
6
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
7
|
+
if (k2 === undefined) k2 = k;
|
8
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
9
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
10
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
11
|
+
}
|
12
|
+
Object.defineProperty(o, k2, desc);
|
13
|
+
}) : (function(o, m, k, k2) {
|
14
|
+
if (k2 === undefined) k2 = k;
|
15
|
+
o[k2] = m[k];
|
16
|
+
}));
|
17
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
18
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
19
|
+
};
|
20
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
21
|
+
__exportStar(require("./AnalyticalElements"), exports);
|
22
|
+
__exportStar(require("./AnalyticalModels"), exports);
|
23
|
+
__exportStar(require("./AnalyticalRelationships"), exports);
|
24
|
+
__exportStar(require("./AnalyticalSchema"), exports);
|
25
|
+
/** @docs-package-description
|
26
|
+
* The `@itwin/analytical-backend` package contains classes for working with analytical schemas on the backend.
|
27
|
+
*/
|
28
|
+
/** @docs-group-description Analytical
|
29
|
+
* The base classes that specialized Analytical domain schemas extend.
|
30
|
+
*/
|
27
31
|
//# sourceMappingURL=analytical-backend.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"analytical-backend.js","sourceRoot":"","sources":["../../src/analytical-backend.ts"],"names":[],"mappings":";AAAA;;;+FAG+F
|
1
|
+
{"version":3,"file":"analytical-backend.js","sourceRoot":"","sources":["../../src/analytical-backend.ts"],"names":[],"mappings":";AAAA;;;+FAG+F;;;;;;;;;;;;;;;;AAE/F,uDAAqC;AACrC,qDAAmC;AACnC,4DAA0C;AAC1C,qDAAmC;AAEnC;;GAEG;AAEH;;GAEG","sourcesContent":["/*---------------------------------------------------------------------------------------------\r\n* Copyright (c) Bentley Systems, Incorporated. All rights reserved.\r\n* See LICENSE.md in the project root for license terms and full copyright notice.\r\n*--------------------------------------------------------------------------------------------*/\r\n\r\nexport * from \"./AnalyticalElements\";\r\nexport * from \"./AnalyticalModels\";\r\nexport * from \"./AnalyticalRelationships\";\r\nexport * from \"./AnalyticalSchema\";\r\n\r\n/** @docs-package-description\r\n * The `@itwin/analytical-backend` package contains classes for working with analytical schemas on the backend.\r\n */\r\n\r\n/** @docs-group-description Analytical\r\n * The base classes that specialized Analytical domain schemas extend.\r\n */\r\n"]}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@itwin/analytical-backend",
|
3
|
-
"version": "4.0.0-dev.
|
3
|
+
"version": "4.0.0-dev.54",
|
4
4
|
"main": "lib/cjs/analytical-backend.js",
|
5
5
|
"typings": "lib/cjs/analytical-backend",
|
6
6
|
"license": "MIT",
|
@@ -21,20 +21,20 @@
|
|
21
21
|
"url": "http://www.bentley.com"
|
22
22
|
},
|
23
23
|
"peerDependencies": {
|
24
|
-
"@itwin/core-backend": "^4.0.0-dev.
|
25
|
-
"@itwin/core-bentley": "^4.0.0-dev.
|
26
|
-
"@itwin/core-common": "^4.0.0-dev.
|
24
|
+
"@itwin/core-backend": "^4.0.0-dev.54",
|
25
|
+
"@itwin/core-bentley": "^4.0.0-dev.54",
|
26
|
+
"@itwin/core-common": "^4.0.0-dev.54"
|
27
27
|
},
|
28
28
|
"//devDependencies": [
|
29
29
|
"NOTE: All peerDependencies should also be listed as devDependencies since peerDependencies are not considered by npm install",
|
30
30
|
"NOTE: All tools used by scripts in this package must be listed as devDependencies"
|
31
31
|
],
|
32
32
|
"devDependencies": {
|
33
|
-
"@itwin/build-tools": "4.0.0-dev.
|
34
|
-
"@itwin/core-backend": "4.0.0-dev.
|
35
|
-
"@itwin/core-bentley": "4.0.0-dev.
|
36
|
-
"@itwin/core-common": "4.0.0-dev.
|
37
|
-
"@itwin/eslint-plugin": "
|
33
|
+
"@itwin/build-tools": "4.0.0-dev.54",
|
34
|
+
"@itwin/core-backend": "4.0.0-dev.54",
|
35
|
+
"@itwin/core-bentley": "4.0.0-dev.54",
|
36
|
+
"@itwin/core-common": "4.0.0-dev.54",
|
37
|
+
"@itwin/eslint-plugin": "^4.0.0-dev.32",
|
38
38
|
"@types/chai": "4.3.1",
|
39
39
|
"@types/fs-extra": "^4.0.7",
|
40
40
|
"@types/mocha": "^8.2.2",
|
@@ -46,7 +46,7 @@
|
|
46
46
|
"mocha": "^10.0.0",
|
47
47
|
"nyc": "^15.1.0",
|
48
48
|
"rimraf": "^3.0.2",
|
49
|
-
"typescript": "~
|
49
|
+
"typescript": "~5.0.2"
|
50
50
|
},
|
51
51
|
"dependencies": {
|
52
52
|
"semver": "^7.3.5"
|