@elyx-code/project-logic-tree 0.0.7045 → 0.0.7046

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 +274 -274
  2. package/dist/index.d.ts +220 -123
  3. package/dist/index.js +39684 -39246
  4. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -15,6 +15,7 @@ import { ICloudHostedCodebaseDetails } from '@elyx-code/definitions';
15
15
  import { ICloudHostedCodebaseInfrastructureResource } from '@elyx-code/definitions';
16
16
  import { ICompiledLocalCodebaseDetails } from '@elyx-code/definitions';
17
17
  import { ICompiledLocalCodebaseInfrastructureResource } from '@elyx-code/definitions';
18
+ import { IContainerComputeInfrastructureResource } from '@elyx-code/definitions';
18
19
  import { IDeploymentStepDefinition } from '@elyx-code/definitions';
19
20
  import { IEventsBus } from '@elyx-code/common-ts-utils';
20
21
  import { IHttpApiDetails } from '@elyx-code/definitions';
@@ -374,12 +375,14 @@ export declare const airtableAuthExternalConnectionBuiltInBaseEntityIntegrationP
374
375
 
375
376
  export declare const airtableAuthExternalConnectionBuiltInBaseEntityIntegrationPropertyRef: IPropertyReference;
376
377
 
377
- export declare const ALL_BUILT_EXTERNAL_AUTH_PROVIDERS: IBuiltInBaseEntityTransfer[];
378
-
379
378
  export declare const ALL_BUILT_IN_BASE_ENTITIES: IBuiltInBaseEntityTransfer[];
380
379
 
380
+ export declare const ALL_BUILT_IN_COMPUTE_BASE_ENTITIES: IBuiltInBaseEntityTransfer[];
381
+
381
382
  export declare const ALL_BUILT_IN_CONDITION_ENTITIES: IActionDescriptorTransfer[];
382
383
 
384
+ export declare const ALL_BUILT_IN_EXTERNAL_AUTH_PROVIDERS: IBuiltInBaseEntityTransfer[];
385
+
383
386
  export declare const ALL_BUILT_IN_GLOBAL_EVENT_ENTITIES: IActionDescriptorTransfer[];
384
387
 
385
388
  export declare const ALL_BUILT_IN_LOOP_BODY_ENTITIES: IActionDescriptorTransfer[];
@@ -769,7 +772,10 @@ export declare enum BaseEntityNames {
769
772
  ATLASSIAN_AUTH_CONNECTION = "BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_ATLASSIAN_AUTH",
770
773
  JIRA_AUTH_CONNECTION = "BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_JIRA_AUTH",
771
774
  SQL_SSL_CONNECTION_CONFIG = "BUILT_IN_SQL_SSL_CONNECTION_CONFIG_ENTITY",
772
- SQL_ROOT_CONNECTION_CONFIG = "BUILT_IN_SQL_ROOT_CONNECTION_CONFIG_ENTITY"
775
+ SQL_ROOT_CONNECTION_CONFIG = "BUILT_IN_SQL_ROOT_CONNECTION_CONFIG_ENTITY",
776
+ COMPUTE_ENTITY = "BUILT_IN_COMPUTE_ENTITY",
777
+ CONTAINER_COMPUTE_ENTITY = "BUILT_IN_CONTAINER_COMPUTE_ENTITY",
778
+ SHARED_DRIVE_ENTITY = "BUILT_IN_SHARED_DRIVE_ENTITY"
773
779
  }
774
780
 
775
781
  export declare class BaseExtensionState implements IExtensionState {
@@ -1127,6 +1133,12 @@ export declare enum BaseValueDescriptorIds {
1127
1133
  id: string;
1128
1134
  };
1129
1135
  };
1136
+ computeTarget: {
1137
+ id: string;
1138
+ dataType: {
1139
+ id: string;
1140
+ };
1141
+ };
1130
1142
  };
1131
1143
  methods: {
1132
1144
  handler: {
@@ -1684,6 +1696,95 @@ export declare enum BaseValueDescriptorIds {
1684
1696
  };
1685
1697
  methods: {};
1686
1698
  };
1699
+ BUILT_IN_SHARED_DRIVE_ENTITY: {
1700
+ id: BaseEntityNames;
1701
+ properties: {};
1702
+ methods: {};
1703
+ };
1704
+ BUILT_IN_COMPUTE_ENTITY: {
1705
+ id: BaseEntityNames;
1706
+ properties: {
1707
+ computeName: {
1708
+ id: string;
1709
+ dataType: {
1710
+ id: string;
1711
+ defaultValue: {
1712
+ id: string;
1713
+ };
1714
+ };
1715
+ };
1716
+ attachedVolumes: {
1717
+ id: string;
1718
+ dataType: {
1719
+ id: string;
1720
+ };
1721
+ };
1722
+ };
1723
+ methods: {};
1724
+ };
1725
+ BUILT_IN_CONTAINER_COMPUTE_ENTITY: {
1726
+ id: BaseEntityNames;
1727
+ properties: {
1728
+ computeSize: {
1729
+ id: string;
1730
+ dataType: {
1731
+ id: string;
1732
+ defaultValue: {
1733
+ id: string;
1734
+ };
1735
+ };
1736
+ };
1737
+ minTasks: {
1738
+ id: string;
1739
+ dataType: {
1740
+ id: string;
1741
+ defaultValue: {
1742
+ id: string;
1743
+ };
1744
+ };
1745
+ };
1746
+ maxTasks: {
1747
+ id: string;
1748
+ dataType: {
1749
+ id: string;
1750
+ defaultValue: {
1751
+ id: string;
1752
+ };
1753
+ };
1754
+ };
1755
+ imageSourceMode: {
1756
+ id: string;
1757
+ dataType: {
1758
+ id: string;
1759
+ defaultValue: {
1760
+ id: string;
1761
+ };
1762
+ };
1763
+ };
1764
+ containerRegistryAuth: {
1765
+ id: string;
1766
+ dataType: {
1767
+ id: string;
1768
+ };
1769
+ };
1770
+ advancedConfiguration: {
1771
+ id: string;
1772
+ dataType: {
1773
+ id: string;
1774
+ };
1775
+ };
1776
+ imageUri: {
1777
+ id: string;
1778
+ dataType: {
1779
+ id: string;
1780
+ defaultValue: {
1781
+ id: string;
1782
+ };
1783
+ };
1784
+ };
1785
+ };
1786
+ methods: {};
1787
+ };
1687
1788
  };
1688
1789
  operation: {
1689
1790
  "op-string-join": {
@@ -9195,64 +9296,6 @@ export declare enum BaseValueDescriptorIds {
9195
9296
  id: string;
9196
9297
  };
9197
9298
  };
9198
- "op-values-merge-empty": {
9199
- id: ValuesOperations;
9200
- inputs: {
9201
- first: {
9202
- id: string;
9203
- dataType: {
9204
- id: string;
9205
- };
9206
- };
9207
- second: {
9208
- id: string;
9209
- dataType: {
9210
- id: string;
9211
- };
9212
- };
9213
- dynamicValue: {
9214
- id: string;
9215
- dataType: {
9216
- id: string;
9217
- };
9218
- };
9219
- };
9220
- dataType: {
9221
- id: string;
9222
- };
9223
- error: {
9224
- id: string;
9225
- };
9226
- };
9227
- "op-values-merge-falsy": {
9228
- id: ValuesOperations;
9229
- inputs: {
9230
- first: {
9231
- id: string;
9232
- dataType: {
9233
- id: string;
9234
- };
9235
- };
9236
- second: {
9237
- id: string;
9238
- dataType: {
9239
- id: string;
9240
- };
9241
- };
9242
- dynamicValue: {
9243
- id: string;
9244
- dataType: {
9245
- id: string;
9246
- };
9247
- };
9248
- };
9249
- dataType: {
9250
- id: string;
9251
- };
9252
- error: {
9253
- id: string;
9254
- };
9255
- };
9256
9299
  };
9257
9300
  loop: {
9258
9301
  "list-loop": {
@@ -10358,6 +10401,46 @@ export declare enum BaseValueDescriptorIds {
10358
10401
  resolveDeterministicResourceId(): string;
10359
10402
  }
10360
10403
 
10404
+ export declare const computeBuiltInBaseEntity: IBuiltInBaseEntityTransfer;
10405
+
10406
+ export declare const computeBuiltInBaseEntityAttachedVolumesProperty: IPropertyTransfer;
10407
+
10408
+ export declare const computeBuiltInBaseEntityAttachedVolumesPropertyDataTypeRef: IDataTypeReference;
10409
+
10410
+ export declare const computeBuiltInBaseEntityAttachedVolumesPropertyRef: IPropertyReference;
10411
+
10412
+ export declare const computeBuiltInBaseEntityNameProperty: IPropertyTransfer;
10413
+
10414
+ export declare const computeBuiltInBaseEntityNamePropertyDataTypeRef: IDataTypeReference;
10415
+
10416
+ export declare const computeBuiltInBaseEntityNamePropertyRef: IPropertyReference;
10417
+
10418
+ export declare const computeBuiltInBaseEntityRef: IBuiltInBaseEntityReference;
10419
+
10420
+ export declare class ComputeEntity extends BuiltInBaseEntityState {
10421
+ initialData: IBuiltInBaseEntity | IBuiltInBaseEntityTransfer;
10422
+ readonly id: BaseEntityNames;
10423
+ readonly version: EntityVersion;
10424
+ readonly name: BaseEntityNames;
10425
+ readonly description: string | null;
10426
+ readonly type: EntityType.BuiltInBaseEntity;
10427
+ readonly abstract: boolean;
10428
+ readonly static: boolean;
10429
+ readonly properties: PropertyState[];
10430
+ readonly methods: ActionDescriptorState[];
10431
+ readonly abstractMethods: ActionDescriptorState[];
10432
+ readonly extends: BuiltInBaseEntityState | PrimitiveEntityState | null;
10433
+ errors: EntityError[];
10434
+ project: ProjectState;
10435
+ constructor(parentProjectState: ProjectState);
10436
+ }
10437
+
10438
+ export declare enum ComputeNameValidationErrorCodes {
10439
+ InvalidCharacters = "compute-name-invalid-characters",
10440
+ TooLong = "compute-name-too-long",
10441
+ Empty = "compute-name-empty"
10442
+ }
10443
+
10361
10444
  export declare function concatLists(base: unknown, ...others: unknown[]): any[];
10362
10445
 
10363
10446
  export declare enum ConditionDependencyField {
@@ -10555,6 +10638,77 @@ export declare enum BaseValueDescriptorIds {
10555
10638
  /** Constant-time equality for two byte arrays (equal length required). */
10556
10639
  export declare function constantTimeEqual(a: Bytes, b: Bytes): boolean;
10557
10640
 
10641
+ export declare const containerComputeBuiltInBaseEntity: IBuiltInBaseEntityTransfer;
10642
+
10643
+ export declare const containerComputeBuiltInBaseEntityAdvancedConfigurationProperty: IPropertyTransfer;
10644
+
10645
+ export declare const containerComputeBuiltInBaseEntityAdvancedConfigurationPropertyDataTypeRef: IDataTypeReference;
10646
+
10647
+ export declare const containerComputeBuiltInBaseEntityAdvancedConfigurationPropertyRef: IPropertyReference;
10648
+
10649
+ export declare const containerComputeBuiltInBaseEntityComputeSizeProperty: IPropertyTransfer;
10650
+
10651
+ export declare const containerComputeBuiltInBaseEntityComputeSizePropertyDataTypeRef: IDataTypeReference;
10652
+
10653
+ export declare const containerComputeBuiltInBaseEntityComputeSizePropertyRef: IPropertyReference;
10654
+
10655
+ export declare const containerComputeBuiltInBaseEntityContainerRegistryAuthProperty: IPropertyTransfer;
10656
+
10657
+ export declare const containerComputeBuiltInBaseEntityContainerRegistryAuthPropertyDataTypeRef: IDataTypeReference;
10658
+
10659
+ export declare const containerComputeBuiltInBaseEntityContainerRegistryAuthPropertyRef: IPropertyReference;
10660
+
10661
+ export declare const containerComputeBuiltInBaseEntityImageSourceModeProperty: IPropertyTransfer;
10662
+
10663
+ export declare const containerComputeBuiltInBaseEntityImageSourceModePropertyDataTypeRef: IDataTypeReference;
10664
+
10665
+ export declare const containerComputeBuiltInBaseEntityImageSourceModePropertyRef: IPropertyReference;
10666
+
10667
+ export declare const containerComputeBuiltInBaseEntityImageUriProperty: IPropertyTransfer;
10668
+
10669
+ export declare const containerComputeBuiltInBaseEntityImageUriPropertyDataTypeRef: IDataTypeReference;
10670
+
10671
+ export declare const containerComputeBuiltInBaseEntityImageUriPropertyRef: IPropertyReference;
10672
+
10673
+ export declare const containerComputeBuiltInBaseEntityMaxTasksProperty: IPropertyTransfer;
10674
+
10675
+ export declare const containerComputeBuiltInBaseEntityMaxTasksPropertyDataTypeRef: IDataTypeReference;
10676
+
10677
+ export declare const containerComputeBuiltInBaseEntityMaxTasksPropertyRef: IPropertyReference;
10678
+
10679
+ export declare const containerComputeBuiltInBaseEntityMinTasksProperty: IPropertyTransfer;
10680
+
10681
+ export declare const containerComputeBuiltInBaseEntityMinTasksPropertyDataTypeRef: IDataTypeReference;
10682
+
10683
+ export declare const containerComputeBuiltInBaseEntityMinTasksPropertyRef: IPropertyReference;
10684
+
10685
+ export declare const containerComputeBuiltInBaseEntityRef: IBuiltInBaseEntityReference;
10686
+
10687
+ export declare class ContainerComputeEntity extends BuiltInBaseEntityState {
10688
+ initialData: IBuiltInBaseEntity | IBuiltInBaseEntityTransfer;
10689
+ readonly id: BaseEntityNames;
10690
+ readonly version: EntityVersion;
10691
+ readonly name: BaseEntityNames;
10692
+ readonly description: string | null;
10693
+ readonly type: EntityType.BuiltInBaseEntity;
10694
+ readonly abstract: boolean;
10695
+ readonly static: boolean;
10696
+ readonly properties: PropertyState[];
10697
+ readonly methods: ActionDescriptorState[];
10698
+ readonly abstractMethods: ActionDescriptorState[];
10699
+ readonly extends: BuiltInBaseEntityState | PrimitiveEntityState | null;
10700
+ errors: EntityError[];
10701
+ project: ProjectState;
10702
+ constructor(parentProjectState: ProjectState);
10703
+ }
10704
+
10705
+ export declare enum ContainerComputeValidationErrorCodes {
10706
+ InvalidImageUri = "container-compute-invalid-image-uri",
10707
+ InvalidMinTasks = "container-compute-invalid-min-tasks",
10708
+ InvalidMaxTasks = "container-compute-invalid-max-tasks",
10709
+ MaxTasksLessThanMinTasks = "container-compute-max-less-than-min"
10710
+ }
10711
+
10558
10712
  export declare enum ContinueStatementDependencyField {
10559
10713
  Parent = "continue-statement-parent-field",
10560
10714
  DataTypeEntity = "continue-statement-data-type-entity-field",
@@ -11736,8 +11890,6 @@ export declare enum BaseValueDescriptorIds {
11736
11890
  BUILT_IN_FUNCTION_IMPLEMENTATIONS__CREATE_PERSISTED_ENTITY: string;
11737
11891
  BUILT_IN_FUNCTION_IMPLEMENTATIONS__UPDATE_PERSISTED_ENTITY: string;
11738
11892
  BUILT_IN_FUNCTION_IMPLEMENTATIONS__DELETE_PERSISTED_ENTITY: string;
11739
- BUILT_INT_OPERATIONS_IMPLEMENTATIONS__VALUES_MERGE_EMPTY: string;
11740
- BUILT_INT_OPERATIONS_IMPLEMENTATIONS__VALUES_MERGE_FALSY: string;
11741
11893
  BUILT_INT_OPERATIONS_IMPLEMENTATIONS__COMPARISON_EMPTY: string;
11742
11894
  BUILT_INT_OPERATIONS_IMPLEMENTATIONS__COMPARISON_NOT_EMPTY: string;
11743
11895
  BUILT_INT_OPERATIONS_IMPLEMENTATIONS__COMPARISON_PRIMITIVE_EQUAL: string;
@@ -12215,7 +12367,7 @@ export declare enum BaseValueDescriptorIds {
12215
12367
  get status(): PublicationStatus;
12216
12368
  get steps(): IDeploymentStepDefinition<IInfrastructureResource>[];
12217
12369
  get editor(): IEditor;
12218
- get explicitResources(): Map<string, IRelationalDatabaseInfrastructureResource | IHttpApiInfrastructureResource | IServerlessFunctionInfrastructureResource | IHttpEndpointInfrastructureResource>;
12370
+ get explicitResources(): Map<string, IRelationalDatabaseInfrastructureResource | IHttpApiInfrastructureResource | IServerlessFunctionInfrastructureResource | IHttpEndpointInfrastructureResource | IContainerComputeInfrastructureResource>;
12219
12371
  get implicitGlobalResources(): Map<InfrastructureResourceType.CompiledLocalCodebase | InfrastructureResourceType.CloudHostedCodebase | InfrastructureResourceType.AWSTenantAccount, ICloudHostedCodebaseInfrastructureResource | ICompiledLocalCodebaseInfrastructureResource | IAWSTenantAccountInfrastructureResource | null>;
12220
12372
  get finalGlobalEvent(): ProjectPublicationEventName | null;
12221
12373
  get finalStatus(): PublicationStatus.Success | PublicationStatus.Failed | null;
@@ -20315,7 +20467,7 @@ export declare enum BaseValueDescriptorIds {
20315
20467
  export declare interface IPublicationRun extends IPublication {
20316
20468
  steps: IDeploymentStepDefinition<IInfrastructureResource>[];
20317
20469
  editor: IEditor;
20318
- explicitResources: Map<string, IRelationalDatabaseInfrastructureResource | IHttpApiInfrastructureResource | IServerlessFunctionInfrastructureResource | IHttpEndpointInfrastructureResource>;
20470
+ explicitResources: Map<string, IRelationalDatabaseInfrastructureResource | IHttpApiInfrastructureResource | IServerlessFunctionInfrastructureResource | IHttpEndpointInfrastructureResource | IContainerComputeInfrastructureResource>;
20319
20471
  implicitGlobalResources: Map<InfrastructureResourceType.CompiledLocalCodebase | InfrastructureResourceType.CloudHostedCodebase | InfrastructureResourceType.AWSTenantAccount, ICloudHostedCodebaseInfrastructureResource | ICompiledLocalCodebaseInfrastructureResource | IAWSTenantAccountInfrastructureResource | null>;
20320
20472
  finalGlobalEvent: ProjectPublicationEventName | null;
20321
20473
  finalStatus: PublicationStatus.Success | PublicationStatus.Failed | null;
@@ -22598,40 +22750,8 @@ export declare enum BaseValueDescriptorIds {
22598
22750
  exactDataType?: boolean;
22599
22751
  }): DefinitionEntityState;
22600
22752
 
22601
- export declare const mergeEmptyOperationDynamicArgument: IValueDescriptorTransfer;
22602
-
22603
- export declare const mergeEmptyOperationDynamicDataType: IDataTypeTransfer;
22604
-
22605
- export declare const mergeEmptyOperationError: IValueDescriptorTransfer;
22606
-
22607
- export declare const mergeEmptyOperationFirstArgument: IValueDescriptorTransfer;
22608
-
22609
- export declare const mergeEmptyOperationFirstDataType: IDataTypeTransfer;
22610
-
22611
- export declare const mergeEmptyOperationResponseDataType: IDataTypeTransfer;
22612
-
22613
- export declare const mergeEmptyOperationSecondArgument: IValueDescriptorTransfer;
22614
-
22615
- export declare const mergeEmptyOperationSecondDataType: IDataTypeTransfer;
22616
-
22617
22753
  export declare function mergeEntityErrorsList(oldErrors: EntityError[], newErrors: EntityError[]): EntityError[];
22618
22754
 
22619
- export declare const mergeFalsyOperationDynamicArgument: IValueDescriptorTransfer;
22620
-
22621
- export declare const mergeFalsyOperationDynamicDataType: IDataTypeTransfer;
22622
-
22623
- export declare const mergeFalsyOperationError: IValueDescriptorTransfer;
22624
-
22625
- export declare const mergeFalsyOperationFirstArgument: IValueDescriptorTransfer;
22626
-
22627
- export declare const mergeFalsyOperationFirstDataType: IDataTypeTransfer;
22628
-
22629
- export declare const mergeFalsyOperationResponseDataType: IDataTypeTransfer;
22630
-
22631
- export declare const mergeFalsyOperationSecondArgument: IValueDescriptorTransfer;
22632
-
22633
- export declare const mergeFalsyOperationSecondDataType: IDataTypeTransfer;
22634
-
22635
22755
  export declare function mergeListOfEntities(oldErrors: EntityState[], newErrors: EntityState[]): EntityState[];
22636
22756
 
22637
22757
  /**
@@ -26771,22 +26891,6 @@ export declare enum BaseValueDescriptorIds {
26771
26891
  };
26772
26892
  }
26773
26893
 
26774
- export declare class OperationsImplementationsValuesMergeEmptyModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
26775
- manifest: ExtensionManifest;
26776
- module: {
26777
- init: (contexts: (DefaultEditorContext | DefaultProjectLogicContext)[]) => void;
26778
- main: (_entity: OperationState, inputs: IDynamicValue[]) => Promise<IPrimitiveExecutionResult>;
26779
- };
26780
- }
26781
-
26782
- export declare class OperationsImplementationsValuesMergeFalsyModule extends BaseRegisteredExtension implements IRegisteredExtension<OperationsImplementation> {
26783
- manifest: ExtensionManifest;
26784
- module: {
26785
- init: (contexts: (DefaultEditorContext | DefaultProjectLogicContext)[]) => void;
26786
- main: (_entity: OperationState, inputs: IDynamicValue[]) => Promise<IPrimitiveExecutionResult>;
26787
- };
26788
- }
26789
-
26790
26894
  export declare class OperationState extends UserManagedVersionedState implements IOperation, UserManagedBaseState, UserManagedEntityStateTemplate, BaseCanvasDraggableState, ValueWritingEntityClass, CallableEntityClass, ChildEntityBaseClass, PassThroughCallableEntityClass {
26791
26895
  initialData: IOperation | IOperationTransfer;
26792
26896
  readonly id: EntityId;
@@ -26948,7 +27052,7 @@ export declare enum BaseValueDescriptorIds {
26948
27052
  getDataType(changeSet?: ChangeSet | null): DataTypeState | null;
26949
27053
  }
26950
27054
 
26951
- export declare type OperationTypes = NumberOperations | StringOperations | ListOperations | DateOperations | DataTypeOperations | JsonOperations | CryptoOperations | PasswordOperations | JwtOperations | ExecutionOperations | ObjectOperations | HTTPOperations | RandomnessOperations | ExternalIntegrationOperations | ComparisonOperations | ValuesOperations;
27055
+ export declare type OperationTypes = NumberOperations | StringOperations | ListOperations | DateOperations | DataTypeOperations | JsonOperations | CryptoOperations | PasswordOperations | JwtOperations | ExecutionOperations | ObjectOperations | HTTPOperations | RandomnessOperations | ExternalIntegrationOperations | ComparisonOperations;
26952
27056
 
26953
27057
  export declare type OperationTypesUnion = IOperation | IOperationTransfer | IOperationShallowTransfer | IOperationGenerationTarget;
26954
27058
 
@@ -32748,15 +32852,6 @@ export declare enum BaseValueDescriptorIds {
32748
32852
  toQuery(): string;
32749
32853
  }
32750
32854
 
32751
- export declare const VALUES_OPERATIONS: {
32752
- [valuesMergeEmptyOperation.id]: IActionDescriptorTransfer;
32753
- [valuesMergeFalsyOperation.id]: IActionDescriptorTransfer;
32754
- };
32755
-
32756
- export declare const valuesMergeEmptyOperation: IActionDescriptorTransfer;
32757
-
32758
- export declare const valuesMergeFalsyOperation: IActionDescriptorTransfer;
32759
-
32760
32855
  export declare enum ValuesOperations {
32761
32856
  MergeEmpty = "op-values-merge-empty",
32762
32857
  MergeFalsy = "op-values-merge-falsy"
@@ -33269,6 +33364,8 @@ export declare enum BaseValueDescriptorIds {
33269
33364
 
33270
33365
  export declare const voidPrototype: IPrimitiveEntity;
33271
33366
 
33367
+ export declare const volumeBuiltInBaseEntity: IBuiltInBaseEntityTransfer;
33368
+
33272
33369
  export declare class WaitOperation extends ActionDescriptorState {
33273
33370
  readonly id: string;
33274
33371
  readonly name: string;