@goauthentik/api 2024.6.1-1721654810 → 2024.6.1-1721725857

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.
@@ -87,6 +87,12 @@ export interface Brand {
87
87
  * @memberof Brand
88
88
  */
89
89
  flowDeviceCode?: string | null;
90
+ /**
91
+ * When set, external users will be redirected to this application after authenticating.
92
+ * @type {string}
93
+ * @memberof Brand
94
+ */
95
+ defaultApplication?: string | null;
90
96
  /**
91
97
  * Web Certificate used by the authentik Core webserver.
92
98
  * @type {string}
@@ -41,6 +41,7 @@ export function BrandFromJSONTyped(json, ignoreDiscriminator) {
41
41
  'flowUnenrollment': !exists(json, 'flow_unenrollment') ? undefined : json['flow_unenrollment'],
42
42
  'flowUserSettings': !exists(json, 'flow_user_settings') ? undefined : json['flow_user_settings'],
43
43
  'flowDeviceCode': !exists(json, 'flow_device_code') ? undefined : json['flow_device_code'],
44
+ 'defaultApplication': !exists(json, 'default_application') ? undefined : json['default_application'],
44
45
  'webCertificate': !exists(json, 'web_certificate') ? undefined : json['web_certificate'],
45
46
  'attributes': !exists(json, 'attributes') ? undefined : json['attributes'],
46
47
  };
@@ -64,6 +65,7 @@ export function BrandToJSON(value) {
64
65
  'flow_unenrollment': value.flowUnenrollment,
65
66
  'flow_user_settings': value.flowUserSettings,
66
67
  'flow_device_code': value.flowDeviceCode,
68
+ 'default_application': value.defaultApplication,
67
69
  'web_certificate': value.webCertificate,
68
70
  'attributes': value.attributes,
69
71
  };
@@ -81,6 +81,12 @@ export interface BrandRequest {
81
81
  * @memberof BrandRequest
82
82
  */
83
83
  flowDeviceCode?: string | null;
84
+ /**
85
+ * When set, external users will be redirected to this application after authenticating.
86
+ * @type {string}
87
+ * @memberof BrandRequest
88
+ */
89
+ defaultApplication?: string | null;
84
90
  /**
85
91
  * Web Certificate used by the authentik Core webserver.
86
92
  * @type {string}
@@ -39,6 +39,7 @@ export function BrandRequestFromJSONTyped(json, ignoreDiscriminator) {
39
39
  'flowUnenrollment': !exists(json, 'flow_unenrollment') ? undefined : json['flow_unenrollment'],
40
40
  'flowUserSettings': !exists(json, 'flow_user_settings') ? undefined : json['flow_user_settings'],
41
41
  'flowDeviceCode': !exists(json, 'flow_device_code') ? undefined : json['flow_device_code'],
42
+ 'defaultApplication': !exists(json, 'default_application') ? undefined : json['default_application'],
42
43
  'webCertificate': !exists(json, 'web_certificate') ? undefined : json['web_certificate'],
43
44
  'attributes': !exists(json, 'attributes') ? undefined : json['attributes'],
44
45
  };
@@ -62,6 +63,7 @@ export function BrandRequestToJSON(value) {
62
63
  'flow_unenrollment': value.flowUnenrollment,
63
64
  'flow_user_settings': value.flowUserSettings,
64
65
  'flow_device_code': value.flowDeviceCode,
66
+ 'default_application': value.defaultApplication,
65
67
  'web_certificate': value.webCertificate,
66
68
  'attributes': value.attributes,
67
69
  };
@@ -81,6 +81,12 @@ export interface PatchedBrandRequest {
81
81
  * @memberof PatchedBrandRequest
82
82
  */
83
83
  flowDeviceCode?: string | null;
84
+ /**
85
+ * When set, external users will be redirected to this application after authenticating.
86
+ * @type {string}
87
+ * @memberof PatchedBrandRequest
88
+ */
89
+ defaultApplication?: string | null;
84
90
  /**
85
91
  * Web Certificate used by the authentik Core webserver.
86
92
  * @type {string}
@@ -38,6 +38,7 @@ export function PatchedBrandRequestFromJSONTyped(json, ignoreDiscriminator) {
38
38
  'flowUnenrollment': !exists(json, 'flow_unenrollment') ? undefined : json['flow_unenrollment'],
39
39
  'flowUserSettings': !exists(json, 'flow_user_settings') ? undefined : json['flow_user_settings'],
40
40
  'flowDeviceCode': !exists(json, 'flow_device_code') ? undefined : json['flow_device_code'],
41
+ 'defaultApplication': !exists(json, 'default_application') ? undefined : json['default_application'],
41
42
  'webCertificate': !exists(json, 'web_certificate') ? undefined : json['web_certificate'],
42
43
  'attributes': !exists(json, 'attributes') ? undefined : json['attributes'],
43
44
  };
@@ -61,6 +62,7 @@ export function PatchedBrandRequestToJSON(value) {
61
62
  'flow_unenrollment': value.flowUnenrollment,
62
63
  'flow_user_settings': value.flowUserSettings,
63
64
  'flow_device_code': value.flowDeviceCode,
65
+ 'default_application': value.defaultApplication,
64
66
  'web_certificate': value.webCertificate,
65
67
  'attributes': value.attributes,
66
68
  };
@@ -87,6 +87,12 @@ export interface Brand {
87
87
  * @memberof Brand
88
88
  */
89
89
  flowDeviceCode?: string | null;
90
+ /**
91
+ * When set, external users will be redirected to this application after authenticating.
92
+ * @type {string}
93
+ * @memberof Brand
94
+ */
95
+ defaultApplication?: string | null;
90
96
  /**
91
97
  * Web Certificate used by the authentik Core webserver.
92
98
  * @type {string}
@@ -46,6 +46,7 @@ function BrandFromJSONTyped(json, ignoreDiscriminator) {
46
46
  'flowUnenrollment': !(0, runtime_1.exists)(json, 'flow_unenrollment') ? undefined : json['flow_unenrollment'],
47
47
  'flowUserSettings': !(0, runtime_1.exists)(json, 'flow_user_settings') ? undefined : json['flow_user_settings'],
48
48
  'flowDeviceCode': !(0, runtime_1.exists)(json, 'flow_device_code') ? undefined : json['flow_device_code'],
49
+ 'defaultApplication': !(0, runtime_1.exists)(json, 'default_application') ? undefined : json['default_application'],
49
50
  'webCertificate': !(0, runtime_1.exists)(json, 'web_certificate') ? undefined : json['web_certificate'],
50
51
  'attributes': !(0, runtime_1.exists)(json, 'attributes') ? undefined : json['attributes'],
51
52
  };
@@ -70,6 +71,7 @@ function BrandToJSON(value) {
70
71
  'flow_unenrollment': value.flowUnenrollment,
71
72
  'flow_user_settings': value.flowUserSettings,
72
73
  'flow_device_code': value.flowDeviceCode,
74
+ 'default_application': value.defaultApplication,
73
75
  'web_certificate': value.webCertificate,
74
76
  'attributes': value.attributes,
75
77
  };
@@ -81,6 +81,12 @@ export interface BrandRequest {
81
81
  * @memberof BrandRequest
82
82
  */
83
83
  flowDeviceCode?: string | null;
84
+ /**
85
+ * When set, external users will be redirected to this application after authenticating.
86
+ * @type {string}
87
+ * @memberof BrandRequest
88
+ */
89
+ defaultApplication?: string | null;
84
90
  /**
85
91
  * Web Certificate used by the authentik Core webserver.
86
92
  * @type {string}
@@ -44,6 +44,7 @@ function BrandRequestFromJSONTyped(json, ignoreDiscriminator) {
44
44
  'flowUnenrollment': !(0, runtime_1.exists)(json, 'flow_unenrollment') ? undefined : json['flow_unenrollment'],
45
45
  'flowUserSettings': !(0, runtime_1.exists)(json, 'flow_user_settings') ? undefined : json['flow_user_settings'],
46
46
  'flowDeviceCode': !(0, runtime_1.exists)(json, 'flow_device_code') ? undefined : json['flow_device_code'],
47
+ 'defaultApplication': !(0, runtime_1.exists)(json, 'default_application') ? undefined : json['default_application'],
47
48
  'webCertificate': !(0, runtime_1.exists)(json, 'web_certificate') ? undefined : json['web_certificate'],
48
49
  'attributes': !(0, runtime_1.exists)(json, 'attributes') ? undefined : json['attributes'],
49
50
  };
@@ -68,6 +69,7 @@ function BrandRequestToJSON(value) {
68
69
  'flow_unenrollment': value.flowUnenrollment,
69
70
  'flow_user_settings': value.flowUserSettings,
70
71
  'flow_device_code': value.flowDeviceCode,
72
+ 'default_application': value.defaultApplication,
71
73
  'web_certificate': value.webCertificate,
72
74
  'attributes': value.attributes,
73
75
  };
@@ -81,6 +81,12 @@ export interface PatchedBrandRequest {
81
81
  * @memberof PatchedBrandRequest
82
82
  */
83
83
  flowDeviceCode?: string | null;
84
+ /**
85
+ * When set, external users will be redirected to this application after authenticating.
86
+ * @type {string}
87
+ * @memberof PatchedBrandRequest
88
+ */
89
+ defaultApplication?: string | null;
84
90
  /**
85
91
  * Web Certificate used by the authentik Core webserver.
86
92
  * @type {string}
@@ -43,6 +43,7 @@ function PatchedBrandRequestFromJSONTyped(json, ignoreDiscriminator) {
43
43
  'flowUnenrollment': !(0, runtime_1.exists)(json, 'flow_unenrollment') ? undefined : json['flow_unenrollment'],
44
44
  'flowUserSettings': !(0, runtime_1.exists)(json, 'flow_user_settings') ? undefined : json['flow_user_settings'],
45
45
  'flowDeviceCode': !(0, runtime_1.exists)(json, 'flow_device_code') ? undefined : json['flow_device_code'],
46
+ 'defaultApplication': !(0, runtime_1.exists)(json, 'default_application') ? undefined : json['default_application'],
46
47
  'webCertificate': !(0, runtime_1.exists)(json, 'web_certificate') ? undefined : json['web_certificate'],
47
48
  'attributes': !(0, runtime_1.exists)(json, 'attributes') ? undefined : json['attributes'],
48
49
  };
@@ -67,6 +68,7 @@ function PatchedBrandRequestToJSON(value) {
67
68
  'flow_unenrollment': value.flowUnenrollment,
68
69
  'flow_user_settings': value.flowUserSettings,
69
70
  'flow_device_code': value.flowDeviceCode,
71
+ 'default_application': value.defaultApplication,
70
72
  'web_certificate': value.webCertificate,
71
73
  'attributes': value.attributes,
72
74
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goauthentik/api",
3
- "version": "2024.6.1-1721654810",
3
+ "version": "2024.6.1-1721725857",
4
4
  "description": "OpenAPI client for @goauthentik/api",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -91,6 +91,12 @@ export interface Brand {
91
91
  * @memberof Brand
92
92
  */
93
93
  flowDeviceCode?: string | null;
94
+ /**
95
+ * When set, external users will be redirected to this application after authenticating.
96
+ * @type {string}
97
+ * @memberof Brand
98
+ */
99
+ defaultApplication?: string | null;
94
100
  /**
95
101
  * Web Certificate used by the authentik Core webserver.
96
102
  * @type {string}
@@ -138,6 +144,7 @@ export function BrandFromJSONTyped(json: any, ignoreDiscriminator: boolean): Bra
138
144
  'flowUnenrollment': !exists(json, 'flow_unenrollment') ? undefined : json['flow_unenrollment'],
139
145
  'flowUserSettings': !exists(json, 'flow_user_settings') ? undefined : json['flow_user_settings'],
140
146
  'flowDeviceCode': !exists(json, 'flow_device_code') ? undefined : json['flow_device_code'],
147
+ 'defaultApplication': !exists(json, 'default_application') ? undefined : json['default_application'],
141
148
  'webCertificate': !exists(json, 'web_certificate') ? undefined : json['web_certificate'],
142
149
  'attributes': !exists(json, 'attributes') ? undefined : json['attributes'],
143
150
  };
@@ -163,6 +170,7 @@ export function BrandToJSON(value?: Brand | null): any {
163
170
  'flow_unenrollment': value.flowUnenrollment,
164
171
  'flow_user_settings': value.flowUserSettings,
165
172
  'flow_device_code': value.flowDeviceCode,
173
+ 'default_application': value.defaultApplication,
166
174
  'web_certificate': value.webCertificate,
167
175
  'attributes': value.attributes,
168
176
  };
@@ -85,6 +85,12 @@ export interface BrandRequest {
85
85
  * @memberof BrandRequest
86
86
  */
87
87
  flowDeviceCode?: string | null;
88
+ /**
89
+ * When set, external users will be redirected to this application after authenticating.
90
+ * @type {string}
91
+ * @memberof BrandRequest
92
+ */
93
+ defaultApplication?: string | null;
88
94
  /**
89
95
  * Web Certificate used by the authentik Core webserver.
90
96
  * @type {string}
@@ -130,6 +136,7 @@ export function BrandRequestFromJSONTyped(json: any, ignoreDiscriminator: boolea
130
136
  'flowUnenrollment': !exists(json, 'flow_unenrollment') ? undefined : json['flow_unenrollment'],
131
137
  'flowUserSettings': !exists(json, 'flow_user_settings') ? undefined : json['flow_user_settings'],
132
138
  'flowDeviceCode': !exists(json, 'flow_device_code') ? undefined : json['flow_device_code'],
139
+ 'defaultApplication': !exists(json, 'default_application') ? undefined : json['default_application'],
133
140
  'webCertificate': !exists(json, 'web_certificate') ? undefined : json['web_certificate'],
134
141
  'attributes': !exists(json, 'attributes') ? undefined : json['attributes'],
135
142
  };
@@ -155,6 +162,7 @@ export function BrandRequestToJSON(value?: BrandRequest | null): any {
155
162
  'flow_unenrollment': value.flowUnenrollment,
156
163
  'flow_user_settings': value.flowUserSettings,
157
164
  'flow_device_code': value.flowDeviceCode,
165
+ 'default_application': value.defaultApplication,
158
166
  'web_certificate': value.webCertificate,
159
167
  'attributes': value.attributes,
160
168
  };
@@ -85,6 +85,12 @@ export interface PatchedBrandRequest {
85
85
  * @memberof PatchedBrandRequest
86
86
  */
87
87
  flowDeviceCode?: string | null;
88
+ /**
89
+ * When set, external users will be redirected to this application after authenticating.
90
+ * @type {string}
91
+ * @memberof PatchedBrandRequest
92
+ */
93
+ defaultApplication?: string | null;
88
94
  /**
89
95
  * Web Certificate used by the authentik Core webserver.
90
96
  * @type {string}
@@ -129,6 +135,7 @@ export function PatchedBrandRequestFromJSONTyped(json: any, ignoreDiscriminator:
129
135
  'flowUnenrollment': !exists(json, 'flow_unenrollment') ? undefined : json['flow_unenrollment'],
130
136
  'flowUserSettings': !exists(json, 'flow_user_settings') ? undefined : json['flow_user_settings'],
131
137
  'flowDeviceCode': !exists(json, 'flow_device_code') ? undefined : json['flow_device_code'],
138
+ 'defaultApplication': !exists(json, 'default_application') ? undefined : json['default_application'],
132
139
  'webCertificate': !exists(json, 'web_certificate') ? undefined : json['web_certificate'],
133
140
  'attributes': !exists(json, 'attributes') ? undefined : json['attributes'],
134
141
  };
@@ -154,6 +161,7 @@ export function PatchedBrandRequestToJSON(value?: PatchedBrandRequest | null): a
154
161
  'flow_unenrollment': value.flowUnenrollment,
155
162
  'flow_user_settings': value.flowUserSettings,
156
163
  'flow_device_code': value.flowDeviceCode,
164
+ 'default_application': value.defaultApplication,
157
165
  'web_certificate': value.webCertificate,
158
166
  'attributes': value.attributes,
159
167
  };