@goauthentik/api 2024.6.0-1720022184 → 2024.6.0-1720178084
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/apis/CoreApi.d.ts +0 -1
- package/dist/apis/CoreApi.js +0 -3
- package/dist/esm/apis/CoreApi.d.ts +0 -1
- package/dist/esm/apis/CoreApi.js +0 -3
- package/dist/esm/models/Outpost.d.ts +6 -0
- package/dist/esm/models/Outpost.js +2 -0
- package/dist/models/Outpost.d.ts +6 -0
- package/dist/models/Outpost.js +2 -0
- package/package.json +1 -1
- package/src/apis/CoreApi.ts +0 -5
- package/src/models/Outpost.ts +8 -0
package/dist/apis/CoreApi.d.ts
CHANGED
package/dist/apis/CoreApi.js
CHANGED
@@ -162,9 +162,6 @@ class CoreApi extends runtime.BaseAPI {
|
|
162
162
|
if (requestParameters.name !== undefined) {
|
163
163
|
queryParameters['name'] = requestParameters.name;
|
164
164
|
}
|
165
|
-
if (requestParameters.onlyWithLaunchUrl !== undefined) {
|
166
|
-
queryParameters['only_with_launch_url'] = requestParameters.onlyWithLaunchUrl;
|
167
|
-
}
|
168
165
|
if (requestParameters.ordering !== undefined) {
|
169
166
|
queryParameters['ordering'] = requestParameters.ordering;
|
170
167
|
}
|
package/dist/esm/apis/CoreApi.js
CHANGED
@@ -159,9 +159,6 @@ export class CoreApi extends runtime.BaseAPI {
|
|
159
159
|
if (requestParameters.name !== undefined) {
|
160
160
|
queryParameters['name'] = requestParameters.name;
|
161
161
|
}
|
162
|
-
if (requestParameters.onlyWithLaunchUrl !== undefined) {
|
163
|
-
queryParameters['only_with_launch_url'] = requestParameters.onlyWithLaunchUrl;
|
164
|
-
}
|
165
162
|
if (requestParameters.ordering !== undefined) {
|
166
163
|
queryParameters['ordering'] = requestParameters.ordering;
|
167
164
|
}
|
@@ -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/apis/CoreApi.ts
CHANGED
@@ -168,7 +168,6 @@ export interface CoreApplicationsListRequest {
|
|
168
168
|
metaLaunchUrl?: string;
|
169
169
|
metaPublisher?: string;
|
170
170
|
name?: string;
|
171
|
-
onlyWithLaunchUrl?: boolean;
|
172
171
|
ordering?: string;
|
173
172
|
page?: number;
|
174
173
|
pageSize?: number;
|
@@ -633,10 +632,6 @@ export class CoreApi extends runtime.BaseAPI {
|
|
633
632
|
queryParameters['name'] = requestParameters.name;
|
634
633
|
}
|
635
634
|
|
636
|
-
if (requestParameters.onlyWithLaunchUrl !== undefined) {
|
637
|
-
queryParameters['only_with_launch_url'] = requestParameters.onlyWithLaunchUrl;
|
638
|
-
}
|
639
|
-
|
640
635
|
if (requestParameters.ordering !== undefined) {
|
641
636
|
queryParameters['ordering'] = requestParameters.ordering;
|
642
637
|
}
|
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'],
|