@elyx-code/project-logic-tree 0.0.6734 → 0.0.6736
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 +26 -4
- package/dist/index.js +25997 -25608
- 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",
|
|
@@ -10614,7 +10616,14 @@ export declare enum DataTypeCompatibilityTypes {
|
|
|
10614
10616
|
BIsExactObjectAIsNot = "b-is-exact-object-a-is-not",
|
|
10615
10617
|
BothAreFreeFormObjects = "both-are-free-form-objects",
|
|
10616
10618
|
AIsFreeFormObjectBIsDefEnt = "a-is-free-form-object-b-is-def-ent",
|
|
10617
|
-
BIsFreeFormObjectAIsDefEnt = "b-is-free-form-object-a-is-def-ent"
|
|
10619
|
+
BIsFreeFormObjectAIsDefEnt = "b-is-free-form-object-a-is-def-ent",
|
|
10620
|
+
ANoMatchWithBOrOptions = "a-no-match-with-b-or-options",
|
|
10621
|
+
BNoMatchWithAOrOptions = "b-no-match-with-a-or-options",
|
|
10622
|
+
AIsRefBIsNot = "a-is-ref-b-is-not",
|
|
10623
|
+
BIsRefAIsNot = "b-is-ref-a-is-not",
|
|
10624
|
+
BothAreForeignRefButIncompatible = "both-are-foreign-ref-but-incompatible",
|
|
10625
|
+
BothAreSameForeignRef = "both-are-same-foreign-ref",
|
|
10626
|
+
BothAreForeignRefDifferentButCompatibleDataTypes = "both-are-foreign-ref-different-but-compatible-data-types"
|
|
10618
10627
|
}
|
|
10619
10628
|
|
|
10620
10629
|
export declare const dataTypeDecodeBase64Error: IValueDescriptorTransfer;
|
|
@@ -10857,7 +10866,9 @@ export declare class DataTypeState extends UserManagedVersionedState implements
|
|
|
10857
10866
|
getErrorsAsync(options?: YieldOptions): Promise<EntityError[]>;
|
|
10858
10867
|
getShallowErrors(): EntityError[];
|
|
10859
10868
|
clone(changeSet?: ChangeSet | null, parent?: DataTypeParentEntityState | null, newId?: string | null, subscribe?: boolean): DataTypeState;
|
|
10860
|
-
merge(sourceEntity: DataTypeState | null, changeSet?: ChangeSet | null
|
|
10869
|
+
merge(sourceEntity: DataTypeState | null, changeSet?: ChangeSet | null, options?: {
|
|
10870
|
+
implementSource?: boolean;
|
|
10871
|
+
}): IChangeSet<DataTypeState>;
|
|
10861
10872
|
addToAndGroup(child: DataTypeState, changeSet?: ChangeSet | null): DataTypeState;
|
|
10862
10873
|
addToOrGroup(child: DataTypeState, changeSet?: ChangeSet | null): DataTypeState;
|
|
10863
10874
|
setForeignKeyRef(foreignKeyRef: PropertyState | null, changeSet?: ChangeSet | null): DataTypeState;
|
|
@@ -10870,6 +10881,8 @@ export declare class DataTypeState extends UserManagedVersionedState implements
|
|
|
10870
10881
|
canModifyObjectStructure(): boolean;
|
|
10871
10882
|
inferFromInputs(inputs: VariableInputMapState[], changeSet?: ChangeSet | null): IChangeSet<DataTypeState>;
|
|
10872
10883
|
bestEffortClearIncompatibleProperties(changeSet?: ChangeSet | null): IChangeSet<DataTypeState>;
|
|
10884
|
+
chooseOneFromOrGroupAndApply(from: DataTypeState, changeSet?: ChangeSet | null): DataTypeState | null;
|
|
10885
|
+
implement(parent: DataTypeParentEntityState, changeSet?: ChangeSet | null, newId?: string | null, parentRelationType?: DataTypeParentChildRelation | null): DataTypeState;
|
|
10873
10886
|
}
|
|
10874
10887
|
|
|
10875
10888
|
export declare type DataTypeStateEntityOption = DefinitionEntityState | PrimitiveEntityState | ActionDescriptorState | BuiltInBaseEntityState | LiteralValueState;
|
|
@@ -20952,12 +20965,14 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
20952
20965
|
|
|
20953
20966
|
export declare interface IDataTypeCompatibility {
|
|
20954
20967
|
compatible: boolean;
|
|
20968
|
+
exact: boolean;
|
|
20955
20969
|
type: DataTypeCompatibilityTypes;
|
|
20956
20970
|
}
|
|
20957
20971
|
|
|
20958
20972
|
export declare interface IDataTypeCompatible extends IDataTypeCompatibility {
|
|
20959
20973
|
compatible: true;
|
|
20960
|
-
|
|
20974
|
+
exact: boolean;
|
|
20975
|
+
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 | DataTypeCompatibilityTypes.BothAreSameForeignRef | DataTypeCompatibilityTypes.BothAreForeignRefDifferentButCompatibleDataTypes;
|
|
20961
20976
|
}
|
|
20962
20977
|
|
|
20963
20978
|
export declare interface IDataTypeGenerationTarget extends IDataType_base, IChildEntityGenerationTarget {
|
|
@@ -20968,7 +20983,8 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
20968
20983
|
|
|
20969
20984
|
export declare interface IDataTypeIncompatibile extends IDataTypeCompatibility {
|
|
20970
20985
|
compatible: false;
|
|
20971
|
-
|
|
20986
|
+
exact: false;
|
|
20987
|
+
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 | DataTypeCompatibilityTypes.ANoMatchWithBOrOptions | DataTypeCompatibilityTypes.BNoMatchWithAOrOptions | DataTypeCompatibilityTypes.AIsRefBIsNot | DataTypeCompatibilityTypes.BIsRefAIsNot | DataTypeCompatibilityTypes.BothAreForeignRefButIncompatible;
|
|
20972
20988
|
}
|
|
20973
20989
|
|
|
20974
20990
|
export declare interface IDataTypeReference extends IGenericReference {
|
|
@@ -29284,6 +29300,12 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
|
|
|
29284
29300
|
|
|
29285
29301
|
export declare const persistedBuiltInBaseEntityBaseColumnPropertyForeignKeyDataTypeOptionParentRef: IDataTypeReference;
|
|
29286
29302
|
|
|
29303
|
+
export declare const persistedBuiltInBaseEntityBaseColumnPropertyNonNullDataTypeGroup: IDataTypeTransfer;
|
|
29304
|
+
|
|
29305
|
+
export declare const persistedBuiltInBaseEntityBaseColumnPropertyNullDataTypeOption: IDataTypeTransfer;
|
|
29306
|
+
|
|
29307
|
+
export declare const persistedBuiltInBaseEntityBaseColumnPropertyNullDataTypeOptionParentRef: IDataTypeReference;
|
|
29308
|
+
|
|
29287
29309
|
export declare const persistedBuiltInBaseEntityBaseColumnPropertyNumberDataTypeOption: IDataTypeTransfer;
|
|
29288
29310
|
|
|
29289
29311
|
export declare const persistedBuiltInBaseEntityBaseColumnPropertyNumberDataTypeOptionParentRef: IDataTypeReference;
|