glitch-javascript-sdk 3.9.2 → 3.9.4
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/browser/hosting-runtime.js +3790 -3348
- package/dist/browser/hosting-runtime.js.map +1 -1
- package/dist/cjs/index.js +9192 -3149
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/api/Hosting.d.ts +1 -1
- package/dist/esm/index.js +3839 -3397
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
- package/src/api/Competitions.ts +184 -184
- package/src/api/Hosting.ts +11 -2
- package/src/routes/TitlesRoute.ts +7 -7
|
@@ -128,7 +128,7 @@ declare class Hosting {
|
|
|
128
128
|
static checkDomain<T>(hostname: string): AxiosPromise<Response<T>>;
|
|
129
129
|
static purchaseDomain<T>(title_id: string, site_id: string, data: Record<string, any>): AxiosPromise<Response<T>>;
|
|
130
130
|
static aiInstructions<T>(title_id: string, site_id: string, data?: Record<string, any>): AxiosPromise<Response<T>>;
|
|
131
|
-
static resolve<T>(hostname: string): AxiosPromise<Response<T>>;
|
|
131
|
+
static resolve<T>(hostname: string, gatewayToken?: string): AxiosPromise<Response<T>>;
|
|
132
132
|
static startPlaySession<T>(data: Record<string, any>): AxiosPromise<Response<T>>;
|
|
133
133
|
static heartbeatPlaySession<T>(session_id: string, sessionToken: string): AxiosPromise<Response<T>>;
|
|
134
134
|
static databases<T>(title_id: string, site_id: string, params?: Record<string, any>): AxiosPromise<Response<T>>;
|