@elyx-code/project-logic-tree 0.0.7070 → 0.0.7073
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 +216 -216
- package/dist/index.d.ts +15 -3
- package/dist/index.js +11105 -10880
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -11,6 +11,8 @@ import { ForSystemTimeAsOfExpr } from 'sql-parser-cst';
|
|
|
11
11
|
import { FromClause } from 'sql-parser-cst';
|
|
12
12
|
import { IAWSTenantAccountDetails } from '@elyx-code/definitions';
|
|
13
13
|
import { IAWSTenantAccountInfrastructureResource } from '@elyx-code/definitions';
|
|
14
|
+
import { ICloudFileSystemBucketDetails } from '@elyx-code/definitions';
|
|
15
|
+
import { ICloudFileSystemBucketInfrastructureResource } from '@elyx-code/definitions';
|
|
14
16
|
import { ICloudHostedCodebaseDetails } from '@elyx-code/definitions';
|
|
15
17
|
import { ICloudHostedCodebaseInfrastructureResource } from '@elyx-code/definitions';
|
|
16
18
|
import { ICompiledLocalCodebaseDetails } from '@elyx-code/definitions';
|
|
@@ -10604,6 +10606,16 @@ export declare enum BaseValueDescriptorIds {
|
|
|
10604
10606
|
|
|
10605
10607
|
export declare const cloudFileSystemBucketBuiltInBaseEntity: IBuiltInBaseEntityTransfer;
|
|
10606
10608
|
|
|
10609
|
+
export declare class CloudFileSystemBucketInfrastructureResource extends InfrastructureResource implements ICloudFileSystemBucketInfrastructureResource {
|
|
10610
|
+
resourceType: InfrastructureResourceType.CloudFileSystemBucket;
|
|
10611
|
+
owners: Map<EntityId, DefinitionEntityState>;
|
|
10612
|
+
details: ICloudFileSystemBucketDetails | null;
|
|
10613
|
+
name: string;
|
|
10614
|
+
status: InfrastructureResourceStatus;
|
|
10615
|
+
constructor(publicationRun: PublicationRun, owners: DefinitionEntityState[], provider: CloudProviders);
|
|
10616
|
+
resolveDeterministicResourceId(): string;
|
|
10617
|
+
}
|
|
10618
|
+
|
|
10607
10619
|
export declare const cloudFileSystemCopyFileBucketInputDataTypeTransfer: IDataTypeTransfer;
|
|
10608
10620
|
|
|
10609
10621
|
export declare const cloudFileSystemCopyFileBucketInputTransfer: IValueDescriptorTransfer;
|
|
@@ -12911,7 +12923,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
12911
12923
|
get steps(): IDeploymentStepDefinition<IInfrastructureResource>[];
|
|
12912
12924
|
get cleanupSteps(): IDeploymentStepDefinition<IInfrastructureResource>[];
|
|
12913
12925
|
get editor(): IEditor;
|
|
12914
|
-
get explicitResources(): Map<string, IRelationalDatabaseInfrastructureResource | IHttpApiInfrastructureResource | IServerlessFunctionInfrastructureResource | IHttpEndpointInfrastructureResource | IContainerComputeInfrastructureResource>;
|
|
12926
|
+
get explicitResources(): Map<string, IRelationalDatabaseInfrastructureResource | IHttpApiInfrastructureResource | IServerlessFunctionInfrastructureResource | IHttpEndpointInfrastructureResource | IContainerComputeInfrastructureResource | ICloudFileSystemBucketInfrastructureResource>;
|
|
12915
12927
|
get implicitGlobalResources(): Map<InfrastructureResourceType.CompiledLocalCodebase | InfrastructureResourceType.CloudHostedCodebase | InfrastructureResourceType.AWSTenantAccount, ICloudHostedCodebaseInfrastructureResource | ICompiledLocalCodebaseInfrastructureResource | IAWSTenantAccountInfrastructureResource | null>;
|
|
12916
12928
|
get finalGlobalEvent(): ProjectPublicationEventName | null;
|
|
12917
12929
|
get finalStatus(): PublicationStatus.Success | PublicationStatus.Failed | PublicationStatus.UnrecoverableFailure | PublicationStatus.CleanedUp | null;
|
|
@@ -14117,7 +14129,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
14117
14129
|
Return = "return"
|
|
14118
14130
|
}
|
|
14119
14131
|
|
|
14120
|
-
export declare type ExplicitInfrastructureResource = RelationalDatabaseInfrastructureResource | HttpApiInfrastructureResource | ServerlessFunctionInfrastructureResource | HttpEndpointInfrastructureResource;
|
|
14132
|
+
export declare type ExplicitInfrastructureResource = RelationalDatabaseInfrastructureResource | HttpApiInfrastructureResource | ServerlessFunctionInfrastructureResource | HttpEndpointInfrastructureResource | CloudFileSystemBucketInfrastructureResource;
|
|
14121
14133
|
|
|
14122
14134
|
export declare class ExtensionContextBase<CT = ExtensionContextType> implements IExtensionContextBase {
|
|
14123
14135
|
readonly extensionsRegistry: ExtensionsRegistry;
|
|
@@ -21030,7 +21042,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
21030
21042
|
export declare interface IPublicationRun extends IPublication {
|
|
21031
21043
|
steps: IDeploymentStepDefinition<IInfrastructureResource>[];
|
|
21032
21044
|
editor: IEditor;
|
|
21033
|
-
explicitResources: Map<string, IRelationalDatabaseInfrastructureResource | IHttpApiInfrastructureResource | IServerlessFunctionInfrastructureResource | IHttpEndpointInfrastructureResource | IContainerComputeInfrastructureResource>;
|
|
21045
|
+
explicitResources: Map<string, IRelationalDatabaseInfrastructureResource | IHttpApiInfrastructureResource | IServerlessFunctionInfrastructureResource | IHttpEndpointInfrastructureResource | IContainerComputeInfrastructureResource | ICloudFileSystemBucketInfrastructureResource>;
|
|
21034
21046
|
implicitGlobalResources: Map<InfrastructureResourceType.CompiledLocalCodebase | InfrastructureResourceType.CloudHostedCodebase | InfrastructureResourceType.AWSTenantAccount, ICloudHostedCodebaseInfrastructureResource | ICompiledLocalCodebaseInfrastructureResource | IAWSTenantAccountInfrastructureResource | null>;
|
|
21035
21047
|
finalGlobalEvent: ProjectPublicationEventName | null;
|
|
21036
21048
|
finalStatus: PublicationStatus.Success | PublicationStatus.Failed | PublicationStatus.UnrecoverableFailure | PublicationStatus.CleanedUp | null;
|