@elyx-code/project-logic-tree 0.0.6576 → 0.0.6578
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 +11 -4
- package/dist/index.js +2517 -2482
- package/dist/index.umd.cjs +93 -93
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -5837,11 +5837,11 @@ export declare enum ExecutionTerminationType {
|
|
|
5837
5837
|
}
|
|
5838
5838
|
|
|
5839
5839
|
export declare class ExplicitInfrastructureResource extends InfrastructureResource {
|
|
5840
|
-
resourceType: InfrastructureResourceType.HttpApi | InfrastructureResourceType.RelationalDatabase;
|
|
5840
|
+
resourceType: InfrastructureResourceType.HttpApi | InfrastructureResourceType.RelationalDatabase | InfrastructureResourceType.ServerlessFunction;
|
|
5841
5841
|
owners: Map<EntityId, DefinitionEntityState>;
|
|
5842
5842
|
details: InfrastructureResourceDetails | null;
|
|
5843
5843
|
status: InfrastructureResourceStatus;
|
|
5844
|
-
constructor(publicationRun: PublicationRun, owners: DefinitionEntityState[], resourceType: InfrastructureResourceType.HttpApi | InfrastructureResourceType.RelationalDatabase, provider: CloudProviders);
|
|
5844
|
+
constructor(publicationRun: PublicationRun, owners: DefinitionEntityState[], resourceType: InfrastructureResourceType.HttpApi | InfrastructureResourceType.RelationalDatabase | InfrastructureResourceType.ServerlessFunction, provider: CloudProviders);
|
|
5845
5845
|
resolveDeterministicResourceId(): string;
|
|
5846
5846
|
}
|
|
5847
5847
|
|
|
@@ -17984,13 +17984,20 @@ export declare class PublicationStep implements IDeploymentStepDefinition<Infras
|
|
|
17984
17984
|
index: number;
|
|
17985
17985
|
dependency: string[];
|
|
17986
17986
|
lastEvent: ProjectPublicationEventName | null;
|
|
17987
|
-
|
|
17987
|
+
lastEventTimestamp: string | null;
|
|
17988
17988
|
status: PublicationStepStatus;
|
|
17989
17989
|
publicationRun: PublicationRun;
|
|
17990
17990
|
resource: ExplicitInfrastructureResource | ImplicitGlobalInfrastructureResource;
|
|
17991
|
-
constructor(stepType: PublishingSequenceStep, id: string, resourceType: InfrastructureResourceType, initialStatus: PublicationStepStatus, dependency: string[], index: number,
|
|
17991
|
+
constructor(stepType: PublishingSequenceStep, id: string, resourceType: InfrastructureResourceType, initialStatus: PublicationStepStatus, dependency: string[], index: number, lastEventTimestamp: string, publicationRun: PublicationRun, resource: ExplicitInfrastructureResource | ImplicitGlobalInfrastructureResource);
|
|
17992
17992
|
toJSON(): IDeploymentStepDefinition;
|
|
17993
17993
|
update(step: IDeploymentStepDefinition): Promise<void>;
|
|
17994
|
+
error(event: ProjectPublicationEventName, _extraPayload?: {
|
|
17995
|
+
[key: string]: any;
|
|
17996
|
+
}): Promise<void>;
|
|
17997
|
+
complete(event: ProjectPublicationEventName, _extraPayload?: {
|
|
17998
|
+
[key: string]: any;
|
|
17999
|
+
}): Promise<void>;
|
|
18000
|
+
run(): Promise<void>;
|
|
17994
18001
|
}
|
|
17995
18002
|
|
|
17996
18003
|
export declare enum PUBLISHING_DISABLED_REASONS {
|