@elyx-code/project-logic-tree 0.0.7010 → 0.0.7012

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.
Files changed (4) hide show
  1. package/dist/index.cjs +365 -358
  2. package/dist/index.d.ts +136 -0
  3. package/dist/index.js +76392 -71946
  4. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -24506,6 +24506,100 @@ export declare enum BaseValueDescriptorIds {
24506
24506
  };
24507
24507
  }
24508
24508
 
24509
+ export declare class OperationsImplementationsGetGoogleDriveFilesModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
24510
+ manifest: ExtensionManifest;
24511
+ module: {
24512
+ init: (contexts: (DefaultEditorContext | DefaultProjectLogicContext)[]) => void;
24513
+ main: (entity: OperationState, inputs: IDynamicValue[]) => Promise<IPrimitiveExecutionResult>;
24514
+ };
24515
+ }
24516
+
24517
+ export declare class OperationsImplementationsGetSlackChannelsModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
24518
+ manifest: ExtensionManifest;
24519
+ module: {
24520
+ init: (contexts: (DefaultEditorContext | DefaultProjectLogicContext)[]) => void;
24521
+ main: (entity: OperationState, _inputs: IDynamicValue[]) => Promise<IPrimitiveExecutionResult>;
24522
+ };
24523
+ }
24524
+
24525
+ export declare class OperationsImplementationsGetSlackMessagesModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
24526
+ manifest: ExtensionManifest;
24527
+ module: {
24528
+ init: (contexts: (DefaultEditorContext | DefaultProjectLogicContext)[]) => void;
24529
+ main: (entity: OperationState, _inputs: IDynamicValue[]) => Promise<IPrimitiveExecutionResult>;
24530
+ };
24531
+ }
24532
+
24533
+ export declare class OperationsImplementationsGetSlackRepliesModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
24534
+ manifest: ExtensionManifest;
24535
+ module: {
24536
+ init: (contexts: (DefaultEditorContext | DefaultProjectLogicContext)[]) => void;
24537
+ main: (entity: OperationState, _inputs: IDynamicValue[]) => Promise<IPrimitiveExecutionResult>;
24538
+ };
24539
+ }
24540
+
24541
+ export declare class OperationsImplementationsGmailMessagesModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
24542
+ manifest: ExtensionManifest;
24543
+ module: {
24544
+ init: (contexts: (DefaultEditorContext | DefaultProjectLogicContext)[]) => void;
24545
+ /**
24546
+ * INPUTS (index):
24547
+ * 0 = connection (DefinitionEntityState, required)
24548
+ * 1 = q (string)
24549
+ * 2 = after (string | number)
24550
+ * 3 = before (string | number)
24551
+ * 4 = labelIds (string[])
24552
+ * 5 = pageSize (number; 1–500; default 100)
24553
+ * 6 = pageToken (string)
24554
+ * 7 = autoPaginate (boolean; default false)
24555
+ * 8 = includeBody ('none'|'text'|'html'|'both'|'auto'; default 'auto')
24556
+ * 9 = attachmentsMode ('none'|'metadata'|'download'; default 'metadata') // 'download' not implemented yet
24557
+ * 10 = includeHeaders (string[]; default common set)
24558
+ * 11 = includeSpamTrash (boolean; default false)
24559
+ * 12 = maxPages (number; default 10 when autoPaginate)
24560
+ * 13 = maxMessages (number; optional)
24561
+ *
24562
+ * OUTPUTS:
24563
+ * 0 = emails: GmailEmailOut[]
24564
+ * 1 = nextPageToken: string | null
24565
+ */
24566
+ main: (entity: OperationState, inputs: IDynamicValue[]) => Promise<IPrimitiveExecutionResult>;
24567
+ };
24568
+ }
24569
+
24570
+ export declare class OperationsImplementationsGoogleDriveSmartFetchDocumentModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
24571
+ manifest: ExtensionManifest;
24572
+ module: {
24573
+ init: (contexts: (DefaultEditorContext | DefaultProjectLogicContext)[]) => void;
24574
+ /**
24575
+ * INPUTS (index):
24576
+ * 0 = connection (DefinitionEntityState)
24577
+ * 1 = fileId (string)
24578
+ * 2 = mode (SmartMode) — optional, defaults to 'auto'
24579
+ *
24580
+ * OUTPUTS (array order):
24581
+ * 0 = kind: 'docs' | 'sheets' | 'text' | 'binary'
24582
+ * 1 = mime: string
24583
+ * 2 = isBinary: boolean
24584
+ * 3 = title: string | null
24585
+ * 4 = sizeBytes: number | null
24586
+ * 5 = text: string | null
24587
+ * 6 = base64: string | null
24588
+ * 7 = json: string | null
24589
+ * 8 = raw_json: string
24590
+ */
24591
+ main: (entity: OperationState, inputs: IDynamicValue[]) => Promise<IPrimitiveExecutionResult>;
24592
+ };
24593
+ }
24594
+
24595
+ export declare class OperationsImplementationsGoogleGeminiGenerateContentModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
24596
+ manifest: ExtensionManifest;
24597
+ module: {
24598
+ init: (contexts: (DefaultEditorContext | DefaultProjectLogicContext)[]) => void;
24599
+ main: (entity: OperationState, inputs: IDynamicValue[]) => Promise<IPrimitiveExecutionResult>;
24600
+ };
24601
+ }
24602
+
24509
24603
  export declare class OperationsImplementationsHttpRequestModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
24510
24604
  manifest: ExtensionManifest;
24511
24605
  module: {
@@ -25938,6 +26032,40 @@ export declare enum BaseValueDescriptorIds {
25938
26032
  };
25939
26033
  }
25940
26034
 
26035
+ /** ---------- Implementation module ---------- */
26036
+ export declare class OperationsImplementationsSendGoogleMailEmailModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
26037
+ manifest: ExtensionManifest;
26038
+ module: {
26039
+ init: (contexts: (DefaultEditorContext | DefaultProjectLogicContext)[]) => void;
26040
+ /**
26041
+ * INPUTS (index / expected):
26042
+ * 0 = connection (DefinitionEntityState, required)
26043
+ * 1 = from (string)
26044
+ * 2 = to (string | string[])
26045
+ * 3 = subject (string)
26046
+ * 4 = body (string)
26047
+ * 5 = bodyHtml (string, optional)
26048
+ * 6 = cc (string | string[], optional)
26049
+ * 7 = bcc (string | string[], optional)
26050
+ * 8 = replyTo (string | string[], optional)
26051
+ * 9 = threadId (string, optional)
26052
+ * 10 = headers (Record<string, string|string[]>, optional)
26053
+ *
26054
+ * OUTPUT:
26055
+ * { id: string; threadId: string | null }
26056
+ */
26057
+ main: (entity: OperationState, inputs: IDynamicValue[]) => Promise<IPrimitiveExecutionResult>;
26058
+ };
26059
+ }
26060
+
26061
+ export declare class OperationsImplementationsSendSlackMessageModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
26062
+ manifest: ExtensionManifest;
26063
+ module: {
26064
+ init: (contexts: (DefaultEditorContext | DefaultProjectLogicContext)[]) => void;
26065
+ main: (entity: OperationState, _inputs: IDynamicValue[]) => Promise<IPrimitiveExecutionResult>;
26066
+ };
26067
+ }
26068
+
25941
26069
  export declare class OperationsImplementationsStringAddAtIndexModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
25942
26070
  manifest: ExtensionManifest;
25943
26071
  module: {
@@ -26523,6 +26651,14 @@ export declare enum BaseValueDescriptorIds {
26523
26651
  };
26524
26652
  }
26525
26653
 
26654
+ export declare class OperationsImplementationsUploadGoogleDriveFileModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
26655
+ manifest: ExtensionManifest;
26656
+ module: {
26657
+ init: (contexts: (DefaultEditorContext | DefaultProjectLogicContext)[]) => void;
26658
+ main: (entity: OperationState, inputs: IDynamicValue[]) => Promise<IPrimitiveExecutionResult>;
26659
+ };
26660
+ }
26661
+
26526
26662
  export declare class OperationState extends UserManagedVersionedState implements IOperation, UserManagedBaseState, UserManagedEntityStateTemplate, BaseCanvasDraggableState, ValueWritingEntityClass, CallableEntityClass, ChildEntityBaseClass, PassThroughCallableEntityClass {
26527
26663
  initialData: IOperation | IOperationTransfer;
26528
26664
  readonly id: EntityId;