@elyx-code/project-logic-tree 0.0.6507 → 0.0.6509
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 +136 -0
- package/dist/index.js +25681 -24859
- package/dist/index.umd.cjs +187 -179
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -1728,6 +1728,78 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
|
|
|
1728
1728
|
};
|
|
1729
1729
|
outputs: {};
|
|
1730
1730
|
};
|
|
1731
|
+
"external-integration--google-drive--get--files": {
|
|
1732
|
+
id: ExternalIntegrationOperations;
|
|
1733
|
+
inputs: {
|
|
1734
|
+
connection: {
|
|
1735
|
+
id: string;
|
|
1736
|
+
dataType: {
|
|
1737
|
+
id: string;
|
|
1738
|
+
};
|
|
1739
|
+
};
|
|
1740
|
+
filesFilter: {
|
|
1741
|
+
id: string;
|
|
1742
|
+
dataType: {
|
|
1743
|
+
id: string;
|
|
1744
|
+
};
|
|
1745
|
+
};
|
|
1746
|
+
foldersFilter: {
|
|
1747
|
+
id: string;
|
|
1748
|
+
dataType: {
|
|
1749
|
+
id: string;
|
|
1750
|
+
};
|
|
1751
|
+
};
|
|
1752
|
+
};
|
|
1753
|
+
outputs: {
|
|
1754
|
+
results: {
|
|
1755
|
+
id: string;
|
|
1756
|
+
dataType: {
|
|
1757
|
+
id: string;
|
|
1758
|
+
entity: {
|
|
1759
|
+
id: string;
|
|
1760
|
+
properties: {
|
|
1761
|
+
idProperty: {
|
|
1762
|
+
id: string;
|
|
1763
|
+
dataType: {
|
|
1764
|
+
id: string;
|
|
1765
|
+
};
|
|
1766
|
+
};
|
|
1767
|
+
parents: {
|
|
1768
|
+
id: string;
|
|
1769
|
+
dataType: {
|
|
1770
|
+
id: string;
|
|
1771
|
+
};
|
|
1772
|
+
};
|
|
1773
|
+
name: {
|
|
1774
|
+
id: string;
|
|
1775
|
+
dataType: {
|
|
1776
|
+
id: string;
|
|
1777
|
+
};
|
|
1778
|
+
};
|
|
1779
|
+
mimeType: {
|
|
1780
|
+
id: string;
|
|
1781
|
+
dataType: {
|
|
1782
|
+
id: string;
|
|
1783
|
+
};
|
|
1784
|
+
};
|
|
1785
|
+
webViewLink: {
|
|
1786
|
+
id: string;
|
|
1787
|
+
dataType: {
|
|
1788
|
+
id: string;
|
|
1789
|
+
};
|
|
1790
|
+
};
|
|
1791
|
+
modifiedTime: {
|
|
1792
|
+
id: string;
|
|
1793
|
+
dataType: {
|
|
1794
|
+
id: string;
|
|
1795
|
+
};
|
|
1796
|
+
};
|
|
1797
|
+
};
|
|
1798
|
+
};
|
|
1799
|
+
};
|
|
1800
|
+
};
|
|
1801
|
+
};
|
|
1802
|
+
};
|
|
1731
1803
|
"external-integration--google-drive--get--fetch-google-sheet": {
|
|
1732
1804
|
id: ExternalIntegrationOperations;
|
|
1733
1805
|
inputs: {
|
|
@@ -1812,6 +1884,18 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
|
|
|
1812
1884
|
};
|
|
1813
1885
|
outputs: {};
|
|
1814
1886
|
};
|
|
1887
|
+
"external-integration--google-gemini--post--generate-content": {
|
|
1888
|
+
id: ExternalIntegrationOperations;
|
|
1889
|
+
inputs: {
|
|
1890
|
+
connection: {
|
|
1891
|
+
id: string;
|
|
1892
|
+
dataType: {
|
|
1893
|
+
id: string;
|
|
1894
|
+
};
|
|
1895
|
+
};
|
|
1896
|
+
};
|
|
1897
|
+
outputs: {};
|
|
1898
|
+
};
|
|
1815
1899
|
"external-integration--google-mail--post--send-email": {
|
|
1816
1900
|
id: ExternalIntegrationOperations;
|
|
1817
1901
|
inputs: {
|
|
@@ -5324,7 +5408,9 @@ export declare enum ExternalIntegrationOperations {
|
|
|
5324
5408
|
GoogleDriveUploadDocument = "external-integration--google-drive--post--upload-document",
|
|
5325
5409
|
GoogleDriveListDrives = "external-integration--google-drive--get--list-drives",
|
|
5326
5410
|
GoogleDriveDocuments = "external-integration--google-drive--get--documents",
|
|
5411
|
+
GoogleDriveFiles = "external-integration--google-drive--get--files",
|
|
5327
5412
|
GoogleDriveFolders = "external-integration--google-drive--get--folders",
|
|
5413
|
+
GoogleGeminiGenerateContent = "external-integration--google-gemini--post--generate-content",
|
|
5328
5414
|
GoogleMailSendEmail = "external-integration--google-mail--post--send-email",
|
|
5329
5415
|
GoogleMailFetchAttachment = "external-integration--google-mail--get--fetch-attachment",
|
|
5330
5416
|
GoogleMailEmails = "external-integration--google-mail--get--emails",
|
|
@@ -5836,6 +5922,50 @@ export declare const fetchSpreadsheetIntegrationBuiltInActionDescriptorConnectio
|
|
|
5836
5922
|
|
|
5837
5923
|
export declare const fetchSpreadsheetIntegrationBuiltInActionDescriptorTransfer: IActionDescriptorTransfer;
|
|
5838
5924
|
|
|
5925
|
+
export declare const filesIntegrationBuiltInActionDescriptorConnectionInputDataTypeTransfer: IDataTypeTransfer;
|
|
5926
|
+
|
|
5927
|
+
export declare const filesIntegrationBuiltInActionDescriptorConnectionInputTransfer: IValueDescriptorTransfer;
|
|
5928
|
+
|
|
5929
|
+
export declare const filesIntegrationBuiltInActionDescriptorFilesFilterInputDataTypeTransfer: IDataTypeTransfer;
|
|
5930
|
+
|
|
5931
|
+
export declare const filesIntegrationBuiltInActionDescriptorFilesFilterInputTransfer: IValueDescriptorTransfer;
|
|
5932
|
+
|
|
5933
|
+
export declare const filesIntegrationBuiltInActionDescriptorFoldersFilterInputDataTypeTransfer: IDataTypeTransfer;
|
|
5934
|
+
|
|
5935
|
+
export declare const filesIntegrationBuiltInActionDescriptorFoldersFilterInputTransfer: IValueDescriptorTransfer;
|
|
5936
|
+
|
|
5937
|
+
export declare const filesIntegrationBuiltInActionDescriptorResultsOutputDataTypeEntityIdPropertyDataTypeTransfer: IDataTypeTransfer;
|
|
5938
|
+
|
|
5939
|
+
export declare const filesIntegrationBuiltInActionDescriptorResultsOutputDataTypeEntityIdPropertyTransfer: IPropertyTransfer;
|
|
5940
|
+
|
|
5941
|
+
export declare const filesIntegrationBuiltInActionDescriptorResultsOutputDataTypeEntityMimeTypePropertyDataTypeTransfer: IDataTypeTransfer;
|
|
5942
|
+
|
|
5943
|
+
export declare const filesIntegrationBuiltInActionDescriptorResultsOutputDataTypeEntityMimeTypePropertyTransfer: IPropertyTransfer;
|
|
5944
|
+
|
|
5945
|
+
export declare const filesIntegrationBuiltInActionDescriptorResultsOutputDataTypeEntityModifiedTimeDataTypeTransfer: IDataTypeTransfer;
|
|
5946
|
+
|
|
5947
|
+
export declare const filesIntegrationBuiltInActionDescriptorResultsOutputDataTypeEntityModifiedTimeTransfer: IPropertyTransfer;
|
|
5948
|
+
|
|
5949
|
+
export declare const filesIntegrationBuiltInActionDescriptorResultsOutputDataTypeEntityNamePropertyDataTypeTransfer: IDataTypeTransfer;
|
|
5950
|
+
|
|
5951
|
+
export declare const filesIntegrationBuiltInActionDescriptorResultsOutputDataTypeEntityNamePropertyTransfer: IPropertyTransfer;
|
|
5952
|
+
|
|
5953
|
+
export declare const filesIntegrationBuiltInActionDescriptorResultsOutputDataTypeEntityParentsPropertyDataTypeTransfer: IDataTypeTransfer;
|
|
5954
|
+
|
|
5955
|
+
export declare const filesIntegrationBuiltInActionDescriptorResultsOutputDataTypeEntityParentsPropertyTransfer: IPropertyTransfer;
|
|
5956
|
+
|
|
5957
|
+
export declare const filesIntegrationBuiltInActionDescriptorResultsOutputDataTypeEntityTransfer: IDefinitionEntityTransfer;
|
|
5958
|
+
|
|
5959
|
+
export declare const filesIntegrationBuiltInActionDescriptorResultsOutputDataTypeEntityWebViewLinkDataTypeTransfer: IDataTypeTransfer;
|
|
5960
|
+
|
|
5961
|
+
export declare const filesIntegrationBuiltInActionDescriptorResultsOutputDataTypeEntityWebViewLinkTransfer: IPropertyTransfer;
|
|
5962
|
+
|
|
5963
|
+
export declare const filesIntegrationBuiltInActionDescriptorResultsOutputDataTypeTransfer: IDataTypeTransfer;
|
|
5964
|
+
|
|
5965
|
+
export declare const filesIntegrationBuiltInActionDescriptorResultsOutputTransfer: IValueDescriptorTransfer;
|
|
5966
|
+
|
|
5967
|
+
export declare const filesIntegrationBuiltInActionDescriptorTransfer: IActionDescriptorTransfer;
|
|
5968
|
+
|
|
5839
5969
|
/**
|
|
5840
5970
|
* Remove any callers that are callers of other callers
|
|
5841
5971
|
* @param {CallerEntityState[]} callers
|
|
@@ -6410,6 +6540,12 @@ export declare function generate(value: ILiteralValue): UntypedValue;
|
|
|
6410
6540
|
|
|
6411
6541
|
export declare function generateActionExample(actionName: string, properties: Record<string, string>): string;
|
|
6412
6542
|
|
|
6543
|
+
export declare const generateContentIntegrationBuiltInActionDescriptorConnectionInputDataTypeTransfer: IDataTypeTransfer;
|
|
6544
|
+
|
|
6545
|
+
export declare const generateContentIntegrationBuiltInActionDescriptorConnectionInputTransfer: IValueDescriptorTransfer;
|
|
6546
|
+
|
|
6547
|
+
export declare const generateContentIntegrationBuiltInActionDescriptorTransfer: IActionDescriptorTransfer;
|
|
6548
|
+
|
|
6413
6549
|
export declare type GeneratedPayload = ElementGenerationTarget | {
|
|
6414
6550
|
id: string;
|
|
6415
6551
|
} | {
|