@elyx-code/project-logic-tree 0.0.6621 → 0.0.6622

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
@@ -5517,6 +5517,29 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
5517
5517
  id: string;
5518
5518
  };
5519
5519
  };
5520
+ "op-date-to-date": {
5521
+ id: DateOperations;
5522
+ inputs: {
5523
+ inputValue: {
5524
+ id: string;
5525
+ dataType: {
5526
+ id: string;
5527
+ orString: {
5528
+ id: string;
5529
+ };
5530
+ orNumber: {
5531
+ id: string;
5532
+ };
5533
+ };
5534
+ };
5535
+ };
5536
+ dataType: {
5537
+ id: string;
5538
+ };
5539
+ error: {
5540
+ id: string;
5541
+ };
5542
+ };
5520
5543
  "op-date-to-unix": {
5521
5544
  id: DateOperations;
5522
5545
  inputs: {
@@ -8497,6 +8520,9 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
8497
8520
  dataType: {
8498
8521
  id: string;
8499
8522
  };
8523
+ error: {
8524
+ id: string;
8525
+ };
8500
8526
  };
8501
8527
  "op-object-key-value-equals": {
8502
8528
  id: ObjectOperations;
@@ -8523,6 +8549,9 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
8523
8549
  dataType: {
8524
8550
  id: string;
8525
8551
  };
8552
+ error: {
8553
+ id: string;
8554
+ };
8526
8555
  };
8527
8556
  "op-object-has-nested-key": {
8528
8557
  id: ObjectOperations;
@@ -8555,6 +8584,9 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
8555
8584
  dataType: {
8556
8585
  id: string;
8557
8586
  };
8587
+ error: {
8588
+ id: string;
8589
+ };
8558
8590
  };
8559
8591
  "op-object-nested-key-value-equals": {
8560
8592
  id: ObjectOperations;
@@ -8593,6 +8625,9 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
8593
8625
  dataType: {
8594
8626
  id: string;
8595
8627
  };
8628
+ error: {
8629
+ id: string;
8630
+ };
8596
8631
  };
8597
8632
  "op-object-is-instance-of-type": {
8598
8633
  id: ObjectOperations;
@@ -8613,6 +8648,83 @@ export declare const BUILT_IN_BASE_ENTITY_IDS: {
8613
8648
  dataType: {
8614
8649
  id: string;
8615
8650
  };
8651
+ error: {
8652
+ id: string;
8653
+ };
8654
+ };
8655
+ "op-object-keys": {
8656
+ id: ObjectOperations;
8657
+ inputs: {
8658
+ objectValue: {
8659
+ id: string;
8660
+ dataType: {
8661
+ id: string;
8662
+ };
8663
+ };
8664
+ };
8665
+ dataType: {
8666
+ id: string;
8667
+ };
8668
+ error: {
8669
+ id: string;
8670
+ };
8671
+ };
8672
+ "op-object-values": {
8673
+ id: ObjectOperations;
8674
+ inputs: {
8675
+ objectValue: {
8676
+ id: string;
8677
+ dataType: {
8678
+ id: string;
8679
+ };
8680
+ };
8681
+ };
8682
+ dataType: {
8683
+ id: string;
8684
+ };
8685
+ error: {
8686
+ id: string;
8687
+ };
8688
+ };
8689
+ "op-object-entries": {
8690
+ id: ObjectOperations;
8691
+ inputs: {
8692
+ objectValue: {
8693
+ id: string;
8694
+ dataType: {
8695
+ id: string;
8696
+ };
8697
+ };
8698
+ };
8699
+ dataType: {
8700
+ id: string;
8701
+ };
8702
+ error: {
8703
+ id: string;
8704
+ };
8705
+ };
8706
+ "op-object-merge": {
8707
+ id: ObjectOperations;
8708
+ inputs: {
8709
+ left: {
8710
+ id: string;
8711
+ dataType: {
8712
+ id: string;
8713
+ };
8714
+ };
8715
+ right: {
8716
+ id: string;
8717
+ dataType: {
8718
+ id: string;
8719
+ };
8720
+ };
8721
+ };
8722
+ dataType: {
8723
+ id: string;
8724
+ };
8725
+ error: {
8726
+ id: string;
8727
+ };
8616
8728
  };
8617
8729
  };
8618
8730
  loop: {
@@ -9100,7 +9212,7 @@ export declare const CANVAS_VERTICAL_BUFFER_BETWEEN_CARDS = 90;
9100
9212
 
9101
9213
  export declare enum CanvasEntityConnectionDisabledReason {
9102
9214
  ValuesAlreadyConnected = "values-already-connected",
9103
- CannotReadNumberMoreThanOneValue = "cannot-read-more-than-one-value",
9215
+ CannotReadMoreThanOneValue = "cannot-read-more-than-one-value",
9104
9216
  CannotReadValueFromChildren = "cannot-read-value-from-children",
9105
9217
  CannotWriteValueToChildren = "cannot-write-value-to-children",
9106
9218
  CannotBeCalledByChildren = "cannot-be-called-by-children",
@@ -10540,6 +10652,7 @@ export declare enum DateOperations {
10540
10652
  AddToDate = "op-date-add-to-date",
10541
10653
  SubtractFromDate = "op-date-subtract-from-date",
10542
10654
  DifferenceBetweenDates = "op-date-difference-between-dates",
10655
+ ToDate = "op-date-to-date",
10543
10656
  ToUnix = "op-date-to-unix",
10544
10657
  FromUnix = "op-date-from-unix",
10545
10658
  ToISOString = "op-date-to-iso-string",
@@ -10593,6 +10706,18 @@ export declare enum DateOperations {
10593
10706
 
10594
10707
  export declare const datePrototype: IPrimitiveEntity;
10595
10708
 
10709
+ export declare const dateToDateOperation: IActionDescriptorTransfer;
10710
+
10711
+ export declare const dateToDateOperationError: IValueDescriptorTransfer;
10712
+
10713
+ /** Output data type: datePrototype (ISO 8601 string in your system) */
10714
+ export declare const dateToDateOperationResultDT: IDataTypeTransfer;
10715
+
10716
+ export declare const dateToDateOperationValueArg: IValueDescriptorTransfer;
10717
+
10718
+ /** Input data type: "any" → entity: null */
10719
+ export declare const dateToDateOperationValueDT: IDataTypeTransfer;
10720
+
10596
10721
  export declare const dateValueAutogenerationSchema: z_2.ZodUnion<[z_2.ZodObject<{
10597
10722
  type: z_2.ZodLiteral<ValueAutogenerationType.Random>;
10598
10723
  } & {
@@ -10806,6 +10931,7 @@ export declare const DEFAULT_MODULE_IDS: {
10806
10931
  BUILT_INT_OPERATIONS_IMPLEMENTATIONS__DATE_ADD_TO_DATE: string;
10807
10932
  BUILT_INT_OPERATIONS_IMPLEMENTATIONS__DATE_SUBTRACT_FROM_DATE: string;
10808
10933
  BUILT_INT_OPERATIONS_IMPLEMENTATIONS__DATE_DIFFERENCE_BETWEEN_DATES: string;
10934
+ BUILT_INT_OPERATIONS_IMPLEMENTATIONS__DATE_TO_DATE: string;
10809
10935
  BUILT_INT_OPERATIONS_IMPLEMENTATIONS__DATE_TO_UNIX: string;
10810
10936
  BUILT_INT_OPERATIONS_IMPLEMENTATIONS__DATE_FROM_UNIX: string;
10811
10937
  BUILT_INT_OPERATIONS_IMPLEMENTATIONS__DATE_TO_ISO_STRING: string;
@@ -10867,6 +10993,10 @@ export declare const DEFAULT_MODULE_IDS: {
10867
10993
  BUILT_INT_OPERATIONS_IMPLEMENTATIONS__OBJECT_KEY_VALUE_EQUALS: string;
10868
10994
  BUILT_INT_OPERATIONS_IMPLEMENTATIONS__OBJECT_NESTED_KEY_VALUE_EQUALS: string;
10869
10995
  BUILT_INT_OPERATIONS_IMPLEMENTATIONS__OBJECT_IS_INSTANCE_OF_TYPE: string;
10996
+ BUILT_INT_OPERATIONS_IMPLEMENTATIONS__OBJECT_MERGE: string;
10997
+ BUILT_INT_OPERATIONS_IMPLEMENTATIONS__OBJECT_KEYS: string;
10998
+ BUILT_INT_OPERATIONS_IMPLEMENTATIONS__OBJECT_VALUES: string;
10999
+ BUILT_INT_OPERATIONS_IMPLEMENTATIONS__OBJECT_ENTRIES: string;
10870
11000
  BUILT_INT_OPERATIONS_IMPLEMENTATIONS__DATA_TYPE_GET_TYPE_OF: string;
10871
11001
  BUILT_INT_OPERATIONS_IMPLEMENTATIONS__CRYPTO_HASH: string;
10872
11002
  BUILT_INT_OPERATIONS_IMPLEMENTATIONS__CRYPTO_HMAC: string;
@@ -24523,8 +24653,20 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
24523
24653
 
24524
24654
  export declare const objectDeleteNestedKeyOperationResponseDT: IDataTypeTransfer;
24525
24655
 
24656
+ export declare const objectEntriesOperation: IActionDescriptorTransfer;
24657
+
24658
+ export declare const objectEntriesOperationError: IValueDescriptorTransfer;
24659
+
24660
+ export declare const objectEntriesOperationObjArg: IValueDescriptorTransfer;
24661
+
24662
+ export declare const objectEntriesOperationObjDT: IDataTypeTransfer;
24663
+
24664
+ export declare const objectEntriesOperationResultDT: IDataTypeTransfer;
24665
+
24526
24666
  export declare const objectHasKeyOperation: IActionDescriptorTransfer;
24527
24667
 
24668
+ export declare const objectHasKeyOperationError: IValueDescriptorTransfer;
24669
+
24528
24670
  export declare const objectHasKeyOperationKeyArg: IValueDescriptorTransfer;
24529
24671
 
24530
24672
  export declare const objectHasKeyOperationKeyDT: IDataTypeTransfer;
@@ -24537,6 +24679,8 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
24537
24679
 
24538
24680
  export declare const objectHasNestedKeyOperation: IActionDescriptorTransfer;
24539
24681
 
24682
+ export declare const objectHasNestedKeyOperationError: IValueDescriptorTransfer;
24683
+
24540
24684
  export declare const objectHasNestedKeyOperationKeyArg: IValueDescriptorTransfer;
24541
24685
 
24542
24686
  export declare const objectHasNestedKeyOperationKeyDT: IDataTypeTransfer;
@@ -24565,10 +24709,24 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
24565
24709
 
24566
24710
  export declare const objectIsInstanceOfTypeOperationBDT: IDataTypeTransfer;
24567
24711
 
24712
+ export declare const objectIsInstanceOfTypeOperationError: IValueDescriptorTransfer;
24713
+
24568
24714
  export declare const objectIsInstanceOfTypeOperationResultVoidDT: IDataTypeTransfer;
24569
24715
 
24716
+ export declare const objectKeysOperation: IActionDescriptorTransfer;
24717
+
24718
+ export declare const objectKeysOperationError: IValueDescriptorTransfer;
24719
+
24720
+ export declare const objectKeysOperationObjArg: IValueDescriptorTransfer;
24721
+
24722
+ export declare const objectKeysOperationObjDT: IDataTypeTransfer;
24723
+
24724
+ export declare const objectKeysOperationResultDT: IDataTypeTransfer;
24725
+
24570
24726
  export declare const objectKeyValueEqualsOperation: IActionDescriptorTransfer;
24571
24727
 
24728
+ export declare const objectKeyValueEqualsOperationError: IValueDescriptorTransfer;
24729
+
24572
24730
  export declare const objectKeyValueEqualsOperationKeyArg: IValueDescriptorTransfer;
24573
24731
 
24574
24732
  export declare const objectKeyValueEqualsOperationKeyDT: IDataTypeTransfer;
@@ -24579,8 +24737,24 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
24579
24737
 
24580
24738
  export declare const objectKeyValueEqualsOperationResultVoidDT: IDataTypeTransfer;
24581
24739
 
24740
+ export declare const objectMergeOperation: IActionDescriptorTransfer;
24741
+
24742
+ export declare const objectMergeOperationError: IValueDescriptorTransfer;
24743
+
24744
+ export declare const objectMergeOperationLeftArg: IValueDescriptorTransfer;
24745
+
24746
+ export declare const objectMergeOperationLeftDT: IDataTypeTransfer;
24747
+
24748
+ export declare const objectMergeOperationResultDT: IDataTypeTransfer;
24749
+
24750
+ export declare const objectMergeOperationRightArg: IValueDescriptorTransfer;
24751
+
24752
+ export declare const objectMergeOperationRightDT: IDataTypeTransfer;
24753
+
24582
24754
  export declare const objectNestedKeyValueEqualsOperation: IActionDescriptorTransfer;
24583
24755
 
24756
+ export declare const objectNestedKeyValueEqualsOperationError: IValueDescriptorTransfer;
24757
+
24584
24758
  export declare const objectNestedKeyValueEqualsOperationKeyArg: IValueDescriptorTransfer;
24585
24759
 
24586
24760
  export declare const objectNestedKeyValueEqualsOperationKeyDT: IDataTypeTransfer;
@@ -24612,7 +24786,11 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
24612
24786
  KeyValueEquals = "op-object-key-value-equals",
24613
24787
  HasNestedKey = "op-object-has-nested-key",
24614
24788
  NestedKeyValueEquals = "op-object-nested-key-value-equals",
24615
- IsInstanceOfType = "op-object-is-instance-of-type"
24789
+ IsInstanceOfType = "op-object-is-instance-of-type",
24790
+ Merge = "op-object-merge",
24791
+ Keys = "op-object-keys",
24792
+ Values = "op-object-values",
24793
+ Entries = "op-object-entries"
24616
24794
  }
24617
24795
 
24618
24796
  export declare const objectReadKeyOperation: IActionDescriptorTransfer;
@@ -24651,6 +24829,16 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
24651
24829
 
24652
24830
  export declare const objectReadNestedKeyOperationResponseDT: IDataTypeTransfer;
24653
24831
 
24832
+ export declare const objectValuesOperation: IActionDescriptorTransfer;
24833
+
24834
+ export declare const objectValuesOperationError: IValueDescriptorTransfer;
24835
+
24836
+ export declare const objectValuesOperationObjArg: IValueDescriptorTransfer;
24837
+
24838
+ export declare const objectValuesOperationObjDT: IDataTypeTransfer;
24839
+
24840
+ export declare const objectValuesOperationResultDT: IDataTypeTransfer;
24841
+
24654
24842
  export declare const objectWriteKeyOperation: IActionDescriptorTransfer;
24655
24843
 
24656
24844
  export declare const objectWriteKeyOperationError: IValueDescriptorTransfer;
@@ -25400,6 +25588,14 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
25400
25588
  };
25401
25589
  }
25402
25590
 
25591
+ export declare class OperationsImplementationsDateToDateModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
25592
+ manifest: ExtensionManifest;
25593
+ module: {
25594
+ init: (contexts: (DefaultEditorContext | DefaultProjectLogicContext)[]) => void;
25595
+ main: (entity: OperationState, _inputs: IDynamicValue[]) => Promise<IPrimitiveExecutionResult>;
25596
+ };
25597
+ }
25598
+
25403
25599
  export declare class OperationsImplementationsDateToISOStringModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
25404
25600
  manifest: ExtensionManifest;
25405
25601
  module: {
@@ -26656,6 +26852,14 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
26656
26852
  };
26657
26853
  }
26658
26854
 
26855
+ export declare class OperationsImplementationsObjectMergeObjectsModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
26856
+ manifest: ExtensionManifest;
26857
+ module: {
26858
+ init: (contexts: (DefaultEditorContext | DefaultProjectLogicContext)[]) => void;
26859
+ main: (_entity: OperationState, _inputs: IDynamicValue[]) => Promise<IPrimitiveExecutionResult>;
26860
+ };
26861
+ }
26862
+
26659
26863
  export declare class OperationsImplementationsObjectNestedKeyValueEqualsModule extends BaseRegisteredExtension implements IRegisteredExtension {
26660
26864
  manifest: ExtensionManifest;
26661
26865
  module: {
@@ -26672,6 +26876,30 @@ export declare function getReferencedEntityStateOrErrors(data: ElementGeneration
26672
26876
  };
26673
26877
  }
26674
26878
 
26879
+ export declare class OperationsImplementationsObjectObjectEntriesModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
26880
+ manifest: ExtensionManifest;
26881
+ module: {
26882
+ init: (contexts: (DefaultEditorContext | DefaultProjectLogicContext)[]) => void;
26883
+ main: (_entity: OperationState, _inputs: IDynamicValue[]) => Promise<IPrimitiveExecutionResult>;
26884
+ };
26885
+ }
26886
+
26887
+ export declare class OperationsImplementationsObjectObjectKeysModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
26888
+ manifest: ExtensionManifest;
26889
+ module: {
26890
+ init: (contexts: (DefaultEditorContext | DefaultProjectLogicContext)[]) => void;
26891
+ main: (_entity: OperationState, _inputs: IDynamicValue[]) => Promise<IPrimitiveExecutionResult>;
26892
+ };
26893
+ }
26894
+
26895
+ export declare class OperationsImplementationsObjectObjectValuesModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
26896
+ manifest: ExtensionManifest;
26897
+ module: {
26898
+ init: (contexts: (DefaultEditorContext | DefaultProjectLogicContext)[]) => void;
26899
+ main: (_entity: OperationState, _inputs: IDynamicValue[]) => Promise<IPrimitiveExecutionResult>;
26900
+ };
26901
+ }
26902
+
26675
26903
  export declare class OperationsImplementationsObjectReadKeyModule extends BaseRegisteredExtension implements IRegisteredExtension {
26676
26904
  manifest: ExtensionManifest;
26677
26905
  module: {