glitch-javascript-sdk 3.10.1 → 3.10.3

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.
@@ -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
- azure_fqdn?: string | null;
135
+ public_url?: string | null;
136
136
  error_message?: string | null;
137
137
  ready_at?: string | null;
138
138
  promoted_at?: string | null;
@@ -199,7 +199,7 @@ export interface HostingServiceDefinition {
199
199
  game_build_id?: string;
200
200
  }
201
201
  export interface HostingServiceStackRequest {
202
- preset?: 'single_server' | 'world_of_claudecraft' | 'web_and_api' | 'authoritative_world' | 'biomes_style';
202
+ preset?: 'single_server' | 'stateful_game_server' | 'web_and_api' | 'authoritative_world' | 'large_realtime_world';
203
203
  game_build_id?: string;
204
204
  builds?: Record<string, string>;
205
205
  services?: HostingServiceDefinition[];
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
- azure_fqdn?: string | null;
11594
+ public_url?: string | null;
11595
11595
  error_message?: string | null;
11596
11596
  ready_at?: string | null;
11597
11597
  promoted_at?: string | null;
@@ -11658,7 +11658,7 @@ interface HostingServiceDefinition {
11658
11658
  game_build_id?: string;
11659
11659
  }
11660
11660
  interface HostingServiceStackRequest {
11661
- preset?: 'single_server' | 'world_of_claudecraft' | 'web_and_api' | 'authoritative_world' | 'biomes_style';
11661
+ preset?: 'single_server' | 'stateful_game_server' | 'web_and_api' | 'authoritative_world' | 'large_realtime_world';
11662
11662
  game_build_id?: string;
11663
11663
  builds?: Record<string, string>;
11664
11664
  services?: HostingServiceDefinition[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "glitch-javascript-sdk",
3
- "version": "3.10.1",
3
+ "version": "3.10.3",
4
4
  "description": "Javascript SDK for Glitch",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -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
- azure_fqdn?: string | null;
143
+ public_url?: string | null;
144
144
  error_message?: string | null;
145
145
  ready_at?: string | null;
146
146
  promoted_at?: string | null;
@@ -210,7 +210,7 @@ export interface HostingServiceDefinition {
210
210
  }
211
211
 
212
212
  export interface HostingServiceStackRequest {
213
- preset?: 'single_server' | 'world_of_claudecraft' | 'web_and_api' | 'authoritative_world' | 'biomes_style';
213
+ preset?: 'single_server' | 'stateful_game_server' | 'web_and_api' | 'authoritative_world' | 'large_realtime_world';
214
214
  game_build_id?: string;
215
215
  builds?: Record<string, string>;
216
216
  services?: HostingServiceDefinition[];