@elyx-code/project-logic-tree 0.0.5996 → 0.0.5998
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/definitions/built-in-base-entities/entities/relational-database/entity.d.ts +4 -0
- package/dist/definitions/built-in-base-entities/ids.d.ts +1 -0
- package/dist/definitions/types/input-output-map.d.ts +7 -3
- package/dist/definitions/types/property.d.ts +1 -0
- package/dist/index.js +4009 -3898
- package/dist/index.umd.cjs +92 -92
- package/dist/tree/state/property/property.d.ts +1 -0
- package/package.json +1 -1
|
@@ -16,4 +16,8 @@ export declare const relationalDatabaseBuiltInBaseEntityMinSizeProperty: IProper
|
|
|
16
16
|
export declare const relationalDatabaseBuiltInBaseEntityDefaultPropertyDataTypeRef: IDataTypeReference;
|
|
17
17
|
export declare const relationalDatabaseBuiltInBaseEntityDefaultPropertyRef: IPropertyReference;
|
|
18
18
|
export declare const relationalDatabaseBuiltInBaseEntityDefaultProperty: IPropertyTransfer;
|
|
19
|
+
export declare const relationalDatabaseBuiltInBaseEntityAutoscalingPropertyRef: IPropertyReference;
|
|
20
|
+
export declare const relationalDatabaseBuiltInBaseEntityAutoscalingPropertyDataTypeRef: IDataTypeReference;
|
|
21
|
+
export declare const relationalDatabaseBuiltInBaseEntityAutoscalingPropertyParentRef: IBuiltInBaseEntityReference;
|
|
22
|
+
export declare const relationalDatabaseBuiltInBaseEntityAutoscalingProperty: IPropertyTransfer;
|
|
19
23
|
export declare const relationalDatabaseBuiltInBaseEntity: IBuiltInBaseEntityTransfer;
|
|
@@ -34,13 +34,17 @@ export interface IInputMap extends IInputMap_meta, IChildEntity, IValueReadingEn
|
|
|
34
34
|
}
|
|
35
35
|
export declare enum OutputMapParentChildRelation {
|
|
36
36
|
Error = "error",
|
|
37
|
-
Task = "task"
|
|
37
|
+
Task = "task",
|
|
38
|
+
Return = "return"
|
|
38
39
|
}
|
|
39
|
-
export interface
|
|
40
|
+
export interface IOutputMap_base {
|
|
40
41
|
type: EntityType.OutputMap;
|
|
41
|
-
index: number;
|
|
42
42
|
parentRelationType?: OutputMapParentChildRelation;
|
|
43
43
|
}
|
|
44
|
+
export interface IOutputMap_meta extends IOutputMap_base, IGenericBase {
|
|
45
|
+
type: EntityType.OutputMap;
|
|
46
|
+
index: number;
|
|
47
|
+
}
|
|
44
48
|
export interface IOutputMapTransfer extends IOutputMap_meta, IChildEntityTransfer, IValueWritingEntityTransfer {
|
|
45
49
|
declaration: IReturnDeclaration | IReturnDeclarationTransfer | IValueDescriptor | IValueDescriptorTransfer | IProperty | IPropertyTransfer;
|
|
46
50
|
parent: PassThroughCallableEntity | PassThroughCallableEntityReference;
|
|
@@ -11,6 +11,7 @@ export interface IProperty_base {
|
|
|
11
11
|
export interface IProperty_meta extends IProperty_base, IGenericBase {
|
|
12
12
|
type: EntityType.Property;
|
|
13
13
|
index: number;
|
|
14
|
+
hidden: boolean;
|
|
14
15
|
}
|
|
15
16
|
export interface IPropertyTransfer extends IProperty_meta, IBaseVariableTransfer {
|
|
16
17
|
type: EntityType.Property;
|