@authrim/core 0.1.13 → 0.1.14
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/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -5135,6 +5135,8 @@ interface DirectAuthTokenRequest {
|
|
|
5135
5135
|
code: string;
|
|
5136
5136
|
client_id: string;
|
|
5137
5137
|
code_verifier: string;
|
|
5138
|
+
/** External IdP provider ID (required for social/external flows) */
|
|
5139
|
+
provider_id?: string;
|
|
5138
5140
|
/** Whether to request refresh token (for SPA opt-in) */
|
|
5139
5141
|
request_refresh_token?: boolean;
|
|
5140
5142
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -5135,6 +5135,8 @@ interface DirectAuthTokenRequest {
|
|
|
5135
5135
|
code: string;
|
|
5136
5136
|
client_id: string;
|
|
5137
5137
|
code_verifier: string;
|
|
5138
|
+
/** External IdP provider ID (required for social/external flows) */
|
|
5139
|
+
provider_id?: string;
|
|
5138
5140
|
/** Whether to request refresh token (for SPA opt-in) */
|
|
5139
5141
|
request_refresh_token?: boolean;
|
|
5140
5142
|
}
|