@mintlify/models
Advanced tools
Comparing version 0.0.97 to 0.0.98
@@ -1,2 +0,2 @@ | ||
export type UserAuth = SharedSessionAuth; | ||
export type UserAuth = SharedSessionAuth | JwtAuth; | ||
export type UserAuthType = UserAuth['type']; | ||
@@ -9,1 +9,12 @@ export type SharedSessionAuth = { | ||
}; | ||
export type JwtAuthSigningKey = { | ||
id: string; | ||
publicKey: string; | ||
createdAt: number; | ||
}; | ||
export type JwtAuth = { | ||
type: 'jwt'; | ||
signingKeys: JwtAuthSigningKey[]; | ||
loginUrl: string; | ||
invalidatedAt?: number; | ||
}; |
@@ -1,2 +0,2 @@ | ||
import { SharedSessionAuth, UserAuth, UserAuthType } from '../entities/userAuth.js'; | ||
import { SharedSessionAuth, UserAuth, UserAuthType, JwtAuth, JwtAuthSigningKey } from '../entities/userAuth.js'; | ||
import { ApiPlaygroundResponseType } from './apiPlaygroundResponseType.js'; | ||
@@ -16,2 +16,2 @@ import { ApiPlaygroundResultType } from './apiPlaygroundResultType.js'; | ||
import { TrieveType } from './trieveType.js'; | ||
export type { ApiPlaygroundResponseType, ApiPlaygroundResultType, OpenApiFile, OpenApiMetadata, EditContext, GitAuthType, GitHubInstallationType, GitSource, GithubSource, GitlabSource, GitSourceType, GrowthDataType, InkeepType, PathType, PageMetaTags, ServerStaticProps, TrieveType, UserAuth, SharedSessionAuth, UserAuthType, }; | ||
export type { ApiPlaygroundResponseType, ApiPlaygroundResultType, OpenApiFile, OpenApiMetadata, EditContext, GitAuthType, GitHubInstallationType, GitSource, GithubSource, GitlabSource, GitSourceType, GrowthDataType, InkeepType, PathType, PageMetaTags, ServerStaticProps, TrieveType, UserAuth, SharedSessionAuth, UserAuthType, JwtAuth, JwtAuthSigningKey, }; |
{ | ||
"name": "@mintlify/models", | ||
"version": "0.0.97", | ||
"version": "0.0.98", | ||
"description": "Mintlify models", | ||
@@ -61,3 +61,3 @@ "engines": { | ||
}, | ||
"gitHead": "37bf8cd3609418799960a50f2999bfb49a737943" | ||
"gitHead": "552d352acf92a74db5463beb0d487f040b2970be" | ||
} |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
131535
610