@elyx-code/project-logic-tree 0.0.6579 → 0.0.6580
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 +4 -4
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -4879,8 +4879,8 @@ export declare class DefaultPublicationRunContext extends ExtensionContextBase<E
|
|
|
4879
4879
|
get status(): PublicationStatus;
|
|
4880
4880
|
get steps(): IDeploymentStepDefinition<IInfrastructureResource>[];
|
|
4881
4881
|
get editor(): IEditor;
|
|
4882
|
-
get explicitResources(): Map<string,
|
|
4883
|
-
get implicitGlobalResources(): Map<InfrastructureResourceType.CompiledLocalCodebase | InfrastructureResourceType.CloudHostedCodebase,
|
|
4882
|
+
get explicitResources(): Map<string, IRelationalDatabaseInfrastructureResource | IHttpApiInfrastructureResource | IServerlessFunctionInfrastructureResource | IHttpEndpointInfrastructureResource>;
|
|
4883
|
+
get implicitGlobalResources(): Map<InfrastructureResourceType.CompiledLocalCodebase | InfrastructureResourceType.CloudHostedCodebase, ICloudHostedCodebaseInfrastructureResource | ICompiledLocalCodebaseInfrastructureResource | null>;
|
|
4884
4884
|
get finalGlobalEvent(): ProjectPublicationEventName | null;
|
|
4885
4885
|
get finalStatus(): PublicationStatus.Success | PublicationStatus.Failed | null;
|
|
4886
4886
|
}
|
|
@@ -15022,8 +15022,8 @@ export declare interface IPropertyTransfer extends IProperty_meta, IBaseVariable
|
|
|
15022
15022
|
export declare interface IPublicationRun extends IPublication {
|
|
15023
15023
|
steps: IDeploymentStepDefinition<IInfrastructureResource>[];
|
|
15024
15024
|
editor: IEditor;
|
|
15025
|
-
explicitResources: Map<string,
|
|
15026
|
-
implicitGlobalResources: Map<InfrastructureResourceType.CompiledLocalCodebase | InfrastructureResourceType.CloudHostedCodebase,
|
|
15025
|
+
explicitResources: Map<string, IRelationalDatabaseInfrastructureResource | IHttpApiInfrastructureResource | IServerlessFunctionInfrastructureResource | IHttpEndpointInfrastructureResource>;
|
|
15026
|
+
implicitGlobalResources: Map<InfrastructureResourceType.CompiledLocalCodebase | InfrastructureResourceType.CloudHostedCodebase, ICloudHostedCodebaseInfrastructureResource | ICompiledLocalCodebaseInfrastructureResource | null>;
|
|
15027
15027
|
finalGlobalEvent: ProjectPublicationEventName | null;
|
|
15028
15028
|
finalStatus: PublicationStatus.Success | PublicationStatus.Failed | null;
|
|
15029
15029
|
}
|
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.6580",
|
|
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",
|