@elyx-code/project-logic-tree 0.0.7034 → 0.0.7036
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 +264 -264
- package/dist/index.d.ts +109 -4
- package/dist/index.js +45585 -44948
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -769,7 +769,10 @@ export declare enum BaseEntityNames {
|
|
|
769
769
|
ATLASSIAN_AUTH_CONNECTION = "BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_ATLASSIAN_AUTH",
|
|
770
770
|
JIRA_AUTH_CONNECTION = "BUILT_IN_EXTERNAL_INTEGRATION_CONNECTION_JIRA_AUTH",
|
|
771
771
|
SQL_SSL_CONNECTION_CONFIG = "BUILT_IN_SQL_SSL_CONNECTION_CONFIG_ENTITY",
|
|
772
|
-
SQL_ROOT_CONNECTION_CONFIG = "BUILT_IN_SQL_ROOT_CONNECTION_CONFIG_ENTITY"
|
|
772
|
+
SQL_ROOT_CONNECTION_CONFIG = "BUILT_IN_SQL_ROOT_CONNECTION_CONFIG_ENTITY",
|
|
773
|
+
COMPUTE_ENTITY = "BUILT_IN_COMPUTE_ENTITY",
|
|
774
|
+
CONTAINER_COMPUTE_ENTITY = "BUILT_IN_CONTAINER_COMPUTE_ENTITY",
|
|
775
|
+
VOLUME_ENTITY = "BUILT_IN_VOLUME_ENTITY"
|
|
773
776
|
}
|
|
774
777
|
|
|
775
778
|
export declare class BaseExtensionState implements IExtensionState {
|
|
@@ -1127,6 +1130,12 @@ export declare enum BaseValueDescriptorIds {
|
|
|
1127
1130
|
id: string;
|
|
1128
1131
|
};
|
|
1129
1132
|
};
|
|
1133
|
+
computeTarget: {
|
|
1134
|
+
id: string;
|
|
1135
|
+
dataType: {
|
|
1136
|
+
id: string;
|
|
1137
|
+
};
|
|
1138
|
+
};
|
|
1130
1139
|
};
|
|
1131
1140
|
methods: {
|
|
1132
1141
|
handler: {
|
|
@@ -1684,6 +1693,44 @@ export declare enum BaseValueDescriptorIds {
|
|
|
1684
1693
|
};
|
|
1685
1694
|
methods: {};
|
|
1686
1695
|
};
|
|
1696
|
+
BUILT_IN_VOLUME_ENTITY: {
|
|
1697
|
+
id: BaseEntityNames;
|
|
1698
|
+
properties: {};
|
|
1699
|
+
methods: {};
|
|
1700
|
+
};
|
|
1701
|
+
BUILT_IN_COMPUTE_ENTITY: {
|
|
1702
|
+
id: BaseEntityNames;
|
|
1703
|
+
properties: {
|
|
1704
|
+
computeName: {
|
|
1705
|
+
id: string;
|
|
1706
|
+
};
|
|
1707
|
+
attachedVolumes: {
|
|
1708
|
+
id: string;
|
|
1709
|
+
};
|
|
1710
|
+
};
|
|
1711
|
+
methods: {};
|
|
1712
|
+
};
|
|
1713
|
+
BUILT_IN_CONTAINER_COMPUTE_ENTITY: {
|
|
1714
|
+
id: BaseEntityNames;
|
|
1715
|
+
properties: {
|
|
1716
|
+
computeSize: {
|
|
1717
|
+
id: string;
|
|
1718
|
+
};
|
|
1719
|
+
autoScaling: {
|
|
1720
|
+
id: string;
|
|
1721
|
+
};
|
|
1722
|
+
imageSourceMode: {
|
|
1723
|
+
id: string;
|
|
1724
|
+
};
|
|
1725
|
+
containerRegistryAuth: {
|
|
1726
|
+
id: string;
|
|
1727
|
+
};
|
|
1728
|
+
advancedConfiguration: {
|
|
1729
|
+
id: string;
|
|
1730
|
+
};
|
|
1731
|
+
};
|
|
1732
|
+
methods: {};
|
|
1733
|
+
};
|
|
1687
1734
|
};
|
|
1688
1735
|
operation: {
|
|
1689
1736
|
"op-string-join": {
|
|
@@ -9931,12 +9978,16 @@ export declare enum BaseValueDescriptorIds {
|
|
|
9931
9978
|
* Checks wether two sets of implementable entities like properties or methods, presumably from two different entities, have overlap
|
|
9932
9979
|
* This means that entities on both lists have have the same name or implement the same base entity/descriptor
|
|
9933
9980
|
*/
|
|
9934
|
-
export declare function checkImplementationsOverlap(higherEntities: PropertyState[], baseEntities: PropertyState[], implementationErrorCode: SharedEntityErrorCode.PropertyOverwritesBasePropertyWithSameImplementation | SharedEntityErrorCode.PropertyOverwritesOtherImplementedEntitysPropertyWithSameImplementation | SharedEntityErrorCode.PropertyOverwritesOtherExtendedEntitysPropertyWithSameImplementation | SharedEntityErrorCode.PropertyOverwritesOtherSiblingWithSameImplementation, nameErrorCode: SharedEntityErrorCode.PropertyOverwritesBasePropertyWithSameName | SharedEntityErrorCode.PropertyOverwritesOtherImplementedEntitysPropertyWithSameName | SharedEntityErrorCode.PropertyOverwritesOtherExtendedEntitysPropertyWithSameName | SharedEntityErrorCode.PropertyOverwritesOtherSiblingWithSameName
|
|
9981
|
+
export declare function checkImplementationsOverlap(higherEntities: PropertyState[], baseEntities: PropertyState[], implementationErrorCode: SharedEntityErrorCode.PropertyOverwritesBasePropertyWithSameImplementation | SharedEntityErrorCode.PropertyOverwritesOtherImplementedEntitysPropertyWithSameImplementation | SharedEntityErrorCode.PropertyOverwritesOtherExtendedEntitysPropertyWithSameImplementation | SharedEntityErrorCode.PropertyOverwritesOtherSiblingWithSameImplementation, nameErrorCode: SharedEntityErrorCode.PropertyOverwritesBasePropertyWithSameName | SharedEntityErrorCode.PropertyOverwritesOtherImplementedEntitysPropertyWithSameName | SharedEntityErrorCode.PropertyOverwritesOtherExtendedEntitysPropertyWithSameName | SharedEntityErrorCode.PropertyOverwritesOtherSiblingWithSameName, options?: {
|
|
9982
|
+
ignoreImplementationMatch?: boolean;
|
|
9983
|
+
}): {
|
|
9935
9984
|
errors: EntityError[];
|
|
9936
9985
|
overlap: boolean;
|
|
9937
9986
|
};
|
|
9938
9987
|
|
|
9939
|
-
export declare function checkImplementationsOverlap(higherEntities: (FunctionDeclarationState | ActionDescriptorState)[], baseEntities: (FunctionDeclarationState | ActionDescriptorState)[], implementationErrorCode: SharedEntityErrorCode.MethodOverwritesBaseMethodWithSameImplementation | SharedEntityErrorCode.MethodOverwritesOtherImplementedEntitysMethodWithSameImplementation | SharedEntityErrorCode.MethodOverwritesOtherExtendedEntitysMethodWithSameImplementation | SharedEntityErrorCode.MethodOverwritesOtherSiblingWithSameImplementation, nameErrorCode: SharedEntityErrorCode.MethodOverwritesBaseMethodWithSameName | SharedEntityErrorCode.MethodOverwritesOtherImplementedEntitysMethodWithSameName | SharedEntityErrorCode.MethodOverwritesOtherExtendedEntitysMethodWithSameName | SharedEntityErrorCode.MethodOverwritesOtherSiblingWithSameName
|
|
9988
|
+
export declare function checkImplementationsOverlap(higherEntities: (FunctionDeclarationState | ActionDescriptorState)[], baseEntities: (FunctionDeclarationState | ActionDescriptorState)[], implementationErrorCode: SharedEntityErrorCode.MethodOverwritesBaseMethodWithSameImplementation | SharedEntityErrorCode.MethodOverwritesOtherImplementedEntitysMethodWithSameImplementation | SharedEntityErrorCode.MethodOverwritesOtherExtendedEntitysMethodWithSameImplementation | SharedEntityErrorCode.MethodOverwritesOtherSiblingWithSameImplementation, nameErrorCode: SharedEntityErrorCode.MethodOverwritesBaseMethodWithSameName | SharedEntityErrorCode.MethodOverwritesOtherImplementedEntitysMethodWithSameName | SharedEntityErrorCode.MethodOverwritesOtherExtendedEntitysMethodWithSameName | SharedEntityErrorCode.MethodOverwritesOtherSiblingWithSameName, options?: {
|
|
9989
|
+
ignoreImplementationMatch?: boolean;
|
|
9990
|
+
}): {
|
|
9940
9991
|
errors: EntityError[];
|
|
9941
9992
|
overlap: boolean;
|
|
9942
9993
|
};
|
|
@@ -10296,6 +10347,22 @@ export declare enum BaseValueDescriptorIds {
|
|
|
10296
10347
|
resolveDeterministicResourceId(): string;
|
|
10297
10348
|
}
|
|
10298
10349
|
|
|
10350
|
+
export declare const computeBuiltInBaseEntity: IBuiltInBaseEntityTransfer;
|
|
10351
|
+
|
|
10352
|
+
export declare const computeBuiltInBaseEntityAttachedVolumesProperty: IPropertyTransfer;
|
|
10353
|
+
|
|
10354
|
+
export declare const computeBuiltInBaseEntityAttachedVolumesPropertyDataTypeRef: IDataTypeReference;
|
|
10355
|
+
|
|
10356
|
+
export declare const computeBuiltInBaseEntityAttachedVolumesPropertyRef: IPropertyReference;
|
|
10357
|
+
|
|
10358
|
+
export declare const computeBuiltInBaseEntityNameProperty: IPropertyTransfer;
|
|
10359
|
+
|
|
10360
|
+
export declare const computeBuiltInBaseEntityNamePropertyDataTypeRef: IDataTypeReference;
|
|
10361
|
+
|
|
10362
|
+
export declare const computeBuiltInBaseEntityNamePropertyRef: IPropertyReference;
|
|
10363
|
+
|
|
10364
|
+
export declare const computeBuiltInBaseEntityRef: IBuiltInBaseEntityReference;
|
|
10365
|
+
|
|
10299
10366
|
export declare function concatLists(base: unknown, ...others: unknown[]): any[];
|
|
10300
10367
|
|
|
10301
10368
|
export declare enum ConditionDependencyField {
|
|
@@ -10493,6 +10560,40 @@ export declare enum BaseValueDescriptorIds {
|
|
|
10493
10560
|
/** Constant-time equality for two byte arrays (equal length required). */
|
|
10494
10561
|
export declare function constantTimeEqual(a: Bytes, b: Bytes): boolean;
|
|
10495
10562
|
|
|
10563
|
+
export declare const containerComputeBuiltInBaseEntity: IBuiltInBaseEntityTransfer;
|
|
10564
|
+
|
|
10565
|
+
export declare const containerComputeBuiltInBaseEntityAdvancedConfigurationProperty: IPropertyTransfer;
|
|
10566
|
+
|
|
10567
|
+
export declare const containerComputeBuiltInBaseEntityAdvancedConfigurationPropertyDataTypeRef: IDataTypeReference;
|
|
10568
|
+
|
|
10569
|
+
export declare const containerComputeBuiltInBaseEntityAdvancedConfigurationPropertyRef: IPropertyReference;
|
|
10570
|
+
|
|
10571
|
+
export declare const containerComputeBuiltInBaseEntityAutoScalingProperty: IPropertyTransfer;
|
|
10572
|
+
|
|
10573
|
+
export declare const containerComputeBuiltInBaseEntityAutoScalingPropertyDataTypeRef: IDataTypeReference;
|
|
10574
|
+
|
|
10575
|
+
export declare const containerComputeBuiltInBaseEntityAutoScalingPropertyRef: IPropertyReference;
|
|
10576
|
+
|
|
10577
|
+
export declare const containerComputeBuiltInBaseEntityComputeSizeProperty: IPropertyTransfer;
|
|
10578
|
+
|
|
10579
|
+
export declare const containerComputeBuiltInBaseEntityComputeSizePropertyDataTypeRef: IDataTypeReference;
|
|
10580
|
+
|
|
10581
|
+
export declare const containerComputeBuiltInBaseEntityComputeSizePropertyRef: IPropertyReference;
|
|
10582
|
+
|
|
10583
|
+
export declare const containerComputeBuiltInBaseEntityContainerRegistryAuthProperty: IPropertyTransfer;
|
|
10584
|
+
|
|
10585
|
+
export declare const containerComputeBuiltInBaseEntityContainerRegistryAuthPropertyDataTypeRef: IDataTypeReference;
|
|
10586
|
+
|
|
10587
|
+
export declare const containerComputeBuiltInBaseEntityContainerRegistryAuthPropertyRef: IPropertyReference;
|
|
10588
|
+
|
|
10589
|
+
export declare const containerComputeBuiltInBaseEntityImageSourceModeProperty: IPropertyTransfer;
|
|
10590
|
+
|
|
10591
|
+
export declare const containerComputeBuiltInBaseEntityImageSourceModePropertyDataTypeRef: IDataTypeReference;
|
|
10592
|
+
|
|
10593
|
+
export declare const containerComputeBuiltInBaseEntityImageSourceModePropertyRef: IPropertyReference;
|
|
10594
|
+
|
|
10595
|
+
export declare const containerComputeBuiltInBaseEntityRef: IBuiltInBaseEntityReference;
|
|
10596
|
+
|
|
10496
10597
|
export declare enum ContinueStatementDependencyField {
|
|
10497
10598
|
Parent = "continue-statement-parent-field",
|
|
10498
10599
|
DataTypeEntity = "continue-statement-data-type-entity-field",
|
|
@@ -28535,7 +28636,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
28535
28636
|
|
|
28536
28637
|
export declare function resolveOutputMapValue(entity: OutputMapState, context: IValueResolutionContext, onlyDefault?: boolean): IDynamicValue | null;
|
|
28537
28638
|
|
|
28538
|
-
export declare function resolvePassThroughCallableValue(entity: OperationState | InternalCallState | FunctionCallState | SearchState, context: IValueResolutionContext, onlyDefault?: boolean): IDynamicValue | null;
|
|
28639
|
+
export declare function resolvePassThroughCallableValue(entity: LoopState | OperationState | InternalCallState | FunctionCallState | SearchState, context: IValueResolutionContext, onlyDefault?: boolean): IDynamicValue | null;
|
|
28539
28640
|
|
|
28540
28641
|
export declare function resolvePersistedDefinitionEntityDatabaseEntity(entity: DefinitionEntityState): DefinitionEntityState | null;
|
|
28541
28642
|
|
|
@@ -33148,6 +33249,10 @@ export declare enum BaseValueDescriptorIds {
|
|
|
33148
33249
|
|
|
33149
33250
|
export declare const voidPrototype: IPrimitiveEntity;
|
|
33150
33251
|
|
|
33252
|
+
export declare const volumeBuiltInBaseEntity: IBuiltInBaseEntityTransfer;
|
|
33253
|
+
|
|
33254
|
+
export declare const volumeBuiltInBaseEntityRef: IBuiltInBaseEntityReference;
|
|
33255
|
+
|
|
33151
33256
|
export declare class WaitOperation extends ActionDescriptorState {
|
|
33152
33257
|
readonly id: string;
|
|
33153
33258
|
readonly name: string;
|