@elyx-code/project-logic-tree 0.0.7051 → 0.0.7052

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
@@ -776,6 +776,7 @@ export declare enum BaseEntityNames {
776
776
  COMPUTE_ENTITY = "BUILT_IN_COMPUTE_ENTITY",
777
777
  CONTAINER_COMPUTE_ENTITY = "BUILT_IN_CONTAINER_COMPUTE_ENTITY",
778
778
  SHARED_DRIVE_ENTITY = "BUILT_IN_SHARED_DRIVE_ENTITY",
779
+ VOLUME_MOUNT_ENTITY = "BUILT_IN_VOLUME_MOUNT_ENTITY",
779
780
  CONTAINER_AUTH_REGISTRY_CONNECTION = "BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_CONTAINER-REGISTRY_AUTH"
780
781
  }
781
782
 
@@ -1723,6 +1724,27 @@ export declare enum BaseValueDescriptorIds {
1723
1724
  properties: {};
1724
1725
  methods: {};
1725
1726
  };
1727
+ BUILT_IN_VOLUME_MOUNT_ENTITY: {
1728
+ id: BaseEntityNames;
1729
+ properties: {
1730
+ sharedDrive: {
1731
+ id: string;
1732
+ dataType: {
1733
+ id: string;
1734
+ };
1735
+ };
1736
+ path: {
1737
+ id: string;
1738
+ dataType: {
1739
+ id: string;
1740
+ defaultValue: {
1741
+ id: string;
1742
+ };
1743
+ };
1744
+ };
1745
+ };
1746
+ methods: {};
1747
+ };
1726
1748
  BUILT_IN_COMPUTE_ENTITY: {
1727
1749
  id: BaseEntityNames;
1728
1750
  properties: {
@@ -1789,10 +1811,13 @@ export declare enum BaseValueDescriptorIds {
1789
1811
  id: string;
1790
1812
  };
1791
1813
  };
1792
- advancedConfiguration: {
1814
+ ephemeralStorage: {
1793
1815
  id: string;
1794
1816
  dataType: {
1795
1817
  id: string;
1818
+ defaultValue: {
1819
+ id: string;
1820
+ };
1796
1821
  };
1797
1822
  };
1798
1823
  imageUri: {
@@ -10662,12 +10687,6 @@ export declare enum BaseValueDescriptorIds {
10662
10687
 
10663
10688
  export declare const containerComputeBuiltInBaseEntity: IBuiltInBaseEntityTransfer;
10664
10689
 
10665
- export declare const containerComputeBuiltInBaseEntityAdvancedConfigurationProperty: IPropertyTransfer;
10666
-
10667
- export declare const containerComputeBuiltInBaseEntityAdvancedConfigurationPropertyDataTypeRef: IDataTypeReference;
10668
-
10669
- export declare const containerComputeBuiltInBaseEntityAdvancedConfigurationPropertyRef: IPropertyReference;
10670
-
10671
10690
  export declare const containerComputeBuiltInBaseEntityComputeSizeProperty: IPropertyTransfer;
10672
10691
 
10673
10692
  export declare const containerComputeBuiltInBaseEntityComputeSizePropertyDataTypeRef: IDataTypeReference;
@@ -10680,6 +10699,12 @@ export declare enum BaseValueDescriptorIds {
10680
10699
 
10681
10700
  export declare const containerComputeBuiltInBaseEntityContainerRegistryAuthPropertyRef: IPropertyReference;
10682
10701
 
10702
+ export declare const containerComputeBuiltInBaseEntityEphemeralStorageProperty: IPropertyTransfer;
10703
+
10704
+ export declare const containerComputeBuiltInBaseEntityEphemeralStoragePropertyDataTypeRef: IDataTypeReference;
10705
+
10706
+ export declare const containerComputeBuiltInBaseEntityEphemeralStoragePropertyRef: IPropertyReference;
10707
+
10683
10708
  export declare const containerComputeBuiltInBaseEntityImageSourceModeProperty: IPropertyTransfer;
10684
10709
 
10685
10710
  export declare const containerComputeBuiltInBaseEntityImageSourceModePropertyDataTypeRef: IDataTypeReference;
@@ -10728,7 +10753,8 @@ export declare enum BaseValueDescriptorIds {
10728
10753
  InvalidImageUri = "container-compute-invalid-image-uri",
10729
10754
  InvalidMinTasks = "container-compute-invalid-min-tasks",
10730
10755
  InvalidMaxTasks = "container-compute-invalid-max-tasks",
10731
- MaxTasksLessThanMinTasks = "container-compute-max-less-than-min"
10756
+ MaxTasksLessThanMinTasks = "container-compute-max-less-than-min",
10757
+ InvalidEphemeralStorage = "container-compute-invalid-ephemeral-storage"
10732
10758
  }
10733
10759
 
10734
10760
  export declare const containerRegistryExternalConnectionBuiltInBaseEntity: IBuiltInBaseEntityTransfer;
@@ -33412,6 +33438,46 @@ export declare enum BaseValueDescriptorIds {
33412
33438
 
33413
33439
  export declare const voidPrototype: IPrimitiveEntity;
33414
33440
 
33441
+ export declare const volumeMountBuiltInBaseEntity: IBuiltInBaseEntityTransfer;
33442
+
33443
+ export declare const volumeMountBuiltInBaseEntityPathProperty: IPropertyTransfer;
33444
+
33445
+ export declare const volumeMountBuiltInBaseEntityPathPropertyDataTypeRef: IDataTypeReference;
33446
+
33447
+ export declare const volumeMountBuiltInBaseEntityPathPropertyRef: IPropertyReference;
33448
+
33449
+ export declare const volumeMountBuiltInBaseEntityRef: IBuiltInBaseEntityReference;
33450
+
33451
+ export declare const volumeMountBuiltInBaseEntitySharedDriveProperty: IPropertyTransfer;
33452
+
33453
+ export declare const volumeMountBuiltInBaseEntitySharedDrivePropertyDataTypeRef: IDataTypeReference;
33454
+
33455
+ export declare const volumeMountBuiltInBaseEntitySharedDrivePropertyRef: IPropertyReference;
33456
+
33457
+ export declare class VolumeMountEntity extends BuiltInBaseEntityState {
33458
+ initialData: IBuiltInBaseEntity | IBuiltInBaseEntityTransfer;
33459
+ readonly id: BaseEntityNames;
33460
+ readonly version: EntityVersion;
33461
+ readonly name: BaseEntityNames;
33462
+ readonly description: string | null;
33463
+ readonly type: EntityType.BuiltInBaseEntity;
33464
+ readonly abstract: boolean;
33465
+ readonly static: boolean;
33466
+ readonly properties: PropertyState[];
33467
+ readonly methods: ActionDescriptorState[];
33468
+ readonly abstractMethods: ActionDescriptorState[];
33469
+ readonly extends: BuiltInBaseEntityState | PrimitiveEntityState | null;
33470
+ errors: EntityError[];
33471
+ project: ProjectState;
33472
+ constructor(parentProjectState: ProjectState);
33473
+ }
33474
+
33475
+ export declare enum VolumeMountPathValidationErrorCodes {
33476
+ PathContainsInvalidCharacters = "volume-mount-path-invalid-characters",
33477
+ PathIsSystemFolder = "volume-mount-path-is-system-folder",
33478
+ PathInvalidFormat = "volume-mount-path-invalid-format"
33479
+ }
33480
+
33415
33481
  export declare class WaitOperation extends ActionDescriptorState {
33416
33482
  readonly id: string;
33417
33483
  readonly name: string;