@elyx-code/project-logic-tree 0.0.6853 → 0.0.6854

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 +226 -226
  2. package/dist/index.d.ts +0 -136
  3. package/dist/index.js +31505 -32155
  4. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -4495,56 +4495,6 @@ export declare enum BaseValueDescriptorIds {
4495
4495
  id: string;
4496
4496
  };
4497
4497
  };
4498
- "op-execution-sequential": {
4499
- id: ExecutionOperations;
4500
- inputs: {
4501
- listOfActions: {
4502
- id: string;
4503
- dataType: {
4504
- id: string;
4505
- entity: {
4506
- id: string;
4507
- dataType: {
4508
- id: string;
4509
- };
4510
- inputs: {
4511
- dynamicInput: {
4512
- id: string;
4513
- };
4514
- };
4515
- };
4516
- };
4517
- };
4518
- };
4519
- dataType: {
4520
- id: string;
4521
- };
4522
- };
4523
- "op-execution-parallel": {
4524
- id: ExecutionOperations;
4525
- inputs: {
4526
- listOfActions: {
4527
- id: string;
4528
- dataType: {
4529
- id: string;
4530
- entity: {
4531
- id: string;
4532
- dataType: {
4533
- id: string;
4534
- };
4535
- inputs: {
4536
- dynamicInput: {
4537
- id: string;
4538
- };
4539
- };
4540
- };
4541
- };
4542
- };
4543
- };
4544
- dataType: {
4545
- id: string;
4546
- };
4547
- };
4548
4498
  "op-generate-random-bytes": {
4549
4499
  id: RandomnessOperations;
4550
4500
  inputs: {
@@ -11412,8 +11362,6 @@ export declare enum BaseValueDescriptorIds {
11412
11362
  BUILT_INT_OPERATIONS_IMPLEMENTATIONS__COMPARISON_PRIMITIVE_NOT_EQUAL: string;
11413
11363
  BUILT_INT_OPERATIONS_IMPLEMENTATIONS__HTTP_REQUEST: string;
11414
11364
  BUILT_INT_OPERATIONS_IMPLEMENTATIONS__VALIDATE_ENTITY: string;
11415
- BUILT_INT_OPERATIONS_IMPLEMENTATIONS__EXECUTE_SEQUENTIAL: string;
11416
- BUILT_INT_OPERATIONS_IMPLEMENTATIONS__EXECUTE_PARALLEL: string;
11417
11365
  BUILT_INT_OPERATIONS_IMPLEMENTATIONS__EXECUTE_WAIT: string;
11418
11366
  BUILT_INT_OPERATIONS_IMPLEMENTATIONS__LIST_JOIN: string;
11419
11367
  BUILT_INT_OPERATIONS_IMPLEMENTATIONS__LIST_SPLIT: string;
@@ -13015,8 +12963,6 @@ export declare enum BaseValueDescriptorIds {
13015
12963
  };
13016
12964
 
13017
12965
  export declare enum ExecutionOperations {
13018
- Parallel = "op-execution-parallel",
13019
- Sequential = "op-execution-sequential",
13020
12966
  Wait = "op-execution-wait"
13021
12967
  }
13022
12968
 
@@ -27542,22 +27488,6 @@ export declare enum BaseValueDescriptorIds {
27542
27488
  };
27543
27489
  }
27544
27490
 
27545
- export declare class OperationsImplementationsExecutionParallelModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
27546
- manifest: ExtensionManifest;
27547
- module: {
27548
- init: (contexts: (DefaultEditorContext | DefaultProjectLogicContext)[]) => void;
27549
- main: (entity: OperationState, _inputs: IDynamicValue[]) => Promise<IPrimitiveExecutionResult>;
27550
- };
27551
- }
27552
-
27553
- export declare class OperationsImplementationsExecutionSequentialModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
27554
- manifest: ExtensionManifest;
27555
- module: {
27556
- init: (contexts: (DefaultEditorContext | DefaultProjectLogicContext)[]) => void;
27557
- main: (entity: OperationState, _inputs: IDynamicValue[]) => Promise<IPrimitiveExecutionResult>;
27558
- };
27559
- }
27560
-
27561
27491
  export declare class OperationsImplementationsExecutionWaitModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
27562
27492
  manifest: ExtensionManifest;
27563
27493
  module: {
@@ -29921,39 +29851,6 @@ export declare enum BaseValueDescriptorIds {
29921
29851
 
29922
29852
  export declare function padStartList(list: unknown, targetLen: unknown, padValue: unknown): any[];
29923
29853
 
29924
- export declare class ParallelExecutionOperation extends ActionDescriptorState {
29925
- readonly id = ExecutionOperations.Parallel;
29926
- readonly name = ExecutionOperations.Parallel;
29927
- readonly description = "Programmatically execute a list of actions one after the other";
29928
- readonly version = "1";
29929
- readonly autoexecutable = true;
29930
- readonly type: EntityType.ActionDescriptor;
29931
- readonly inputs: ValueDescriptorState[];
29932
- readonly dataType: DataTypeState | null;
29933
- readonly error: ValueDescriptorState | null;
29934
- project: ProjectState;
29935
- constructor(parentProjectState: ProjectState);
29936
- }
29937
-
29938
- export declare const parallelExecutionOperation: IActionDescriptorTransfer;
29939
-
29940
- export declare const parallelExecutionOperationListOfFunctionsArgument: IValueDescriptorTransfer;
29941
-
29942
- export declare const parallelExecutionOperationListOfFunctionsArgumentDatatype: IDataTypeTransfer;
29943
-
29944
- export declare const parallelExecutionOperationListOfFunctionsBlueprint: IActionDescriptorTransfer;
29945
-
29946
- /** Blueprint output — new schema: list<any> with empty entity */
29947
- export declare const parallelExecutionOperationListOfFunctionsBlueprintDataType: IDataTypeTransfer;
29948
-
29949
- export declare const parallelExecutionOperationListOfFunctionsBlueprintDynamicInput: IValueDescriptorTransfer;
29950
-
29951
- export declare const parallelExecutionOperationListOfFunctionsBlueprintDynamicInputParentRef: IActionDescriptorReference;
29952
-
29953
- export declare const parallelExecutionOperationListOfFunctionsBlueprintParentRef: IDataTypeReference;
29954
-
29955
- export declare const parallelExecutionOperationResponseDataType: IDataTypeTransfer;
29956
-
29957
29854
  export declare const PARENT_AUTO_CALCULATION_FROM_CALLER_EXPLANATION = "If an explicit 'parent' isn't given for a callable entity, the scope will be auto-calculated to match the parent scope of the caller entity.\nIf the entity that should be the parent of a callable entity is unclear, you can always skip the 'parent' property and the system will automatically calculate the parent based on the caller entity.";
29958
29855
 
29959
29856
  export declare function parseDate(input: string): ISODateString;
@@ -32116,39 +32013,6 @@ export declare enum BaseValueDescriptorIds {
32116
32013
 
32117
32014
  export declare const sendMessageThreadTsInputDT: IDataTypeTransfer;
32118
32015
 
32119
- export declare class SequentialExecutionOperation extends ActionDescriptorState {
32120
- readonly id = ExecutionOperations.Sequential;
32121
- readonly name = ExecutionOperations.Sequential;
32122
- readonly description = "Programmatically execute a list of actions one after the other";
32123
- readonly version = "1";
32124
- readonly autoexecutable = true;
32125
- readonly type: EntityType.ActionDescriptor;
32126
- readonly inputs: ValueDescriptorState[];
32127
- readonly dataType: DataTypeState | null;
32128
- readonly error: ValueDescriptorState | null;
32129
- project: ProjectState;
32130
- constructor(parentProjectState: ProjectState);
32131
- }
32132
-
32133
- export declare const sequentialExecutionOperation: IActionDescriptorTransfer;
32134
-
32135
- export declare const sequentialExecutionOperationListOfFunctionsArgument: IValueDescriptorTransfer;
32136
-
32137
- export declare const sequentialExecutionOperationListOfFunctionsArgumentDatatype: IDataTypeTransfer;
32138
-
32139
- export declare const sequentialExecutionOperationListOfFunctionsBlueprint: IActionDescriptorTransfer;
32140
-
32141
- /** Blueprint output — new schema: any (entity empty), isList: null */
32142
- export declare const sequentialExecutionOperationListOfFunctionsBlueprintDataType: IDataTypeTransfer;
32143
-
32144
- export declare const sequentialExecutionOperationListOfFunctionsBlueprintDynamicInput: IValueDescriptorTransfer;
32145
-
32146
- export declare const sequentialExecutionOperationListOfFunctionsBlueprintDynamicInputParentRef: IActionDescriptorReference;
32147
-
32148
- export declare const sequentialExecutionOperationListOfFunctionsBlueprintParentRef: IDataTypeReference;
32149
-
32150
- export declare const sequentialExecutionOperationResponseDataType: IDataTypeTransfer;
32151
-
32152
32016
  export declare class ServerlessFunctionInfrastructureResource extends InfrastructureResource implements IServerlessFunctionInfrastructureResource {
32153
32017
  resourceType: InfrastructureResourceType.ServerlessFunction;
32154
32018
  owners: Map<EntityId, DefinitionEntityState>;