@goauthentik/api 2024.4.2-1715262102 → 2024.4.2-1715271029
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.
|
@@ -72,8 +72,8 @@ class ProvidersApi extends runtime.BaseAPI {
|
|
|
72
72
|
if (requestParameters.applicationIsnull !== undefined) {
|
|
73
73
|
queryParameters['application__isnull'] = requestParameters.applicationIsnull;
|
|
74
74
|
}
|
|
75
|
-
if (requestParameters.
|
|
76
|
-
queryParameters['
|
|
75
|
+
if (requestParameters.backchannel !== undefined) {
|
|
76
|
+
queryParameters['backchannel'] = requestParameters.backchannel;
|
|
77
77
|
}
|
|
78
78
|
if (requestParameters.ordering !== undefined) {
|
|
79
79
|
queryParameters['ordering'] = requestParameters.ordering;
|
|
@@ -69,8 +69,8 @@ export class ProvidersApi extends runtime.BaseAPI {
|
|
|
69
69
|
if (requestParameters.applicationIsnull !== undefined) {
|
|
70
70
|
queryParameters['application__isnull'] = requestParameters.applicationIsnull;
|
|
71
71
|
}
|
|
72
|
-
if (requestParameters.
|
|
73
|
-
queryParameters['
|
|
72
|
+
if (requestParameters.backchannel !== undefined) {
|
|
73
|
+
queryParameters['backchannel'] = requestParameters.backchannel;
|
|
74
74
|
}
|
|
75
75
|
if (requestParameters.ordering !== undefined) {
|
|
76
76
|
queryParameters['ordering'] = requestParameters.ordering;
|
package/package.json
CHANGED
package/src/apis/ProvidersApi.ts
CHANGED
|
@@ -211,7 +211,7 @@ export interface ProvidersAllDestroyRequest {
|
|
|
211
211
|
|
|
212
212
|
export interface ProvidersAllListRequest {
|
|
213
213
|
applicationIsnull?: boolean;
|
|
214
|
-
|
|
214
|
+
backchannel?: boolean;
|
|
215
215
|
ordering?: string;
|
|
216
216
|
page?: number;
|
|
217
217
|
pageSize?: number;
|
|
@@ -834,8 +834,8 @@ export class ProvidersApi extends runtime.BaseAPI {
|
|
|
834
834
|
queryParameters['application__isnull'] = requestParameters.applicationIsnull;
|
|
835
835
|
}
|
|
836
836
|
|
|
837
|
-
if (requestParameters.
|
|
838
|
-
queryParameters['
|
|
837
|
+
if (requestParameters.backchannel !== undefined) {
|
|
838
|
+
queryParameters['backchannel'] = requestParameters.backchannel;
|
|
839
839
|
}
|
|
840
840
|
|
|
841
841
|
if (requestParameters.ordering !== undefined) {
|