@epilot/customer-portal-client 0.22.5 → 0.22.6-rc.2
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/definition.js +1 -1
- package/dist/openapi.d.ts +8 -1
- package/package.json +1 -1
- package/src/openapi.json +14 -2
package/dist/openapi.d.ts
CHANGED
|
@@ -2837,6 +2837,7 @@ declare namespace Components {
|
|
|
2837
2837
|
client_secret?: string;
|
|
2838
2838
|
}
|
|
2839
2839
|
export interface OIDCProviderConfig {
|
|
2840
|
+
type?: "authorization_code" | "implicit";
|
|
2840
2841
|
/**
|
|
2841
2842
|
* Issuing Authority URL
|
|
2842
2843
|
* example:
|
|
@@ -4044,7 +4045,13 @@ declare namespace Components {
|
|
|
4044
4045
|
* example:
|
|
4045
4046
|
* 123456
|
|
4046
4047
|
*/
|
|
4047
|
-
id_token
|
|
4048
|
+
id_token?: string;
|
|
4049
|
+
/**
|
|
4050
|
+
* The scope of the access token
|
|
4051
|
+
* example:
|
|
4052
|
+
* openid email
|
|
4053
|
+
*/
|
|
4054
|
+
scope?: string;
|
|
4048
4055
|
}
|
|
4049
4056
|
export type SSOLoginToken = string;
|
|
4050
4057
|
export interface SaveEntityFile {
|
package/package.json
CHANGED
package/src/openapi.json
CHANGED
|
@@ -10737,6 +10737,14 @@
|
|
|
10737
10737
|
"OIDCProviderConfig": {
|
|
10738
10738
|
"type": "object",
|
|
10739
10739
|
"properties": {
|
|
10740
|
+
"type": {
|
|
10741
|
+
"type": "string",
|
|
10742
|
+
"enum": [
|
|
10743
|
+
"authorization_code",
|
|
10744
|
+
"implicit"
|
|
10745
|
+
],
|
|
10746
|
+
"default": "implicit"
|
|
10747
|
+
},
|
|
10740
10748
|
"oidc_issuer": {
|
|
10741
10749
|
"type": "string",
|
|
10742
10750
|
"description": "Issuing Authority URL",
|
|
@@ -10875,8 +10883,7 @@
|
|
|
10875
10883
|
"access_token",
|
|
10876
10884
|
"token_type",
|
|
10877
10885
|
"expires_in",
|
|
10878
|
-
"refresh_token"
|
|
10879
|
-
"id_token"
|
|
10886
|
+
"refresh_token"
|
|
10880
10887
|
],
|
|
10881
10888
|
"properties": {
|
|
10882
10889
|
"access_token": {
|
|
@@ -10903,6 +10910,11 @@
|
|
|
10903
10910
|
"type": "string",
|
|
10904
10911
|
"description": "The id token",
|
|
10905
10912
|
"example": "123456"
|
|
10913
|
+
},
|
|
10914
|
+
"scope": {
|
|
10915
|
+
"type": "string",
|
|
10916
|
+
"description": "The scope of the access token",
|
|
10917
|
+
"example": "openid email"
|
|
10906
10918
|
}
|
|
10907
10919
|
}
|
|
10908
10920
|
},
|