@alienplatform/testing 1.5.1 → 1.7.1

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 CHANGED
@@ -66,7 +66,8 @@ interface DeploymentInfo {
66
66
  interface DeploymentInit {
67
67
  id: string;
68
68
  name: string;
69
- url: string;
69
+ /** Public URL of the app, when the stack has a resource that exposes one. */
70
+ url?: string;
70
71
  platform: Platform;
71
72
  commandsUrl: string;
72
73
  appPath: string;
@@ -79,7 +80,8 @@ interface DeploymentInit {
79
80
  declare class Deployment {
80
81
  readonly id: string;
81
82
  readonly name: string;
82
- readonly url: string;
83
+ /** Public URL of the app. Undefined for stacks with no URL-exposing resource (e.g. daemon-only). */
84
+ readonly url: string | undefined;
83
85
  readonly platform: Platform;
84
86
  /** Whether the deployment has been destroyed */
85
87
  destroyed: boolean;
@@ -122,6 +124,7 @@ declare class Deployment {
122
124
  declare function deploy(options: DeployOptions): Promise<Deployment>;
123
125
  //#endregion
124
126
  //#region ../core/dist/index.d.ts
127
+
125
128
  //#endregion
126
129
  //#region src/generated/zod/alien-error-schema.d.ts
127
130
  /**