@goauthentik/api 2024.6.0-1720092601 → 2024.6.0-1720200294
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/esm/models/FooterLink.d.ts +1 -1
- package/dist/esm/models/Outpost.d.ts +6 -0
- package/dist/esm/models/Outpost.js +2 -0
- package/dist/models/FooterLink.d.ts +1 -1
- package/dist/models/Outpost.d.ts +6 -0
- package/dist/models/Outpost.js +2 -0
- package/package.json +1 -1
- package/src/models/FooterLink.ts +1 -1
- package/src/models/Outpost.ts +8 -0
|
@@ -60,6 +60,12 @@ export interface Outpost {
|
|
|
60
60
|
* @memberof Outpost
|
|
61
61
|
*/
|
|
62
62
|
readonly serviceConnectionObj: ServiceConnection;
|
|
63
|
+
/**
|
|
64
|
+
*
|
|
65
|
+
* @type {number}
|
|
66
|
+
* @memberof Outpost
|
|
67
|
+
*/
|
|
68
|
+
readonly refreshIntervalS: number;
|
|
63
69
|
/**
|
|
64
70
|
* Get Token identifier
|
|
65
71
|
* @type {string}
|
|
@@ -26,6 +26,7 @@ export function instanceOfOutpost(value) {
|
|
|
26
26
|
isInstance = isInstance && "providers" in value;
|
|
27
27
|
isInstance = isInstance && "providersObj" in value;
|
|
28
28
|
isInstance = isInstance && "serviceConnectionObj" in value;
|
|
29
|
+
isInstance = isInstance && "refreshIntervalS" in value;
|
|
29
30
|
isInstance = isInstance && "tokenIdentifier" in value;
|
|
30
31
|
isInstance = isInstance && "config" in value;
|
|
31
32
|
return isInstance;
|
|
@@ -45,6 +46,7 @@ export function OutpostFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
45
46
|
'providersObj': (json['providers_obj'].map(ProviderFromJSON)),
|
|
46
47
|
'serviceConnection': !exists(json, 'service_connection') ? undefined : json['service_connection'],
|
|
47
48
|
'serviceConnectionObj': ServiceConnectionFromJSON(json['service_connection_obj']),
|
|
49
|
+
'refreshIntervalS': json['refresh_interval_s'],
|
|
48
50
|
'tokenIdentifier': json['token_identifier'],
|
|
49
51
|
'config': json['config'],
|
|
50
52
|
'managed': !exists(json, 'managed') ? undefined : json['managed'],
|
package/dist/models/Outpost.d.ts
CHANGED
|
@@ -60,6 +60,12 @@ export interface Outpost {
|
|
|
60
60
|
* @memberof Outpost
|
|
61
61
|
*/
|
|
62
62
|
readonly serviceConnectionObj: ServiceConnection;
|
|
63
|
+
/**
|
|
64
|
+
*
|
|
65
|
+
* @type {number}
|
|
66
|
+
* @memberof Outpost
|
|
67
|
+
*/
|
|
68
|
+
readonly refreshIntervalS: number;
|
|
63
69
|
/**
|
|
64
70
|
* Get Token identifier
|
|
65
71
|
* @type {string}
|
package/dist/models/Outpost.js
CHANGED
|
@@ -29,6 +29,7 @@ function instanceOfOutpost(value) {
|
|
|
29
29
|
isInstance = isInstance && "providers" in value;
|
|
30
30
|
isInstance = isInstance && "providersObj" in value;
|
|
31
31
|
isInstance = isInstance && "serviceConnectionObj" in value;
|
|
32
|
+
isInstance = isInstance && "refreshIntervalS" in value;
|
|
32
33
|
isInstance = isInstance && "tokenIdentifier" in value;
|
|
33
34
|
isInstance = isInstance && "config" in value;
|
|
34
35
|
return isInstance;
|
|
@@ -50,6 +51,7 @@ function OutpostFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
50
51
|
'providersObj': (json['providers_obj'].map(Provider_1.ProviderFromJSON)),
|
|
51
52
|
'serviceConnection': !(0, runtime_1.exists)(json, 'service_connection') ? undefined : json['service_connection'],
|
|
52
53
|
'serviceConnectionObj': (0, ServiceConnection_1.ServiceConnectionFromJSON)(json['service_connection_obj']),
|
|
54
|
+
'refreshIntervalS': json['refresh_interval_s'],
|
|
53
55
|
'tokenIdentifier': json['token_identifier'],
|
|
54
56
|
'config': json['config'],
|
|
55
57
|
'managed': !(0, runtime_1.exists)(json, 'managed') ? undefined : json['managed'],
|
package/package.json
CHANGED
package/src/models/FooterLink.ts
CHANGED
package/src/models/Outpost.ts
CHANGED
|
@@ -80,6 +80,12 @@ export interface Outpost {
|
|
|
80
80
|
* @memberof Outpost
|
|
81
81
|
*/
|
|
82
82
|
readonly serviceConnectionObj: ServiceConnection;
|
|
83
|
+
/**
|
|
84
|
+
*
|
|
85
|
+
* @type {number}
|
|
86
|
+
* @memberof Outpost
|
|
87
|
+
*/
|
|
88
|
+
readonly refreshIntervalS: number;
|
|
83
89
|
/**
|
|
84
90
|
* Get Token identifier
|
|
85
91
|
* @type {string}
|
|
@@ -111,6 +117,7 @@ export function instanceOfOutpost(value: object): boolean {
|
|
|
111
117
|
isInstance = isInstance && "providers" in value;
|
|
112
118
|
isInstance = isInstance && "providersObj" in value;
|
|
113
119
|
isInstance = isInstance && "serviceConnectionObj" in value;
|
|
120
|
+
isInstance = isInstance && "refreshIntervalS" in value;
|
|
114
121
|
isInstance = isInstance && "tokenIdentifier" in value;
|
|
115
122
|
isInstance = isInstance && "config" in value;
|
|
116
123
|
|
|
@@ -134,6 +141,7 @@ export function OutpostFromJSONTyped(json: any, ignoreDiscriminator: boolean): O
|
|
|
134
141
|
'providersObj': ((json['providers_obj'] as Array<any>).map(ProviderFromJSON)),
|
|
135
142
|
'serviceConnection': !exists(json, 'service_connection') ? undefined : json['service_connection'],
|
|
136
143
|
'serviceConnectionObj': ServiceConnectionFromJSON(json['service_connection_obj']),
|
|
144
|
+
'refreshIntervalS': json['refresh_interval_s'],
|
|
137
145
|
'tokenIdentifier': json['token_identifier'],
|
|
138
146
|
'config': json['config'],
|
|
139
147
|
'managed': !exists(json, 'managed') ? undefined : json['managed'],
|