@elyx-code/project-logic-tree 0.0.7052 → 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.
Files changed (4) hide show
  1. package/dist/index.cjs +133 -133
  2. package/dist/index.d.ts +43 -43
  3. package/dist/index.js +23513 -23453
  4. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -776,7 +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
+ SHARED_DRIVE_MOUNT_ENTITY = "BUILT_IN_SHARED_DRIVE_MOUNT_ENTITY",
780
780
  CONTAINER_AUTH_REGISTRY_CONNECTION = "BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_CONTAINER-REGISTRY_AUTH"
781
781
  }
782
782
 
@@ -1724,7 +1724,7 @@ export declare enum BaseValueDescriptorIds {
1724
1724
  properties: {};
1725
1725
  methods: {};
1726
1726
  };
1727
- BUILT_IN_VOLUME_MOUNT_ENTITY: {
1727
+ BUILT_IN_SHARED_DRIVE_MOUNT_ENTITY: {
1728
1728
  id: BaseEntityNames;
1729
1729
  properties: {
1730
1730
  sharedDrive: {
@@ -1757,7 +1757,7 @@ export declare enum BaseValueDescriptorIds {
1757
1757
  };
1758
1758
  };
1759
1759
  };
1760
- attachedVolumes: {
1760
+ attachedSharedDrives: {
1761
1761
  id: string;
1762
1762
  dataType: {
1763
1763
  id: string;
@@ -29805,6 +29805,46 @@ export declare enum BaseValueDescriptorIds {
29805
29805
 
29806
29806
  export declare const sharedDriveBaseEntity: IBuiltInBaseEntityTransfer;
29807
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
+
29808
29848
  export declare enum SharedEntityErrorCode {
29809
29849
  InvalidObjectStructure = "invalid-object-structure",
29810
29850
  NameNotUniqueInScope = "name-not-unique-in-scope",
@@ -33438,46 +33478,6 @@ export declare enum BaseValueDescriptorIds {
33438
33478
 
33439
33479
  export declare const voidPrototype: IPrimitiveEntity;
33440
33480
 
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
-
33481
33481
  export declare class WaitOperation extends ActionDescriptorState {
33482
33482
  readonly id: string;
33483
33483
  readonly name: string;