@goauthentik/api 2023.5.0-1684333183 → 2023.5.0-1684333401

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.
@@ -105,6 +105,12 @@ export interface RadiusProvider {
105
105
  * @memberof RadiusProvider
106
106
  */
107
107
  sharedSecret?: string;
108
+ /**
109
+ *
110
+ * @type {Array<string>}
111
+ * @memberof RadiusProvider
112
+ */
113
+ readonly outpostSet: Array<string>;
108
114
  }
109
115
  /**
110
116
  * Check if a given object implements the RadiusProvider interface.
@@ -28,6 +28,7 @@ export function instanceOfRadiusProvider(value) {
28
28
  isInstance = isInstance && "verboseName" in value;
29
29
  isInstance = isInstance && "verboseNamePlural" in value;
30
30
  isInstance = isInstance && "metaModelName" in value;
31
+ isInstance = isInstance && "outpostSet" in value;
31
32
  return isInstance;
32
33
  }
33
34
  export function RadiusProviderFromJSON(json) {
@@ -53,6 +54,7 @@ export function RadiusProviderFromJSONTyped(json, ignoreDiscriminator) {
53
54
  'metaModelName': json['meta_model_name'],
54
55
  'clientNetworks': !exists(json, 'client_networks') ? undefined : json['client_networks'],
55
56
  'sharedSecret': !exists(json, 'shared_secret') ? undefined : json['shared_secret'],
57
+ 'outpostSet': json['outpost_set'],
56
58
  };
57
59
  }
58
60
  export function RadiusProviderToJSON(value) {
@@ -105,6 +105,12 @@ export interface RadiusProvider {
105
105
  * @memberof RadiusProvider
106
106
  */
107
107
  sharedSecret?: string;
108
+ /**
109
+ *
110
+ * @type {Array<string>}
111
+ * @memberof RadiusProvider
112
+ */
113
+ readonly outpostSet: Array<string>;
108
114
  }
109
115
  /**
110
116
  * Check if a given object implements the RadiusProvider interface.
@@ -31,6 +31,7 @@ function instanceOfRadiusProvider(value) {
31
31
  isInstance = isInstance && "verboseName" in value;
32
32
  isInstance = isInstance && "verboseNamePlural" in value;
33
33
  isInstance = isInstance && "metaModelName" in value;
34
+ isInstance = isInstance && "outpostSet" in value;
34
35
  return isInstance;
35
36
  }
36
37
  exports.instanceOfRadiusProvider = instanceOfRadiusProvider;
@@ -58,6 +59,7 @@ function RadiusProviderFromJSONTyped(json, ignoreDiscriminator) {
58
59
  'metaModelName': json['meta_model_name'],
59
60
  'clientNetworks': !(0, runtime_1.exists)(json, 'client_networks') ? undefined : json['client_networks'],
60
61
  'sharedSecret': !(0, runtime_1.exists)(json, 'shared_secret') ? undefined : json['shared_secret'],
62
+ 'outpostSet': json['outpost_set'],
61
63
  };
62
64
  }
63
65
  exports.RadiusProviderFromJSONTyped = RadiusProviderFromJSONTyped;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goauthentik/api",
3
- "version": "2023.5.0-1684333183",
3
+ "version": "2023.5.0-1684333401",
4
4
  "description": "OpenAPI client for @goauthentik/api",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -109,6 +109,12 @@ export interface RadiusProvider {
109
109
  * @memberof RadiusProvider
110
110
  */
111
111
  sharedSecret?: string;
112
+ /**
113
+ *
114
+ * @type {Array<string>}
115
+ * @memberof RadiusProvider
116
+ */
117
+ readonly outpostSet: Array<string>;
112
118
  }
113
119
 
114
120
  /**
@@ -127,6 +133,7 @@ export function instanceOfRadiusProvider(value: object): boolean {
127
133
  isInstance = isInstance && "verboseName" in value;
128
134
  isInstance = isInstance && "verboseNamePlural" in value;
129
135
  isInstance = isInstance && "metaModelName" in value;
136
+ isInstance = isInstance && "outpostSet" in value;
130
137
 
131
138
  return isInstance;
132
139
  }
@@ -156,6 +163,7 @@ export function RadiusProviderFromJSONTyped(json: any, ignoreDiscriminator: bool
156
163
  'metaModelName': json['meta_model_name'],
157
164
  'clientNetworks': !exists(json, 'client_networks') ? undefined : json['client_networks'],
158
165
  'sharedSecret': !exists(json, 'shared_secret') ? undefined : json['shared_secret'],
166
+ 'outpostSet': json['outpost_set'],
159
167
  };
160
168
  }
161
169