aidbox-react 1.7.0 → 1.7.1

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.
@@ -1,4 +1,5 @@
1
1
  export interface Token {
2
2
  access_token: string;
3
3
  token_type: string;
4
+ refresh_token?: string;
4
5
  }
@@ -1,4 +1,5 @@
1
1
  export interface Token {
2
2
  access_token: string;
3
3
  token_type: string;
4
+ refresh_token?: string;
4
5
  }
package/dist/index.d.ts CHANGED
@@ -42,6 +42,7 @@ declare function isNotAskedAny(responses: Array<RemoteData>): responses is Array
42
42
  interface Token {
43
43
  access_token: string;
44
44
  token_type: string;
45
+ refresh_token?: string;
45
46
  }
46
47
 
47
48
  declare function buildQueryParams(params: Record<string, any>): string;
@@ -1,4 +1,5 @@
1
1
  export interface Token {
2
2
  access_token: string;
3
3
  token_type: string;
4
+ refresh_token?: string;
4
5
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "aidbox-react",
3
- "version": "1.7.0",
3
+ "version": "1.7.1",
4
4
  "scripts": {
5
5
  "build": "tsc & rollup -c",
6
6
  "prebuild": "rimraf lib/* & rimraf dist/*",
@@ -1,4 +1,5 @@
1
1
  export interface Token {
2
2
  access_token: string;
3
3
  token_type: string;
4
+ refresh_token?: string;
4
5
  }