@bentley/imodeljs-linux-x64 4.2.5 → 4.2.8
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/Assets/ECSchemas/ECDb/{ECDbMap.02.00.01.ecschema.xml → ECDbMap.02.00.02.ecschema.xml} +9 -1
- package/Assets/ParasolidSchema/sch_35001.sch_txt +1726 -0
- package/Assets/ParasolidSchema/sch_35002.sch_txt +1729 -0
- package/Assets/ParasolidSchema/sch_35102.sch_txt +1729 -0
- package/Assets/ParasolidSchema/sch_36001.sch_txt +1730 -0
- package/CrashpadHandler +0 -0
- package/iTwinDaemon +0 -0
- package/imodeljs.node +0 -0
- package/package.json +1 -1
package/Assets/ECSchemas/ECDb/{ECDbMap.02.00.01.ecschema.xml → ECDbMap.02.00.02.ecschema.xml}
RENAMED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
4
4
|
* See LICENSE.md in the repository root for full copyright notice.
|
|
5
5
|
========================================================================================== -->
|
|
6
|
-
<ECSchema schemaName="ECDbMap" alias="ecdbmap" version="02.00.
|
|
6
|
+
<ECSchema schemaName="ECDbMap" alias="ecdbmap" version="02.00.02" description="Custom attributes that customize ECDb's ECSchema to database mapping." displayLabel="ECDb DB Mapping" xmlns="http://www.bentley.com/schemas/Bentley.ECXML.3.2">
|
|
7
7
|
<ECCustomAttributeClass typeName="SchemaMap" modifier="Sealed" appliesTo="Schema">
|
|
8
8
|
<ECProperty propertyName="TablePrefix" typeName="string" description="Specifies a prefix for generated tables. If not specified, the alias of the ECSchema is used"/>
|
|
9
9
|
</ECCustomAttributeClass>
|
|
@@ -51,4 +51,12 @@
|
|
|
51
51
|
<ECProperty propertyName="AllowDuplicateRelationships" typeName="boolean" description="Default: false. If set to true duplicate relationships are allowed."/>
|
|
52
52
|
</ECCustomAttributeClass>
|
|
53
53
|
|
|
54
|
+
<ECCustomAttributeClass typeName="ImportRequiresVersion" modifier="Sealed" appliesTo="Schema" description="Causes a schema to only be imported by a specific ECDb version or higher.">
|
|
55
|
+
<ECProperty propertyName="ECDbRuntimeVersion" typeName="string" description="Required. ECDb profile version number e.g. 4.0.0.3. Refers to the runtime version, not the file version." />
|
|
56
|
+
</ECCustomAttributeClass>
|
|
57
|
+
|
|
58
|
+
<ECCustomAttributeClass typeName="UseRequiresVersion" modifier="Sealed" appliesTo="AnyClass" description="Causes ECDb to refuse to query a class which has this CA or a CA that has this CA if conditions are not met.">
|
|
59
|
+
<ECProperty propertyName="ECDbRuntimeVersion" typeName="string" description="Optional. ECDb profile version number e.g. 4.0.0.3. Refers to the runtime version, not the file version." />
|
|
60
|
+
<ECProperty propertyName="ECSqlVersion" typeName="string" description="Optional. EC SQL profile version number e.g. 1.2.0.0." />
|
|
61
|
+
</ECCustomAttributeClass>
|
|
54
62
|
</ECSchema>
|