@goauthentik/api 2023.2.2-1677073316 → 2023.2.2-1677234143

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.
@@ -233,6 +233,7 @@ export interface SourcesUserConnectionsAllListRequest {
233
233
  page?: number;
234
234
  pageSize?: number;
235
235
  search?: string;
236
+ user?: number;
236
237
  }
237
238
  export interface SourcesUserConnectionsAllPartialUpdateRequest {
238
239
  id: number;
@@ -1681,6 +1681,9 @@ class SourcesApi extends runtime.BaseAPI {
1681
1681
  if (requestParameters.search !== undefined) {
1682
1682
  queryParameters['search'] = requestParameters.search;
1683
1683
  }
1684
+ if (requestParameters.user !== undefined) {
1685
+ queryParameters['user'] = requestParameters.user;
1686
+ }
1684
1687
  const headerParameters = {};
1685
1688
  if (this.configuration && this.configuration.apiKey) {
1686
1689
  headerParameters["Authorization"] = this.configuration.apiKey("Authorization"); // authentik authentication
@@ -233,6 +233,7 @@ export interface SourcesUserConnectionsAllListRequest {
233
233
  page?: number;
234
234
  pageSize?: number;
235
235
  search?: string;
236
+ user?: number;
236
237
  }
237
238
  export interface SourcesUserConnectionsAllPartialUpdateRequest {
238
239
  id: number;
@@ -1678,6 +1678,9 @@ export class SourcesApi extends runtime.BaseAPI {
1678
1678
  if (requestParameters.search !== undefined) {
1679
1679
  queryParameters['search'] = requestParameters.search;
1680
1680
  }
1681
+ if (requestParameters.user !== undefined) {
1682
+ queryParameters['user'] = requestParameters.user;
1683
+ }
1681
1684
  const headerParameters = {};
1682
1685
  if (this.configuration && this.configuration.apiKey) {
1683
1686
  headerParameters["Authorization"] = this.configuration.apiKey("Authorization"); // authentik authentication
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goauthentik/api",
3
- "version": "2023.2.2-1677073316",
3
+ "version": "2023.2.2-1677234143",
4
4
  "description": "OpenAPI client for @goauthentik/api",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -412,6 +412,7 @@ export interface SourcesUserConnectionsAllListRequest {
412
412
  page?: number;
413
413
  pageSize?: number;
414
414
  search?: string;
415
+ user?: number;
415
416
  }
416
417
 
417
418
  export interface SourcesUserConnectionsAllPartialUpdateRequest {
@@ -2426,6 +2427,10 @@ export class SourcesApi extends runtime.BaseAPI {
2426
2427
  queryParameters['search'] = requestParameters.search;
2427
2428
  }
2428
2429
 
2430
+ if (requestParameters.user !== undefined) {
2431
+ queryParameters['user'] = requestParameters.user;
2432
+ }
2433
+
2429
2434
  const headerParameters: runtime.HTTPHeaders = {};
2430
2435
 
2431
2436
  if (this.configuration && this.configuration.apiKey) {