@elyx-code/project-logic-tree 0.0.7035 → 0.0.7037
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 +198 -198
- package/dist/index.d.ts +100 -1
- package/dist/index.js +32777 -32133
- 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": {
|
|
@@ -10300,6 +10347,22 @@ export declare enum BaseValueDescriptorIds {
|
|
|
10300
10347
|
resolveDeterministicResourceId(): string;
|
|
10301
10348
|
}
|
|
10302
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
|
+
|
|
10303
10366
|
export declare function concatLists(base: unknown, ...others: unknown[]): any[];
|
|
10304
10367
|
|
|
10305
10368
|
export declare enum ConditionDependencyField {
|
|
@@ -10497,6 +10560,40 @@ export declare enum BaseValueDescriptorIds {
|
|
|
10497
10560
|
/** Constant-time equality for two byte arrays (equal length required). */
|
|
10498
10561
|
export declare function constantTimeEqual(a: Bytes, b: Bytes): boolean;
|
|
10499
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
|
+
|
|
10500
10597
|
export declare enum ContinueStatementDependencyField {
|
|
10501
10598
|
Parent = "continue-statement-parent-field",
|
|
10502
10599
|
DataTypeEntity = "continue-statement-data-type-entity-field",
|
|
@@ -33152,6 +33249,8 @@ export declare enum BaseValueDescriptorIds {
|
|
|
33152
33249
|
|
|
33153
33250
|
export declare const voidPrototype: IPrimitiveEntity;
|
|
33154
33251
|
|
|
33252
|
+
export declare const volumeBuiltInBaseEntity: IBuiltInBaseEntityTransfer;
|
|
33253
|
+
|
|
33155
33254
|
export declare class WaitOperation extends ActionDescriptorState {
|
|
33156
33255
|
readonly id: string;
|
|
33157
33256
|
readonly name: string;
|