@goauthentik/api 2025.2.2-1742424775 → 2025.2.2-1742432843

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.
@@ -117,6 +117,7 @@ export interface CoreBrandsDestroyRequest {
117
117
  }
118
118
  export interface CoreBrandsListRequest {
119
119
  brandUuid?: string;
120
+ brandingDefaultFlowBackground?: string;
120
121
  brandingFavicon?: string;
121
122
  brandingLogo?: string;
122
123
  brandingTitle?: string;
@@ -1026,6 +1026,9 @@ class CoreApi extends runtime.BaseAPI {
1026
1026
  if (requestParameters['brandUuid'] != null) {
1027
1027
  queryParameters['brand_uuid'] = requestParameters['brandUuid'];
1028
1028
  }
1029
+ if (requestParameters['brandingDefaultFlowBackground'] != null) {
1030
+ queryParameters['branding_default_flow_background'] = requestParameters['brandingDefaultFlowBackground'];
1031
+ }
1029
1032
  if (requestParameters['brandingFavicon'] != null) {
1030
1033
  queryParameters['branding_favicon'] = requestParameters['brandingFavicon'];
1031
1034
  }
@@ -117,6 +117,7 @@ export interface CoreBrandsDestroyRequest {
117
117
  }
118
118
  export interface CoreBrandsListRequest {
119
119
  brandUuid?: string;
120
+ brandingDefaultFlowBackground?: string;
120
121
  brandingFavicon?: string;
121
122
  brandingLogo?: string;
122
123
  brandingTitle?: string;
@@ -1023,6 +1023,9 @@ export class CoreApi extends runtime.BaseAPI {
1023
1023
  if (requestParameters['brandUuid'] != null) {
1024
1024
  queryParameters['brand_uuid'] = requestParameters['brandUuid'];
1025
1025
  }
1026
+ if (requestParameters['brandingDefaultFlowBackground'] != null) {
1027
+ queryParameters['branding_default_flow_background'] = requestParameters['brandingDefaultFlowBackground'];
1028
+ }
1026
1029
  if (requestParameters['brandingFavicon'] != null) {
1027
1030
  queryParameters['branding_favicon'] = requestParameters['brandingFavicon'];
1028
1031
  }
@@ -57,6 +57,12 @@ export interface Brand {
57
57
  * @memberof Brand
58
58
  */
59
59
  brandingCustomCss?: string;
60
+ /**
61
+ *
62
+ * @type {string}
63
+ * @memberof Brand
64
+ */
65
+ brandingDefaultFlowBackground?: string;
60
66
  /**
61
67
  *
62
68
  * @type {string}
@@ -36,6 +36,7 @@ export function BrandFromJSONTyped(json, ignoreDiscriminator) {
36
36
  'brandingLogo': json['branding_logo'] == null ? undefined : json['branding_logo'],
37
37
  'brandingFavicon': json['branding_favicon'] == null ? undefined : json['branding_favicon'],
38
38
  'brandingCustomCss': json['branding_custom_css'] == null ? undefined : json['branding_custom_css'],
39
+ 'brandingDefaultFlowBackground': json['branding_default_flow_background'] == null ? undefined : json['branding_default_flow_background'],
39
40
  'flowAuthentication': json['flow_authentication'] == null ? undefined : json['flow_authentication'],
40
41
  'flowInvalidation': json['flow_invalidation'] == null ? undefined : json['flow_invalidation'],
41
42
  'flowRecovery': json['flow_recovery'] == null ? undefined : json['flow_recovery'],
@@ -61,6 +62,7 @@ export function BrandToJSONTyped(value, ignoreDiscriminator = false) {
61
62
  'branding_logo': value['brandingLogo'],
62
63
  'branding_favicon': value['brandingFavicon'],
63
64
  'branding_custom_css': value['brandingCustomCss'],
65
+ 'branding_default_flow_background': value['brandingDefaultFlowBackground'],
64
66
  'flow_authentication': value['flowAuthentication'],
65
67
  'flow_invalidation': value['flowInvalidation'],
66
68
  'flow_recovery': value['flowRecovery'],
@@ -51,6 +51,12 @@ export interface BrandRequest {
51
51
  * @memberof BrandRequest
52
52
  */
53
53
  brandingCustomCss?: string;
54
+ /**
55
+ *
56
+ * @type {string}
57
+ * @memberof BrandRequest
58
+ */
59
+ brandingDefaultFlowBackground?: string;
54
60
  /**
55
61
  *
56
62
  * @type {string}
@@ -33,6 +33,7 @@ export function BrandRequestFromJSONTyped(json, ignoreDiscriminator) {
33
33
  'brandingLogo': json['branding_logo'] == null ? undefined : json['branding_logo'],
34
34
  'brandingFavicon': json['branding_favicon'] == null ? undefined : json['branding_favicon'],
35
35
  'brandingCustomCss': json['branding_custom_css'] == null ? undefined : json['branding_custom_css'],
36
+ 'brandingDefaultFlowBackground': json['branding_default_flow_background'] == null ? undefined : json['branding_default_flow_background'],
36
37
  'flowAuthentication': json['flow_authentication'] == null ? undefined : json['flow_authentication'],
37
38
  'flowInvalidation': json['flow_invalidation'] == null ? undefined : json['flow_invalidation'],
38
39
  'flowRecovery': json['flow_recovery'] == null ? undefined : json['flow_recovery'],
@@ -58,6 +59,7 @@ export function BrandRequestToJSONTyped(value, ignoreDiscriminator = false) {
58
59
  'branding_logo': value['brandingLogo'],
59
60
  'branding_favicon': value['brandingFavicon'],
60
61
  'branding_custom_css': value['brandingCustomCss'],
62
+ 'branding_default_flow_background': value['brandingDefaultFlowBackground'],
61
63
  'flow_authentication': value['flowAuthentication'],
62
64
  'flow_invalidation': value['flowInvalidation'],
63
65
  'flow_recovery': value['flowRecovery'],
@@ -51,6 +51,12 @@ export interface PatchedBrandRequest {
51
51
  * @memberof PatchedBrandRequest
52
52
  */
53
53
  brandingCustomCss?: string;
54
+ /**
55
+ *
56
+ * @type {string}
57
+ * @memberof PatchedBrandRequest
58
+ */
59
+ brandingDefaultFlowBackground?: string;
54
60
  /**
55
61
  *
56
62
  * @type {string}
@@ -31,6 +31,7 @@ export function PatchedBrandRequestFromJSONTyped(json, ignoreDiscriminator) {
31
31
  'brandingLogo': json['branding_logo'] == null ? undefined : json['branding_logo'],
32
32
  'brandingFavicon': json['branding_favicon'] == null ? undefined : json['branding_favicon'],
33
33
  'brandingCustomCss': json['branding_custom_css'] == null ? undefined : json['branding_custom_css'],
34
+ 'brandingDefaultFlowBackground': json['branding_default_flow_background'] == null ? undefined : json['branding_default_flow_background'],
34
35
  'flowAuthentication': json['flow_authentication'] == null ? undefined : json['flow_authentication'],
35
36
  'flowInvalidation': json['flow_invalidation'] == null ? undefined : json['flow_invalidation'],
36
37
  'flowRecovery': json['flow_recovery'] == null ? undefined : json['flow_recovery'],
@@ -56,6 +57,7 @@ export function PatchedBrandRequestToJSONTyped(value, ignoreDiscriminator = fals
56
57
  'branding_logo': value['brandingLogo'],
57
58
  'branding_favicon': value['brandingFavicon'],
58
59
  'branding_custom_css': value['brandingCustomCss'],
60
+ 'branding_default_flow_background': value['brandingDefaultFlowBackground'],
59
61
  'flow_authentication': value['flowAuthentication'],
60
62
  'flow_invalidation': value['flowInvalidation'],
61
63
  'flow_recovery': value['flowRecovery'],
@@ -57,6 +57,12 @@ export interface Brand {
57
57
  * @memberof Brand
58
58
  */
59
59
  brandingCustomCss?: string;
60
+ /**
61
+ *
62
+ * @type {string}
63
+ * @memberof Brand
64
+ */
65
+ brandingDefaultFlowBackground?: string;
60
66
  /**
61
67
  *
62
68
  * @type {string}
@@ -43,6 +43,7 @@ function BrandFromJSONTyped(json, ignoreDiscriminator) {
43
43
  'brandingLogo': json['branding_logo'] == null ? undefined : json['branding_logo'],
44
44
  'brandingFavicon': json['branding_favicon'] == null ? undefined : json['branding_favicon'],
45
45
  'brandingCustomCss': json['branding_custom_css'] == null ? undefined : json['branding_custom_css'],
46
+ 'brandingDefaultFlowBackground': json['branding_default_flow_background'] == null ? undefined : json['branding_default_flow_background'],
46
47
  'flowAuthentication': json['flow_authentication'] == null ? undefined : json['flow_authentication'],
47
48
  'flowInvalidation': json['flow_invalidation'] == null ? undefined : json['flow_invalidation'],
48
49
  'flowRecovery': json['flow_recovery'] == null ? undefined : json['flow_recovery'],
@@ -68,6 +69,7 @@ function BrandToJSONTyped(value, ignoreDiscriminator = false) {
68
69
  'branding_logo': value['brandingLogo'],
69
70
  'branding_favicon': value['brandingFavicon'],
70
71
  'branding_custom_css': value['brandingCustomCss'],
72
+ 'branding_default_flow_background': value['brandingDefaultFlowBackground'],
71
73
  'flow_authentication': value['flowAuthentication'],
72
74
  'flow_invalidation': value['flowInvalidation'],
73
75
  'flow_recovery': value['flowRecovery'],
@@ -51,6 +51,12 @@ export interface BrandRequest {
51
51
  * @memberof BrandRequest
52
52
  */
53
53
  brandingCustomCss?: string;
54
+ /**
55
+ *
56
+ * @type {string}
57
+ * @memberof BrandRequest
58
+ */
59
+ brandingDefaultFlowBackground?: string;
54
60
  /**
55
61
  *
56
62
  * @type {string}
@@ -40,6 +40,7 @@ function BrandRequestFromJSONTyped(json, ignoreDiscriminator) {
40
40
  'brandingLogo': json['branding_logo'] == null ? undefined : json['branding_logo'],
41
41
  'brandingFavicon': json['branding_favicon'] == null ? undefined : json['branding_favicon'],
42
42
  'brandingCustomCss': json['branding_custom_css'] == null ? undefined : json['branding_custom_css'],
43
+ 'brandingDefaultFlowBackground': json['branding_default_flow_background'] == null ? undefined : json['branding_default_flow_background'],
43
44
  'flowAuthentication': json['flow_authentication'] == null ? undefined : json['flow_authentication'],
44
45
  'flowInvalidation': json['flow_invalidation'] == null ? undefined : json['flow_invalidation'],
45
46
  'flowRecovery': json['flow_recovery'] == null ? undefined : json['flow_recovery'],
@@ -65,6 +66,7 @@ function BrandRequestToJSONTyped(value, ignoreDiscriminator = false) {
65
66
  'branding_logo': value['brandingLogo'],
66
67
  'branding_favicon': value['brandingFavicon'],
67
68
  'branding_custom_css': value['brandingCustomCss'],
69
+ 'branding_default_flow_background': value['brandingDefaultFlowBackground'],
68
70
  'flow_authentication': value['flowAuthentication'],
69
71
  'flow_invalidation': value['flowInvalidation'],
70
72
  'flow_recovery': value['flowRecovery'],
@@ -51,6 +51,12 @@ export interface PatchedBrandRequest {
51
51
  * @memberof PatchedBrandRequest
52
52
  */
53
53
  brandingCustomCss?: string;
54
+ /**
55
+ *
56
+ * @type {string}
57
+ * @memberof PatchedBrandRequest
58
+ */
59
+ brandingDefaultFlowBackground?: string;
54
60
  /**
55
61
  *
56
62
  * @type {string}
@@ -38,6 +38,7 @@ function PatchedBrandRequestFromJSONTyped(json, ignoreDiscriminator) {
38
38
  'brandingLogo': json['branding_logo'] == null ? undefined : json['branding_logo'],
39
39
  'brandingFavicon': json['branding_favicon'] == null ? undefined : json['branding_favicon'],
40
40
  'brandingCustomCss': json['branding_custom_css'] == null ? undefined : json['branding_custom_css'],
41
+ 'brandingDefaultFlowBackground': json['branding_default_flow_background'] == null ? undefined : json['branding_default_flow_background'],
41
42
  'flowAuthentication': json['flow_authentication'] == null ? undefined : json['flow_authentication'],
42
43
  'flowInvalidation': json['flow_invalidation'] == null ? undefined : json['flow_invalidation'],
43
44
  'flowRecovery': json['flow_recovery'] == null ? undefined : json['flow_recovery'],
@@ -63,6 +64,7 @@ function PatchedBrandRequestToJSONTyped(value, ignoreDiscriminator = false) {
63
64
  'branding_logo': value['brandingLogo'],
64
65
  'branding_favicon': value['brandingFavicon'],
65
66
  'branding_custom_css': value['brandingCustomCss'],
67
+ 'branding_default_flow_background': value['brandingDefaultFlowBackground'],
66
68
  'flow_authentication': value['flowAuthentication'],
67
69
  'flow_invalidation': value['flowInvalidation'],
68
70
  'flow_recovery': value['flowRecovery'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goauthentik/api",
3
- "version": "2025.2.2-1742424775",
3
+ "version": "2025.2.2-1742432843",
4
4
  "description": "OpenAPI client for @goauthentik/api",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -293,6 +293,7 @@ export interface CoreBrandsDestroyRequest {
293
293
 
294
294
  export interface CoreBrandsListRequest {
295
295
  brandUuid?: string;
296
+ brandingDefaultFlowBackground?: string;
296
297
  brandingFavicon?: string;
297
298
  brandingLogo?: string;
298
299
  brandingTitle?: string;
@@ -1718,6 +1719,10 @@ export class CoreApi extends runtime.BaseAPI {
1718
1719
  queryParameters['brand_uuid'] = requestParameters['brandUuid'];
1719
1720
  }
1720
1721
 
1722
+ if (requestParameters['brandingDefaultFlowBackground'] != null) {
1723
+ queryParameters['branding_default_flow_background'] = requestParameters['brandingDefaultFlowBackground'];
1724
+ }
1725
+
1721
1726
  if (requestParameters['brandingFavicon'] != null) {
1722
1727
  queryParameters['branding_favicon'] = requestParameters['brandingFavicon'];
1723
1728
  }
@@ -61,6 +61,12 @@ export interface Brand {
61
61
  * @memberof Brand
62
62
  */
63
63
  brandingCustomCss?: string;
64
+ /**
65
+ *
66
+ * @type {string}
67
+ * @memberof Brand
68
+ */
69
+ brandingDefaultFlowBackground?: string;
64
70
  /**
65
71
  *
66
72
  * @type {string}
@@ -143,6 +149,7 @@ export function BrandFromJSONTyped(json: any, ignoreDiscriminator: boolean): Bra
143
149
  'brandingLogo': json['branding_logo'] == null ? undefined : json['branding_logo'],
144
150
  'brandingFavicon': json['branding_favicon'] == null ? undefined : json['branding_favicon'],
145
151
  'brandingCustomCss': json['branding_custom_css'] == null ? undefined : json['branding_custom_css'],
152
+ 'brandingDefaultFlowBackground': json['branding_default_flow_background'] == null ? undefined : json['branding_default_flow_background'],
146
153
  'flowAuthentication': json['flow_authentication'] == null ? undefined : json['flow_authentication'],
147
154
  'flowInvalidation': json['flow_invalidation'] == null ? undefined : json['flow_invalidation'],
148
155
  'flowRecovery': json['flow_recovery'] == null ? undefined : json['flow_recovery'],
@@ -172,6 +179,7 @@ export function BrandToJSONTyped(value?: Omit<Brand, 'brand_uuid'> | null, ignor
172
179
  'branding_logo': value['brandingLogo'],
173
180
  'branding_favicon': value['brandingFavicon'],
174
181
  'branding_custom_css': value['brandingCustomCss'],
182
+ 'branding_default_flow_background': value['brandingDefaultFlowBackground'],
175
183
  'flow_authentication': value['flowAuthentication'],
176
184
  'flow_invalidation': value['flowInvalidation'],
177
185
  'flow_recovery': value['flowRecovery'],
@@ -55,6 +55,12 @@ export interface BrandRequest {
55
55
  * @memberof BrandRequest
56
56
  */
57
57
  brandingCustomCss?: string;
58
+ /**
59
+ *
60
+ * @type {string}
61
+ * @memberof BrandRequest
62
+ */
63
+ brandingDefaultFlowBackground?: string;
58
64
  /**
59
65
  *
60
66
  * @type {string}
@@ -135,6 +141,7 @@ export function BrandRequestFromJSONTyped(json: any, ignoreDiscriminator: boolea
135
141
  'brandingLogo': json['branding_logo'] == null ? undefined : json['branding_logo'],
136
142
  'brandingFavicon': json['branding_favicon'] == null ? undefined : json['branding_favicon'],
137
143
  'brandingCustomCss': json['branding_custom_css'] == null ? undefined : json['branding_custom_css'],
144
+ 'brandingDefaultFlowBackground': json['branding_default_flow_background'] == null ? undefined : json['branding_default_flow_background'],
138
145
  'flowAuthentication': json['flow_authentication'] == null ? undefined : json['flow_authentication'],
139
146
  'flowInvalidation': json['flow_invalidation'] == null ? undefined : json['flow_invalidation'],
140
147
  'flowRecovery': json['flow_recovery'] == null ? undefined : json['flow_recovery'],
@@ -164,6 +171,7 @@ export function BrandRequestToJSONTyped(value?: BrandRequest | null, ignoreDiscr
164
171
  'branding_logo': value['brandingLogo'],
165
172
  'branding_favicon': value['brandingFavicon'],
166
173
  'branding_custom_css': value['brandingCustomCss'],
174
+ 'branding_default_flow_background': value['brandingDefaultFlowBackground'],
167
175
  'flow_authentication': value['flowAuthentication'],
168
176
  'flow_invalidation': value['flowInvalidation'],
169
177
  'flow_recovery': value['flowRecovery'],
@@ -55,6 +55,12 @@ export interface PatchedBrandRequest {
55
55
  * @memberof PatchedBrandRequest
56
56
  */
57
57
  brandingCustomCss?: string;
58
+ /**
59
+ *
60
+ * @type {string}
61
+ * @memberof PatchedBrandRequest
62
+ */
63
+ brandingDefaultFlowBackground?: string;
58
64
  /**
59
65
  *
60
66
  * @type {string}
@@ -134,6 +140,7 @@ export function PatchedBrandRequestFromJSONTyped(json: any, ignoreDiscriminator:
134
140
  'brandingLogo': json['branding_logo'] == null ? undefined : json['branding_logo'],
135
141
  'brandingFavicon': json['branding_favicon'] == null ? undefined : json['branding_favicon'],
136
142
  'brandingCustomCss': json['branding_custom_css'] == null ? undefined : json['branding_custom_css'],
143
+ 'brandingDefaultFlowBackground': json['branding_default_flow_background'] == null ? undefined : json['branding_default_flow_background'],
137
144
  'flowAuthentication': json['flow_authentication'] == null ? undefined : json['flow_authentication'],
138
145
  'flowInvalidation': json['flow_invalidation'] == null ? undefined : json['flow_invalidation'],
139
146
  'flowRecovery': json['flow_recovery'] == null ? undefined : json['flow_recovery'],
@@ -163,6 +170,7 @@ export function PatchedBrandRequestToJSONTyped(value?: PatchedBrandRequest | nul
163
170
  'branding_logo': value['brandingLogo'],
164
171
  'branding_favicon': value['brandingFavicon'],
165
172
  'branding_custom_css': value['brandingCustomCss'],
173
+ 'branding_default_flow_background': value['brandingDefaultFlowBackground'],
166
174
  'flow_authentication': value['flowAuthentication'],
167
175
  'flow_invalidation': value['flowInvalidation'],
168
176
  'flow_recovery': value['flowRecovery'],