@goauthentik/api 2024.12.3-1739200400 → 2024.12.3-1739449824

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.
@@ -20,6 +20,7 @@ export interface SourcesAllListRequest {
20
20
  ordering?: string;
21
21
  page?: number;
22
22
  pageSize?: number;
23
+ pbmUuid?: string;
23
24
  search?: string;
24
25
  slug?: string;
25
26
  }
@@ -84,6 +84,9 @@ class SourcesApi extends runtime.BaseAPI {
84
84
  if (requestParameters['pageSize'] != null) {
85
85
  queryParameters['page_size'] = requestParameters['pageSize'];
86
86
  }
87
+ if (requestParameters['pbmUuid'] != null) {
88
+ queryParameters['pbm_uuid'] = requestParameters['pbmUuid'];
89
+ }
87
90
  if (requestParameters['search'] != null) {
88
91
  queryParameters['search'] = requestParameters['search'];
89
92
  }
@@ -20,6 +20,7 @@ export interface SourcesAllListRequest {
20
20
  ordering?: string;
21
21
  page?: number;
22
22
  pageSize?: number;
23
+ pbmUuid?: string;
23
24
  search?: string;
24
25
  slug?: string;
25
26
  }
@@ -81,6 +81,9 @@ export class SourcesApi extends runtime.BaseAPI {
81
81
  if (requestParameters['pageSize'] != null) {
82
82
  queryParameters['page_size'] = requestParameters['pageSize'];
83
83
  }
84
+ if (requestParameters['pbmUuid'] != null) {
85
+ queryParameters['pbm_uuid'] = requestParameters['pbmUuid'];
86
+ }
84
87
  if (requestParameters['search'] != null) {
85
88
  queryParameters['search'] = requestParameters['search'];
86
89
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goauthentik/api",
3
- "version": "2024.12.3-1739200400",
3
+ "version": "2024.12.3-1739449824",
4
4
  "description": "OpenAPI client for @goauthentik/api",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -278,6 +278,7 @@ export interface SourcesAllListRequest {
278
278
  ordering?: string;
279
279
  page?: number;
280
280
  pageSize?: number;
281
+ pbmUuid?: string;
281
282
  search?: string;
282
283
  slug?: string;
283
284
  }
@@ -1061,6 +1062,10 @@ export class SourcesApi extends runtime.BaseAPI {
1061
1062
  queryParameters['page_size'] = requestParameters['pageSize'];
1062
1063
  }
1063
1064
 
1065
+ if (requestParameters['pbmUuid'] != null) {
1066
+ queryParameters['pbm_uuid'] = requestParameters['pbmUuid'];
1067
+ }
1068
+
1064
1069
  if (requestParameters['search'] != null) {
1065
1070
  queryParameters['search'] = requestParameters['search'];
1066
1071
  }