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

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
+ SHARED_DRIVE_MOUNT_ENTITY = "BUILT_IN_SHARED_DRIVE_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_SHARED_DRIVE_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: {
@@ -1735,7 +1757,7 @@ export declare enum BaseValueDescriptorIds {
1735
1757
  };
1736
1758
  };
1737
1759
  };
1738
- attachedVolumes: {
1760
+ attachedSharedDrives: {
1739
1761
  id: string;
1740
1762
  dataType: {
1741
1763
  id: string;
@@ -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;
@@ -29779,6 +29805,46 @@ export declare enum BaseValueDescriptorIds {
29779
29805
 
29780
29806
  export declare const sharedDriveBaseEntity: IBuiltInBaseEntityTransfer;
29781
29807
 
29808
+ export declare const sharedDriveMountBuiltInBaseEntity: IBuiltInBaseEntityTransfer;
29809
+
29810
+ export declare const sharedDriveMountBuiltInBaseEntityPathProperty: IPropertyTransfer;
29811
+
29812
+ export declare const sharedDriveMountBuiltInBaseEntityPathPropertyDataTypeRef: IDataTypeReference;
29813
+
29814
+ export declare const sharedDriveMountBuiltInBaseEntityPathPropertyRef: IPropertyReference;
29815
+
29816
+ export declare const sharedDriveMountBuiltInBaseEntityRef: IBuiltInBaseEntityReference;
29817
+
29818
+ export declare const sharedDriveMountBuiltInBaseEntitySharedDriveProperty: IPropertyTransfer;
29819
+
29820
+ export declare const sharedDriveMountBuiltInBaseEntitySharedDrivePropertyDataTypeRef: IDataTypeReference;
29821
+
29822
+ export declare const sharedDriveMountBuiltInBaseEntitySharedDrivePropertyRef: IPropertyReference;
29823
+
29824
+ export declare class SharedDriveMountEntity extends BuiltInBaseEntityState {
29825
+ initialData: IBuiltInBaseEntity | IBuiltInBaseEntityTransfer;
29826
+ readonly id: BaseEntityNames;
29827
+ readonly version: EntityVersion;
29828
+ readonly name: BaseEntityNames;
29829
+ readonly description: string | null;
29830
+ readonly type: EntityType.BuiltInBaseEntity;
29831
+ readonly abstract: boolean;
29832
+ readonly static: boolean;
29833
+ readonly properties: PropertyState[];
29834
+ readonly methods: ActionDescriptorState[];
29835
+ readonly abstractMethods: ActionDescriptorState[];
29836
+ readonly extends: BuiltInBaseEntityState | PrimitiveEntityState | null;
29837
+ errors: EntityError[];
29838
+ project: ProjectState;
29839
+ constructor(parentProjectState: ProjectState);
29840
+ }
29841
+
29842
+ export declare enum SharedDriveMountPathValidationErrorCodes {
29843
+ PathContainsInvalidCharacters = "shared-drive-mount-path-invalid-characters",
29844
+ PathIsSystemFolder = "shared-drive-mount-path-is-system-folder",
29845
+ PathInvalidFormat = "shared-drive-mount-path-invalid-format"
29846
+ }
29847
+
29782
29848
  export declare enum SharedEntityErrorCode {
29783
29849
  InvalidObjectStructure = "invalid-object-structure",
29784
29850
  NameNotUniqueInScope = "name-not-unique-in-scope",