@elyx-code/project-logic-tree 0.0.7052 → 0.0.7055
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.cjs +132 -132
- package/dist/index.d.ts +46 -44
- package/dist/index.js +23298 -23265
- 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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
1760
|
+
attachedSharedDrives: {
|
|
1761
1761
|
id: string;
|
|
1762
1762
|
dataType: {
|
|
1763
1763
|
id: string;
|
|
@@ -13260,7 +13260,9 @@ export declare enum BaseValueDescriptorIds {
|
|
|
13260
13260
|
CalledInParallelBranchToDeclaration = "called-in-parallel-branch-to-declaration",
|
|
13261
13261
|
HigherScopeThanDeclaration = "higher-scope-than-declaration",
|
|
13262
13262
|
ParentScopeRequiresReturnCurrentCatchesErrorWithNoCalls = "parent-scope-requires-return-current-catches-error-with-no-calls",
|
|
13263
|
-
ParentScopeRequiresReturnCurrentHasNoSuccessCalls = "parent-scope-requires-return-current-has-no-success-calls"
|
|
13263
|
+
ParentScopeRequiresReturnCurrentHasNoSuccessCalls = "parent-scope-requires-return-current-has-no-success-calls",
|
|
13264
|
+
EndpointPathConflict = "endpoint-path-conflict",
|
|
13265
|
+
SharedDriveMountPathConflict = "shared-drive-mount-path-conflict"
|
|
13264
13266
|
}
|
|
13265
13267
|
|
|
13266
13268
|
export declare type EntityPayloadUnion = BuiltInBaseEntityPayloadUnion | ProjectPayloadUnion | InstalledProjectPayloadUnion | DefinitionEntityPayloadUnion | FunctionDeclarationPayloadUnion | GlobalEventPayloadUnion | VariableDeclarationPayloadUnion | VariableInstancePayloadUnion | InputMapPayloadUnion | OutputMapPayloadUnion | ConditionPayloadUnion | OperationPayloadUnion | FunctionCallPayloadUnion | ArgumentDeclarationPayloadUnion | PrimitiveEntityPayloadUnion | DataTypePayloadUnion | PropertyPayloadUnion | ActionDescriptorPayloadUnion | ReturnStatementPayloadUnion | ContinueStatementPayloadUnion | BreakStatementPayloadUnion | LoopPayloadUnion | SearchPayloadUnion | ValueDescriptorPayloadUnion | InternalCallPayloadUnion | LiteralValuePayloadUnion;
|
|
@@ -29805,6 +29807,46 @@ export declare enum BaseValueDescriptorIds {
|
|
|
29805
29807
|
|
|
29806
29808
|
export declare const sharedDriveBaseEntity: IBuiltInBaseEntityTransfer;
|
|
29807
29809
|
|
|
29810
|
+
export declare const sharedDriveMountBuiltInBaseEntity: IBuiltInBaseEntityTransfer;
|
|
29811
|
+
|
|
29812
|
+
export declare const sharedDriveMountBuiltInBaseEntityPathProperty: IPropertyTransfer;
|
|
29813
|
+
|
|
29814
|
+
export declare const sharedDriveMountBuiltInBaseEntityPathPropertyDataTypeRef: IDataTypeReference;
|
|
29815
|
+
|
|
29816
|
+
export declare const sharedDriveMountBuiltInBaseEntityPathPropertyRef: IPropertyReference;
|
|
29817
|
+
|
|
29818
|
+
export declare const sharedDriveMountBuiltInBaseEntityRef: IBuiltInBaseEntityReference;
|
|
29819
|
+
|
|
29820
|
+
export declare const sharedDriveMountBuiltInBaseEntitySharedDriveProperty: IPropertyTransfer;
|
|
29821
|
+
|
|
29822
|
+
export declare const sharedDriveMountBuiltInBaseEntitySharedDrivePropertyDataTypeRef: IDataTypeReference;
|
|
29823
|
+
|
|
29824
|
+
export declare const sharedDriveMountBuiltInBaseEntitySharedDrivePropertyRef: IPropertyReference;
|
|
29825
|
+
|
|
29826
|
+
export declare class SharedDriveMountEntity extends BuiltInBaseEntityState {
|
|
29827
|
+
initialData: IBuiltInBaseEntity | IBuiltInBaseEntityTransfer;
|
|
29828
|
+
readonly id: BaseEntityNames;
|
|
29829
|
+
readonly version: EntityVersion;
|
|
29830
|
+
readonly name: BaseEntityNames;
|
|
29831
|
+
readonly description: string | null;
|
|
29832
|
+
readonly type: EntityType.BuiltInBaseEntity;
|
|
29833
|
+
readonly abstract: boolean;
|
|
29834
|
+
readonly static: boolean;
|
|
29835
|
+
readonly properties: PropertyState[];
|
|
29836
|
+
readonly methods: ActionDescriptorState[];
|
|
29837
|
+
readonly abstractMethods: ActionDescriptorState[];
|
|
29838
|
+
readonly extends: BuiltInBaseEntityState | PrimitiveEntityState | null;
|
|
29839
|
+
errors: EntityError[];
|
|
29840
|
+
project: ProjectState;
|
|
29841
|
+
constructor(parentProjectState: ProjectState);
|
|
29842
|
+
}
|
|
29843
|
+
|
|
29844
|
+
export declare enum SharedDriveMountPathValidationErrorCodes {
|
|
29845
|
+
PathContainsInvalidCharacters = "shared-drive-mount-path-invalid-characters",
|
|
29846
|
+
PathIsSystemFolder = "shared-drive-mount-path-is-system-folder",
|
|
29847
|
+
PathInvalidFormat = "shared-drive-mount-path-invalid-format"
|
|
29848
|
+
}
|
|
29849
|
+
|
|
29808
29850
|
export declare enum SharedEntityErrorCode {
|
|
29809
29851
|
InvalidObjectStructure = "invalid-object-structure",
|
|
29810
29852
|
NameNotUniqueInScope = "name-not-unique-in-scope",
|
|
@@ -33438,46 +33480,6 @@ export declare enum BaseValueDescriptorIds {
|
|
|
33438
33480
|
|
|
33439
33481
|
export declare const voidPrototype: IPrimitiveEntity;
|
|
33440
33482
|
|
|
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
33483
|
export declare class WaitOperation extends ActionDescriptorState {
|
|
33482
33484
|
readonly id: string;
|
|
33483
33485
|
readonly name: string;
|