@bentley/imodeljs-linux-x64 3.2.1 → 3.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Assets/ECSchemas/Dgn/ChangedElements.01.00.00.ecschema.xml +84 -80
- package/Assets/ECSchemas/ECDb/ECDbChange.01.00.01.ecschema.xml +4 -0
- package/Assets/ECSchemas/ECDb/ECDbFileInfo.02.00.01.ecschema.xml +4 -0
- package/Assets/ECSchemas/ECDb/ECDbMap.02.00.00.ecschema.xml +54 -50
- package/Assets/ECSchemas/ECDb/ECDbMeta.04.00.01.ecschema.xml +537 -533
- package/Assets/ECSchemas/ECDb/ECDbSchemaPolicies.01.00.00.ecschema.xml +24 -20
- package/Assets/sqlang/iModelJsNodeAddon_en.sqlang.db3 +0 -0
- package/BeBlobDaemon +0 -0
- package/CrashpadHandler +0 -0
- package/Notices/pugixml-license.md +24 -0
- package/imodeljs.node +0 -0
- package/package.json +1 -1
|
@@ -1,20 +1,24 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
description="
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<!-- =====================================================================================
|
|
3
|
+
* Copyright (c) Bentley Systems, Incorporated. All rights reserved.
|
|
4
|
+
* See COPYRIGHT.md in the repository root for full copyright notice.
|
|
5
|
+
========================================================================================== -->
|
|
6
|
+
<ECSchema schemaName="ECDbSchemaPolicies" alias="ecdbpol" version="01.00.00" description="Schema policies which impose schema authoring rules." displayLabel="ECDb Schema Policies" xmlns="http://www.bentley.com/schemas/Bentley.ECXML.3.1">
|
|
7
|
+
|
|
8
|
+
<ECCustomAttributeClass typeName="NoAdditionalForeignKeyConstraints" modifier="Sealed" appliesTo="Schema"
|
|
9
|
+
description="If opted-in by a schema, other schemas may not define additional ECDbMap:ForeignKeyConstraint custom attributes.">
|
|
10
|
+
<ECArrayProperty propertyName="Exceptions" typeName="string" minOccurs="0" maxOccurs="unbounded"
|
|
11
|
+
description="Navigation properties that are allowed violate against the policy. Format: {schema name}:{class name}.{property name}"/>
|
|
12
|
+
</ECCustomAttributeClass>
|
|
13
|
+
|
|
14
|
+
<ECCustomAttributeClass typeName="NoAdditionalLinkTables" modifier="Sealed" appliesTo="Schema"
|
|
15
|
+
description="If opted-in by a schema, other schemas may not define ECRelationshipClasses that cause new link tables to be created.">
|
|
16
|
+
<ECArrayProperty propertyName="Exceptions" typeName="string" minOccurs="0" maxOccurs="unbounded" description="Relationship classes that that are allowed to violate against the policy. Format: {schema name}:{relationship class name}"/>
|
|
17
|
+
</ECCustomAttributeClass>
|
|
18
|
+
|
|
19
|
+
<ECCustomAttributeClass typeName="NoAdditionalRootEntityClasses" modifier="Sealed" appliesTo="Schema"
|
|
20
|
+
description="If opted-in by a schema, other schemas may not define entity classes that do not subclass from existing classes (mixins are excluded from this policy).">
|
|
21
|
+
<ECArrayProperty propertyName="Exceptions" typeName="string" minOccurs="0" maxOccurs="unbounded"
|
|
22
|
+
description="Entity classes that that are allowed to violate against the policy. Format: {schema name}:{class name}"/>
|
|
23
|
+
</ECCustomAttributeClass>
|
|
24
|
+
</ECSchema>
|
|
Binary file
|
package/BeBlobDaemon
CHANGED
|
Binary file
|
package/CrashpadHandler
CHANGED
|
Binary file
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2006-2022 Arseny Kapoulkine
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person
|
|
6
|
+
obtaining a copy of this software and associated documentation
|
|
7
|
+
files (the "Software"), to deal in the Software without
|
|
8
|
+
restriction, including without limitation the rights to use,
|
|
9
|
+
copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
10
|
+
copies of the Software, and to permit persons to whom the
|
|
11
|
+
Software is furnished to do so, subject to the following
|
|
12
|
+
conditions:
|
|
13
|
+
|
|
14
|
+
The above copyright notice and this permission notice shall be
|
|
15
|
+
included in all copies or substantial portions of the Software.
|
|
16
|
+
|
|
17
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
18
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
19
|
+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
20
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
21
|
+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
22
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
23
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
24
|
+
OTHER DEALINGS IN THE SOFTWARE.
|
package/imodeljs.node
CHANGED
|
Binary file
|