@goauthentik/api 2025.2.2-1742395408 → 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.
- package/dist/apis/CoreApi.d.ts +1 -0
- package/dist/apis/CoreApi.js +3 -0
- package/dist/esm/apis/CoreApi.d.ts +1 -0
- package/dist/esm/apis/CoreApi.js +3 -0
- package/dist/esm/models/Brand.d.ts +12 -0
- package/dist/esm/models/Brand.js +4 -0
- package/dist/esm/models/BrandRequest.d.ts +12 -0
- package/dist/esm/models/BrandRequest.js +4 -0
- package/dist/esm/models/CurrentBrand.d.ts +6 -0
- package/dist/esm/models/CurrentBrand.js +4 -0
- package/dist/esm/models/PatchedBrandRequest.d.ts +12 -0
- package/dist/esm/models/PatchedBrandRequest.js +4 -0
- package/dist/models/Brand.d.ts +12 -0
- package/dist/models/Brand.js +4 -0
- package/dist/models/BrandRequest.d.ts +12 -0
- package/dist/models/BrandRequest.js +4 -0
- package/dist/models/CurrentBrand.d.ts +6 -0
- package/dist/models/CurrentBrand.js +4 -0
- package/dist/models/PatchedBrandRequest.d.ts +12 -0
- package/dist/models/PatchedBrandRequest.js +4 -0
- package/package.json +1 -1
- package/src/apis/CoreApi.ts +5 -0
- package/src/models/Brand.ts +16 -0
- package/src/models/BrandRequest.ts +16 -0
- package/src/models/CurrentBrand.ts +9 -0
- package/src/models/PatchedBrandRequest.ts +16 -0
package/dist/apis/CoreApi.d.ts
CHANGED
package/dist/apis/CoreApi.js
CHANGED
|
@@ -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
|
}
|
package/dist/esm/apis/CoreApi.js
CHANGED
|
@@ -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
|
}
|
|
@@ -51,6 +51,18 @@ export interface Brand {
|
|
|
51
51
|
* @memberof Brand
|
|
52
52
|
*/
|
|
53
53
|
brandingFavicon?: string;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof Brand
|
|
58
|
+
*/
|
|
59
|
+
brandingCustomCss?: string;
|
|
60
|
+
/**
|
|
61
|
+
*
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof Brand
|
|
64
|
+
*/
|
|
65
|
+
brandingDefaultFlowBackground?: string;
|
|
54
66
|
/**
|
|
55
67
|
*
|
|
56
68
|
* @type {string}
|
package/dist/esm/models/Brand.js
CHANGED
|
@@ -35,6 +35,8 @@ export function BrandFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
35
35
|
'brandingTitle': json['branding_title'] == null ? undefined : json['branding_title'],
|
|
36
36
|
'brandingLogo': json['branding_logo'] == null ? undefined : json['branding_logo'],
|
|
37
37
|
'brandingFavicon': json['branding_favicon'] == null ? undefined : json['branding_favicon'],
|
|
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'],
|
|
38
40
|
'flowAuthentication': json['flow_authentication'] == null ? undefined : json['flow_authentication'],
|
|
39
41
|
'flowInvalidation': json['flow_invalidation'] == null ? undefined : json['flow_invalidation'],
|
|
40
42
|
'flowRecovery': json['flow_recovery'] == null ? undefined : json['flow_recovery'],
|
|
@@ -59,6 +61,8 @@ export function BrandToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
59
61
|
'branding_title': value['brandingTitle'],
|
|
60
62
|
'branding_logo': value['brandingLogo'],
|
|
61
63
|
'branding_favicon': value['brandingFavicon'],
|
|
64
|
+
'branding_custom_css': value['brandingCustomCss'],
|
|
65
|
+
'branding_default_flow_background': value['brandingDefaultFlowBackground'],
|
|
62
66
|
'flow_authentication': value['flowAuthentication'],
|
|
63
67
|
'flow_invalidation': value['flowInvalidation'],
|
|
64
68
|
'flow_recovery': value['flowRecovery'],
|
|
@@ -45,6 +45,18 @@ export interface BrandRequest {
|
|
|
45
45
|
* @memberof BrandRequest
|
|
46
46
|
*/
|
|
47
47
|
brandingFavicon?: string;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof BrandRequest
|
|
52
|
+
*/
|
|
53
|
+
brandingCustomCss?: string;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof BrandRequest
|
|
58
|
+
*/
|
|
59
|
+
brandingDefaultFlowBackground?: string;
|
|
48
60
|
/**
|
|
49
61
|
*
|
|
50
62
|
* @type {string}
|
|
@@ -32,6 +32,8 @@ export function BrandRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
32
32
|
'brandingTitle': json['branding_title'] == null ? undefined : json['branding_title'],
|
|
33
33
|
'brandingLogo': json['branding_logo'] == null ? undefined : json['branding_logo'],
|
|
34
34
|
'brandingFavicon': json['branding_favicon'] == null ? undefined : json['branding_favicon'],
|
|
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'],
|
|
35
37
|
'flowAuthentication': json['flow_authentication'] == null ? undefined : json['flow_authentication'],
|
|
36
38
|
'flowInvalidation': json['flow_invalidation'] == null ? undefined : json['flow_invalidation'],
|
|
37
39
|
'flowRecovery': json['flow_recovery'] == null ? undefined : json['flow_recovery'],
|
|
@@ -56,6 +58,8 @@ export function BrandRequestToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
56
58
|
'branding_title': value['brandingTitle'],
|
|
57
59
|
'branding_logo': value['brandingLogo'],
|
|
58
60
|
'branding_favicon': value['brandingFavicon'],
|
|
61
|
+
'branding_custom_css': value['brandingCustomCss'],
|
|
62
|
+
'branding_default_flow_background': value['brandingDefaultFlowBackground'],
|
|
59
63
|
'flow_authentication': value['flowAuthentication'],
|
|
60
64
|
'flow_invalidation': value['flowInvalidation'],
|
|
61
65
|
'flow_recovery': value['flowRecovery'],
|
|
@@ -25,6 +25,8 @@ export function instanceOfCurrentBrand(value) {
|
|
|
25
25
|
return false;
|
|
26
26
|
if (!('brandingFavicon' in value) || value['brandingFavicon'] === undefined)
|
|
27
27
|
return false;
|
|
28
|
+
if (!('brandingCustomCss' in value) || value['brandingCustomCss'] === undefined)
|
|
29
|
+
return false;
|
|
28
30
|
if (!('uiFooterLinks' in value) || value['uiFooterLinks'] === undefined)
|
|
29
31
|
return false;
|
|
30
32
|
if (!('uiTheme' in value) || value['uiTheme'] === undefined)
|
|
@@ -45,6 +47,7 @@ export function CurrentBrandFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
45
47
|
'brandingTitle': json['branding_title'],
|
|
46
48
|
'brandingLogo': json['branding_logo'],
|
|
47
49
|
'brandingFavicon': json['branding_favicon'],
|
|
50
|
+
'brandingCustomCss': json['branding_custom_css'],
|
|
48
51
|
'uiFooterLinks': (json['ui_footer_links'].map(FooterLinkFromJSON)),
|
|
49
52
|
'uiTheme': UiThemeEnumFromJSON(json['ui_theme']),
|
|
50
53
|
'flowAuthentication': json['flow_authentication'] == null ? undefined : json['flow_authentication'],
|
|
@@ -68,6 +71,7 @@ export function CurrentBrandToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
68
71
|
'branding_title': value['brandingTitle'],
|
|
69
72
|
'branding_logo': value['brandingLogo'],
|
|
70
73
|
'branding_favicon': value['brandingFavicon'],
|
|
74
|
+
'branding_custom_css': value['brandingCustomCss'],
|
|
71
75
|
'flow_authentication': value['flowAuthentication'],
|
|
72
76
|
'flow_invalidation': value['flowInvalidation'],
|
|
73
77
|
'flow_recovery': value['flowRecovery'],
|
|
@@ -45,6 +45,18 @@ export interface PatchedBrandRequest {
|
|
|
45
45
|
* @memberof PatchedBrandRequest
|
|
46
46
|
*/
|
|
47
47
|
brandingFavicon?: string;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof PatchedBrandRequest
|
|
52
|
+
*/
|
|
53
|
+
brandingCustomCss?: string;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof PatchedBrandRequest
|
|
58
|
+
*/
|
|
59
|
+
brandingDefaultFlowBackground?: string;
|
|
48
60
|
/**
|
|
49
61
|
*
|
|
50
62
|
* @type {string}
|
|
@@ -30,6 +30,8 @@ export function PatchedBrandRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
30
30
|
'brandingTitle': json['branding_title'] == null ? undefined : json['branding_title'],
|
|
31
31
|
'brandingLogo': json['branding_logo'] == null ? undefined : json['branding_logo'],
|
|
32
32
|
'brandingFavicon': json['branding_favicon'] == null ? undefined : json['branding_favicon'],
|
|
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'],
|
|
33
35
|
'flowAuthentication': json['flow_authentication'] == null ? undefined : json['flow_authentication'],
|
|
34
36
|
'flowInvalidation': json['flow_invalidation'] == null ? undefined : json['flow_invalidation'],
|
|
35
37
|
'flowRecovery': json['flow_recovery'] == null ? undefined : json['flow_recovery'],
|
|
@@ -54,6 +56,8 @@ export function PatchedBrandRequestToJSONTyped(value, ignoreDiscriminator = fals
|
|
|
54
56
|
'branding_title': value['brandingTitle'],
|
|
55
57
|
'branding_logo': value['brandingLogo'],
|
|
56
58
|
'branding_favicon': value['brandingFavicon'],
|
|
59
|
+
'branding_custom_css': value['brandingCustomCss'],
|
|
60
|
+
'branding_default_flow_background': value['brandingDefaultFlowBackground'],
|
|
57
61
|
'flow_authentication': value['flowAuthentication'],
|
|
58
62
|
'flow_invalidation': value['flowInvalidation'],
|
|
59
63
|
'flow_recovery': value['flowRecovery'],
|
package/dist/models/Brand.d.ts
CHANGED
|
@@ -51,6 +51,18 @@ export interface Brand {
|
|
|
51
51
|
* @memberof Brand
|
|
52
52
|
*/
|
|
53
53
|
brandingFavicon?: string;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof Brand
|
|
58
|
+
*/
|
|
59
|
+
brandingCustomCss?: string;
|
|
60
|
+
/**
|
|
61
|
+
*
|
|
62
|
+
* @type {string}
|
|
63
|
+
* @memberof Brand
|
|
64
|
+
*/
|
|
65
|
+
brandingDefaultFlowBackground?: string;
|
|
54
66
|
/**
|
|
55
67
|
*
|
|
56
68
|
* @type {string}
|
package/dist/models/Brand.js
CHANGED
|
@@ -42,6 +42,8 @@ function BrandFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
42
42
|
'brandingTitle': json['branding_title'] == null ? undefined : json['branding_title'],
|
|
43
43
|
'brandingLogo': json['branding_logo'] == null ? undefined : json['branding_logo'],
|
|
44
44
|
'brandingFavicon': json['branding_favicon'] == null ? undefined : json['branding_favicon'],
|
|
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'],
|
|
45
47
|
'flowAuthentication': json['flow_authentication'] == null ? undefined : json['flow_authentication'],
|
|
46
48
|
'flowInvalidation': json['flow_invalidation'] == null ? undefined : json['flow_invalidation'],
|
|
47
49
|
'flowRecovery': json['flow_recovery'] == null ? undefined : json['flow_recovery'],
|
|
@@ -66,6 +68,8 @@ function BrandToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
66
68
|
'branding_title': value['brandingTitle'],
|
|
67
69
|
'branding_logo': value['brandingLogo'],
|
|
68
70
|
'branding_favicon': value['brandingFavicon'],
|
|
71
|
+
'branding_custom_css': value['brandingCustomCss'],
|
|
72
|
+
'branding_default_flow_background': value['brandingDefaultFlowBackground'],
|
|
69
73
|
'flow_authentication': value['flowAuthentication'],
|
|
70
74
|
'flow_invalidation': value['flowInvalidation'],
|
|
71
75
|
'flow_recovery': value['flowRecovery'],
|
|
@@ -45,6 +45,18 @@ export interface BrandRequest {
|
|
|
45
45
|
* @memberof BrandRequest
|
|
46
46
|
*/
|
|
47
47
|
brandingFavicon?: string;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof BrandRequest
|
|
52
|
+
*/
|
|
53
|
+
brandingCustomCss?: string;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof BrandRequest
|
|
58
|
+
*/
|
|
59
|
+
brandingDefaultFlowBackground?: string;
|
|
48
60
|
/**
|
|
49
61
|
*
|
|
50
62
|
* @type {string}
|
|
@@ -39,6 +39,8 @@ function BrandRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
39
39
|
'brandingTitle': json['branding_title'] == null ? undefined : json['branding_title'],
|
|
40
40
|
'brandingLogo': json['branding_logo'] == null ? undefined : json['branding_logo'],
|
|
41
41
|
'brandingFavicon': json['branding_favicon'] == null ? undefined : json['branding_favicon'],
|
|
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'],
|
|
42
44
|
'flowAuthentication': json['flow_authentication'] == null ? undefined : json['flow_authentication'],
|
|
43
45
|
'flowInvalidation': json['flow_invalidation'] == null ? undefined : json['flow_invalidation'],
|
|
44
46
|
'flowRecovery': json['flow_recovery'] == null ? undefined : json['flow_recovery'],
|
|
@@ -63,6 +65,8 @@ function BrandRequestToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
63
65
|
'branding_title': value['brandingTitle'],
|
|
64
66
|
'branding_logo': value['brandingLogo'],
|
|
65
67
|
'branding_favicon': value['brandingFavicon'],
|
|
68
|
+
'branding_custom_css': value['brandingCustomCss'],
|
|
69
|
+
'branding_default_flow_background': value['brandingDefaultFlowBackground'],
|
|
66
70
|
'flow_authentication': value['flowAuthentication'],
|
|
67
71
|
'flow_invalidation': value['flowInvalidation'],
|
|
68
72
|
'flow_recovery': value['flowRecovery'],
|
|
@@ -32,6 +32,8 @@ function instanceOfCurrentBrand(value) {
|
|
|
32
32
|
return false;
|
|
33
33
|
if (!('brandingFavicon' in value) || value['brandingFavicon'] === undefined)
|
|
34
34
|
return false;
|
|
35
|
+
if (!('brandingCustomCss' in value) || value['brandingCustomCss'] === undefined)
|
|
36
|
+
return false;
|
|
35
37
|
if (!('uiFooterLinks' in value) || value['uiFooterLinks'] === undefined)
|
|
36
38
|
return false;
|
|
37
39
|
if (!('uiTheme' in value) || value['uiTheme'] === undefined)
|
|
@@ -52,6 +54,7 @@ function CurrentBrandFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
52
54
|
'brandingTitle': json['branding_title'],
|
|
53
55
|
'brandingLogo': json['branding_logo'],
|
|
54
56
|
'brandingFavicon': json['branding_favicon'],
|
|
57
|
+
'brandingCustomCss': json['branding_custom_css'],
|
|
55
58
|
'uiFooterLinks': (json['ui_footer_links'].map(FooterLink_1.FooterLinkFromJSON)),
|
|
56
59
|
'uiTheme': (0, UiThemeEnum_1.UiThemeEnumFromJSON)(json['ui_theme']),
|
|
57
60
|
'flowAuthentication': json['flow_authentication'] == null ? undefined : json['flow_authentication'],
|
|
@@ -75,6 +78,7 @@ function CurrentBrandToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
75
78
|
'branding_title': value['brandingTitle'],
|
|
76
79
|
'branding_logo': value['brandingLogo'],
|
|
77
80
|
'branding_favicon': value['brandingFavicon'],
|
|
81
|
+
'branding_custom_css': value['brandingCustomCss'],
|
|
78
82
|
'flow_authentication': value['flowAuthentication'],
|
|
79
83
|
'flow_invalidation': value['flowInvalidation'],
|
|
80
84
|
'flow_recovery': value['flowRecovery'],
|
|
@@ -45,6 +45,18 @@ export interface PatchedBrandRequest {
|
|
|
45
45
|
* @memberof PatchedBrandRequest
|
|
46
46
|
*/
|
|
47
47
|
brandingFavicon?: string;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {string}
|
|
51
|
+
* @memberof PatchedBrandRequest
|
|
52
|
+
*/
|
|
53
|
+
brandingCustomCss?: string;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {string}
|
|
57
|
+
* @memberof PatchedBrandRequest
|
|
58
|
+
*/
|
|
59
|
+
brandingDefaultFlowBackground?: string;
|
|
48
60
|
/**
|
|
49
61
|
*
|
|
50
62
|
* @type {string}
|
|
@@ -37,6 +37,8 @@ function PatchedBrandRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
37
37
|
'brandingTitle': json['branding_title'] == null ? undefined : json['branding_title'],
|
|
38
38
|
'brandingLogo': json['branding_logo'] == null ? undefined : json['branding_logo'],
|
|
39
39
|
'brandingFavicon': json['branding_favicon'] == null ? undefined : json['branding_favicon'],
|
|
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'],
|
|
40
42
|
'flowAuthentication': json['flow_authentication'] == null ? undefined : json['flow_authentication'],
|
|
41
43
|
'flowInvalidation': json['flow_invalidation'] == null ? undefined : json['flow_invalidation'],
|
|
42
44
|
'flowRecovery': json['flow_recovery'] == null ? undefined : json['flow_recovery'],
|
|
@@ -61,6 +63,8 @@ function PatchedBrandRequestToJSONTyped(value, ignoreDiscriminator = false) {
|
|
|
61
63
|
'branding_title': value['brandingTitle'],
|
|
62
64
|
'branding_logo': value['brandingLogo'],
|
|
63
65
|
'branding_favicon': value['brandingFavicon'],
|
|
66
|
+
'branding_custom_css': value['brandingCustomCss'],
|
|
67
|
+
'branding_default_flow_background': value['brandingDefaultFlowBackground'],
|
|
64
68
|
'flow_authentication': value['flowAuthentication'],
|
|
65
69
|
'flow_invalidation': value['flowInvalidation'],
|
|
66
70
|
'flow_recovery': value['flowRecovery'],
|
package/package.json
CHANGED
package/src/apis/CoreApi.ts
CHANGED
|
@@ -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
|
}
|
package/src/models/Brand.ts
CHANGED
|
@@ -55,6 +55,18 @@ export interface Brand {
|
|
|
55
55
|
* @memberof Brand
|
|
56
56
|
*/
|
|
57
57
|
brandingFavicon?: string;
|
|
58
|
+
/**
|
|
59
|
+
*
|
|
60
|
+
* @type {string}
|
|
61
|
+
* @memberof Brand
|
|
62
|
+
*/
|
|
63
|
+
brandingCustomCss?: string;
|
|
64
|
+
/**
|
|
65
|
+
*
|
|
66
|
+
* @type {string}
|
|
67
|
+
* @memberof Brand
|
|
68
|
+
*/
|
|
69
|
+
brandingDefaultFlowBackground?: string;
|
|
58
70
|
/**
|
|
59
71
|
*
|
|
60
72
|
* @type {string}
|
|
@@ -136,6 +148,8 @@ export function BrandFromJSONTyped(json: any, ignoreDiscriminator: boolean): Bra
|
|
|
136
148
|
'brandingTitle': json['branding_title'] == null ? undefined : json['branding_title'],
|
|
137
149
|
'brandingLogo': json['branding_logo'] == null ? undefined : json['branding_logo'],
|
|
138
150
|
'brandingFavicon': json['branding_favicon'] == null ? undefined : json['branding_favicon'],
|
|
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'],
|
|
139
153
|
'flowAuthentication': json['flow_authentication'] == null ? undefined : json['flow_authentication'],
|
|
140
154
|
'flowInvalidation': json['flow_invalidation'] == null ? undefined : json['flow_invalidation'],
|
|
141
155
|
'flowRecovery': json['flow_recovery'] == null ? undefined : json['flow_recovery'],
|
|
@@ -164,6 +178,8 @@ export function BrandToJSONTyped(value?: Omit<Brand, 'brand_uuid'> | null, ignor
|
|
|
164
178
|
'branding_title': value['brandingTitle'],
|
|
165
179
|
'branding_logo': value['brandingLogo'],
|
|
166
180
|
'branding_favicon': value['brandingFavicon'],
|
|
181
|
+
'branding_custom_css': value['brandingCustomCss'],
|
|
182
|
+
'branding_default_flow_background': value['brandingDefaultFlowBackground'],
|
|
167
183
|
'flow_authentication': value['flowAuthentication'],
|
|
168
184
|
'flow_invalidation': value['flowInvalidation'],
|
|
169
185
|
'flow_recovery': value['flowRecovery'],
|
|
@@ -49,6 +49,18 @@ export interface BrandRequest {
|
|
|
49
49
|
* @memberof BrandRequest
|
|
50
50
|
*/
|
|
51
51
|
brandingFavicon?: string;
|
|
52
|
+
/**
|
|
53
|
+
*
|
|
54
|
+
* @type {string}
|
|
55
|
+
* @memberof BrandRequest
|
|
56
|
+
*/
|
|
57
|
+
brandingCustomCss?: string;
|
|
58
|
+
/**
|
|
59
|
+
*
|
|
60
|
+
* @type {string}
|
|
61
|
+
* @memberof BrandRequest
|
|
62
|
+
*/
|
|
63
|
+
brandingDefaultFlowBackground?: string;
|
|
52
64
|
/**
|
|
53
65
|
*
|
|
54
66
|
* @type {string}
|
|
@@ -128,6 +140,8 @@ export function BrandRequestFromJSONTyped(json: any, ignoreDiscriminator: boolea
|
|
|
128
140
|
'brandingTitle': json['branding_title'] == null ? undefined : json['branding_title'],
|
|
129
141
|
'brandingLogo': json['branding_logo'] == null ? undefined : json['branding_logo'],
|
|
130
142
|
'brandingFavicon': json['branding_favicon'] == null ? undefined : json['branding_favicon'],
|
|
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'],
|
|
131
145
|
'flowAuthentication': json['flow_authentication'] == null ? undefined : json['flow_authentication'],
|
|
132
146
|
'flowInvalidation': json['flow_invalidation'] == null ? undefined : json['flow_invalidation'],
|
|
133
147
|
'flowRecovery': json['flow_recovery'] == null ? undefined : json['flow_recovery'],
|
|
@@ -156,6 +170,8 @@ export function BrandRequestToJSONTyped(value?: BrandRequest | null, ignoreDiscr
|
|
|
156
170
|
'branding_title': value['brandingTitle'],
|
|
157
171
|
'branding_logo': value['brandingLogo'],
|
|
158
172
|
'branding_favicon': value['brandingFavicon'],
|
|
173
|
+
'branding_custom_css': value['brandingCustomCss'],
|
|
174
|
+
'branding_default_flow_background': value['brandingDefaultFlowBackground'],
|
|
159
175
|
'flow_authentication': value['flowAuthentication'],
|
|
160
176
|
'flow_invalidation': value['flowInvalidation'],
|
|
161
177
|
'flow_recovery': value['flowRecovery'],
|
|
@@ -58,6 +58,12 @@ export interface CurrentBrand {
|
|
|
58
58
|
* @memberof CurrentBrand
|
|
59
59
|
*/
|
|
60
60
|
brandingFavicon: string;
|
|
61
|
+
/**
|
|
62
|
+
*
|
|
63
|
+
* @type {string}
|
|
64
|
+
* @memberof CurrentBrand
|
|
65
|
+
*/
|
|
66
|
+
brandingCustomCss: string;
|
|
61
67
|
/**
|
|
62
68
|
*
|
|
63
69
|
* @type {Array<FooterLink>}
|
|
@@ -124,6 +130,7 @@ export function instanceOfCurrentBrand(value: object): value is CurrentBrand {
|
|
|
124
130
|
if (!('brandingTitle' in value) || value['brandingTitle'] === undefined) return false;
|
|
125
131
|
if (!('brandingLogo' in value) || value['brandingLogo'] === undefined) return false;
|
|
126
132
|
if (!('brandingFavicon' in value) || value['brandingFavicon'] === undefined) return false;
|
|
133
|
+
if (!('brandingCustomCss' in value) || value['brandingCustomCss'] === undefined) return false;
|
|
127
134
|
if (!('uiFooterLinks' in value) || value['uiFooterLinks'] === undefined) return false;
|
|
128
135
|
if (!('uiTheme' in value) || value['uiTheme'] === undefined) return false;
|
|
129
136
|
if (!('defaultLocale' in value) || value['defaultLocale'] === undefined) return false;
|
|
@@ -144,6 +151,7 @@ export function CurrentBrandFromJSONTyped(json: any, ignoreDiscriminator: boolea
|
|
|
144
151
|
'brandingTitle': json['branding_title'],
|
|
145
152
|
'brandingLogo': json['branding_logo'],
|
|
146
153
|
'brandingFavicon': json['branding_favicon'],
|
|
154
|
+
'brandingCustomCss': json['branding_custom_css'],
|
|
147
155
|
'uiFooterLinks': ((json['ui_footer_links'] as Array<any>).map(FooterLinkFromJSON)),
|
|
148
156
|
'uiTheme': UiThemeEnumFromJSON(json['ui_theme']),
|
|
149
157
|
'flowAuthentication': json['flow_authentication'] == null ? undefined : json['flow_authentication'],
|
|
@@ -171,6 +179,7 @@ export function CurrentBrandToJSONTyped(value?: Omit<CurrentBrand, 'ui_footer_li
|
|
|
171
179
|
'branding_title': value['brandingTitle'],
|
|
172
180
|
'branding_logo': value['brandingLogo'],
|
|
173
181
|
'branding_favicon': value['brandingFavicon'],
|
|
182
|
+
'branding_custom_css': value['brandingCustomCss'],
|
|
174
183
|
'flow_authentication': value['flowAuthentication'],
|
|
175
184
|
'flow_invalidation': value['flowInvalidation'],
|
|
176
185
|
'flow_recovery': value['flowRecovery'],
|
|
@@ -49,6 +49,18 @@ export interface PatchedBrandRequest {
|
|
|
49
49
|
* @memberof PatchedBrandRequest
|
|
50
50
|
*/
|
|
51
51
|
brandingFavicon?: string;
|
|
52
|
+
/**
|
|
53
|
+
*
|
|
54
|
+
* @type {string}
|
|
55
|
+
* @memberof PatchedBrandRequest
|
|
56
|
+
*/
|
|
57
|
+
brandingCustomCss?: string;
|
|
58
|
+
/**
|
|
59
|
+
*
|
|
60
|
+
* @type {string}
|
|
61
|
+
* @memberof PatchedBrandRequest
|
|
62
|
+
*/
|
|
63
|
+
brandingDefaultFlowBackground?: string;
|
|
52
64
|
/**
|
|
53
65
|
*
|
|
54
66
|
* @type {string}
|
|
@@ -127,6 +139,8 @@ export function PatchedBrandRequestFromJSONTyped(json: any, ignoreDiscriminator:
|
|
|
127
139
|
'brandingTitle': json['branding_title'] == null ? undefined : json['branding_title'],
|
|
128
140
|
'brandingLogo': json['branding_logo'] == null ? undefined : json['branding_logo'],
|
|
129
141
|
'brandingFavicon': json['branding_favicon'] == null ? undefined : json['branding_favicon'],
|
|
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'],
|
|
130
144
|
'flowAuthentication': json['flow_authentication'] == null ? undefined : json['flow_authentication'],
|
|
131
145
|
'flowInvalidation': json['flow_invalidation'] == null ? undefined : json['flow_invalidation'],
|
|
132
146
|
'flowRecovery': json['flow_recovery'] == null ? undefined : json['flow_recovery'],
|
|
@@ -155,6 +169,8 @@ export function PatchedBrandRequestToJSONTyped(value?: PatchedBrandRequest | nul
|
|
|
155
169
|
'branding_title': value['brandingTitle'],
|
|
156
170
|
'branding_logo': value['brandingLogo'],
|
|
157
171
|
'branding_favicon': value['brandingFavicon'],
|
|
172
|
+
'branding_custom_css': value['brandingCustomCss'],
|
|
173
|
+
'branding_default_flow_background': value['brandingDefaultFlowBackground'],
|
|
158
174
|
'flow_authentication': value['flowAuthentication'],
|
|
159
175
|
'flow_invalidation': value['flowInvalidation'],
|
|
160
176
|
'flow_recovery': value['flowRecovery'],
|