@elyx-code/project-logic-tree 0.0.7039 → 0.0.7041
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 +253 -253
- package/dist/index.d.ts +110 -7
- package/dist/index.js +26063 -25629
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1705,9 +1705,18 @@ export declare enum BaseValueDescriptorIds {
|
|
|
1705
1705
|
properties: {
|
|
1706
1706
|
computeName: {
|
|
1707
1707
|
id: string;
|
|
1708
|
+
dataType: {
|
|
1709
|
+
id: string;
|
|
1710
|
+
defaultValue: {
|
|
1711
|
+
id: string;
|
|
1712
|
+
};
|
|
1713
|
+
};
|
|
1708
1714
|
};
|
|
1709
1715
|
attachedVolumes: {
|
|
1710
1716
|
id: string;
|
|
1717
|
+
dataType: {
|
|
1718
|
+
id: string;
|
|
1719
|
+
};
|
|
1711
1720
|
};
|
|
1712
1721
|
};
|
|
1713
1722
|
methods: {};
|
|
@@ -1717,21 +1726,60 @@ export declare enum BaseValueDescriptorIds {
|
|
|
1717
1726
|
properties: {
|
|
1718
1727
|
computeSize: {
|
|
1719
1728
|
id: string;
|
|
1729
|
+
dataType: {
|
|
1730
|
+
id: string;
|
|
1731
|
+
defaultValue: {
|
|
1732
|
+
id: string;
|
|
1733
|
+
};
|
|
1734
|
+
};
|
|
1720
1735
|
};
|
|
1721
|
-
|
|
1736
|
+
minTasks: {
|
|
1722
1737
|
id: string;
|
|
1738
|
+
dataType: {
|
|
1739
|
+
id: string;
|
|
1740
|
+
defaultValue: {
|
|
1741
|
+
id: string;
|
|
1742
|
+
};
|
|
1743
|
+
};
|
|
1744
|
+
};
|
|
1745
|
+
maxTasks: {
|
|
1746
|
+
id: string;
|
|
1747
|
+
dataType: {
|
|
1748
|
+
id: string;
|
|
1749
|
+
defaultValue: {
|
|
1750
|
+
id: string;
|
|
1751
|
+
};
|
|
1752
|
+
};
|
|
1723
1753
|
};
|
|
1724
1754
|
imageSourceMode: {
|
|
1725
1755
|
id: string;
|
|
1756
|
+
dataType: {
|
|
1757
|
+
id: string;
|
|
1758
|
+
defaultValue: {
|
|
1759
|
+
id: string;
|
|
1760
|
+
};
|
|
1761
|
+
};
|
|
1726
1762
|
};
|
|
1727
1763
|
containerRegistryAuth: {
|
|
1728
1764
|
id: string;
|
|
1765
|
+
dataType: {
|
|
1766
|
+
id: string;
|
|
1767
|
+
};
|
|
1729
1768
|
};
|
|
1730
1769
|
advancedConfiguration: {
|
|
1731
1770
|
id: string;
|
|
1771
|
+
dataType: {
|
|
1772
|
+
id: string;
|
|
1773
|
+
};
|
|
1732
1774
|
};
|
|
1733
1775
|
imageUri: {
|
|
1734
1776
|
id: string;
|
|
1777
|
+
dataType: {
|
|
1778
|
+
id: string;
|
|
1779
|
+
defaultValue: {
|
|
1780
|
+
id: string;
|
|
1781
|
+
};
|
|
1782
|
+
};
|
|
1735
1783
|
};
|
|
1736
1784
|
};
|
|
1737
1785
|
methods: {};
|
|
@@ -10368,6 +10416,30 @@ export declare enum BaseValueDescriptorIds {
|
|
|
10368
10416
|
|
|
10369
10417
|
export declare const computeBuiltInBaseEntityRef: IBuiltInBaseEntityReference;
|
|
10370
10418
|
|
|
10419
|
+
export declare class ComputeEntity extends BuiltInBaseEntityState {
|
|
10420
|
+
initialData: IBuiltInBaseEntity | IBuiltInBaseEntityTransfer;
|
|
10421
|
+
readonly id: BaseEntityNames;
|
|
10422
|
+
readonly version: EntityVersion;
|
|
10423
|
+
readonly name: BaseEntityNames;
|
|
10424
|
+
readonly description: string | null;
|
|
10425
|
+
readonly type: EntityType.BuiltInBaseEntity;
|
|
10426
|
+
readonly abstract: boolean;
|
|
10427
|
+
readonly static: boolean;
|
|
10428
|
+
readonly properties: PropertyState[];
|
|
10429
|
+
readonly methods: ActionDescriptorState[];
|
|
10430
|
+
readonly abstractMethods: ActionDescriptorState[];
|
|
10431
|
+
readonly extends: BuiltInBaseEntityState | PrimitiveEntityState | null;
|
|
10432
|
+
errors: EntityError[];
|
|
10433
|
+
project: ProjectState;
|
|
10434
|
+
constructor(parentProjectState: ProjectState);
|
|
10435
|
+
}
|
|
10436
|
+
|
|
10437
|
+
export declare enum ComputeNameValidationErrorCodes {
|
|
10438
|
+
InvalidCharacters = "compute-name-invalid-characters",
|
|
10439
|
+
TooLong = "compute-name-too-long",
|
|
10440
|
+
Empty = "compute-name-empty"
|
|
10441
|
+
}
|
|
10442
|
+
|
|
10371
10443
|
export declare function concatLists(base: unknown, ...others: unknown[]): any[];
|
|
10372
10444
|
|
|
10373
10445
|
export declare enum ConditionDependencyField {
|
|
@@ -10573,12 +10645,6 @@ export declare enum BaseValueDescriptorIds {
|
|
|
10573
10645
|
|
|
10574
10646
|
export declare const containerComputeBuiltInBaseEntityAdvancedConfigurationPropertyRef: IPropertyReference;
|
|
10575
10647
|
|
|
10576
|
-
export declare const containerComputeBuiltInBaseEntityAutoScalingProperty: IPropertyTransfer;
|
|
10577
|
-
|
|
10578
|
-
export declare const containerComputeBuiltInBaseEntityAutoScalingPropertyDataTypeRef: IDataTypeReference;
|
|
10579
|
-
|
|
10580
|
-
export declare const containerComputeBuiltInBaseEntityAutoScalingPropertyRef: IPropertyReference;
|
|
10581
|
-
|
|
10582
10648
|
export declare const containerComputeBuiltInBaseEntityComputeSizeProperty: IPropertyTransfer;
|
|
10583
10649
|
|
|
10584
10650
|
export declare const containerComputeBuiltInBaseEntityComputeSizePropertyDataTypeRef: IDataTypeReference;
|
|
@@ -10603,8 +10669,45 @@ export declare enum BaseValueDescriptorIds {
|
|
|
10603
10669
|
|
|
10604
10670
|
export declare const containerComputeBuiltInBaseEntityImageUriPropertyRef: IPropertyReference;
|
|
10605
10671
|
|
|
10672
|
+
export declare const containerComputeBuiltInBaseEntityMaxTasksProperty: IPropertyTransfer;
|
|
10673
|
+
|
|
10674
|
+
export declare const containerComputeBuiltInBaseEntityMaxTasksPropertyDataTypeRef: IDataTypeReference;
|
|
10675
|
+
|
|
10676
|
+
export declare const containerComputeBuiltInBaseEntityMaxTasksPropertyRef: IPropertyReference;
|
|
10677
|
+
|
|
10678
|
+
export declare const containerComputeBuiltInBaseEntityMinTasksProperty: IPropertyTransfer;
|
|
10679
|
+
|
|
10680
|
+
export declare const containerComputeBuiltInBaseEntityMinTasksPropertyDataTypeRef: IDataTypeReference;
|
|
10681
|
+
|
|
10682
|
+
export declare const containerComputeBuiltInBaseEntityMinTasksPropertyRef: IPropertyReference;
|
|
10683
|
+
|
|
10606
10684
|
export declare const containerComputeBuiltInBaseEntityRef: IBuiltInBaseEntityReference;
|
|
10607
10685
|
|
|
10686
|
+
export declare class ContainerComputeEntity extends BuiltInBaseEntityState {
|
|
10687
|
+
initialData: IBuiltInBaseEntity | IBuiltInBaseEntityTransfer;
|
|
10688
|
+
readonly id: BaseEntityNames;
|
|
10689
|
+
readonly version: EntityVersion;
|
|
10690
|
+
readonly name: BaseEntityNames;
|
|
10691
|
+
readonly description: string | null;
|
|
10692
|
+
readonly type: EntityType.BuiltInBaseEntity;
|
|
10693
|
+
readonly abstract: boolean;
|
|
10694
|
+
readonly static: boolean;
|
|
10695
|
+
readonly properties: PropertyState[];
|
|
10696
|
+
readonly methods: ActionDescriptorState[];
|
|
10697
|
+
readonly abstractMethods: ActionDescriptorState[];
|
|
10698
|
+
readonly extends: BuiltInBaseEntityState | PrimitiveEntityState | null;
|
|
10699
|
+
errors: EntityError[];
|
|
10700
|
+
project: ProjectState;
|
|
10701
|
+
constructor(parentProjectState: ProjectState);
|
|
10702
|
+
}
|
|
10703
|
+
|
|
10704
|
+
export declare enum ContainerComputeValidationErrorCodes {
|
|
10705
|
+
InvalidImageUri = "container-compute-invalid-image-uri",
|
|
10706
|
+
InvalidMinTasks = "container-compute-invalid-min-tasks",
|
|
10707
|
+
InvalidMaxTasks = "container-compute-invalid-max-tasks",
|
|
10708
|
+
MaxTasksLessThanMinTasks = "container-compute-max-less-than-min"
|
|
10709
|
+
}
|
|
10710
|
+
|
|
10608
10711
|
export declare enum ContinueStatementDependencyField {
|
|
10609
10712
|
Parent = "continue-statement-parent-field",
|
|
10610
10713
|
DataTypeEntity = "continue-statement-data-type-entity-field",
|