@goauthentik/api 2023.10.6-1705263684 → 2023.10.6-1706016512
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/.openapi-generator/FILES +16 -1
- package/dist/apis/AdminApi.d.ts +31 -1
- package/dist/apis/AdminApi.js +88 -0
- package/dist/apis/CoreApi.d.ts +104 -105
- package/dist/apis/CoreApi.js +228 -231
- package/dist/apis/EventsApi.d.ts +2 -2
- package/dist/apis/EventsApi.js +6 -6
- package/dist/apis/RbacApi.d.ts +4 -2
- package/dist/apis/RbacApi.js +4 -2
- package/dist/apis/TenantsApi.d.ts +184 -0
- package/dist/apis/TenantsApi.js +468 -0
- package/dist/apis/index.d.ts +1 -0
- package/dist/apis/index.js +1 -0
- package/dist/esm/apis/AdminApi.d.ts +31 -1
- package/dist/esm/apis/AdminApi.js +89 -1
- package/dist/esm/apis/CoreApi.d.ts +104 -105
- package/dist/esm/apis/CoreApi.js +229 -232
- package/dist/esm/apis/EventsApi.d.ts +2 -2
- package/dist/esm/apis/EventsApi.js +6 -6
- package/dist/esm/apis/RbacApi.d.ts +4 -2
- package/dist/esm/apis/RbacApi.js +4 -2
- package/dist/esm/apis/TenantsApi.d.ts +184 -0
- package/dist/esm/apis/TenantsApi.js +464 -0
- package/dist/esm/apis/index.d.ts +1 -0
- package/dist/esm/apis/index.js +1 -0
- package/dist/esm/models/AppEnum.d.ts +4 -2
- package/dist/esm/models/AppEnum.js +4 -2
- package/dist/esm/models/Brand.d.ts +109 -0
- package/dist/esm/models/Brand.js +70 -0
- package/dist/esm/models/BrandRequest.d.ts +103 -0
- package/dist/esm/models/BrandRequest.js +68 -0
- package/dist/esm/models/{CurrentTenant.d.ts → CurrentBrand.d.ts} +21 -21
- package/dist/esm/models/{CurrentTenant.js → CurrentBrand.js} +6 -6
- package/dist/esm/models/Domain.d.ts +49 -0
- package/dist/esm/models/Domain.js +51 -0
- package/dist/esm/models/DomainRequest.d.ts +43 -0
- package/dist/esm/models/DomainRequest.js +49 -0
- package/dist/esm/models/Event.d.ts +1 -1
- package/dist/esm/models/Event.js +2 -2
- package/dist/esm/models/EventRequest.d.ts +1 -1
- package/dist/esm/models/EventRequest.js +2 -2
- package/dist/esm/models/ModelEnum.d.ts +4 -2
- package/dist/esm/models/ModelEnum.js +4 -2
- package/dist/esm/models/PaginatedBrandList.d.ts +39 -0
- package/dist/esm/models/PaginatedBrandList.js +48 -0
- package/dist/esm/models/PaginatedDomainList.d.ts +39 -0
- package/dist/esm/models/PaginatedDomainList.js +48 -0
- package/dist/esm/models/PatchedBrandRequest.d.ts +103 -0
- package/dist/esm/models/PatchedBrandRequest.js +67 -0
- package/dist/esm/models/PatchedDomainRequest.d.ts +43 -0
- package/dist/esm/models/PatchedDomainRequest.js +47 -0
- package/dist/esm/models/PatchedEventRequest.d.ts +1 -1
- package/dist/esm/models/PatchedEventRequest.js +2 -2
- package/dist/esm/models/PatchedSettingsRequest.d.ts +73 -0
- package/dist/esm/models/PatchedSettingsRequest.js +57 -0
- package/dist/esm/models/PatchedTenantRequest.d.ts +4 -70
- package/dist/esm/models/PatchedTenantRequest.js +6 -28
- package/dist/esm/models/Settings.d.ts +73 -0
- package/dist/esm/models/Settings.js +57 -0
- package/dist/esm/models/SettingsRequest.d.ts +73 -0
- package/dist/esm/models/SettingsRequest.js +57 -0
- package/dist/esm/models/SystemInfo.d.ts +8 -2
- package/dist/esm/models/SystemInfo.js +4 -2
- package/dist/esm/models/Tenant.d.ts +4 -70
- package/dist/esm/models/Tenant.js +8 -29
- package/dist/esm/models/TenantAdminGroupRequestRequest.d.ts +31 -0
- package/dist/esm/models/TenantAdminGroupRequestRequest.js +43 -0
- package/dist/esm/models/TenantRecoveryKeyRequestRequest.d.ts +37 -0
- package/dist/esm/models/TenantRecoveryKeyRequestRequest.js +46 -0
- package/dist/esm/models/TenantRecoveryKeyResponse.d.ts +37 -0
- package/dist/esm/models/TenantRecoveryKeyResponse.js +46 -0
- package/dist/esm/models/TenantRequest.d.ts +4 -70
- package/dist/esm/models/TenantRequest.js +8 -29
- package/dist/esm/models/UserSelf.d.ts +1 -1
- package/dist/esm/models/index.d.ts +15 -1
- package/dist/esm/models/index.js +15 -1
- package/dist/models/AppEnum.d.ts +4 -2
- package/dist/models/AppEnum.js +4 -2
- package/dist/models/Brand.d.ts +109 -0
- package/dist/models/Brand.js +77 -0
- package/dist/models/BrandRequest.d.ts +103 -0
- package/dist/models/BrandRequest.js +75 -0
- package/dist/models/{CurrentTenant.d.ts → CurrentBrand.d.ts} +21 -21
- package/dist/models/{CurrentTenant.js → CurrentBrand.js} +11 -11
- package/dist/models/Domain.d.ts +49 -0
- package/dist/models/Domain.js +58 -0
- package/dist/models/DomainRequest.d.ts +43 -0
- package/dist/models/DomainRequest.js +56 -0
- package/dist/models/Event.d.ts +1 -1
- package/dist/models/Event.js +2 -2
- package/dist/models/EventRequest.d.ts +1 -1
- package/dist/models/EventRequest.js +2 -2
- package/dist/models/ModelEnum.d.ts +4 -2
- package/dist/models/ModelEnum.js +4 -2
- package/dist/models/PaginatedBrandList.d.ts +39 -0
- package/dist/models/PaginatedBrandList.js +55 -0
- package/dist/models/PaginatedDomainList.d.ts +39 -0
- package/dist/models/PaginatedDomainList.js +55 -0
- package/dist/models/PatchedBrandRequest.d.ts +103 -0
- package/dist/models/PatchedBrandRequest.js +74 -0
- package/dist/models/PatchedDomainRequest.d.ts +43 -0
- package/dist/models/PatchedDomainRequest.js +54 -0
- package/dist/models/PatchedEventRequest.d.ts +1 -1
- package/dist/models/PatchedEventRequest.js +2 -2
- package/dist/models/PatchedSettingsRequest.d.ts +73 -0
- package/dist/models/PatchedSettingsRequest.js +64 -0
- package/dist/models/PatchedTenantRequest.d.ts +4 -70
- package/dist/models/PatchedTenantRequest.js +6 -28
- package/dist/models/Settings.d.ts +73 -0
- package/dist/models/Settings.js +64 -0
- package/dist/models/SettingsRequest.d.ts +73 -0
- package/dist/models/SettingsRequest.js +64 -0
- package/dist/models/SystemInfo.d.ts +8 -2
- package/dist/models/SystemInfo.js +4 -2
- package/dist/models/Tenant.d.ts +4 -70
- package/dist/models/Tenant.js +8 -29
- package/dist/models/TenantAdminGroupRequestRequest.d.ts +31 -0
- package/dist/models/TenantAdminGroupRequestRequest.js +50 -0
- package/dist/models/TenantRecoveryKeyRequestRequest.d.ts +37 -0
- package/dist/models/TenantRecoveryKeyRequestRequest.js +53 -0
- package/dist/models/TenantRecoveryKeyResponse.d.ts +37 -0
- package/dist/models/TenantRecoveryKeyResponse.js +53 -0
- package/dist/models/TenantRequest.d.ts +4 -70
- package/dist/models/TenantRequest.js +8 -29
- package/dist/models/UserSelf.d.ts +1 -1
- package/dist/models/index.d.ts +15 -1
- package/dist/models/index.js +15 -1
- package/package.json +1 -1
- package/src/apis/AdminApi.ts +113 -0
- package/src/apis/CoreApi.ts +304 -309
- package/src/apis/EventsApi.ts +10 -10
- package/src/apis/RbacApi.ts +4 -2
- package/src/apis/TenantsApi.ts +615 -0
- package/src/apis/index.ts +1 -0
- package/src/models/AppEnum.ts +4 -2
- package/src/models/Brand.ts +170 -0
- package/src/models/BrandRequest.ts +162 -0
- package/src/models/{CurrentTenant.ts → CurrentBrand.ts} +22 -22
- package/src/models/Domain.ts +91 -0
- package/src/models/DomainRequest.ts +83 -0
- package/src/models/Event.ts +3 -3
- package/src/models/EventRequest.ts +3 -3
- package/src/models/ModelEnum.ts +4 -2
- package/src/models/PaginatedBrandList.ts +88 -0
- package/src/models/PaginatedDomainList.ts +88 -0
- package/src/models/PatchedBrandRequest.ts +161 -0
- package/src/models/PatchedDomainRequest.ts +81 -0
- package/src/models/PatchedEventRequest.ts +3 -3
- package/src/models/PatchedSettingsRequest.ts +121 -0
- package/src/models/PatchedTenantRequest.ts +10 -98
- package/src/models/Settings.ts +121 -0
- package/src/models/SettingsRequest.ts +121 -0
- package/src/models/SystemInfo.ts +12 -4
- package/src/models/Tenant.ts +12 -99
- package/src/models/TenantAdminGroupRequestRequest.ts +66 -0
- package/src/models/TenantRecoveryKeyRequestRequest.ts +75 -0
- package/src/models/TenantRecoveryKeyResponse.ts +75 -0
- package/src/models/TenantRequest.ts +12 -99
- package/src/models/UserSelf.ts +1 -1
- package/src/models/index.ts +15 -1
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* authentik
|
|
5
|
+
* Making authentication simple.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 2023.10.6
|
|
8
|
+
* Contact: hello@goauthentik.io
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
import { exists, mapValues } from '../runtime';
|
|
16
|
+
/**
|
|
17
|
+
* Tenant recovery key creation request serializer
|
|
18
|
+
* @export
|
|
19
|
+
* @interface TenantRecoveryKeyRequestRequest
|
|
20
|
+
*/
|
|
21
|
+
export interface TenantRecoveryKeyRequestRequest {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof TenantRecoveryKeyRequestRequest
|
|
26
|
+
*/
|
|
27
|
+
user: string;
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* @type {number}
|
|
31
|
+
* @memberof TenantRecoveryKeyRequestRequest
|
|
32
|
+
*/
|
|
33
|
+
durationDays: number;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* Check if a given object implements the TenantRecoveryKeyRequestRequest interface.
|
|
38
|
+
*/
|
|
39
|
+
export function instanceOfTenantRecoveryKeyRequestRequest(value: object): boolean {
|
|
40
|
+
let isInstance = true;
|
|
41
|
+
isInstance = isInstance && "user" in value;
|
|
42
|
+
isInstance = isInstance && "durationDays" in value;
|
|
43
|
+
|
|
44
|
+
return isInstance;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
export function TenantRecoveryKeyRequestRequestFromJSON(json: any): TenantRecoveryKeyRequestRequest {
|
|
48
|
+
return TenantRecoveryKeyRequestRequestFromJSONTyped(json, false);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
export function TenantRecoveryKeyRequestRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): TenantRecoveryKeyRequestRequest {
|
|
52
|
+
if ((json === undefined) || (json === null)) {
|
|
53
|
+
return json;
|
|
54
|
+
}
|
|
55
|
+
return {
|
|
56
|
+
|
|
57
|
+
'user': json['user'],
|
|
58
|
+
'durationDays': json['duration_days'],
|
|
59
|
+
};
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
export function TenantRecoveryKeyRequestRequestToJSON(value?: TenantRecoveryKeyRequestRequest | null): any {
|
|
63
|
+
if (value === undefined) {
|
|
64
|
+
return undefined;
|
|
65
|
+
}
|
|
66
|
+
if (value === null) {
|
|
67
|
+
return null;
|
|
68
|
+
}
|
|
69
|
+
return {
|
|
70
|
+
|
|
71
|
+
'user': value.user,
|
|
72
|
+
'duration_days': value.durationDays,
|
|
73
|
+
};
|
|
74
|
+
}
|
|
75
|
+
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* authentik
|
|
5
|
+
* Making authentication simple.
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 2023.10.6
|
|
8
|
+
* Contact: hello@goauthentik.io
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
import { exists, mapValues } from '../runtime';
|
|
16
|
+
/**
|
|
17
|
+
* Tenant recovery key creation response serializer
|
|
18
|
+
* @export
|
|
19
|
+
* @interface TenantRecoveryKeyResponse
|
|
20
|
+
*/
|
|
21
|
+
export interface TenantRecoveryKeyResponse {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @type {Date}
|
|
25
|
+
* @memberof TenantRecoveryKeyResponse
|
|
26
|
+
*/
|
|
27
|
+
expiry: Date;
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof TenantRecoveryKeyResponse
|
|
32
|
+
*/
|
|
33
|
+
url: string;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* Check if a given object implements the TenantRecoveryKeyResponse interface.
|
|
38
|
+
*/
|
|
39
|
+
export function instanceOfTenantRecoveryKeyResponse(value: object): boolean {
|
|
40
|
+
let isInstance = true;
|
|
41
|
+
isInstance = isInstance && "expiry" in value;
|
|
42
|
+
isInstance = isInstance && "url" in value;
|
|
43
|
+
|
|
44
|
+
return isInstance;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
export function TenantRecoveryKeyResponseFromJSON(json: any): TenantRecoveryKeyResponse {
|
|
48
|
+
return TenantRecoveryKeyResponseFromJSONTyped(json, false);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
export function TenantRecoveryKeyResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): TenantRecoveryKeyResponse {
|
|
52
|
+
if ((json === undefined) || (json === null)) {
|
|
53
|
+
return json;
|
|
54
|
+
}
|
|
55
|
+
return {
|
|
56
|
+
|
|
57
|
+
'expiry': (new Date(json['expiry'])),
|
|
58
|
+
'url': json['url'],
|
|
59
|
+
};
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
export function TenantRecoveryKeyResponseToJSON(value?: TenantRecoveryKeyResponse | null): any {
|
|
63
|
+
if (value === undefined) {
|
|
64
|
+
return undefined;
|
|
65
|
+
}
|
|
66
|
+
if (value === null) {
|
|
67
|
+
return null;
|
|
68
|
+
}
|
|
69
|
+
return {
|
|
70
|
+
|
|
71
|
+
'expiry': (value.expiry.toISOString()),
|
|
72
|
+
'url': value.url,
|
|
73
|
+
};
|
|
74
|
+
}
|
|
75
|
+
|
|
@@ -19,90 +19,24 @@ import { exists, mapValues } from '../runtime';
|
|
|
19
19
|
* @interface TenantRequest
|
|
20
20
|
*/
|
|
21
21
|
export interface TenantRequest {
|
|
22
|
-
/**
|
|
23
|
-
* Domain that activates this tenant. Can be a superset, i.e. `a.b` for `aa.b` and `ba.b`
|
|
24
|
-
* @type {string}
|
|
25
|
-
* @memberof TenantRequest
|
|
26
|
-
*/
|
|
27
|
-
domain: string;
|
|
28
|
-
/**
|
|
29
|
-
*
|
|
30
|
-
* @type {boolean}
|
|
31
|
-
* @memberof TenantRequest
|
|
32
|
-
*/
|
|
33
|
-
_default?: boolean;
|
|
34
|
-
/**
|
|
35
|
-
*
|
|
36
|
-
* @type {string}
|
|
37
|
-
* @memberof TenantRequest
|
|
38
|
-
*/
|
|
39
|
-
brandingTitle?: string;
|
|
40
22
|
/**
|
|
41
23
|
*
|
|
42
24
|
* @type {string}
|
|
43
25
|
* @memberof TenantRequest
|
|
44
26
|
*/
|
|
45
|
-
|
|
27
|
+
schemaName: string;
|
|
46
28
|
/**
|
|
47
29
|
*
|
|
48
30
|
* @type {string}
|
|
49
31
|
* @memberof TenantRequest
|
|
50
32
|
*/
|
|
51
|
-
|
|
33
|
+
name: string;
|
|
52
34
|
/**
|
|
53
35
|
*
|
|
54
|
-
* @type {
|
|
55
|
-
* @memberof TenantRequest
|
|
56
|
-
*/
|
|
57
|
-
flowAuthentication?: string | null;
|
|
58
|
-
/**
|
|
59
|
-
*
|
|
60
|
-
* @type {string}
|
|
61
|
-
* @memberof TenantRequest
|
|
62
|
-
*/
|
|
63
|
-
flowInvalidation?: string | null;
|
|
64
|
-
/**
|
|
65
|
-
*
|
|
66
|
-
* @type {string}
|
|
67
|
-
* @memberof TenantRequest
|
|
68
|
-
*/
|
|
69
|
-
flowRecovery?: string | null;
|
|
70
|
-
/**
|
|
71
|
-
*
|
|
72
|
-
* @type {string}
|
|
73
|
-
* @memberof TenantRequest
|
|
74
|
-
*/
|
|
75
|
-
flowUnenrollment?: string | null;
|
|
76
|
-
/**
|
|
77
|
-
*
|
|
78
|
-
* @type {string}
|
|
79
|
-
* @memberof TenantRequest
|
|
80
|
-
*/
|
|
81
|
-
flowUserSettings?: string | null;
|
|
82
|
-
/**
|
|
83
|
-
*
|
|
84
|
-
* @type {string}
|
|
85
|
-
* @memberof TenantRequest
|
|
86
|
-
*/
|
|
87
|
-
flowDeviceCode?: string | null;
|
|
88
|
-
/**
|
|
89
|
-
* Events will be deleted after this duration.(Format: weeks=3;days=2;hours=3,seconds=2).
|
|
90
|
-
* @type {string}
|
|
91
|
-
* @memberof TenantRequest
|
|
92
|
-
*/
|
|
93
|
-
eventRetention?: string;
|
|
94
|
-
/**
|
|
95
|
-
* Web Certificate used by the authentik Core webserver.
|
|
96
|
-
* @type {string}
|
|
97
|
-
* @memberof TenantRequest
|
|
98
|
-
*/
|
|
99
|
-
webCertificate?: string | null;
|
|
100
|
-
/**
|
|
101
|
-
*
|
|
102
|
-
* @type {any}
|
|
36
|
+
* @type {boolean}
|
|
103
37
|
* @memberof TenantRequest
|
|
104
38
|
*/
|
|
105
|
-
|
|
39
|
+
ready?: boolean;
|
|
106
40
|
}
|
|
107
41
|
|
|
108
42
|
/**
|
|
@@ -110,7 +44,8 @@ export interface TenantRequest {
|
|
|
110
44
|
*/
|
|
111
45
|
export function instanceOfTenantRequest(value: object): boolean {
|
|
112
46
|
let isInstance = true;
|
|
113
|
-
isInstance = isInstance && "
|
|
47
|
+
isInstance = isInstance && "schemaName" in value;
|
|
48
|
+
isInstance = isInstance && "name" in value;
|
|
114
49
|
|
|
115
50
|
return isInstance;
|
|
116
51
|
}
|
|
@@ -125,20 +60,9 @@ export function TenantRequestFromJSONTyped(json: any, ignoreDiscriminator: boole
|
|
|
125
60
|
}
|
|
126
61
|
return {
|
|
127
62
|
|
|
128
|
-
'
|
|
129
|
-
'
|
|
130
|
-
'
|
|
131
|
-
'brandingLogo': !exists(json, 'branding_logo') ? undefined : json['branding_logo'],
|
|
132
|
-
'brandingFavicon': !exists(json, 'branding_favicon') ? undefined : json['branding_favicon'],
|
|
133
|
-
'flowAuthentication': !exists(json, 'flow_authentication') ? undefined : json['flow_authentication'],
|
|
134
|
-
'flowInvalidation': !exists(json, 'flow_invalidation') ? undefined : json['flow_invalidation'],
|
|
135
|
-
'flowRecovery': !exists(json, 'flow_recovery') ? undefined : json['flow_recovery'],
|
|
136
|
-
'flowUnenrollment': !exists(json, 'flow_unenrollment') ? undefined : json['flow_unenrollment'],
|
|
137
|
-
'flowUserSettings': !exists(json, 'flow_user_settings') ? undefined : json['flow_user_settings'],
|
|
138
|
-
'flowDeviceCode': !exists(json, 'flow_device_code') ? undefined : json['flow_device_code'],
|
|
139
|
-
'eventRetention': !exists(json, 'event_retention') ? undefined : json['event_retention'],
|
|
140
|
-
'webCertificate': !exists(json, 'web_certificate') ? undefined : json['web_certificate'],
|
|
141
|
-
'attributes': !exists(json, 'attributes') ? undefined : json['attributes'],
|
|
63
|
+
'schemaName': json['schema_name'],
|
|
64
|
+
'name': json['name'],
|
|
65
|
+
'ready': !exists(json, 'ready') ? undefined : json['ready'],
|
|
142
66
|
};
|
|
143
67
|
}
|
|
144
68
|
|
|
@@ -151,20 +75,9 @@ export function TenantRequestToJSON(value?: TenantRequest | null): any {
|
|
|
151
75
|
}
|
|
152
76
|
return {
|
|
153
77
|
|
|
154
|
-
'
|
|
155
|
-
'
|
|
156
|
-
'
|
|
157
|
-
'branding_logo': value.brandingLogo,
|
|
158
|
-
'branding_favicon': value.brandingFavicon,
|
|
159
|
-
'flow_authentication': value.flowAuthentication,
|
|
160
|
-
'flow_invalidation': value.flowInvalidation,
|
|
161
|
-
'flow_recovery': value.flowRecovery,
|
|
162
|
-
'flow_unenrollment': value.flowUnenrollment,
|
|
163
|
-
'flow_user_settings': value.flowUserSettings,
|
|
164
|
-
'flow_device_code': value.flowDeviceCode,
|
|
165
|
-
'event_retention': value.eventRetention,
|
|
166
|
-
'web_certificate': value.webCertificate,
|
|
167
|
-
'attributes': value.attributes,
|
|
78
|
+
'schema_name': value.schemaName,
|
|
79
|
+
'name': value.name,
|
|
80
|
+
'ready': value.ready,
|
|
168
81
|
};
|
|
169
82
|
}
|
|
170
83
|
|
package/src/models/UserSelf.ts
CHANGED
package/src/models/index.ts
CHANGED
|
@@ -52,6 +52,8 @@ export * from './BlueprintFile';
|
|
|
52
52
|
export * from './BlueprintInstance';
|
|
53
53
|
export * from './BlueprintInstanceRequest';
|
|
54
54
|
export * from './BlueprintInstanceStatusEnum';
|
|
55
|
+
export * from './Brand';
|
|
56
|
+
export * from './BrandRequest';
|
|
55
57
|
export * from './Cache';
|
|
56
58
|
export * from './CapabilitiesEnum';
|
|
57
59
|
export * from './CaptchaChallenge';
|
|
@@ -75,7 +77,7 @@ export * from './ConsentStageRequest';
|
|
|
75
77
|
export * from './ContextualFlowInfo';
|
|
76
78
|
export * from './ContextualFlowInfoLayoutEnum';
|
|
77
79
|
export * from './Coordinate';
|
|
78
|
-
export * from './
|
|
80
|
+
export * from './CurrentBrand';
|
|
79
81
|
export * from './DeniedActionEnum';
|
|
80
82
|
export * from './DenyStage';
|
|
81
83
|
export * from './DenyStageRequest';
|
|
@@ -87,6 +89,8 @@ export * from './DigestAlgorithmEnum';
|
|
|
87
89
|
export * from './DigitsEnum';
|
|
88
90
|
export * from './DockerServiceConnection';
|
|
89
91
|
export * from './DockerServiceConnectionRequest';
|
|
92
|
+
export * from './Domain';
|
|
93
|
+
export * from './DomainRequest';
|
|
90
94
|
export * from './DummyChallenge';
|
|
91
95
|
export * from './DummyChallengeResponseRequest';
|
|
92
96
|
export * from './DummyPolicy';
|
|
@@ -210,11 +214,13 @@ export * from './PaginatedAuthenticatorStaticStageList';
|
|
|
210
214
|
export * from './PaginatedAuthenticatorTOTPStageList';
|
|
211
215
|
export * from './PaginatedAuthenticatorValidateStageList';
|
|
212
216
|
export * from './PaginatedBlueprintInstanceList';
|
|
217
|
+
export * from './PaginatedBrandList';
|
|
213
218
|
export * from './PaginatedCaptchaStageList';
|
|
214
219
|
export * from './PaginatedCertificateKeyPairList';
|
|
215
220
|
export * from './PaginatedConsentStageList';
|
|
216
221
|
export * from './PaginatedDenyStageList';
|
|
217
222
|
export * from './PaginatedDockerServiceConnectionList';
|
|
223
|
+
export * from './PaginatedDomainList';
|
|
218
224
|
export * from './PaginatedDummyPolicyList';
|
|
219
225
|
export * from './PaginatedDummyStageList';
|
|
220
226
|
export * from './PaginatedDuoDeviceList';
|
|
@@ -310,11 +316,13 @@ export * from './PatchedAuthenticatorStaticStageRequest';
|
|
|
310
316
|
export * from './PatchedAuthenticatorTOTPStageRequest';
|
|
311
317
|
export * from './PatchedAuthenticatorValidateStageRequest';
|
|
312
318
|
export * from './PatchedBlueprintInstanceRequest';
|
|
319
|
+
export * from './PatchedBrandRequest';
|
|
313
320
|
export * from './PatchedCaptchaStageRequest';
|
|
314
321
|
export * from './PatchedCertificateKeyPairRequest';
|
|
315
322
|
export * from './PatchedConsentStageRequest';
|
|
316
323
|
export * from './PatchedDenyStageRequest';
|
|
317
324
|
export * from './PatchedDockerServiceConnectionRequest';
|
|
325
|
+
export * from './PatchedDomainRequest';
|
|
318
326
|
export * from './PatchedDummyPolicyRequest';
|
|
319
327
|
export * from './PatchedDummyStageRequest';
|
|
320
328
|
export * from './PatchedDuoDeviceRequest';
|
|
@@ -363,6 +371,7 @@ export * from './PatchedSCIMMappingRequest';
|
|
|
363
371
|
export * from './PatchedSCIMProviderRequest';
|
|
364
372
|
export * from './PatchedSMSDeviceRequest';
|
|
365
373
|
export * from './PatchedScopeMappingRequest';
|
|
374
|
+
export * from './PatchedSettingsRequest';
|
|
366
375
|
export * from './PatchedStaticDeviceRequest';
|
|
367
376
|
export * from './PatchedTOTPDeviceRequest';
|
|
368
377
|
export * from './PatchedTenantRequest';
|
|
@@ -448,6 +457,8 @@ export * from './ServiceConnection';
|
|
|
448
457
|
export * from './ServiceConnectionRequest';
|
|
449
458
|
export * from './ServiceConnectionState';
|
|
450
459
|
export * from './SessionUser';
|
|
460
|
+
export * from './Settings';
|
|
461
|
+
export * from './SettingsRequest';
|
|
451
462
|
export * from './SeverityEnum';
|
|
452
463
|
export * from './ShellChallenge';
|
|
453
464
|
export * from './SignatureAlgorithmEnum';
|
|
@@ -470,6 +481,9 @@ export * from './TOTPDeviceRequest';
|
|
|
470
481
|
export * from './Task';
|
|
471
482
|
export * from './TaskStatusEnum';
|
|
472
483
|
export * from './Tenant';
|
|
484
|
+
export * from './TenantAdminGroupRequestRequest';
|
|
485
|
+
export * from './TenantRecoveryKeyRequestRequest';
|
|
486
|
+
export * from './TenantRecoveryKeyResponse';
|
|
473
487
|
export * from './TenantRequest';
|
|
474
488
|
export * from './Token';
|
|
475
489
|
export * from './TokenModel';
|