@elyx-code/project-logic-tree 0.0.7112 → 0.0.7113

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 +221 -221
  2. package/dist/index.d.ts +118 -1
  3. package/dist/index.js +41253 -40504
  4. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -10432,6 +10432,64 @@ export declare enum BaseValueDescriptorIds {
10432
10432
  id: string;
10433
10433
  };
10434
10434
  };
10435
+ "op-values-merge-empty": {
10436
+ id: ValuesOperations;
10437
+ inputs: {
10438
+ first: {
10439
+ id: string;
10440
+ dataType: {
10441
+ id: string;
10442
+ };
10443
+ };
10444
+ second: {
10445
+ id: string;
10446
+ dataType: {
10447
+ id: string;
10448
+ };
10449
+ };
10450
+ dynamicValue: {
10451
+ id: string;
10452
+ dataType: {
10453
+ id: string;
10454
+ };
10455
+ };
10456
+ };
10457
+ dataType: {
10458
+ id: string;
10459
+ };
10460
+ error: {
10461
+ id: string;
10462
+ };
10463
+ };
10464
+ "op-values-merge-falsy": {
10465
+ id: ValuesOperations;
10466
+ inputs: {
10467
+ first: {
10468
+ id: string;
10469
+ dataType: {
10470
+ id: string;
10471
+ };
10472
+ };
10473
+ second: {
10474
+ id: string;
10475
+ dataType: {
10476
+ id: string;
10477
+ };
10478
+ };
10479
+ dynamicValue: {
10480
+ id: string;
10481
+ dataType: {
10482
+ id: string;
10483
+ };
10484
+ };
10485
+ };
10486
+ dataType: {
10487
+ id: string;
10488
+ };
10489
+ error: {
10490
+ id: string;
10491
+ };
10492
+ };
10435
10493
  };
10436
10494
  loop: {
10437
10495
  "list-loop": {
@@ -13686,6 +13744,8 @@ export declare enum BaseValueDescriptorIds {
13686
13744
  BUILT_IN_FUNCTION_IMPLEMENTATIONS__CREATE_PERSISTED_ENTITY: string;
13687
13745
  BUILT_IN_FUNCTION_IMPLEMENTATIONS__UPDATE_PERSISTED_ENTITY: string;
13688
13746
  BUILT_IN_FUNCTION_IMPLEMENTATIONS__DELETE_PERSISTED_ENTITY: string;
13747
+ BUILT_INT_OPERATIONS_IMPLEMENTATIONS__VALUES_MERGE_EMPTY: string;
13748
+ BUILT_INT_OPERATIONS_IMPLEMENTATIONS__VALUES_MERGE_FALSY: string;
13689
13749
  BUILT_INT_OPERATIONS_IMPLEMENTATIONS__COMPARISON_EMPTY: string;
13690
13750
  BUILT_INT_OPERATIONS_IMPLEMENTATIONS__COMPARISON_NOT_EMPTY: string;
13691
13751
  BUILT_INT_OPERATIONS_IMPLEMENTATIONS__COMPARISON_PRIMITIVE_EQUAL: string;
@@ -24627,8 +24687,40 @@ export declare enum BaseValueDescriptorIds {
24627
24687
  exactDataType?: boolean;
24628
24688
  }): DefinitionEntityState;
24629
24689
 
24690
+ export declare const mergeEmptyOperationDynamicArgument: IValueDescriptorTransfer;
24691
+
24692
+ export declare const mergeEmptyOperationDynamicDataType: IDataTypeTransfer;
24693
+
24694
+ export declare const mergeEmptyOperationError: IValueDescriptorTransfer;
24695
+
24696
+ export declare const mergeEmptyOperationFirstArgument: IValueDescriptorTransfer;
24697
+
24698
+ export declare const mergeEmptyOperationFirstDataType: IDataTypeTransfer;
24699
+
24700
+ export declare const mergeEmptyOperationResponseDataType: IDataTypeTransfer;
24701
+
24702
+ export declare const mergeEmptyOperationSecondArgument: IValueDescriptorTransfer;
24703
+
24704
+ export declare const mergeEmptyOperationSecondDataType: IDataTypeTransfer;
24705
+
24630
24706
  export declare function mergeEntityErrorsList(oldErrors: EntityError[], newErrors: EntityError[]): EntityError[];
24631
24707
 
24708
+ export declare const mergeFalsyOperationDynamicArgument: IValueDescriptorTransfer;
24709
+
24710
+ export declare const mergeFalsyOperationDynamicDataType: IDataTypeTransfer;
24711
+
24712
+ export declare const mergeFalsyOperationError: IValueDescriptorTransfer;
24713
+
24714
+ export declare const mergeFalsyOperationFirstArgument: IValueDescriptorTransfer;
24715
+
24716
+ export declare const mergeFalsyOperationFirstDataType: IDataTypeTransfer;
24717
+
24718
+ export declare const mergeFalsyOperationResponseDataType: IDataTypeTransfer;
24719
+
24720
+ export declare const mergeFalsyOperationSecondArgument: IValueDescriptorTransfer;
24721
+
24722
+ export declare const mergeFalsyOperationSecondDataType: IDataTypeTransfer;
24723
+
24632
24724
  export declare function mergeListOfEntities(oldErrors: EntityState[], newErrors: EntityState[]): EntityState[];
24633
24725
 
24634
24726
  /**
@@ -28988,6 +29080,22 @@ export declare enum BaseValueDescriptorIds {
28988
29080
  };
28989
29081
  }
28990
29082
 
29083
+ export declare class OperationsImplementationsValuesMergeEmptyModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
29084
+ manifest: ExtensionManifest;
29085
+ module: {
29086
+ init: (contexts: (DefaultEditorContext | DefaultProjectLogicContext)[]) => void;
29087
+ main: (_entity: OperationState, inputs: IDynamicValue[]) => Promise<IPrimitiveExecutionResult>;
29088
+ };
29089
+ }
29090
+
29091
+ export declare class OperationsImplementationsValuesMergeFalsyModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
29092
+ manifest: ExtensionManifest;
29093
+ module: {
29094
+ init: (contexts: (DefaultEditorContext | DefaultProjectLogicContext)[]) => void;
29095
+ main: (_entity: OperationState, inputs: IDynamicValue[]) => Promise<IPrimitiveExecutionResult>;
29096
+ };
29097
+ }
29098
+
28991
29099
  export declare class OperationState extends UserManagedVersionedState implements IOperation, UserManagedBaseState, UserManagedEntityStateTemplate, BaseCanvasDraggableState, ValueWritingEntityClass, CallableEntityClass, ChildEntityBaseClass, PassThroughCallableEntityClass {
28992
29100
  initialData: IOperation | IOperationTransfer;
28993
29101
  readonly id: EntityId;
@@ -29149,7 +29257,7 @@ export declare enum BaseValueDescriptorIds {
29149
29257
  getDataType(changeSet?: ChangeSet | null): DataTypeState | null;
29150
29258
  }
29151
29259
 
29152
- export declare type OperationTypes = NumberOperations | StringOperations | ListOperations | DateOperations | DataTypeOperations | JsonOperations | CryptoOperations | PasswordOperations | JwtOperations | ExecutionOperations | ObjectOperations | HTTPOperations | RandomnessOperations | ExternalIntegrationOperations | ComparisonOperations | CloudFileSystemOperations;
29260
+ export declare type OperationTypes = NumberOperations | StringOperations | ListOperations | DateOperations | DataTypeOperations | JsonOperations | CryptoOperations | PasswordOperations | JwtOperations | ExecutionOperations | ObjectOperations | HTTPOperations | RandomnessOperations | ExternalIntegrationOperations | ComparisonOperations | ValuesOperations | CloudFileSystemOperations;
29153
29261
 
29154
29262
  export declare type OperationTypesUnion = IOperation | IOperationTransfer | IOperationShallowTransfer | IOperationGenerationTarget;
29155
29263
 
@@ -35034,6 +35142,15 @@ export declare enum BaseValueDescriptorIds {
35034
35142
  toQuery(): string;
35035
35143
  }
35036
35144
 
35145
+ export declare const VALUES_OPERATIONS: {
35146
+ [valuesMergeEmptyOperation.id]: IActionDescriptorTransfer;
35147
+ [valuesMergeFalsyOperation.id]: IActionDescriptorTransfer;
35148
+ };
35149
+
35150
+ export declare const valuesMergeEmptyOperation: IActionDescriptorTransfer;
35151
+
35152
+ export declare const valuesMergeFalsyOperation: IActionDescriptorTransfer;
35153
+
35037
35154
  export declare enum ValuesOperations {
35038
35155
  MergeEmpty = "op-values-merge-empty",
35039
35156
  MergeFalsy = "op-values-merge-falsy"