@elyx-code/project-logic-tree 0.0.6496 → 0.0.6498
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 +51 -0
- package/dist/index.js +9037 -8817
- package/dist/index.umd.cjs +135 -135
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -251,6 +251,10 @@ export declare const airtableAuthExternalConnectionBuiltInBaseEntityIntegrationP
|
|
|
251
251
|
|
|
252
252
|
export declare const airtableAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDataTypeRef: IDataTypeReference;
|
|
253
253
|
|
|
254
|
+
export declare const airtableAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDefaultValue: ILiteralValueTransfer;
|
|
255
|
+
|
|
256
|
+
export declare const airtableAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDefaultValueParentRef: IPropertyReference;
|
|
257
|
+
|
|
254
258
|
export declare const airtableAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyParentRef: IBuiltInBaseEntityReference;
|
|
255
259
|
|
|
256
260
|
export declare const airtableAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyRef: IPropertyReference;
|
|
@@ -549,6 +553,10 @@ export declare const atlassianAuthExternalConnectionBuiltInBaseEntityIntegration
|
|
|
549
553
|
|
|
550
554
|
export declare const atlassianAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDataTypeRef: IDataTypeReference;
|
|
551
555
|
|
|
556
|
+
export declare const atlassianAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDefaultValue: ILiteralValueTransfer;
|
|
557
|
+
|
|
558
|
+
export declare const atlassianAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDefaultValueParentRef: IPropertyReference;
|
|
559
|
+
|
|
552
560
|
export declare const atlassianAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyParentRef: IBuiltInBaseEntityReference;
|
|
553
561
|
|
|
554
562
|
export declare const atlassianAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyRef: IPropertyReference;
|
|
@@ -935,6 +943,9 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
|
|
|
935
943
|
dataType: {
|
|
936
944
|
id: string;
|
|
937
945
|
};
|
|
946
|
+
defaultValue: {
|
|
947
|
+
id: string;
|
|
948
|
+
};
|
|
938
949
|
};
|
|
939
950
|
connectionId: {
|
|
940
951
|
id: string;
|
|
@@ -953,6 +964,9 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
|
|
|
953
964
|
dataType: {
|
|
954
965
|
id: string;
|
|
955
966
|
};
|
|
967
|
+
defaultValue: {
|
|
968
|
+
id: string;
|
|
969
|
+
};
|
|
956
970
|
};
|
|
957
971
|
connectionId: {
|
|
958
972
|
id: string;
|
|
@@ -971,6 +985,9 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
|
|
|
971
985
|
dataType: {
|
|
972
986
|
id: string;
|
|
973
987
|
};
|
|
988
|
+
defaultValue: {
|
|
989
|
+
id: string;
|
|
990
|
+
};
|
|
974
991
|
};
|
|
975
992
|
connectionId: {
|
|
976
993
|
id: string;
|
|
@@ -989,6 +1006,9 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
|
|
|
989
1006
|
dataType: {
|
|
990
1007
|
id: string;
|
|
991
1008
|
};
|
|
1009
|
+
defaultValue: {
|
|
1010
|
+
id: string;
|
|
1011
|
+
};
|
|
992
1012
|
};
|
|
993
1013
|
connectionId: {
|
|
994
1014
|
id: string;
|
|
@@ -1007,6 +1027,9 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
|
|
|
1007
1027
|
dataType: {
|
|
1008
1028
|
id: string;
|
|
1009
1029
|
};
|
|
1030
|
+
defaultValue: {
|
|
1031
|
+
id: string;
|
|
1032
|
+
};
|
|
1010
1033
|
};
|
|
1011
1034
|
connectionId: {
|
|
1012
1035
|
id: string;
|
|
@@ -1025,6 +1048,9 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
|
|
|
1025
1048
|
dataType: {
|
|
1026
1049
|
id: string;
|
|
1027
1050
|
};
|
|
1051
|
+
defaultValue: {
|
|
1052
|
+
id: string;
|
|
1053
|
+
};
|
|
1028
1054
|
};
|
|
1029
1055
|
connectionId: {
|
|
1030
1056
|
id: string;
|
|
@@ -1043,6 +1069,9 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
|
|
|
1043
1069
|
dataType: {
|
|
1044
1070
|
id: string;
|
|
1045
1071
|
};
|
|
1072
|
+
defaultValue: {
|
|
1073
|
+
id: string;
|
|
1074
|
+
};
|
|
1046
1075
|
};
|
|
1047
1076
|
connectionId: {
|
|
1048
1077
|
id: string;
|
|
@@ -5709,6 +5738,8 @@ export declare function filterOutDuplicateErrors(errors: (EntityGenerationError
|
|
|
5709
5738
|
|
|
5710
5739
|
export declare function findEntityFromKeys(keys: string[], project: ProjectState): DefinitionEntityState | null;
|
|
5711
5740
|
|
|
5741
|
+
export declare function findNextAvailableName(baseName: string, allEntitiesOfType: EntityWithNames[]): string;
|
|
5742
|
+
|
|
5712
5743
|
export declare function findNextSingleCallerAncestor(target: CallableEntityState, from?: CallerEntityState): {
|
|
5713
5744
|
ancestor: CallerEntityState | null;
|
|
5714
5745
|
callType: 'success' | 'error' | 'entry' | 'loop-body' | null;
|
|
@@ -10655,6 +10686,10 @@ export declare const googleAuthExternalConnectionBuiltInBaseEntityIntegrationPro
|
|
|
10655
10686
|
|
|
10656
10687
|
export declare const googleAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDataTypeRef: IDataTypeReference;
|
|
10657
10688
|
|
|
10689
|
+
export declare const googleAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDefaultValue: ILiteralValueTransfer;
|
|
10690
|
+
|
|
10691
|
+
export declare const googleAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDefaultValueParentRef: IPropertyReference;
|
|
10692
|
+
|
|
10658
10693
|
export declare const googleAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyParentRef: IBuiltInBaseEntityReference;
|
|
10659
10694
|
|
|
10660
10695
|
export declare const googleAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyRef: IPropertyReference;
|
|
@@ -13822,6 +13857,10 @@ export declare const jiraAuthExternalConnectionBuiltInBaseEntityIntegrationPrope
|
|
|
13822
13857
|
|
|
13823
13858
|
export declare const jiraAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDataTypeRef: IDataTypeReference;
|
|
13824
13859
|
|
|
13860
|
+
export declare const jiraAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDefaultValue: ILiteralValueTransfer;
|
|
13861
|
+
|
|
13862
|
+
export declare const jiraAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDefaultValueParentRef: IPropertyReference;
|
|
13863
|
+
|
|
13825
13864
|
export declare const jiraAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyParentRef: IBuiltInBaseEntityReference;
|
|
13826
13865
|
|
|
13827
13866
|
export declare const jiraAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyRef: IPropertyReference;
|
|
@@ -14353,6 +14392,10 @@ export declare const microsoftAuthExternalConnectionBuiltInBaseEntityIntegration
|
|
|
14353
14392
|
|
|
14354
14393
|
export declare const microsoftAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDataTypeRef: IDataTypeReference;
|
|
14355
14394
|
|
|
14395
|
+
export declare const microsoftAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDefaultValue: ILiteralValueTransfer;
|
|
14396
|
+
|
|
14397
|
+
export declare const microsoftAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDefaultValueParentRef: IPropertyReference;
|
|
14398
|
+
|
|
14356
14399
|
export declare const microsoftAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyParentRef: IBuiltInBaseEntityReference;
|
|
14357
14400
|
|
|
14358
14401
|
export declare const microsoftAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyRef: IPropertyReference;
|
|
@@ -14554,6 +14597,10 @@ export declare const openaiAuthExternalConnectionBuiltInBaseEntityIntegrationPro
|
|
|
14554
14597
|
|
|
14555
14598
|
export declare const openaiAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDataTypeRef: IDataTypeReference;
|
|
14556
14599
|
|
|
14600
|
+
export declare const openaiAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDefaultValue: ILiteralValueTransfer;
|
|
14601
|
+
|
|
14602
|
+
export declare const openaiAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDefaultValueParentRef: IPropertyReference;
|
|
14603
|
+
|
|
14557
14604
|
export declare const openaiAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyParentRef: IBuiltInBaseEntityReference;
|
|
14558
14605
|
|
|
14559
14606
|
export declare const openaiAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyRef: IPropertyReference;
|
|
@@ -17178,6 +17225,10 @@ export declare const slackAuthExternalConnectionBuiltInBaseEntityIntegrationProp
|
|
|
17178
17225
|
|
|
17179
17226
|
export declare const slackAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDataTypeRef: IDataTypeReference;
|
|
17180
17227
|
|
|
17228
|
+
export declare const slackAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDefaultValue: ILiteralValueTransfer;
|
|
17229
|
+
|
|
17230
|
+
export declare const slackAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDefaultValueParentRef: IPropertyReference;
|
|
17231
|
+
|
|
17181
17232
|
export declare const slackAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyParentRef: IBuiltInBaseEntityReference;
|
|
17182
17233
|
|
|
17183
17234
|
export declare const slackAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyRef: IPropertyReference;
|