@goauthentik/api 2025.12.0-rc1-1764767236 → 2025.12.0-rc1-1764947013

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goauthentik/api",
3
- "version": "2025.12.0-rc1-1764767236",
3
+ "version": "2025.12.0-rc1-1764947013",
4
4
  "description": "OpenAPI client for @goauthentik/api",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -25,6 +25,12 @@ export interface CurrentBrandFlags {
25
25
  * @memberof CurrentBrandFlags
26
26
  */
27
27
  policiesBufferedAccessView: boolean;
28
+ /**
29
+ *
30
+ * @type {boolean}
31
+ * @memberof CurrentBrandFlags
32
+ */
33
+ flowsRefreshOthers: boolean;
28
34
  }
29
35
 
30
36
  /**
@@ -32,6 +38,7 @@ export interface CurrentBrandFlags {
32
38
  */
33
39
  export function instanceOfCurrentBrandFlags(value: object): value is CurrentBrandFlags {
34
40
  if (!('policiesBufferedAccessView' in value) || value['policiesBufferedAccessView'] === undefined) return false;
41
+ if (!('flowsRefreshOthers' in value) || value['flowsRefreshOthers'] === undefined) return false;
35
42
  return true;
36
43
  }
37
44
 
@@ -46,6 +53,7 @@ export function CurrentBrandFlagsFromJSONTyped(json: any, ignoreDiscriminator: b
46
53
  return {
47
54
 
48
55
  'policiesBufferedAccessView': json['policies_buffered_access_view'],
56
+ 'flowsRefreshOthers': json['flows_refresh_others'],
49
57
  };
50
58
  }
51
59
 
@@ -61,6 +69,7 @@ export function CurrentBrandFlagsToJSONTyped(value?: CurrentBrandFlags | null, i
61
69
  return {
62
70
 
63
71
  'policies_buffered_access_view': value['policiesBufferedAccessView'],
72
+ 'flows_refresh_others': value['flowsRefreshOthers'],
64
73
  };
65
74
  }
66
75
 
@@ -25,6 +25,12 @@ export interface PatchedSettingsRequestFlags {
25
25
  * @memberof PatchedSettingsRequestFlags
26
26
  */
27
27
  policiesBufferedAccessView: boolean;
28
+ /**
29
+ *
30
+ * @type {boolean}
31
+ * @memberof PatchedSettingsRequestFlags
32
+ */
33
+ flowsRefreshOthers: boolean;
28
34
  }
29
35
 
30
36
  /**
@@ -32,6 +38,7 @@ export interface PatchedSettingsRequestFlags {
32
38
  */
33
39
  export function instanceOfPatchedSettingsRequestFlags(value: object): value is PatchedSettingsRequestFlags {
34
40
  if (!('policiesBufferedAccessView' in value) || value['policiesBufferedAccessView'] === undefined) return false;
41
+ if (!('flowsRefreshOthers' in value) || value['flowsRefreshOthers'] === undefined) return false;
35
42
  return true;
36
43
  }
37
44
 
@@ -46,6 +53,7 @@ export function PatchedSettingsRequestFlagsFromJSONTyped(json: any, ignoreDiscri
46
53
  return {
47
54
 
48
55
  'policiesBufferedAccessView': json['policies_buffered_access_view'],
56
+ 'flowsRefreshOthers': json['flows_refresh_others'],
49
57
  };
50
58
  }
51
59
 
@@ -61,6 +69,7 @@ export function PatchedSettingsRequestFlagsToJSONTyped(value?: PatchedSettingsRe
61
69
  return {
62
70
 
63
71
  'policies_buffered_access_view': value['policiesBufferedAccessView'],
72
+ 'flows_refresh_others': value['flowsRefreshOthers'],
64
73
  };
65
74
  }
66
75