@goauthentik/api 2022.7.1-1656964151 → 2022.7.1-1657055094
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.
|
@@ -76,6 +76,12 @@ export interface CurrentTenant {
|
|
|
76
76
|
* @memberof CurrentTenant
|
|
77
77
|
*/
|
|
78
78
|
flowUserSettings?: string;
|
|
79
|
+
/**
|
|
80
|
+
*
|
|
81
|
+
* @type {string}
|
|
82
|
+
* @memberof CurrentTenant
|
|
83
|
+
*/
|
|
84
|
+
readonly defaultLocale: string;
|
|
79
85
|
}
|
|
80
86
|
export declare function CurrentTenantFromJSON(json: any): CurrentTenant;
|
|
81
87
|
export declare function CurrentTenantFromJSONTyped(json: any, ignoreDiscriminator: boolean): CurrentTenant;
|
|
@@ -31,6 +31,7 @@ export function CurrentTenantFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
31
31
|
'flowRecovery': !exists(json, 'flow_recovery') ? undefined : json['flow_recovery'],
|
|
32
32
|
'flowUnenrollment': !exists(json, 'flow_unenrollment') ? undefined : json['flow_unenrollment'],
|
|
33
33
|
'flowUserSettings': !exists(json, 'flow_user_settings') ? undefined : json['flow_user_settings'],
|
|
34
|
+
'defaultLocale': json['default_locale'],
|
|
34
35
|
};
|
|
35
36
|
}
|
|
36
37
|
export function CurrentTenantToJSON(value) {
|
|
@@ -76,6 +76,12 @@ export interface CurrentTenant {
|
|
|
76
76
|
* @memberof CurrentTenant
|
|
77
77
|
*/
|
|
78
78
|
flowUserSettings?: string;
|
|
79
|
+
/**
|
|
80
|
+
*
|
|
81
|
+
* @type {string}
|
|
82
|
+
* @memberof CurrentTenant
|
|
83
|
+
*/
|
|
84
|
+
readonly defaultLocale: string;
|
|
79
85
|
}
|
|
80
86
|
export declare function CurrentTenantFromJSON(json: any): CurrentTenant;
|
|
81
87
|
export declare function CurrentTenantFromJSONTyped(json: any, ignoreDiscriminator: boolean): CurrentTenant;
|
|
@@ -35,6 +35,7 @@ function CurrentTenantFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
35
35
|
'flowRecovery': !(0, runtime_1.exists)(json, 'flow_recovery') ? undefined : json['flow_recovery'],
|
|
36
36
|
'flowUnenrollment': !(0, runtime_1.exists)(json, 'flow_unenrollment') ? undefined : json['flow_unenrollment'],
|
|
37
37
|
'flowUserSettings': !(0, runtime_1.exists)(json, 'flow_user_settings') ? undefined : json['flow_user_settings'],
|
|
38
|
+
'defaultLocale': json['default_locale'],
|
|
38
39
|
};
|
|
39
40
|
}
|
|
40
41
|
exports.CurrentTenantFromJSONTyped = CurrentTenantFromJSONTyped;
|
package/package.json
CHANGED
|
@@ -86,6 +86,12 @@ export interface CurrentTenant {
|
|
|
86
86
|
* @memberof CurrentTenant
|
|
87
87
|
*/
|
|
88
88
|
flowUserSettings?: string;
|
|
89
|
+
/**
|
|
90
|
+
*
|
|
91
|
+
* @type {string}
|
|
92
|
+
* @memberof CurrentTenant
|
|
93
|
+
*/
|
|
94
|
+
readonly defaultLocale: string;
|
|
89
95
|
}
|
|
90
96
|
|
|
91
97
|
export function CurrentTenantFromJSON(json: any): CurrentTenant {
|
|
@@ -108,6 +114,7 @@ export function CurrentTenantFromJSONTyped(json: any, ignoreDiscriminator: boole
|
|
|
108
114
|
'flowRecovery': !exists(json, 'flow_recovery') ? undefined : json['flow_recovery'],
|
|
109
115
|
'flowUnenrollment': !exists(json, 'flow_unenrollment') ? undefined : json['flow_unenrollment'],
|
|
110
116
|
'flowUserSettings': !exists(json, 'flow_user_settings') ? undefined : json['flow_user_settings'],
|
|
117
|
+
'defaultLocale': json['default_locale'],
|
|
111
118
|
};
|
|
112
119
|
}
|
|
113
120
|
|