@goauthentik/api 2023.2.2-1677073316 → 2023.2.2-1677507715

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
@@ -49,7 +49,7 @@ export interface FlowInspectorPlanCurrentStage {
49
49
  */
50
50
  stageObj: FlowStageBindingStageObj;
51
51
  /**
52
- * Evaluate policies during the Flow planning process. Disable this for input-based policies.
52
+ * Evaluate policies during the Flow planning process.
53
53
  * @type {boolean}
54
54
  * @memberof FlowInspectorPlanCurrentStage
55
55
  */
@@ -49,7 +49,7 @@ export interface FlowStageBinding {
49
49
  */
50
50
  stageObj: FlowStageBindingStageObj;
51
51
  /**
52
- * Evaluate policies during the Flow planning process. Disable this for input-based policies.
52
+ * Evaluate policies during the Flow planning process.
53
53
  * @type {boolean}
54
54
  * @memberof FlowStageBinding
55
55
  */
@@ -30,7 +30,7 @@ export interface FlowStageBindingRequest {
30
30
  */
31
31
  stage: string;
32
32
  /**
33
- * Evaluate policies during the Flow planning process. Disable this for input-based policies.
33
+ * Evaluate policies during the Flow planning process.
34
34
  * @type {boolean}
35
35
  * @memberof FlowStageBindingRequest
36
36
  */
@@ -30,7 +30,7 @@ export interface PatchedFlowStageBindingRequest {
30
30
  */
31
31
  stage?: string;
32
32
  /**
33
- * Evaluate policies during the Flow planning process. Disable this for input-based policies.
33
+ * Evaluate policies during the Flow planning process.
34
34
  * @type {boolean}
35
35
  * @memberof PatchedFlowStageBindingRequest
36
36
  */
@@ -49,7 +49,7 @@ export interface FlowInspectorPlanCurrentStage {
49
49
  */
50
50
  stageObj: FlowStageBindingStageObj;
51
51
  /**
52
- * Evaluate policies during the Flow planning process. Disable this for input-based policies.
52
+ * Evaluate policies during the Flow planning process.
53
53
  * @type {boolean}
54
54
  * @memberof FlowInspectorPlanCurrentStage
55
55
  */
@@ -49,7 +49,7 @@ export interface FlowStageBinding {
49
49
  */
50
50
  stageObj: FlowStageBindingStageObj;
51
51
  /**
52
- * Evaluate policies during the Flow planning process. Disable this for input-based policies.
52
+ * Evaluate policies during the Flow planning process.
53
53
  * @type {boolean}
54
54
  * @memberof FlowStageBinding
55
55
  */
@@ -30,7 +30,7 @@ export interface FlowStageBindingRequest {
30
30
  */
31
31
  stage: string;
32
32
  /**
33
- * Evaluate policies during the Flow planning process. Disable this for input-based policies.
33
+ * Evaluate policies during the Flow planning process.
34
34
  * @type {boolean}
35
35
  * @memberof FlowStageBindingRequest
36
36
  */
@@ -30,7 +30,7 @@ export interface PatchedFlowStageBindingRequest {
30
30
  */
31
31
  stage?: string;
32
32
  /**
33
- * Evaluate policies during the Flow planning process. Disable this for input-based policies.
33
+ * Evaluate policies during the Flow planning process.
34
34
  * @type {boolean}
35
35
  * @memberof PatchedFlowStageBindingRequest
36
36
  */
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-1677507715",
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) {
@@ -75,7 +75,7 @@ export interface FlowInspectorPlanCurrentStage {
75
75
  */
76
76
  stageObj: FlowStageBindingStageObj;
77
77
  /**
78
- * Evaluate policies during the Flow planning process. Disable this for input-based policies.
78
+ * Evaluate policies during the Flow planning process.
79
79
  * @type {boolean}
80
80
  * @memberof FlowInspectorPlanCurrentStage
81
81
  */
@@ -69,7 +69,7 @@ export interface FlowStageBinding {
69
69
  */
70
70
  stageObj: FlowStageBindingStageObj;
71
71
  /**
72
- * Evaluate policies during the Flow planning process. Disable this for input-based policies.
72
+ * Evaluate policies during the Flow planning process.
73
73
  * @type {boolean}
74
74
  * @memberof FlowStageBinding
75
75
  */
@@ -45,7 +45,7 @@ export interface FlowStageBindingRequest {
45
45
  */
46
46
  stage: string;
47
47
  /**
48
- * Evaluate policies during the Flow planning process. Disable this for input-based policies.
48
+ * Evaluate policies during the Flow planning process.
49
49
  * @type {boolean}
50
50
  * @memberof FlowStageBindingRequest
51
51
  */
@@ -45,7 +45,7 @@ export interface PatchedFlowStageBindingRequest {
45
45
  */
46
46
  stage?: string;
47
47
  /**
48
- * Evaluate policies during the Flow planning process. Disable this for input-based policies.
48
+ * Evaluate policies during the Flow planning process.
49
49
  * @type {boolean}
50
50
  * @memberof PatchedFlowStageBindingRequest
51
51
  */