@elyx-code/project-logic-tree 0.0.6734 → 0.0.6735
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.cjs +190 -190
- package/dist/index.d.ts +17 -2
- package/dist/index.js +25430 -25166
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -10605,6 +10605,8 @@ export declare enum DataTypeCompatibilityTypes {
|
|
|
10605
10605
|
CompatibleDefinitionEntities = "compatible-definition-entities",
|
|
10606
10606
|
IncompatibleDefinitionEntities = "incompatible-definition-entities",
|
|
10607
10607
|
SamePrimitiveEntities = "same-primitive-entities",
|
|
10608
|
+
APrimitiveExtendsBPrimitive = "a-primitive-extends-b-primitive",
|
|
10609
|
+
BPrimitiveExtendsAPrimitive = "b-primitive-extends-a-primitive",
|
|
10608
10610
|
IncompatiblePrimitiveEntities = "incompatible-primitive-entities",
|
|
10609
10611
|
SameBuiltInBaseEntities = "same-built-in-base-entities",
|
|
10610
10612
|
IncompatibleBuiltInBaseEntities = "incompatible-built-in-base-entities",
|
|
@@ -10857,7 +10859,9 @@ export declare class DataTypeState extends UserManagedVersionedState implements
|
|
|
10857
10859
|
getErrorsAsync(options?: YieldOptions): Promise<EntityError[]>;
|
|
10858
10860
|
getShallowErrors(): EntityError[];
|
|
10859
10861
|
clone(changeSet?: ChangeSet | null, parent?: DataTypeParentEntityState | null, newId?: string | null, subscribe?: boolean): DataTypeState;
|
|
10860
|
-
merge(sourceEntity: DataTypeState | null, changeSet?: ChangeSet | null
|
|
10862
|
+
merge(sourceEntity: DataTypeState | null, changeSet?: ChangeSet | null, options?: {
|
|
10863
|
+
implementSource?: boolean;
|
|
10864
|
+
}): IChangeSet<DataTypeState>;
|
|
10861
10865
|
addToAndGroup(child: DataTypeState, changeSet?: ChangeSet | null): DataTypeState;
|
|
10862
10866
|
addToOrGroup(child: DataTypeState, changeSet?: ChangeSet | null): DataTypeState;
|
|
10863
10867
|
setForeignKeyRef(foreignKeyRef: PropertyState | null, changeSet?: ChangeSet | null): DataTypeState;
|
|
@@ -10870,6 +10874,8 @@ export declare class DataTypeState extends UserManagedVersionedState implements
|
|
|
10870
10874
|
canModifyObjectStructure(): boolean;
|
|
10871
10875
|
inferFromInputs(inputs: VariableInputMapState[], changeSet?: ChangeSet | null): IChangeSet<DataTypeState>;
|
|
10872
10876
|
bestEffortClearIncompatibleProperties(changeSet?: ChangeSet | null): IChangeSet<DataTypeState>;
|
|
10877
|
+
chooseOneFromOrGroupAndApply(from: DataTypeState, changeSet?: ChangeSet | null): DataTypeState | null;
|
|
10878
|
+
implement(parent: DataTypeParentEntityState, changeSet?: ChangeSet | null, newId?: string | null, parentRelationType?: DataTypeParentChildRelation | null): DataTypeState;
|
|
10873
10879
|
}
|
|
10874
10880
|
|
|
10875
10881
|
export declare type DataTypeStateEntityOption = DefinitionEntityState | PrimitiveEntityState | ActionDescriptorState | BuiltInBaseEntityState | LiteralValueState;
|
|
@@ -20952,12 +20958,14 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
20952
20958
|
|
|
20953
20959
|
export declare interface IDataTypeCompatibility {
|
|
20954
20960
|
compatible: boolean;
|
|
20961
|
+
exact: boolean;
|
|
20955
20962
|
type: DataTypeCompatibilityTypes;
|
|
20956
20963
|
}
|
|
20957
20964
|
|
|
20958
20965
|
export declare interface IDataTypeCompatible extends IDataTypeCompatibility {
|
|
20959
20966
|
compatible: true;
|
|
20960
|
-
|
|
20967
|
+
exact: boolean;
|
|
20968
|
+
type: DataTypeCompatibilityTypes.BothUnconstrained | DataTypeCompatibilityTypes.AConstraintBUnconstrained | DataTypeCompatibilityTypes.BConstraintAUnconstrained | DataTypeCompatibilityTypes.Same | DataTypeCompatibilityTypes.BothUntyped | DataTypeCompatibilityTypes.AIsUntypedBIsNot | DataTypeCompatibilityTypes.BIsUntypedAIsNot | DataTypeCompatibilityTypes.SameDefinitionEntities | DataTypeCompatibilityTypes.CompatibleDefinitionEntities | DataTypeCompatibilityTypes.SamePrimitiveEntities | DataTypeCompatibilityTypes.APrimitiveExtendsBPrimitive | DataTypeCompatibilityTypes.BPrimitiveExtendsAPrimitive | DataTypeCompatibilityTypes.SameBuiltInBaseEntities | DataTypeCompatibilityTypes.BothAreFreeFormObjects | DataTypeCompatibilityTypes.AIsFreeFormObjectBIsDefEnt | DataTypeCompatibilityTypes.BIsFreeFormObjectAIsDefEnt;
|
|
20961
20969
|
}
|
|
20962
20970
|
|
|
20963
20971
|
export declare interface IDataTypeGenerationTarget extends IDataType_base, IChildEntityGenerationTarget {
|
|
@@ -20968,6 +20976,7 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
20968
20976
|
|
|
20969
20977
|
export declare interface IDataTypeIncompatibile extends IDataTypeCompatibility {
|
|
20970
20978
|
compatible: false;
|
|
20979
|
+
exact: false;
|
|
20971
20980
|
type: DataTypeCompatibilityTypes.AIsListBIsNot | DataTypeCompatibilityTypes.BIsListAIsNot | DataTypeCompatibilityTypes.AIsNullableBIsNot | DataTypeCompatibilityTypes.BIsNullableAIsNot | DataTypeCompatibilityTypes.AIsTemplateBIsNot | DataTypeCompatibilityTypes.BIsTemplateAIsNot | DataTypeCompatibilityTypes.TypeEntityMismatch | DataTypeCompatibilityTypes.IncompatibleDefinitionEntities | DataTypeCompatibilityTypes.IncompatiblePrimitiveEntities | DataTypeCompatibilityTypes.IncompatibleBuiltInBaseEntities | DataTypeCompatibilityTypes.CheckUnknown | DataTypeCompatibilityTypes.AIsObjectBIsNot | DataTypeCompatibilityTypes.BIsObjectAIsNot | DataTypeCompatibilityTypes.BIsExactObjectAIsNot;
|
|
20972
20981
|
}
|
|
20973
20982
|
|
|
@@ -29284,6 +29293,12 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
29284
29293
|
|
|
29285
29294
|
export declare const persistedBuiltInBaseEntityBaseColumnPropertyForeignKeyDataTypeOptionParentRef: IDataTypeReference;
|
|
29286
29295
|
|
|
29296
|
+
export declare const persistedBuiltInBaseEntityBaseColumnPropertyNonNullDataTypeGroup: IDataTypeTransfer;
|
|
29297
|
+
|
|
29298
|
+
export declare const persistedBuiltInBaseEntityBaseColumnPropertyNullDataTypeOption: IDataTypeTransfer;
|
|
29299
|
+
|
|
29300
|
+
export declare const persistedBuiltInBaseEntityBaseColumnPropertyNullDataTypeOptionParentRef: IDataTypeReference;
|
|
29301
|
+
|
|
29287
29302
|
export declare const persistedBuiltInBaseEntityBaseColumnPropertyNumberDataTypeOption: IDataTypeTransfer;
|
|
29288
29303
|
|
|
29289
29304
|
export declare const persistedBuiltInBaseEntityBaseColumnPropertyNumberDataTypeOptionParentRef: IDataTypeReference;
|