@inai-dev/types 1.1.0 → 1.3.0
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/README.md +6 -2
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -41,7 +41,7 @@ import type {
|
|
|
41
41
|
|
|
42
42
|
```ts
|
|
43
43
|
import type {
|
|
44
|
-
InAIAuthConfig, // Client config (publishableKey, tenantId)
|
|
44
|
+
InAIAuthConfig, // Client config (publishableKey, tenantId, jwksUrl)
|
|
45
45
|
InAIMiddlewareConfig, // Middleware config (publicRoutes, signInUrl, beforeAuth, afterAuth)
|
|
46
46
|
InAIAuthSDKConfig, // SDK-wide config (signInUrl, signUpUrl, afterSignInUrl, publishableKey)
|
|
47
47
|
} from "@inai-dev/types";
|
|
@@ -78,7 +78,7 @@ import type {
|
|
|
78
78
|
| `ApplicationStats` | Resource | Application statistics |
|
|
79
79
|
| `ApiKeyResource` | Resource | API key data |
|
|
80
80
|
| `PaginatedResult<T>` | Resource | Paginated response |
|
|
81
|
-
| `InAIAuthConfig` | Config | Client configuration |
|
|
81
|
+
| `InAIAuthConfig` | Config | Client configuration (`publishableKey`, `apiUrl`, `tenantId`, `jwksUrl`) |
|
|
82
82
|
| `InAIMiddlewareConfig` | Config | Middleware configuration |
|
|
83
83
|
| `InAIAuthSDKConfig` | Config | SDK global configuration |
|
|
84
84
|
| `LoginParams` | Result | Login request parameters |
|
|
@@ -89,6 +89,10 @@ import type {
|
|
|
89
89
|
| `SignUpResult` | Result | Sign-up flow result |
|
|
90
90
|
| `InAIAuthErrorBody` | Result | Error response body |
|
|
91
91
|
|
|
92
|
+
## Questions & Support
|
|
93
|
+
|
|
94
|
+
Visit [https://inai.dev](https://inai.dev) for documentation, guides, and support.
|
|
95
|
+
|
|
92
96
|
## License
|
|
93
97
|
|
|
94
98
|
[MIT](../../LICENSE)
|
package/dist/index.d.cts
CHANGED
package/dist/index.d.ts
CHANGED