@elyx-code/project-logic-tree 0.0.7067 → 0.0.7069
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.d.ts +3 -3
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -12485,7 +12485,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
12485
12485
|
get explicitResources(): Map<string, IRelationalDatabaseInfrastructureResource | IHttpApiInfrastructureResource | IServerlessFunctionInfrastructureResource | IHttpEndpointInfrastructureResource | IContainerComputeInfrastructureResource>;
|
|
12486
12486
|
get implicitGlobalResources(): Map<InfrastructureResourceType.CompiledLocalCodebase | InfrastructureResourceType.CloudHostedCodebase | InfrastructureResourceType.AWSTenantAccount, ICloudHostedCodebaseInfrastructureResource | ICompiledLocalCodebaseInfrastructureResource | IAWSTenantAccountInfrastructureResource | null>;
|
|
12487
12487
|
get finalGlobalEvent(): ProjectPublicationEventName | null;
|
|
12488
|
-
get finalStatus(): PublicationStatus.Success | PublicationStatus.Failed | PublicationStatus.UnrecoverableFailure | null;
|
|
12488
|
+
get finalStatus(): PublicationStatus.Success | PublicationStatus.Failed | PublicationStatus.UnrecoverableFailure | PublicationStatus.CleanedUp | null;
|
|
12489
12489
|
}
|
|
12490
12490
|
|
|
12491
12491
|
export declare const DEFINITION_ENTITIES_EXPLANATION = "Definition entities define object/key-value-pair data-structures and are equivalent to classes in object-oriented programming languages.\nThey can extend and implement other definition entities and built-in-base-entities, inheriting their properties and methods as well as any built-in functionality linked to them.\nFor example.: If one implements the persisted built in entity, it will become an SQL table when the project is published, same with the base endpoint built-in-base entities.\nThey can be instantiated as variables where the data-type has a reference to them in the 'entity' field.\nSome are not interactive and cannot be instantiated or extended.\nThrough their metadata, they can be made 'abstract', 'static', whether they take 'additionalProperties' or not, and other OOP related features.\nIf a definition entity doesn't extend or implement any built-in-base-entity directly or indirectly, it is equivalent to a type declaration in TypeScript and a class in Javascript.";
|
|
@@ -20595,7 +20595,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
20595
20595
|
explicitResources: Map<string, IRelationalDatabaseInfrastructureResource | IHttpApiInfrastructureResource | IServerlessFunctionInfrastructureResource | IHttpEndpointInfrastructureResource | IContainerComputeInfrastructureResource>;
|
|
20596
20596
|
implicitGlobalResources: Map<InfrastructureResourceType.CompiledLocalCodebase | InfrastructureResourceType.CloudHostedCodebase | InfrastructureResourceType.AWSTenantAccount, ICloudHostedCodebaseInfrastructureResource | ICompiledLocalCodebaseInfrastructureResource | IAWSTenantAccountInfrastructureResource | null>;
|
|
20597
20597
|
finalGlobalEvent: ProjectPublicationEventName | null;
|
|
20598
|
-
finalStatus: PublicationStatus.Success | PublicationStatus.Failed | PublicationStatus.UnrecoverableFailure | null;
|
|
20598
|
+
finalStatus: PublicationStatus.Success | PublicationStatus.Failed | PublicationStatus.UnrecoverableFailure | PublicationStatus.CleanedUp | null;
|
|
20599
20599
|
cleanupSteps: IDeploymentStepDefinition<IInfrastructureResource>[];
|
|
20600
20600
|
}
|
|
20601
20601
|
|
|
@@ -28306,7 +28306,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
28306
28306
|
explicitResources: Map<string, ExplicitInfrastructureResource>;
|
|
28307
28307
|
implicitGlobalResources: Map<InfrastructureResourceType.CompiledLocalCodebase | InfrastructureResourceType.CloudHostedCodebase | InfrastructureResourceType.AWSTenantAccount, ImplicitGlobalInfrastructureResource | null>;
|
|
28308
28308
|
finalGlobalEvent: ProjectPublicationEventName | null;
|
|
28309
|
-
finalStatus: PublicationStatus.Success | PublicationStatus.Failed | PublicationStatus.UnrecoverableFailure | null;
|
|
28309
|
+
finalStatus: PublicationStatus.Success | PublicationStatus.Failed | PublicationStatus.UnrecoverableFailure | PublicationStatus.CleanedUp | null;
|
|
28310
28310
|
contextType: ExtensionContextType.PublicationRun;
|
|
28311
28311
|
extensionsRegistry: ExtensionsRegistry<any, any, any, PublicationRun>;
|
|
28312
28312
|
constructor(data: IPublication, editor: IEditor);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elyx-code/project-logic-tree",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7069",
|
|
4
4
|
"author": "Sergio Herrero",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"description": "An installable module which contains the type definitions and ephemeral state management for a projects' logic tree data structure",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"log:project": "tsx --tsconfig tsconfig.scripts.json scripts/describe-project.ts"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@elyx-code/definitions": "^0.0.
|
|
41
|
+
"@elyx-code/definitions": "^0.0.80008",
|
|
42
42
|
"axios": "^1.9.0",
|
|
43
43
|
"dayjs": "^1.11.13",
|
|
44
44
|
"sql-parser-cst": "^0.33.1",
|