mezon-js 2.11.1 → 2.11.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/api.gen.ts +4 -0
- package/client.ts +190 -193
- package/dist/api.gen.d.ts +2 -0
- package/dist/client.d.ts +1 -3
- package/dist/mezon-js.cjs.js +189 -193
- package/dist/mezon-js.esm.mjs +189 -193
- package/package.json +1 -1
package/api.gen.ts
CHANGED
@@ -2259,6 +2259,10 @@ export interface ApiSessionLogoutRequest {
|
|
2259
2259
|
refresh_token?: string;
|
2260
2260
|
//Session token to log out.
|
2261
2261
|
token?: string;
|
2262
|
+
// device_id to log out.
|
2263
|
+
device_id?: string;
|
2264
|
+
// platform
|
2265
|
+
platform?: string;
|
2262
2266
|
}
|
2263
2267
|
|
2264
2268
|
/** Authenticate against the server with a refresh token. */
|