@goauthentik/api 2024.6.0-1720022184 → 2024.6.0-1720092601

Sign up to get free protection for your applications and to get access to all the features.
@@ -28,7 +28,6 @@ export interface CoreApplicationsListRequest {
28
28
  metaLaunchUrl?: string;
29
29
  metaPublisher?: string;
30
30
  name?: string;
31
- onlyWithLaunchUrl?: boolean;
32
31
  ordering?: string;
33
32
  page?: number;
34
33
  pageSize?: number;
@@ -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
  }
@@ -28,7 +28,6 @@ export interface CoreApplicationsListRequest {
28
28
  metaLaunchUrl?: string;
29
29
  metaPublisher?: string;
30
30
  name?: string;
31
- onlyWithLaunchUrl?: boolean;
32
31
  ordering?: string;
33
32
  page?: number;
34
33
  pageSize?: number;
@@ -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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goauthentik/api",
3
- "version": "2024.6.0-1720022184",
3
+ "version": "2024.6.0-1720092601",
4
4
  "description": "OpenAPI client for @goauthentik/api",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -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
  }