@elyx-code/project-logic-tree 0.0.7066 → 0.0.7068
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 +78 -78
- package/dist/index.d.ts +5 -3
- package/dist/index.js +17736 -17697
- package/package.json +1 -1
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 | 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 | 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 | 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);
|
|
@@ -28328,6 +28328,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
28328
28328
|
initResources(): Promise<void>;
|
|
28329
28329
|
setSteps(steps: IDeploymentStepDefinition[], emittedAt: string): void;
|
|
28330
28330
|
addStep(step: IDeploymentStepDefinition, emittedAt: string): void;
|
|
28331
|
+
addCleanupStep(step: IDeploymentStepDefinition, emittedAt: string): void;
|
|
28331
28332
|
onUpdate(message: ILiveMessageDTO): void;
|
|
28332
28333
|
requestExtension<T = any>(moduleId: string): T;
|
|
28333
28334
|
initRegistry(): Promise<ExtensionsRegistry<any, any, any, PublicationRun>>;
|
|
@@ -28350,6 +28351,7 @@ export declare enum BaseValueDescriptorIds {
|
|
|
28350
28351
|
constructor(stepType: PublishingSequenceStep, id: string, resourceType: InfrastructureResourceType, initialStatus: PublicationStepStatus, dependency: string[], index: number, lastEventTimestamp: string, publicationRun: PublicationRun, resource: ExplicitInfrastructureResource | ImplicitGlobalInfrastructureResource, cleanup?: boolean, cleanupFor?: string | null);
|
|
28351
28352
|
toJSON(): IDeploymentStepDefinition;
|
|
28352
28353
|
update(step: IDeploymentStepDefinition): Promise<void>;
|
|
28354
|
+
addLog(log: ILog): void;
|
|
28353
28355
|
}
|
|
28354
28356
|
|
|
28355
28357
|
export declare enum PUBLISHING_DISABLED_REASONS {
|