@mitreka/coreflow-types 0.0.12 → 0.0.13

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.ts +2 -0
  2. package/package.json +1 -1
package/auth.ts CHANGED
@@ -41,6 +41,7 @@ export type AccessUser = {
41
41
  export type AuthAccessType = 'offline' | 'online';
42
42
  export type AuthChallengeMethod = 'S256';
43
43
  export type AuthGrantType = 'authorization_code' | 'refresh_token';
44
+ export type AuthPrompt = 'none' | 'select_account';
44
45
  export type AuthResponseType = 'code' | 'token';
45
46
 
46
47
  export type AuthorizationParam = {
@@ -53,6 +54,7 @@ export type AuthorizationParam = {
53
54
  company_id: string;
54
55
  error: string;
55
56
  grant_type: AuthGrantType;
57
+ prompt: AuthPrompt
56
58
  redirect_uri: string;
57
59
  refresh_token: string;
58
60
  response_type: AuthResponseType;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mitreka/coreflow-types",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "description": "CoreFlow Types Definition",
5
5
  "author": {
6
6
  "name": "Riyan Widiyanto",