@elyx-code/project-logic-tree 0.0.6732 → 0.0.6734

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/dist/index.d.ts CHANGED
@@ -9704,6 +9704,16 @@ export declare function checkIsMethod(entity: EntityState): boolean;
9704
9704
 
9705
9705
  export declare function checkIsNestedScope(parent: EntityWithLogicScopeState | ProjectState, child: EntityWithLogicScopeState | ProjectState, project: ProjectState): boolean;
9706
9706
 
9707
+ /**
9708
+ * Checks whether the given data-type allows for a null value.
9709
+ * This is either because the 'entity' field is the primitive null-prototype
9710
+ * Or because it has a literal-value, with its value set to `null`
9711
+ * Or because the data-type is an or-group where at least one of its children meets the above requirements
9712
+ *
9713
+ * @param dataType
9714
+ */
9715
+ export declare function checkIsNullable(dataType: DataTypeState | null): boolean;
9716
+
9707
9717
  export declare function checkIsRequiredValue(entity: EntityWithValueState | PropertyState | ValueDescriptorState): boolean;
9708
9718
 
9709
9719
  export declare function checkIsRowTransformerUpToDate(newestOpenRowTransformer: DefinitionEntityState, entity: DefinitionEntityState, lastPublishedEntityVersion: DefinitionEntityState): {