glitch-javascript-sdk 3.10.2 → 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.
- 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
|
@@ -199,7 +199,7 @@ export interface HostingServiceDefinition {
|
|
|
199
199
|
game_build_id?: string;
|
|
200
200
|
}
|
|
201
201
|
export interface HostingServiceStackRequest {
|
|
202
|
-
preset?: 'single_server' | '
|
|
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
|
@@ -11658,7 +11658,7 @@ interface HostingServiceDefinition {
|
|
|
11658
11658
|
game_build_id?: string;
|
|
11659
11659
|
}
|
|
11660
11660
|
interface HostingServiceStackRequest {
|
|
11661
|
-
preset?: 'single_server' | '
|
|
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
package/src/api/Hosting.ts
CHANGED
|
@@ -210,7 +210,7 @@ export interface HostingServiceDefinition {
|
|
|
210
210
|
}
|
|
211
211
|
|
|
212
212
|
export interface HostingServiceStackRequest {
|
|
213
|
-
preset?: 'single_server' | '
|
|
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[];
|