@goauthentik/api 2024.6.0-1719407664 → 2024.6.0-1720022184

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.
@@ -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
  }
@@ -275,6 +275,7 @@ export interface PoliciesReputationScoresDestroyRequest {
275
275
  }
276
276
  export interface PoliciesReputationScoresListRequest {
277
277
  identifier?: string;
278
+ identifierIn?: Array<string>;
278
279
  ip?: string;
279
280
  ordering?: string;
280
281
  page?: number;
@@ -2309,6 +2309,9 @@ class PoliciesApi extends runtime.BaseAPI {
2309
2309
  if (requestParameters.identifier !== undefined) {
2310
2310
  queryParameters['identifier'] = requestParameters.identifier;
2311
2311
  }
2312
+ if (requestParameters.identifierIn) {
2313
+ queryParameters['identifier_in'] = requestParameters.identifierIn.join(runtime.COLLECTION_FORMATS["csv"]);
2314
+ }
2312
2315
  if (requestParameters.ip !== undefined) {
2313
2316
  queryParameters['ip'] = requestParameters.ip;
2314
2317
  }
@@ -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
  }
@@ -275,6 +275,7 @@ export interface PoliciesReputationScoresDestroyRequest {
275
275
  }
276
276
  export interface PoliciesReputationScoresListRequest {
277
277
  identifier?: string;
278
+ identifierIn?: Array<string>;
278
279
  ip?: string;
279
280
  ordering?: string;
280
281
  page?: number;
@@ -2306,6 +2306,9 @@ export class PoliciesApi extends runtime.BaseAPI {
2306
2306
  if (requestParameters.identifier !== undefined) {
2307
2307
  queryParameters['identifier'] = requestParameters.identifier;
2308
2308
  }
2309
+ if (requestParameters.identifierIn) {
2310
+ queryParameters['identifier_in'] = requestParameters.identifierIn.join(runtime.COLLECTION_FORMATS["csv"]);
2311
+ }
2309
2312
  if (requestParameters.ip !== undefined) {
2310
2313
  queryParameters['ip'] = requestParameters.ip;
2311
2314
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goauthentik/api",
3
- "version": "2024.6.0-1719407664",
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
  }
@@ -453,6 +453,7 @@ export interface PoliciesReputationScoresDestroyRequest {
453
453
 
454
454
  export interface PoliciesReputationScoresListRequest {
455
455
  identifier?: string;
456
+ identifierIn?: Array<string>;
456
457
  ip?: string;
457
458
  ordering?: string;
458
459
  page?: number;
@@ -3046,6 +3047,10 @@ export class PoliciesApi extends runtime.BaseAPI {
3046
3047
  queryParameters['identifier'] = requestParameters.identifier;
3047
3048
  }
3048
3049
 
3050
+ if (requestParameters.identifierIn) {
3051
+ queryParameters['identifier_in'] = requestParameters.identifierIn.join(runtime.COLLECTION_FORMATS["csv"]);
3052
+ }
3053
+
3049
3054
  if (requestParameters.ip !== undefined) {
3050
3055
  queryParameters['ip'] = requestParameters.ip;
3051
3056
  }