@goauthentik/api 2024.6.0-1719577139 → 2024.6.0-1720022184

Sign up to get free protection for your applications and to get access to all the features.
@@ -28,6 +28,7 @@ export interface CoreApplicationsListRequest {
28
28
  metaLaunchUrl?: string;
29
29
  metaPublisher?: string;
30
30
  name?: string;
31
+ onlyWithLaunchUrl?: boolean;
31
32
  ordering?: string;
32
33
  page?: number;
33
34
  pageSize?: number;
@@ -162,6 +162,9 @@ 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
+ }
165
168
  if (requestParameters.ordering !== undefined) {
166
169
  queryParameters['ordering'] = requestParameters.ordering;
167
170
  }
@@ -28,6 +28,7 @@ export interface CoreApplicationsListRequest {
28
28
  metaLaunchUrl?: string;
29
29
  metaPublisher?: string;
30
30
  name?: string;
31
+ onlyWithLaunchUrl?: boolean;
31
32
  ordering?: string;
32
33
  page?: number;
33
34
  pageSize?: number;
@@ -159,6 +159,9 @@ 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
+ }
162
165
  if (requestParameters.ordering !== undefined) {
163
166
  queryParameters['ordering'] = requestParameters.ordering;
164
167
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goauthentik/api",
3
- "version": "2024.6.0-1719577139",
3
+ "version": "2024.6.0-1720022184",
4
4
  "description": "OpenAPI client for @goauthentik/api",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -168,6 +168,7 @@ export interface CoreApplicationsListRequest {
168
168
  metaLaunchUrl?: string;
169
169
  metaPublisher?: string;
170
170
  name?: string;
171
+ onlyWithLaunchUrl?: boolean;
171
172
  ordering?: string;
172
173
  page?: number;
173
174
  pageSize?: number;
@@ -632,6 +633,10 @@ export class CoreApi extends runtime.BaseAPI {
632
633
  queryParameters['name'] = requestParameters.name;
633
634
  }
634
635
 
636
+ if (requestParameters.onlyWithLaunchUrl !== undefined) {
637
+ queryParameters['only_with_launch_url'] = requestParameters.onlyWithLaunchUrl;
638
+ }
639
+
635
640
  if (requestParameters.ordering !== undefined) {
636
641
  queryParameters['ordering'] = requestParameters.ordering;
637
642
  }