@aptly-as/types
Advanced tools
Comparing version 2.0.1 to 2.0.2
@@ -15,12 +15,12 @@ import { AptlyAppScope } from './scope.js'; | ||
export interface AptlyAppAuthorizeCode { | ||
scope: AptlyAppScope[]; | ||
jti: string; | ||
aud: string; | ||
sub: string; | ||
jti: string; | ||
iss: 'aptly.as'; | ||
organization: string; | ||
app: string; | ||
scope: AptlyAppScope[]; | ||
} | ||
export interface AptlyAppAuthorizeToken { | ||
iss: string; | ||
export interface AptlyAppAuthorizeToken extends Omit<AptlyAppAuthorizeCode, 'aud'> { | ||
aud: string; | ||
sub: string; | ||
} | ||
@@ -27,0 +27,0 @@ export interface AptlyAppWebContext<S extends object> { |
{ | ||
"name": "@aptly-as/types", | ||
"version": "2.0.1", | ||
"version": "2.0.2", | ||
"description": "Aptly types and enums", | ||
@@ -5,0 +5,0 @@ "type": "module", |
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
86909