glitch-javascript-sdk 3.10.1 → 3.10.2
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/esm/api/Hosting.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
- package/src/api/Hosting.ts +1 -1
|
@@ -132,7 +132,7 @@ export interface HostingServiceDeployment {
|
|
|
132
132
|
version: string;
|
|
133
133
|
status: 'queued' | 'deploying' | 'ready' | 'active' | 'inactive' | 'failed';
|
|
134
134
|
image?: string | null;
|
|
135
|
-
|
|
135
|
+
public_url?: string | null;
|
|
136
136
|
error_message?: string | null;
|
|
137
137
|
ready_at?: string | null;
|
|
138
138
|
promoted_at?: string | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -11591,7 +11591,7 @@ interface HostingServiceDeployment {
|
|
|
11591
11591
|
version: string;
|
|
11592
11592
|
status: 'queued' | 'deploying' | 'ready' | 'active' | 'inactive' | 'failed';
|
|
11593
11593
|
image?: string | null;
|
|
11594
|
-
|
|
11594
|
+
public_url?: string | null;
|
|
11595
11595
|
error_message?: string | null;
|
|
11596
11596
|
ready_at?: string | null;
|
|
11597
11597
|
promoted_at?: string | null;
|
package/package.json
CHANGED
package/src/api/Hosting.ts
CHANGED
|
@@ -140,7 +140,7 @@ export interface HostingServiceDeployment {
|
|
|
140
140
|
version: string;
|
|
141
141
|
status: 'queued' | 'deploying' | 'ready' | 'active' | 'inactive' | 'failed';
|
|
142
142
|
image?: string | null;
|
|
143
|
-
|
|
143
|
+
public_url?: string | null;
|
|
144
144
|
error_message?: string | null;
|
|
145
145
|
ready_at?: string | null;
|
|
146
146
|
promoted_at?: string | null;
|