@cloudbase/oauth 1.3.9-beta → 1.3.10-beta

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.
Files changed (2) hide show
  1. package/auth/models.d.ts +2 -2
  2. package/package.json +1 -1
package/auth/models.d.ts CHANGED
@@ -265,11 +265,11 @@ export interface RevokeDeviceRequest {
265
265
  device_id: string;
266
266
  }
267
267
  export interface SignoutRequest {
268
- signout_uri?: string;
268
+ redirect_uri?: string;
269
269
  state?: string;
270
270
  }
271
271
  export interface SignoutReponse {
272
- signout_uri?: string;
272
+ redirect_uri?: string;
273
273
  }
274
274
  export interface AuthorizeDeviceRequest {
275
275
  client_id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cloudbase/oauth",
3
- "version": "1.3.9-beta",
3
+ "version": "1.3.10-beta",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",