@elyx-code/project-logic-tree 0.0.7071 → 0.0.7074
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 +231 -231
- package/dist/index.d.ts +74 -3
- package/dist/index.js +18762 -18266
- package/package.json +1 -1
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';
|
|
@@ -1034,6 +1036,18 @@ export declare enum BaseValueDescriptorIds {
|
|
|
1034
1036
|
|
|
1035
1037
|
export declare const bucketBuiltInBaseEntityAllowedOriginsPropertyRef: IPropertyReference;
|
|
1036
1038
|
|
|
1039
|
+
export declare const bucketBuiltInBaseEntityErrorDocumentProperty: IPropertyTransfer;
|
|
1040
|
+
|
|
1041
|
+
export declare const bucketBuiltInBaseEntityErrorDocumentPropertyDataTypeRef: IDataTypeReference;
|
|
1042
|
+
|
|
1043
|
+
export declare const bucketBuiltInBaseEntityErrorDocumentPropertyRef: IPropertyReference;
|
|
1044
|
+
|
|
1045
|
+
export declare const bucketBuiltInBaseEntityIndexDocumentProperty: IPropertyTransfer;
|
|
1046
|
+
|
|
1047
|
+
export declare const bucketBuiltInBaseEntityIndexDocumentPropertyDataTypeRef: IDataTypeReference;
|
|
1048
|
+
|
|
1049
|
+
export declare const bucketBuiltInBaseEntityIndexDocumentPropertyRef: IPropertyReference;
|
|
1050
|
+
|
|
1037
1051
|
export declare const bucketBuiltInBaseEntityPublicReadProperty: IPropertyTransfer;
|
|
1038
1052
|
|
|
1039
1053
|
export declare const bucketBuiltInBaseEntityPublicReadPropertyDataTypeRef: IDataTypeReference;
|
|
@@ -1042,6 +1056,18 @@ export declare enum BaseValueDescriptorIds {
|
|
|
1042
1056
|
|
|
1043
1057
|
export declare const bucketBuiltInBaseEntityRef: IBuiltInBaseEntityReference;
|
|
1044
1058
|
|
|
1059
|
+
export declare const bucketBuiltInBaseEntityRequireHttpsProperty: IPropertyTransfer;
|
|
1060
|
+
|
|
1061
|
+
export declare const bucketBuiltInBaseEntityRequireHttpsPropertyDataTypeRef: IDataTypeReference;
|
|
1062
|
+
|
|
1063
|
+
export declare const bucketBuiltInBaseEntityRequireHttpsPropertyRef: IPropertyReference;
|
|
1064
|
+
|
|
1065
|
+
export declare const bucketBuiltInBaseEntityWebsiteHostingEnabledProperty: IPropertyTransfer;
|
|
1066
|
+
|
|
1067
|
+
export declare const bucketBuiltInBaseEntityWebsiteHostingEnabledPropertyDataTypeRef: IDataTypeReference;
|
|
1068
|
+
|
|
1069
|
+
export declare const bucketBuiltInBaseEntityWebsiteHostingEnabledPropertyRef: IPropertyReference;
|
|
1070
|
+
|
|
1045
1071
|
/** Builds a compact JWT signed with HMAC (HS256/384/512). */
|
|
1046
1072
|
export declare function buildJwtHmac(payload: JwtPayload, secret: Bytes, { alg, includeIat, expiresInSeconds, notBeforeSeconds, issuer, subject, audience, jwtid, header, }?: BuildJwtHmacOptions): Promise<string>;
|
|
1047
1073
|
|
|
@@ -1140,6 +1166,18 @@ export declare enum BaseValueDescriptorIds {
|
|
|
1140
1166
|
allowedOrigins: {
|
|
1141
1167
|
id: string;
|
|
1142
1168
|
};
|
|
1169
|
+
websiteHostingEnabled: {
|
|
1170
|
+
id: string;
|
|
1171
|
+
};
|
|
1172
|
+
indexDocument: {
|
|
1173
|
+
id: string;
|
|
1174
|
+
};
|
|
1175
|
+
errorDocument: {
|
|
1176
|
+
id: string;
|
|
1177
|
+
};
|
|
1178
|
+
requireHttps: {
|
|
1179
|
+
id: string;
|
|
1180
|
+
};
|
|
1143
1181
|
};
|
|
1144
1182
|
methods: {};
|
|
1145
1183
|
};
|
|
@@ -10604,6 +10642,39 @@ export declare enum BaseValueDescriptorIds {
|
|
|
10604
10642
|
|
|
10605
10643
|
export declare const cloudFileSystemBucketBuiltInBaseEntity: IBuiltInBaseEntityTransfer;
|
|
10606
10644
|
|
|
10645
|
+
export declare enum CloudFileSystemBucketDocumentValidationErrorCodes {
|
|
10646
|
+
DocumentCannotStartWithSlash = "document-cannot-start-with-slash",
|
|
10647
|
+
DocumentContainsInvalidCharacters = "document-contains-invalid-characters"
|
|
10648
|
+
}
|
|
10649
|
+
|
|
10650
|
+
export declare class CloudFileSystemBucketEntity extends BuiltInBaseEntityState {
|
|
10651
|
+
initialData: IBuiltInBaseEntity | IBuiltInBaseEntityTransfer;
|
|
10652
|
+
readonly id: BaseEntityNames;
|
|
10653
|
+
readonly version: EntityVersion;
|
|
10654
|
+
readonly name: BaseEntityNames;
|
|
10655
|
+
readonly description: string | null;
|
|
10656
|
+
readonly type: EntityType.BuiltInBaseEntity;
|
|
10657
|
+
readonly abstract: boolean;
|
|
10658
|
+
readonly static: boolean;
|
|
10659
|
+
readonly properties: PropertyState[];
|
|
10660
|
+
readonly methods: ActionDescriptorState[];
|
|
10661
|
+
readonly abstractMethods: ActionDescriptorState[];
|
|
10662
|
+
readonly extends: BuiltInBaseEntityState | PrimitiveEntityState | null;
|
|
10663
|
+
errors: EntityError[];
|
|
10664
|
+
project: ProjectState;
|
|
10665
|
+
constructor(parentProjectState: ProjectState);
|
|
10666
|
+
}
|
|
10667
|
+
|
|
10668
|
+
export declare class CloudFileSystemBucketInfrastructureResource extends InfrastructureResource implements ICloudFileSystemBucketInfrastructureResource {
|
|
10669
|
+
resourceType: InfrastructureResourceType.CloudFileSystemBucket;
|
|
10670
|
+
owners: Map<EntityId, DefinitionEntityState>;
|
|
10671
|
+
details: ICloudFileSystemBucketDetails | null;
|
|
10672
|
+
name: string;
|
|
10673
|
+
status: InfrastructureResourceStatus;
|
|
10674
|
+
constructor(publicationRun: PublicationRun, owners: DefinitionEntityState[], provider: CloudProviders);
|
|
10675
|
+
resolveDeterministicResourceId(): string;
|
|
10676
|
+
}
|
|
10677
|
+
|
|
10607
10678
|
export declare const cloudFileSystemCopyFileBucketInputDataTypeTransfer: IDataTypeTransfer;
|
|
10608
10679
|
|
|
10609
10680
|
export declare const cloudFileSystemCopyFileBucketInputTransfer: IValueDescriptorTransfer;
|
|
@@ -12911,7 +12982,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
12911
12982
|
get steps(): IDeploymentStepDefinition<IInfrastructureResource>[];
|
|
12912
12983
|
get cleanupSteps(): IDeploymentStepDefinition<IInfrastructureResource>[];
|
|
12913
12984
|
get editor(): IEditor;
|
|
12914
|
-
get explicitResources(): Map<string, IRelationalDatabaseInfrastructureResource | IHttpApiInfrastructureResource | IServerlessFunctionInfrastructureResource | IHttpEndpointInfrastructureResource | IContainerComputeInfrastructureResource>;
|
|
12985
|
+
get explicitResources(): Map<string, IRelationalDatabaseInfrastructureResource | IHttpApiInfrastructureResource | IServerlessFunctionInfrastructureResource | IHttpEndpointInfrastructureResource | IContainerComputeInfrastructureResource | ICloudFileSystemBucketInfrastructureResource>;
|
|
12915
12986
|
get implicitGlobalResources(): Map<InfrastructureResourceType.CompiledLocalCodebase | InfrastructureResourceType.CloudHostedCodebase | InfrastructureResourceType.AWSTenantAccount, ICloudHostedCodebaseInfrastructureResource | ICompiledLocalCodebaseInfrastructureResource | IAWSTenantAccountInfrastructureResource | null>;
|
|
12916
12987
|
get finalGlobalEvent(): ProjectPublicationEventName | null;
|
|
12917
12988
|
get finalStatus(): PublicationStatus.Success | PublicationStatus.Failed | PublicationStatus.UnrecoverableFailure | PublicationStatus.CleanedUp | null;
|
|
@@ -14117,7 +14188,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
14117
14188
|
Return = "return"
|
|
14118
14189
|
}
|
|
14119
14190
|
|
|
14120
|
-
export declare type ExplicitInfrastructureResource = RelationalDatabaseInfrastructureResource | HttpApiInfrastructureResource | ServerlessFunctionInfrastructureResource | HttpEndpointInfrastructureResource;
|
|
14191
|
+
export declare type ExplicitInfrastructureResource = RelationalDatabaseInfrastructureResource | HttpApiInfrastructureResource | ServerlessFunctionInfrastructureResource | HttpEndpointInfrastructureResource | CloudFileSystemBucketInfrastructureResource;
|
|
14121
14192
|
|
|
14122
14193
|
export declare class ExtensionContextBase<CT = ExtensionContextType> implements IExtensionContextBase {
|
|
14123
14194
|
readonly extensionsRegistry: ExtensionsRegistry;
|
|
@@ -21030,7 +21101,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
21030
21101
|
export declare interface IPublicationRun extends IPublication {
|
|
21031
21102
|
steps: IDeploymentStepDefinition<IInfrastructureResource>[];
|
|
21032
21103
|
editor: IEditor;
|
|
21033
|
-
explicitResources: Map<string, IRelationalDatabaseInfrastructureResource | IHttpApiInfrastructureResource | IServerlessFunctionInfrastructureResource | IHttpEndpointInfrastructureResource | IContainerComputeInfrastructureResource>;
|
|
21104
|
+
explicitResources: Map<string, IRelationalDatabaseInfrastructureResource | IHttpApiInfrastructureResource | IServerlessFunctionInfrastructureResource | IHttpEndpointInfrastructureResource | IContainerComputeInfrastructureResource | ICloudFileSystemBucketInfrastructureResource>;
|
|
21034
21105
|
implicitGlobalResources: Map<InfrastructureResourceType.CompiledLocalCodebase | InfrastructureResourceType.CloudHostedCodebase | InfrastructureResourceType.AWSTenantAccount, ICloudHostedCodebaseInfrastructureResource | ICompiledLocalCodebaseInfrastructureResource | IAWSTenantAccountInfrastructureResource | null>;
|
|
21035
21106
|
finalGlobalEvent: ProjectPublicationEventName | null;
|
|
21036
21107
|
finalStatus: PublicationStatus.Success | PublicationStatus.Failed | PublicationStatus.UnrecoverableFailure | PublicationStatus.CleanedUp | null;
|