@itwin/analytical-backend 5.0.0-dev.99 → 5.0.1

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/CHANGELOG.md CHANGED
@@ -1,6 +1,60 @@
1
1
  # Change Log - @itwin/analytical-backend
2
2
 
3
- This log was last generated on Wed, 02 Apr 2025 19:38:36 GMT and should not be manually modified.
3
+ This log was last generated on Tue, 17 Jun 2025 18:33:51 GMT and should not be manually modified.
4
+
5
+ ## 5.0.1
6
+ Tue, 17 Jun 2025 18:33:51 GMT
7
+
8
+ _Version update only_
9
+
10
+ ## 5.0.0
11
+ Fri, 13 Jun 2025 20:25:38 GMT
12
+
13
+ ### Updates
14
+
15
+ - Dropped support for Node 18
16
+ - Added ESM support
17
+ - Change core peer dependencies to strict version.
18
+
19
+ ## 4.11.6
20
+ Mon, 16 Jun 2025 15:00:15 GMT
21
+
22
+ _Version update only_
23
+
24
+ ## 4.11.5
25
+ Fri, 06 Jun 2025 13:41:18 GMT
26
+
27
+ _Version update only_
28
+
29
+ ## 4.11.4
30
+ Tue, 03 Jun 2025 16:15:19 GMT
31
+
32
+ _Version update only_
33
+
34
+ ## 4.11.3
35
+ Wed, 28 May 2025 13:56:22 GMT
36
+
37
+ _Version update only_
38
+
39
+ ## 4.11.2
40
+ Tue, 20 May 2025 20:14:45 GMT
41
+
42
+ _Version update only_
43
+
44
+ ## 4.11.1
45
+ Wed, 30 Apr 2025 13:13:21 GMT
46
+
47
+ _Version update only_
48
+
49
+ ## 4.11.0
50
+ Wed, 16 Apr 2025 15:50:28 GMT
51
+
52
+ _Version update only_
53
+
54
+ ## 4.10.13
55
+ Thu, 10 Apr 2025 17:47:21 GMT
56
+
57
+ _Version update only_
4
58
 
5
59
  ## 4.10.12
6
60
  Wed, 02 Apr 2025 19:35:47 GMT
@@ -10,9 +10,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
10
10
  exports.AnalyticalSchema = void 0;
11
11
  const path = require("node:path");
12
12
  const core_backend_1 = require("@itwin/core-backend");
13
- const elementsModule = require("./AnalyticalElements.js");
14
- const modelsModule = require("./AnalyticalModels.js");
15
- const relationshipsModule = require("./AnalyticalRelationships.js");
13
+ const elementsModule = require("./AnalyticalElements");
14
+ const modelsModule = require("./AnalyticalModels");
15
+ const relationshipsModule = require("./AnalyticalRelationships");
16
16
  /** Schema class for the Analytical domain.
17
17
  * @beta
18
18
  */
@@ -1 +1 @@
1
- {"version":3,"file":"AnalyticalSchema.js","sourceRoot":"","sources":["../../src/AnalyticalSchema.ts"],"names":[],"mappings":";AAAA;;;+FAG+F;AAC/F;;GAEG;;;AAEH,kCAAkC;AAClC,sDAAqF;AACrF,0DAA0D;AAC1D,sDAAsD;AACtD,oEAAoE;AAEpE;;GAEG;AACH,MAAa,gBAAiB,SAAQ,qBAAM;IACnC,MAAM,KAAc,UAAU,KAAa,OAAO,YAAY,CAAC,CAAC,CAAC;IACxE;;;OAGG;IACI,MAAM,KAAK,cAAc,KAAa,OAAO,IAAI,CAAC,IAAI,CAAC,6BAAc,CAAC,eAAe,EAAE,WAAW,EAAE,QAAQ,EAAE,yBAAyB,CAAC,CAAC,CAAC,CAAC;IAC3I,MAAM,CAAC,cAAc;QAC1B,IAAI,IAAI,KAAK,sBAAO,CAAC,mBAAmB,CAAC,IAAI,CAAC,UAAU,CAAC,EAAE,CAAC;YAC1D,sBAAO,CAAC,gBAAgB,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;YAC1C,sBAAO,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC;YAE7B,4BAAa,CAAC,cAAc,CAAC,cAAc,EAAE,IAAI,CAAC,CAAC;YACnD,4BAAa,CAAC,cAAc,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC;YACjD,4BAAa,CAAC,cAAc,CAAC,mBAAmB,EAAE,IAAI,CAAC,CAAC;QAC1D,CAAC;IACH,CAAC;CACF;AAjBD,4CAiBC","sourcesContent":["/*---------------------------------------------------------------------------------------------\n* Copyright (c) Bentley Systems, Incorporated. All rights reserved.\n* See LICENSE.md in the project root for license terms and full copyright notice.\n*--------------------------------------------------------------------------------------------*/\n/** @packageDocumentation\n * @module Analytical\n */\n\nimport * as path from \"node:path\";\nimport { ClassRegistry, KnownLocations, Schema, Schemas } from \"@itwin/core-backend\";\nimport * as elementsModule from \"./AnalyticalElements.js\";\nimport * as modelsModule from \"./AnalyticalModels.js\";\nimport * as relationshipsModule from \"./AnalyticalRelationships.js\";\n\n/** Schema class for the Analytical domain.\n * @beta\n */\nexport class AnalyticalSchema extends Schema {\n public static override get schemaName(): string { return \"Analytical\"; }\n /**\n * TODO: Currently the schema file comes from a hardcoded path assuming its delivered with imodeljs-native\n * Look to add a dependency on @bentley/analytical-schema and using require.resolve to obtain the path\n */\n public static get schemaFilePath(): string { return path.join(KnownLocations.nativeAssetsDir, \"ECSchemas\", \"Domain\", \"Analytical.ecschema.xml\"); }\n public static registerSchema() {\n if (this !== Schemas.getRegisteredSchema(this.schemaName)) {\n Schemas.unregisterSchema(this.schemaName);\n Schemas.registerSchema(this);\n\n ClassRegistry.registerModule(elementsModule, this);\n ClassRegistry.registerModule(modelsModule, this);\n ClassRegistry.registerModule(relationshipsModule, this);\n }\n }\n}\n"]}
1
+ {"version":3,"file":"AnalyticalSchema.js","sourceRoot":"","sources":["../../src/AnalyticalSchema.ts"],"names":[],"mappings":";AAAA;;;+FAG+F;AAC/F;;GAEG;;;AAEH,kCAAkC;AAClC,sDAAqF;AACrF,uDAAuD;AACvD,mDAAmD;AACnD,iEAAiE;AAEjE;;GAEG;AACH,MAAa,gBAAiB,SAAQ,qBAAM;IACnC,MAAM,KAAc,UAAU,KAAa,OAAO,YAAY,CAAC,CAAC,CAAC;IACxE;;;OAGG;IACI,MAAM,KAAK,cAAc,KAAa,OAAO,IAAI,CAAC,IAAI,CAAC,6BAAc,CAAC,eAAe,EAAE,WAAW,EAAE,QAAQ,EAAE,yBAAyB,CAAC,CAAC,CAAC,CAAC;IAC3I,MAAM,CAAC,cAAc;QAC1B,IAAI,IAAI,KAAK,sBAAO,CAAC,mBAAmB,CAAC,IAAI,CAAC,UAAU,CAAC,EAAE,CAAC;YAC1D,sBAAO,CAAC,gBAAgB,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;YAC1C,sBAAO,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC;YAE7B,4BAAa,CAAC,cAAc,CAAC,cAAc,EAAE,IAAI,CAAC,CAAC;YACnD,4BAAa,CAAC,cAAc,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC;YACjD,4BAAa,CAAC,cAAc,CAAC,mBAAmB,EAAE,IAAI,CAAC,CAAC;QAC1D,CAAC;IACH,CAAC;CACF;AAjBD,4CAiBC","sourcesContent":["/*---------------------------------------------------------------------------------------------\n* Copyright (c) Bentley Systems, Incorporated. All rights reserved.\n* See LICENSE.md in the project root for license terms and full copyright notice.\n*--------------------------------------------------------------------------------------------*/\n/** @packageDocumentation\n * @module Analytical\n */\n\nimport * as path from \"node:path\";\nimport { ClassRegistry, KnownLocations, Schema, Schemas } from \"@itwin/core-backend\";\nimport * as elementsModule from \"./AnalyticalElements\";\nimport * as modelsModule from \"./AnalyticalModels\";\nimport * as relationshipsModule from \"./AnalyticalRelationships\";\n\n/** Schema class for the Analytical domain.\n * @beta\n */\nexport class AnalyticalSchema extends Schema {\n public static override get schemaName(): string { return \"Analytical\"; }\n /**\n * TODO: Currently the schema file comes from a hardcoded path assuming its delivered with imodeljs-native\n * Look to add a dependency on @bentley/analytical-schema and using require.resolve to obtain the path\n */\n public static get schemaFilePath(): string { return path.join(KnownLocations.nativeAssetsDir, \"ECSchemas\", \"Domain\", \"Analytical.ecschema.xml\"); }\n public static registerSchema() {\n if (this !== Schemas.getRegisteredSchema(this.schemaName)) {\n Schemas.unregisterSchema(this.schemaName);\n Schemas.registerSchema(this);\n\n ClassRegistry.registerModule(elementsModule, this);\n ClassRegistry.registerModule(modelsModule, this);\n ClassRegistry.registerModule(relationshipsModule, this);\n }\n }\n}\n"]}
@@ -1,7 +1,7 @@
1
- export * from "./AnalyticalElements.js";
2
- export * from "./AnalyticalModels.js";
3
- export * from "./AnalyticalRelationships.js";
4
- export * from "./AnalyticalSchema.js";
1
+ export * from "./AnalyticalElements";
2
+ export * from "./AnalyticalModels";
3
+ export * from "./AnalyticalRelationships";
4
+ export * from "./AnalyticalSchema";
5
5
  /** @docs-package-description
6
6
  * The `@itwin/analytical-backend` package contains classes for working with analytical schemas on the backend.
7
7
  */
@@ -1 +1 @@
1
- {"version":3,"file":"analytical-backend.d.ts","sourceRoot":"","sources":["../../src/analytical-backend.ts"],"names":[],"mappings":"AAKA,cAAc,yBAAyB,CAAC;AACxC,cAAc,uBAAuB,CAAC;AACtC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,uBAAuB,CAAC;AAEtC;;GAEG;AAEH;;GAEG"}
1
+ {"version":3,"file":"analytical-backend.d.ts","sourceRoot":"","sources":["../../src/analytical-backend.ts"],"names":[],"mappings":"AAKA,cAAc,sBAAsB,CAAC;AACrC,cAAc,oBAAoB,CAAC;AACnC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,oBAAoB,CAAC;AAEnC;;GAEG;AAEH;;GAEG"}
@@ -18,10 +18,10 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
18
18
  for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
19
19
  };
20
20
  Object.defineProperty(exports, "__esModule", { value: true });
21
- __exportStar(require("./AnalyticalElements.js"), exports);
22
- __exportStar(require("./AnalyticalModels.js"), exports);
23
- __exportStar(require("./AnalyticalRelationships.js"), exports);
24
- __exportStar(require("./AnalyticalSchema.js"), exports);
21
+ __exportStar(require("./AnalyticalElements"), exports);
22
+ __exportStar(require("./AnalyticalModels"), exports);
23
+ __exportStar(require("./AnalyticalRelationships"), exports);
24
+ __exportStar(require("./AnalyticalSchema"), exports);
25
25
  /** @docs-package-description
26
26
  * The `@itwin/analytical-backend` package contains classes for working with analytical schemas on the backend.
27
27
  */
@@ -1 +1 @@
1
- {"version":3,"file":"analytical-backend.js","sourceRoot":"","sources":["../../src/analytical-backend.ts"],"names":[],"mappings":";AAAA;;;+FAG+F;;;;;;;;;;;;;;;;AAE/F,0DAAwC;AACxC,wDAAsC;AACtC,+DAA6C;AAC7C,wDAAsC;AAEtC;;GAEG;AAEH;;GAEG","sourcesContent":["/*---------------------------------------------------------------------------------------------\n* Copyright (c) Bentley Systems, Incorporated. All rights reserved.\n* See LICENSE.md in the project root for license terms and full copyright notice.\n*--------------------------------------------------------------------------------------------*/\n\nexport * from \"./AnalyticalElements.js\";\nexport * from \"./AnalyticalModels.js\";\nexport * from \"./AnalyticalRelationships.js\";\nexport * from \"./AnalyticalSchema.js\";\n\n/** @docs-package-description\n * The `@itwin/analytical-backend` package contains classes for working with analytical schemas on the backend.\n */\n\n/** @docs-group-description Analytical\n * The base classes that specialized Analytical domain schemas extend.\n */\n"]}
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":["/*---------------------------------------------------------------------------------------------\n* Copyright (c) Bentley Systems, Incorporated. All rights reserved.\n* See LICENSE.md in the project root for license terms and full copyright notice.\n*--------------------------------------------------------------------------------------------*/\n\nexport * from \"./AnalyticalElements\";\nexport * from \"./AnalyticalModels\";\nexport * from \"./AnalyticalRelationships\";\nexport * from \"./AnalyticalSchema\";\n\n/** @docs-package-description\n * The `@itwin/analytical-backend` package contains classes for working with analytical schemas on the backend.\n */\n\n/** @docs-group-description Analytical\n * The base classes that specialized Analytical domain schemas extend.\n */\n"]}
@@ -7,9 +7,9 @@
7
7
  */
8
8
  import * as path from "node:path";
9
9
  import { ClassRegistry, KnownLocations, Schema, Schemas } from "@itwin/core-backend";
10
- import * as elementsModule from "./AnalyticalElements.js";
11
- import * as modelsModule from "./AnalyticalModels.js";
12
- import * as relationshipsModule from "./AnalyticalRelationships.js";
10
+ import * as elementsModule from "./AnalyticalElements";
11
+ import * as modelsModule from "./AnalyticalModels";
12
+ import * as relationshipsModule from "./AnalyticalRelationships";
13
13
  /** Schema class for the Analytical domain.
14
14
  * @beta
15
15
  */
@@ -1 +1 @@
1
- {"version":3,"file":"AnalyticalSchema.js","sourceRoot":"","sources":["../../src/AnalyticalSchema.ts"],"names":[],"mappings":"AAAA;;;+FAG+F;AAC/F;;GAEG;AAEH,OAAO,KAAK,IAAI,MAAM,WAAW,CAAC;AAClC,OAAO,EAAE,aAAa,EAAE,cAAc,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,qBAAqB,CAAC;AACrF,OAAO,KAAK,cAAc,MAAM,yBAAyB,CAAC;AAC1D,OAAO,KAAK,YAAY,MAAM,uBAAuB,CAAC;AACtD,OAAO,KAAK,mBAAmB,MAAM,8BAA8B,CAAC;AAEpE;;GAEG;AACH,MAAM,OAAO,gBAAiB,SAAQ,MAAM;IACnC,MAAM,KAAc,UAAU,KAAa,OAAO,YAAY,CAAC,CAAC,CAAC;IACxE;;;OAGG;IACI,MAAM,KAAK,cAAc,KAAa,OAAO,IAAI,CAAC,IAAI,CAAC,cAAc,CAAC,eAAe,EAAE,WAAW,EAAE,QAAQ,EAAE,yBAAyB,CAAC,CAAC,CAAC,CAAC;IAC3I,MAAM,CAAC,cAAc;QAC1B,IAAI,IAAI,KAAK,OAAO,CAAC,mBAAmB,CAAC,IAAI,CAAC,UAAU,CAAC,EAAE,CAAC;YAC1D,OAAO,CAAC,gBAAgB,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;YAC1C,OAAO,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC;YAE7B,aAAa,CAAC,cAAc,CAAC,cAAc,EAAE,IAAI,CAAC,CAAC;YACnD,aAAa,CAAC,cAAc,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC;YACjD,aAAa,CAAC,cAAc,CAAC,mBAAmB,EAAE,IAAI,CAAC,CAAC;QAC1D,CAAC;IACH,CAAC;CACF","sourcesContent":["/*---------------------------------------------------------------------------------------------\n* Copyright (c) Bentley Systems, Incorporated. All rights reserved.\n* See LICENSE.md in the project root for license terms and full copyright notice.\n*--------------------------------------------------------------------------------------------*/\n/** @packageDocumentation\n * @module Analytical\n */\n\nimport * as path from \"node:path\";\nimport { ClassRegistry, KnownLocations, Schema, Schemas } from \"@itwin/core-backend\";\nimport * as elementsModule from \"./AnalyticalElements.js\";\nimport * as modelsModule from \"./AnalyticalModels.js\";\nimport * as relationshipsModule from \"./AnalyticalRelationships.js\";\n\n/** Schema class for the Analytical domain.\n * @beta\n */\nexport class AnalyticalSchema extends Schema {\n public static override get schemaName(): string { return \"Analytical\"; }\n /**\n * TODO: Currently the schema file comes from a hardcoded path assuming its delivered with imodeljs-native\n * Look to add a dependency on @bentley/analytical-schema and using require.resolve to obtain the path\n */\n public static get schemaFilePath(): string { return path.join(KnownLocations.nativeAssetsDir, \"ECSchemas\", \"Domain\", \"Analytical.ecschema.xml\"); }\n public static registerSchema() {\n if (this !== Schemas.getRegisteredSchema(this.schemaName)) {\n Schemas.unregisterSchema(this.schemaName);\n Schemas.registerSchema(this);\n\n ClassRegistry.registerModule(elementsModule, this);\n ClassRegistry.registerModule(modelsModule, this);\n ClassRegistry.registerModule(relationshipsModule, this);\n }\n }\n}\n"]}
1
+ {"version":3,"file":"AnalyticalSchema.js","sourceRoot":"","sources":["../../src/AnalyticalSchema.ts"],"names":[],"mappings":"AAAA;;;+FAG+F;AAC/F;;GAEG;AAEH,OAAO,KAAK,IAAI,MAAM,WAAW,CAAC;AAClC,OAAO,EAAE,aAAa,EAAE,cAAc,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,qBAAqB,CAAC;AACrF,OAAO,KAAK,cAAc,MAAM,sBAAsB,CAAC;AACvD,OAAO,KAAK,YAAY,MAAM,oBAAoB,CAAC;AACnD,OAAO,KAAK,mBAAmB,MAAM,2BAA2B,CAAC;AAEjE;;GAEG;AACH,MAAM,OAAO,gBAAiB,SAAQ,MAAM;IACnC,MAAM,KAAc,UAAU,KAAa,OAAO,YAAY,CAAC,CAAC,CAAC;IACxE;;;OAGG;IACI,MAAM,KAAK,cAAc,KAAa,OAAO,IAAI,CAAC,IAAI,CAAC,cAAc,CAAC,eAAe,EAAE,WAAW,EAAE,QAAQ,EAAE,yBAAyB,CAAC,CAAC,CAAC,CAAC;IAC3I,MAAM,CAAC,cAAc;QAC1B,IAAI,IAAI,KAAK,OAAO,CAAC,mBAAmB,CAAC,IAAI,CAAC,UAAU,CAAC,EAAE,CAAC;YAC1D,OAAO,CAAC,gBAAgB,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC;YAC1C,OAAO,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC;YAE7B,aAAa,CAAC,cAAc,CAAC,cAAc,EAAE,IAAI,CAAC,CAAC;YACnD,aAAa,CAAC,cAAc,CAAC,YAAY,EAAE,IAAI,CAAC,CAAC;YACjD,aAAa,CAAC,cAAc,CAAC,mBAAmB,EAAE,IAAI,CAAC,CAAC;QAC1D,CAAC;IACH,CAAC;CACF","sourcesContent":["/*---------------------------------------------------------------------------------------------\n* Copyright (c) Bentley Systems, Incorporated. All rights reserved.\n* See LICENSE.md in the project root for license terms and full copyright notice.\n*--------------------------------------------------------------------------------------------*/\n/** @packageDocumentation\n * @module Analytical\n */\n\nimport * as path from \"node:path\";\nimport { ClassRegistry, KnownLocations, Schema, Schemas } from \"@itwin/core-backend\";\nimport * as elementsModule from \"./AnalyticalElements\";\nimport * as modelsModule from \"./AnalyticalModels\";\nimport * as relationshipsModule from \"./AnalyticalRelationships\";\n\n/** Schema class for the Analytical domain.\n * @beta\n */\nexport class AnalyticalSchema extends Schema {\n public static override get schemaName(): string { return \"Analytical\"; }\n /**\n * TODO: Currently the schema file comes from a hardcoded path assuming its delivered with imodeljs-native\n * Look to add a dependency on @bentley/analytical-schema and using require.resolve to obtain the path\n */\n public static get schemaFilePath(): string { return path.join(KnownLocations.nativeAssetsDir, \"ECSchemas\", \"Domain\", \"Analytical.ecschema.xml\"); }\n public static registerSchema() {\n if (this !== Schemas.getRegisteredSchema(this.schemaName)) {\n Schemas.unregisterSchema(this.schemaName);\n Schemas.registerSchema(this);\n\n ClassRegistry.registerModule(elementsModule, this);\n ClassRegistry.registerModule(modelsModule, this);\n ClassRegistry.registerModule(relationshipsModule, this);\n }\n }\n}\n"]}
@@ -1,7 +1,7 @@
1
- export * from "./AnalyticalElements.js";
2
- export * from "./AnalyticalModels.js";
3
- export * from "./AnalyticalRelationships.js";
4
- export * from "./AnalyticalSchema.js";
1
+ export * from "./AnalyticalElements";
2
+ export * from "./AnalyticalModels";
3
+ export * from "./AnalyticalRelationships";
4
+ export * from "./AnalyticalSchema";
5
5
  /** @docs-package-description
6
6
  * The `@itwin/analytical-backend` package contains classes for working with analytical schemas on the backend.
7
7
  */
@@ -1 +1 @@
1
- {"version":3,"file":"analytical-backend.d.ts","sourceRoot":"","sources":["../../src/analytical-backend.ts"],"names":[],"mappings":"AAKA,cAAc,yBAAyB,CAAC;AACxC,cAAc,uBAAuB,CAAC;AACtC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,uBAAuB,CAAC;AAEtC;;GAEG;AAEH;;GAEG"}
1
+ {"version":3,"file":"analytical-backend.d.ts","sourceRoot":"","sources":["../../src/analytical-backend.ts"],"names":[],"mappings":"AAKA,cAAc,sBAAsB,CAAC;AACrC,cAAc,oBAAoB,CAAC;AACnC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,oBAAoB,CAAC;AAEnC;;GAEG;AAEH;;GAEG"}
@@ -2,10 +2,10 @@
2
2
  * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
3
3
  * See LICENSE.md in the project root for license terms and full copyright notice.
4
4
  *--------------------------------------------------------------------------------------------*/
5
- export * from "./AnalyticalElements.js";
6
- export * from "./AnalyticalModels.js";
7
- export * from "./AnalyticalRelationships.js";
8
- export * from "./AnalyticalSchema.js";
5
+ export * from "./AnalyticalElements";
6
+ export * from "./AnalyticalModels";
7
+ export * from "./AnalyticalRelationships";
8
+ export * from "./AnalyticalSchema";
9
9
  /** @docs-package-description
10
10
  * The `@itwin/analytical-backend` package contains classes for working with analytical schemas on the backend.
11
11
  */
@@ -1 +1 @@
1
- {"version":3,"file":"analytical-backend.js","sourceRoot":"","sources":["../../src/analytical-backend.ts"],"names":[],"mappings":"AAAA;;;+FAG+F;AAE/F,cAAc,yBAAyB,CAAC;AACxC,cAAc,uBAAuB,CAAC;AACtC,cAAc,8BAA8B,CAAC;AAC7C,cAAc,uBAAuB,CAAC;AAEtC;;GAEG;AAEH;;GAEG","sourcesContent":["/*---------------------------------------------------------------------------------------------\n* Copyright (c) Bentley Systems, Incorporated. All rights reserved.\n* See LICENSE.md in the project root for license terms and full copyright notice.\n*--------------------------------------------------------------------------------------------*/\n\nexport * from \"./AnalyticalElements.js\";\nexport * from \"./AnalyticalModels.js\";\nexport * from \"./AnalyticalRelationships.js\";\nexport * from \"./AnalyticalSchema.js\";\n\n/** @docs-package-description\n * The `@itwin/analytical-backend` package contains classes for working with analytical schemas on the backend.\n */\n\n/** @docs-group-description Analytical\n * The base classes that specialized Analytical domain schemas extend.\n */\n"]}
1
+ {"version":3,"file":"analytical-backend.js","sourceRoot":"","sources":["../../src/analytical-backend.ts"],"names":[],"mappings":"AAAA;;;+FAG+F;AAE/F,cAAc,sBAAsB,CAAC;AACrC,cAAc,oBAAoB,CAAC;AACnC,cAAc,2BAA2B,CAAC;AAC1C,cAAc,oBAAoB,CAAC;AAEnC;;GAEG;AAEH;;GAEG","sourcesContent":["/*---------------------------------------------------------------------------------------------\n* Copyright (c) Bentley Systems, Incorporated. All rights reserved.\n* See LICENSE.md in the project root for license terms and full copyright notice.\n*--------------------------------------------------------------------------------------------*/\n\nexport * from \"./AnalyticalElements\";\nexport * from \"./AnalyticalModels\";\nexport * from \"./AnalyticalRelationships\";\nexport * from \"./AnalyticalSchema\";\n\n/** @docs-package-description\n * The `@itwin/analytical-backend` package contains classes for working with analytical schemas on the backend.\n */\n\n/** @docs-group-description Analytical\n * The base classes that specialized Analytical domain schemas extend.\n */\n"]}
package/package.json CHANGED
@@ -1,16 +1,9 @@
1
1
  {
2
2
  "name": "@itwin/analytical-backend",
3
- "version": "5.0.0-dev.99",
3
+ "version": "5.0.1",
4
4
  "main": "lib/cjs/analytical-backend.js",
5
5
  "module": "lib/esm/analytical-backend.js",
6
6
  "typings": "lib/cjs/analytical-backend",
7
- "type": "module",
8
- "exports": {
9
- ".": {
10
- "import": "./lib/esm/analytical-backend.js",
11
- "require": "./lib/cjs/analytical-backend.js"
12
- }
13
- },
14
7
  "license": "MIT",
15
8
  "engines": {
16
9
  "node": "^20.0.0 || ^22.0.0"
@@ -30,9 +23,9 @@
30
23
  "url": "http://www.bentley.com"
31
24
  },
32
25
  "peerDependencies": {
33
- "@itwin/core-backend": "5.0.0-dev.99",
34
- "@itwin/core-bentley": "5.0.0-dev.99",
35
- "@itwin/core-common": "5.0.0-dev.99"
26
+ "@itwin/core-backend": "5.0.1",
27
+ "@itwin/core-bentley": "5.0.1",
28
+ "@itwin/core-common": "5.0.1"
36
29
  },
37
30
  "//devDependencies": [
38
31
  "NOTE: All peerDependencies should also be listed as devDependencies since peerDependencies are not considered by npm install",
@@ -52,21 +45,20 @@
52
45
  "rimraf": "^6.0.1",
53
46
  "semver": "^7.5.2",
54
47
  "typescript": "~5.6.2",
55
- "@itwin/build-tools": "5.0.0-dev.99",
56
- "@itwin/core-backend": "5.0.0-dev.99",
57
- "@itwin/core-common": "5.0.0-dev.99",
58
- "@itwin/core-bentley": "5.0.0-dev.99",
59
- "internal-tools": "3.0.0-dev.69"
48
+ "@itwin/build-tools": "5.0.1",
49
+ "@itwin/core-backend": "5.0.1",
50
+ "@itwin/core-common": "5.0.1",
51
+ "@itwin/core-bentley": "5.0.1"
60
52
  },
61
53
  "nyc": {
62
54
  "extends": "./node_modules/@itwin/build-tools/.nycrc"
63
55
  },
64
56
  "scripts": {
65
57
  "build": "npm run -s build:cjs && npm run -s build:esm && npm run -s copy:test-assets",
66
- "build:cjs": "internal-tools build-cjs",
67
- "build:esm": "tsc 1>&2 --outDir lib/esm",
58
+ "build:cjs": "tsc 1>&2 --outDir lib/cjs",
59
+ "build:esm": "tsc 1>&2 --module ES2022 --outDir lib/esm",
68
60
  "clean": "rimraf -g lib .rush/temp/package-deps*.json",
69
- "copy:test-assets": "cpx \"./src/test/assets/**/*\" ./lib/esm/test/assets",
61
+ "copy:test-assets": "cpx \"./src/test/assets/**/*\" ./lib/cjs/test/assets",
70
62
  "cover": "nyc npm -s test",
71
63
  "docs": "betools docs --json=../../../generated-docs/domains/analytical-backend/file.json --tsIndexFile=./analytical-backend.ts --onlyJson",
72
64
  "extract-api": "betools extract-api --entry=analytical-backend",