@goauthentik/api 2022.12.0-1672237540 → 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 +1 -1
- package/dist/apis/CryptoApi.d.ts +1 -1
- package/dist/esm/apis/CoreApi.d.ts +1 -1
- package/dist/esm/apis/CryptoApi.d.ts +1 -1
- package/dist/esm/models/OutpostHealth.d.ts +12 -0
- package/dist/esm/models/OutpostHealth.js +2 -0
- package/dist/models/OutpostHealth.d.ts +12 -0
- package/dist/models/OutpostHealth.js +2 -0
- package/package.json +1 -1
- package/src/apis/CoreApi.ts +1 -1
- package/src/apis/CryptoApi.ts +1 -1
- package/src/models/OutpostHealth.ts +14 -0
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;
|
|
@@ -15,6 +15,12 @@
|
|
|
15
15
|
* @interface OutpostHealth
|
|
16
16
|
*/
|
|
17
17
|
export interface OutpostHealth {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof OutpostHealth
|
|
22
|
+
*/
|
|
23
|
+
readonly uid: string;
|
|
18
24
|
/**
|
|
19
25
|
*
|
|
20
26
|
* @type {Date}
|
|
@@ -51,6 +57,12 @@ export interface OutpostHealth {
|
|
|
51
57
|
* @memberof OutpostHealth
|
|
52
58
|
*/
|
|
53
59
|
readonly buildHashShould: string;
|
|
60
|
+
/**
|
|
61
|
+
*
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof OutpostHealth
|
|
64
|
+
*/
|
|
65
|
+
readonly hostname: string;
|
|
54
66
|
}
|
|
55
67
|
export declare function OutpostHealthFromJSON(json: any): OutpostHealth;
|
|
56
68
|
export declare function OutpostHealthFromJSONTyped(json: any, ignoreDiscriminator: boolean): OutpostHealth;
|
|
@@ -19,12 +19,14 @@ export function OutpostHealthFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
19
19
|
return json;
|
|
20
20
|
}
|
|
21
21
|
return {
|
|
22
|
+
'uid': json['uid'],
|
|
22
23
|
'lastSeen': (new Date(json['last_seen'])),
|
|
23
24
|
'version': json['version'],
|
|
24
25
|
'versionShould': json['version_should'],
|
|
25
26
|
'versionOutdated': json['version_outdated'],
|
|
26
27
|
'buildHash': json['build_hash'],
|
|
27
28
|
'buildHashShould': json['build_hash_should'],
|
|
29
|
+
'hostname': json['hostname'],
|
|
28
30
|
};
|
|
29
31
|
}
|
|
30
32
|
export function OutpostHealthToJSON(value) {
|
|
@@ -15,6 +15,12 @@
|
|
|
15
15
|
* @interface OutpostHealth
|
|
16
16
|
*/
|
|
17
17
|
export interface OutpostHealth {
|
|
18
|
+
/**
|
|
19
|
+
*
|
|
20
|
+
* @type {string}
|
|
21
|
+
* @memberof OutpostHealth
|
|
22
|
+
*/
|
|
23
|
+
readonly uid: string;
|
|
18
24
|
/**
|
|
19
25
|
*
|
|
20
26
|
* @type {Date}
|
|
@@ -51,6 +57,12 @@ export interface OutpostHealth {
|
|
|
51
57
|
* @memberof OutpostHealth
|
|
52
58
|
*/
|
|
53
59
|
readonly buildHashShould: string;
|
|
60
|
+
/**
|
|
61
|
+
*
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof OutpostHealth
|
|
64
|
+
*/
|
|
65
|
+
readonly hostname: string;
|
|
54
66
|
}
|
|
55
67
|
export declare function OutpostHealthFromJSON(json: any): OutpostHealth;
|
|
56
68
|
export declare function OutpostHealthFromJSONTyped(json: any, ignoreDiscriminator: boolean): OutpostHealth;
|
|
@@ -23,12 +23,14 @@ function OutpostHealthFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
23
23
|
return json;
|
|
24
24
|
}
|
|
25
25
|
return {
|
|
26
|
+
'uid': json['uid'],
|
|
26
27
|
'lastSeen': (new Date(json['last_seen'])),
|
|
27
28
|
'version': json['version'],
|
|
28
29
|
'versionShould': json['version_should'],
|
|
29
30
|
'versionOutdated': json['version_outdated'],
|
|
30
31
|
'buildHash': json['build_hash'],
|
|
31
32
|
'buildHashShould': json['build_hash_should'],
|
|
33
|
+
'hostname': json['hostname'],
|
|
32
34
|
};
|
|
33
35
|
}
|
|
34
36
|
exports.OutpostHealthFromJSONTyped = OutpostHealthFromJSONTyped;
|
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
|
@@ -19,6 +19,12 @@ import { exists, mapValues } from '../runtime';
|
|
|
19
19
|
* @interface OutpostHealth
|
|
20
20
|
*/
|
|
21
21
|
export interface OutpostHealth {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof OutpostHealth
|
|
26
|
+
*/
|
|
27
|
+
readonly uid: string;
|
|
22
28
|
/**
|
|
23
29
|
*
|
|
24
30
|
* @type {Date}
|
|
@@ -55,6 +61,12 @@ export interface OutpostHealth {
|
|
|
55
61
|
* @memberof OutpostHealth
|
|
56
62
|
*/
|
|
57
63
|
readonly buildHashShould: string;
|
|
64
|
+
/**
|
|
65
|
+
*
|
|
66
|
+
* @type {string}
|
|
67
|
+
* @memberof OutpostHealth
|
|
68
|
+
*/
|
|
69
|
+
readonly hostname: string;
|
|
58
70
|
}
|
|
59
71
|
|
|
60
72
|
export function OutpostHealthFromJSON(json: any): OutpostHealth {
|
|
@@ -67,12 +79,14 @@ export function OutpostHealthFromJSONTyped(json: any, ignoreDiscriminator: boole
|
|
|
67
79
|
}
|
|
68
80
|
return {
|
|
69
81
|
|
|
82
|
+
'uid': json['uid'],
|
|
70
83
|
'lastSeen': (new Date(json['last_seen'])),
|
|
71
84
|
'version': json['version'],
|
|
72
85
|
'versionShould': json['version_should'],
|
|
73
86
|
'versionOutdated': json['version_outdated'],
|
|
74
87
|
'buildHash': json['build_hash'],
|
|
75
88
|
'buildHashShould': json['build_hash_should'],
|
|
89
|
+
'hostname': json['hostname'],
|
|
76
90
|
};
|
|
77
91
|
}
|
|
78
92
|
|