@goauthentik/api 2022.12.0-1672240607 → 2022.12.0-1672308901
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/apis/CoreApi.d.ts
CHANGED
|
@@ -127,7 +127,7 @@ export interface CoreTenantsListRequest {
|
|
|
127
127
|
brandingFavicon?: string;
|
|
128
128
|
brandingLogo?: string;
|
|
129
129
|
brandingTitle?: string;
|
|
130
|
-
_default?:
|
|
130
|
+
_default?: string;
|
|
131
131
|
domain?: string;
|
|
132
132
|
eventRetention?: string;
|
|
133
133
|
flowAuthentication?: string;
|
package/dist/apis/CryptoApi.d.ts
CHANGED
|
@@ -21,7 +21,7 @@ export interface CryptoCertificatekeypairsGenerateCreateRequest {
|
|
|
21
21
|
certificateGenerationRequest: CertificateGenerationRequest;
|
|
22
22
|
}
|
|
23
23
|
export interface CryptoCertificatekeypairsListRequest {
|
|
24
|
-
hasKey?:
|
|
24
|
+
hasKey?: string;
|
|
25
25
|
includeDetails?: boolean;
|
|
26
26
|
managed?: string;
|
|
27
27
|
name?: string;
|
|
@@ -127,7 +127,7 @@ export interface CoreTenantsListRequest {
|
|
|
127
127
|
brandingFavicon?: string;
|
|
128
128
|
brandingLogo?: string;
|
|
129
129
|
brandingTitle?: string;
|
|
130
|
-
_default?:
|
|
130
|
+
_default?: string;
|
|
131
131
|
domain?: string;
|
|
132
132
|
eventRetention?: string;
|
|
133
133
|
flowAuthentication?: string;
|
|
@@ -21,7 +21,7 @@ export interface CryptoCertificatekeypairsGenerateCreateRequest {
|
|
|
21
21
|
certificateGenerationRequest: CertificateGenerationRequest;
|
|
22
22
|
}
|
|
23
23
|
export interface CryptoCertificatekeypairsListRequest {
|
|
24
|
-
hasKey?:
|
|
24
|
+
hasKey?: string;
|
|
25
25
|
includeDetails?: boolean;
|
|
26
26
|
managed?: string;
|
|
27
27
|
name?: string;
|
package/package.json
CHANGED
package/src/apis/CoreApi.ts
CHANGED
|
@@ -282,7 +282,7 @@ export interface CoreTenantsListRequest {
|
|
|
282
282
|
brandingFavicon?: string;
|
|
283
283
|
brandingLogo?: string;
|
|
284
284
|
brandingTitle?: string;
|
|
285
|
-
_default?:
|
|
285
|
+
_default?: string;
|
|
286
286
|
domain?: string;
|
|
287
287
|
eventRetention?: string;
|
|
288
288
|
flowAuthentication?: string;
|
package/src/apis/CryptoApi.ts
CHANGED