@elyx-code/project-logic-tree 0.0.6502 → 0.0.6504

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
@@ -576,6 +576,11 @@ export declare enum BaseEntityNames {
576
576
  EXECUTION = "BUILT_IN_EXECUTION_ENTITY",
577
577
  EXTERNAL_INTEGRATION_CONNECTION = "BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_ENTITY",
578
578
  GOOGLE_AUTH_CONNECTION = "BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_GOOGLE_AUTH",
579
+ GOOGLE_DRIVE_AUTH_CONNECTION = "BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_GOOGLE-DRIVE_AUTH",
580
+ GOOGLE_MAIL_AUTH_CONNECTION = "BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_GOOGLE-MAIL_AUTH",
581
+ GOOGLE_SHEET_AUTH_CONNECTION = "BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_GOOGLE-SHEET_AUTH",
582
+ GOOGLE_SLIDES_AUTH_CONNECTION = "BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_GOOGLE-SLIDES_AUTH",
583
+ GOOGLE_GEMINI_AUTH_CONNECTION = "BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_GOOGLE-GEMINI_AUTH",
579
584
  SLACK_AUTH_CONNECTION = "BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_SLACK_AUTH",
580
585
  AIRTABLE_AUTH_CONNECTION = "BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_AIRTABLE_AUTH",
581
586
  MICROSOFT_AUTH_CONNECTION = "BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_MICROSOFT_AUTH",
@@ -956,6 +961,111 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
956
961
  };
957
962
  methods: {};
958
963
  };
964
+ "BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_GOOGLE-DRIVE_AUTH": {
965
+ id: BaseEntityNames;
966
+ properties: {
967
+ integration: {
968
+ id: string;
969
+ dataType: {
970
+ id: string;
971
+ };
972
+ defaultValue: {
973
+ id: string;
974
+ };
975
+ };
976
+ connectionId: {
977
+ id: string;
978
+ dataType: {
979
+ id: string;
980
+ };
981
+ };
982
+ };
983
+ methods: {};
984
+ };
985
+ "BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_GOOGLE-MAIL_AUTH": {
986
+ id: BaseEntityNames;
987
+ properties: {
988
+ integration: {
989
+ id: string;
990
+ dataType: {
991
+ id: string;
992
+ };
993
+ defaultValue: {
994
+ id: string;
995
+ };
996
+ };
997
+ connectionId: {
998
+ id: string;
999
+ dataType: {
1000
+ id: string;
1001
+ };
1002
+ };
1003
+ };
1004
+ methods: {};
1005
+ };
1006
+ "BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_GOOGLE-SHEET_AUTH": {
1007
+ id: BaseEntityNames;
1008
+ properties: {
1009
+ integration: {
1010
+ id: string;
1011
+ dataType: {
1012
+ id: string;
1013
+ };
1014
+ defaultValue: {
1015
+ id: string;
1016
+ };
1017
+ };
1018
+ connectionId: {
1019
+ id: string;
1020
+ dataType: {
1021
+ id: string;
1022
+ };
1023
+ };
1024
+ };
1025
+ methods: {};
1026
+ };
1027
+ "BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_GOOGLE-SLIDES_AUTH": {
1028
+ id: BaseEntityNames;
1029
+ properties: {
1030
+ integration: {
1031
+ id: string;
1032
+ dataType: {
1033
+ id: string;
1034
+ };
1035
+ defaultValue: {
1036
+ id: string;
1037
+ };
1038
+ };
1039
+ connectionId: {
1040
+ id: string;
1041
+ dataType: {
1042
+ id: string;
1043
+ };
1044
+ };
1045
+ };
1046
+ methods: {};
1047
+ };
1048
+ "BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_GOOGLE-GEMINI_AUTH": {
1049
+ id: BaseEntityNames;
1050
+ properties: {
1051
+ integration: {
1052
+ id: string;
1053
+ dataType: {
1054
+ id: string;
1055
+ };
1056
+ defaultValue: {
1057
+ id: string;
1058
+ };
1059
+ };
1060
+ connectionId: {
1061
+ id: string;
1062
+ dataType: {
1063
+ id: string;
1064
+ };
1065
+ };
1066
+ };
1067
+ methods: {};
1068
+ };
959
1069
  BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_SLACK_AUTH: {
960
1070
  id: BaseEntityNames;
961
1071
  properties: {
@@ -7374,6 +7484,8 @@ export declare function getCommonAncestor(entityA: EntityState, entityB: EntityS
7374
7484
 
7375
7485
  export declare function getCommonChildren(entityA: CanvasEntityState, entityB: CanvasEntityState, seenEntities?: Set<EntityId>): CanvasEntityState[];
7376
7486
 
7487
+ export declare function getConnectionIdFromDefinitionEntity(entity: DefinitionEntityState | BuiltInBaseEntityState): string | null;
7488
+
7377
7489
  export declare function getDatabaseEntities(project: ProjectState): DefinitionEntityState[];
7378
7490
 
7379
7491
  export declare function getDatabaseEntity(entity: DefinitionEntityState): DefinitionEntityState | null;
@@ -9562,6 +9674,8 @@ export declare function getExternalIntegrationIdFromAction(entity: ActionDescrip
9562
9674
 
9563
9675
  export declare function getExternalIntegrationNameFromBuiltInBaseName(baseName: BaseEntityNames): ExternalIntegrationNames | null;
9564
9676
 
9677
+ export declare function getFirstBaseEntity(entity: DefinitionEntityState | BuiltInBaseEntityState, baseEntityName: BaseEntityNames): BuiltInBaseEntityState | null;
9678
+
9565
9679
  export declare function getFirstNonLoopScopeOwner(entity: EntityState | Element_2 | ElementTransfer | ElementGenerationTarget | ElementShallowTransfer, project: ProjectState, _initialEntity?: EntityState | Element_2 | ElementTransfer | ElementGenerationTarget | ElementShallowTransfer | null): EntryPointEntityState | ProjectState | null;
9566
9680
 
9567
9681
  export declare function getFirstParentExecutableEntity(entity: EntityState): ExecutableEntityState | null;
@@ -10705,6 +10819,116 @@ export declare const googleAuthExternalConnectionBuiltInBaseEntityIntegrationPro
10705
10819
 
10706
10820
  export declare const googleAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyRef: IPropertyReference;
10707
10821
 
10822
+ export declare const googleDriveAuthExternalConnectionBuiltInBaseEntity: IBuiltInBaseEntityTransfer;
10823
+
10824
+ export declare const googleDriveAuthExternalConnectionBuiltInBaseEntityConnectionIdProperty: IPropertyTransfer;
10825
+
10826
+ export declare const googleDriveAuthExternalConnectionBuiltInBaseEntityConnectionIdPropertyDataType: IDataTypeTransfer;
10827
+
10828
+ export declare const googleDriveAuthExternalConnectionBuiltInBaseEntityConnectionIdPropertyDataTypeParentRef: IPropertyReference;
10829
+
10830
+ export declare const googleDriveAuthExternalConnectionBuiltInBaseEntityConnectionIdPropertyParentRef: IBuiltInBaseEntityReference;
10831
+
10832
+ export declare const googleDriveAuthExternalConnectionBuiltInBaseEntityIntegrationProperty: IPropertyTransfer;
10833
+
10834
+ export declare const googleDriveAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDataTypeRef: IDataTypeReference;
10835
+
10836
+ export declare const googleDriveAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDefaultValue: ILiteralValueTransfer;
10837
+
10838
+ export declare const googleDriveAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDefaultValueParentRef: IPropertyReference;
10839
+
10840
+ export declare const googleDriveAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyParentRef: IBuiltInBaseEntityReference;
10841
+
10842
+ export declare const googleDriveAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyRef: IPropertyReference;
10843
+
10844
+ export declare const googleGeminiAuthExternalConnectionBuiltInBaseEntity: IBuiltInBaseEntityTransfer;
10845
+
10846
+ export declare const googleGeminiAuthExternalConnectionBuiltInBaseEntityConnectionIdProperty: IPropertyTransfer;
10847
+
10848
+ export declare const googleGeminiAuthExternalConnectionBuiltInBaseEntityConnectionIdPropertyDataType: IDataTypeTransfer;
10849
+
10850
+ export declare const googleGeminiAuthExternalConnectionBuiltInBaseEntityConnectionIdPropertyDataTypeParentRef: IPropertyReference;
10851
+
10852
+ export declare const googleGeminiAuthExternalConnectionBuiltInBaseEntityConnectionIdPropertyParentRef: IBuiltInBaseEntityReference;
10853
+
10854
+ export declare const googleGeminiAuthExternalConnectionBuiltInBaseEntityIntegrationProperty: IPropertyTransfer;
10855
+
10856
+ export declare const googleGeminiAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDataTypeRef: IDataTypeReference;
10857
+
10858
+ export declare const googleGeminiAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDefaultValue: ILiteralValueTransfer;
10859
+
10860
+ export declare const googleGeminiAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDefaultValueParentRef: IPropertyReference;
10861
+
10862
+ export declare const googleGeminiAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyParentRef: IBuiltInBaseEntityReference;
10863
+
10864
+ export declare const googleGeminiAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyRef: IPropertyReference;
10865
+
10866
+ export declare const googleMailAuthExternalConnectionBuiltInBaseEntity: IBuiltInBaseEntityTransfer;
10867
+
10868
+ export declare const googleMailAuthExternalConnectionBuiltInBaseEntityConnectionIdProperty: IPropertyTransfer;
10869
+
10870
+ export declare const googleMailAuthExternalConnectionBuiltInBaseEntityConnectionIdPropertyDataType: IDataTypeTransfer;
10871
+
10872
+ export declare const googleMailAuthExternalConnectionBuiltInBaseEntityConnectionIdPropertyDataTypeParentRef: IPropertyReference;
10873
+
10874
+ export declare const googleMailAuthExternalConnectionBuiltInBaseEntityConnectionIdPropertyParentRef: IBuiltInBaseEntityReference;
10875
+
10876
+ export declare const googleMailAuthExternalConnectionBuiltInBaseEntityIntegrationProperty: IPropertyTransfer;
10877
+
10878
+ export declare const googleMailAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDataTypeRef: IDataTypeReference;
10879
+
10880
+ export declare const googleMailAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDefaultValue: ILiteralValueTransfer;
10881
+
10882
+ export declare const googleMailAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDefaultValueParentRef: IPropertyReference;
10883
+
10884
+ export declare const googleMailAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyParentRef: IBuiltInBaseEntityReference;
10885
+
10886
+ export declare const googleMailAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyRef: IPropertyReference;
10887
+
10888
+ export declare const googleSheetAuthExternalConnectionBuiltInBaseEntity: IBuiltInBaseEntityTransfer;
10889
+
10890
+ export declare const googleSheetAuthExternalConnectionBuiltInBaseEntityConnectionIdProperty: IPropertyTransfer;
10891
+
10892
+ export declare const googleSheetAuthExternalConnectionBuiltInBaseEntityConnectionIdPropertyDataType: IDataTypeTransfer;
10893
+
10894
+ export declare const googleSheetAuthExternalConnectionBuiltInBaseEntityConnectionIdPropertyDataTypeParentRef: IPropertyReference;
10895
+
10896
+ export declare const googleSheetAuthExternalConnectionBuiltInBaseEntityConnectionIdPropertyParentRef: IBuiltInBaseEntityReference;
10897
+
10898
+ export declare const googleSheetAuthExternalConnectionBuiltInBaseEntityIntegrationProperty: IPropertyTransfer;
10899
+
10900
+ export declare const googleSheetAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDataTypeRef: IDataTypeReference;
10901
+
10902
+ export declare const googleSheetAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDefaultValue: ILiteralValueTransfer;
10903
+
10904
+ export declare const googleSheetAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDefaultValueParentRef: IPropertyReference;
10905
+
10906
+ export declare const googleSheetAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyParentRef: IBuiltInBaseEntityReference;
10907
+
10908
+ export declare const googleSheetAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyRef: IPropertyReference;
10909
+
10910
+ export declare const googleSlidesAuthExternalConnectionBuiltInBaseEntity: IBuiltInBaseEntityTransfer;
10911
+
10912
+ export declare const googleSlidesAuthExternalConnectionBuiltInBaseEntityConnectionIdProperty: IPropertyTransfer;
10913
+
10914
+ export declare const googleSlidesAuthExternalConnectionBuiltInBaseEntityConnectionIdPropertyDataType: IDataTypeTransfer;
10915
+
10916
+ export declare const googleSlidesAuthExternalConnectionBuiltInBaseEntityConnectionIdPropertyDataTypeParentRef: IPropertyReference;
10917
+
10918
+ export declare const googleSlidesAuthExternalConnectionBuiltInBaseEntityConnectionIdPropertyParentRef: IBuiltInBaseEntityReference;
10919
+
10920
+ export declare const googleSlidesAuthExternalConnectionBuiltInBaseEntityIntegrationProperty: IPropertyTransfer;
10921
+
10922
+ export declare const googleSlidesAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDataTypeRef: IDataTypeReference;
10923
+
10924
+ export declare const googleSlidesAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDefaultValue: ILiteralValueTransfer;
10925
+
10926
+ export declare const googleSlidesAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyDefaultValueParentRef: IPropertyReference;
10927
+
10928
+ export declare const googleSlidesAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyParentRef: IBuiltInBaseEntityReference;
10929
+
10930
+ export declare const googleSlidesAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyRef: IPropertyReference;
10931
+
10708
10932
  export declare function groupCallsBasedOnParallelizableExecution(calls: DraggableCallableEntityState[]): DraggableCallableEntityState[][];
10709
10933
 
10710
10934
  export declare enum GroupOperatorTypes {
@@ -17495,6 +17719,18 @@ export declare function toPascalCase(str: string): string;
17495
17719
 
17496
17720
  export declare function toProjectLogicContext(extensionsRegistry: ExtensionsRegistry, project: ProjectState): DefaultProjectLogicContext;
17497
17721
 
17722
+ /**
17723
+ * Converts a code-like identifier into a human-readable sentence:
17724
+ * - turns underscores and dashes into spaces
17725
+ * - splits words before uppercase letters (e.g. camelCase, PascalCase, ABBRStyle)
17726
+ * - collapses multiple spaces
17727
+ * - capitalizes only the first letter of the entire sentence
17728
+ *
17729
+ * @param str - The string to convert to sentence case
17730
+ * @returns The sentence-case version of the string
17731
+ */
17732
+ export declare function toSentenceCase(str: string): string;
17733
+
17498
17734
  /**
17499
17735
  * Words keep their original capitalization; we just insert underscores
17500
17736
  * some_name or SOME_NAME or Some_Name or sOme_NaMe