@goauthentik/api 2023.10.5-1704381512 → 2023.10.5-1704382057
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/esm/models/Endpoint.d.ts +6 -0
- package/dist/esm/models/Endpoint.js +2 -0
- package/dist/esm/models/EndpointRequest.d.ts +6 -0
- package/dist/esm/models/EndpointRequest.js +2 -0
- package/dist/esm/models/PatchedEndpointRequest.d.ts +6 -0
- package/dist/esm/models/PatchedEndpointRequest.js +2 -0
- package/dist/models/Endpoint.d.ts +6 -0
- package/dist/models/Endpoint.js +2 -0
- package/dist/models/EndpointRequest.d.ts +6 -0
- package/dist/models/EndpointRequest.js +2 -0
- package/dist/models/PatchedEndpointRequest.d.ts +6 -0
- package/dist/models/PatchedEndpointRequest.js +2 -0
- package/package.json +1 -1
- package/src/models/Endpoint.ts +8 -0
- package/src/models/EndpointRequest.ts +8 -0
- package/src/models/PatchedEndpointRequest.ts +8 -0
|
@@ -79,6 +79,12 @@ export interface Endpoint {
|
|
|
79
79
|
* @memberof Endpoint
|
|
80
80
|
*/
|
|
81
81
|
readonly launchUrl: string | null;
|
|
82
|
+
/**
|
|
83
|
+
*
|
|
84
|
+
* @type {number}
|
|
85
|
+
* @memberof Endpoint
|
|
86
|
+
*/
|
|
87
|
+
maximumConnections?: number;
|
|
82
88
|
}
|
|
83
89
|
/**
|
|
84
90
|
* Check if a given object implements the Endpoint interface.
|
|
@@ -48,6 +48,7 @@ export function EndpointFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
48
48
|
'propertyMappings': !exists(json, 'property_mappings') ? undefined : json['property_mappings'],
|
|
49
49
|
'authMode': AuthModeEnumFromJSON(json['auth_mode']),
|
|
50
50
|
'launchUrl': json['launch_url'],
|
|
51
|
+
'maximumConnections': !exists(json, 'maximum_connections') ? undefined : json['maximum_connections'],
|
|
51
52
|
};
|
|
52
53
|
}
|
|
53
54
|
export function EndpointToJSON(value) {
|
|
@@ -65,5 +66,6 @@ export function EndpointToJSON(value) {
|
|
|
65
66
|
'settings': value.settings,
|
|
66
67
|
'property_mappings': value.propertyMappings,
|
|
67
68
|
'auth_mode': AuthModeEnumToJSON(value.authMode),
|
|
69
|
+
'maximum_connections': value.maximumConnections,
|
|
68
70
|
};
|
|
69
71
|
}
|
|
@@ -59,6 +59,12 @@ export interface EndpointRequest {
|
|
|
59
59
|
* @memberof EndpointRequest
|
|
60
60
|
*/
|
|
61
61
|
authMode: AuthModeEnum;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {number}
|
|
65
|
+
* @memberof EndpointRequest
|
|
66
|
+
*/
|
|
67
|
+
maximumConnections?: number;
|
|
62
68
|
}
|
|
63
69
|
/**
|
|
64
70
|
* Check if a given object implements the EndpointRequest interface.
|
|
@@ -41,6 +41,7 @@ export function EndpointRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
41
41
|
'settings': !exists(json, 'settings') ? undefined : json['settings'],
|
|
42
42
|
'propertyMappings': !exists(json, 'property_mappings') ? undefined : json['property_mappings'],
|
|
43
43
|
'authMode': AuthModeEnumFromJSON(json['auth_mode']),
|
|
44
|
+
'maximumConnections': !exists(json, 'maximum_connections') ? undefined : json['maximum_connections'],
|
|
44
45
|
};
|
|
45
46
|
}
|
|
46
47
|
export function EndpointRequestToJSON(value) {
|
|
@@ -58,5 +59,6 @@ export function EndpointRequestToJSON(value) {
|
|
|
58
59
|
'settings': value.settings,
|
|
59
60
|
'property_mappings': value.propertyMappings,
|
|
60
61
|
'auth_mode': AuthModeEnumToJSON(value.authMode),
|
|
62
|
+
'maximum_connections': value.maximumConnections,
|
|
61
63
|
};
|
|
62
64
|
}
|
|
@@ -59,6 +59,12 @@ export interface PatchedEndpointRequest {
|
|
|
59
59
|
* @memberof PatchedEndpointRequest
|
|
60
60
|
*/
|
|
61
61
|
authMode?: AuthModeEnum;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {number}
|
|
65
|
+
* @memberof PatchedEndpointRequest
|
|
66
|
+
*/
|
|
67
|
+
maximumConnections?: number;
|
|
62
68
|
}
|
|
63
69
|
/**
|
|
64
70
|
* Check if a given object implements the PatchedEndpointRequest interface.
|
|
@@ -36,6 +36,7 @@ export function PatchedEndpointRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
36
36
|
'settings': !exists(json, 'settings') ? undefined : json['settings'],
|
|
37
37
|
'propertyMappings': !exists(json, 'property_mappings') ? undefined : json['property_mappings'],
|
|
38
38
|
'authMode': !exists(json, 'auth_mode') ? undefined : AuthModeEnumFromJSON(json['auth_mode']),
|
|
39
|
+
'maximumConnections': !exists(json, 'maximum_connections') ? undefined : json['maximum_connections'],
|
|
39
40
|
};
|
|
40
41
|
}
|
|
41
42
|
export function PatchedEndpointRequestToJSON(value) {
|
|
@@ -53,5 +54,6 @@ export function PatchedEndpointRequestToJSON(value) {
|
|
|
53
54
|
'settings': value.settings,
|
|
54
55
|
'property_mappings': value.propertyMappings,
|
|
55
56
|
'auth_mode': AuthModeEnumToJSON(value.authMode),
|
|
57
|
+
'maximum_connections': value.maximumConnections,
|
|
56
58
|
};
|
|
57
59
|
}
|
|
@@ -79,6 +79,12 @@ export interface Endpoint {
|
|
|
79
79
|
* @memberof Endpoint
|
|
80
80
|
*/
|
|
81
81
|
readonly launchUrl: string | null;
|
|
82
|
+
/**
|
|
83
|
+
*
|
|
84
|
+
* @type {number}
|
|
85
|
+
* @memberof Endpoint
|
|
86
|
+
*/
|
|
87
|
+
maximumConnections?: number;
|
|
82
88
|
}
|
|
83
89
|
/**
|
|
84
90
|
* Check if a given object implements the Endpoint interface.
|
package/dist/models/Endpoint.js
CHANGED
|
@@ -53,6 +53,7 @@ function EndpointFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
53
53
|
'propertyMappings': !(0, runtime_1.exists)(json, 'property_mappings') ? undefined : json['property_mappings'],
|
|
54
54
|
'authMode': (0, AuthModeEnum_1.AuthModeEnumFromJSON)(json['auth_mode']),
|
|
55
55
|
'launchUrl': json['launch_url'],
|
|
56
|
+
'maximumConnections': !(0, runtime_1.exists)(json, 'maximum_connections') ? undefined : json['maximum_connections'],
|
|
56
57
|
};
|
|
57
58
|
}
|
|
58
59
|
exports.EndpointFromJSONTyped = EndpointFromJSONTyped;
|
|
@@ -71,6 +72,7 @@ function EndpointToJSON(value) {
|
|
|
71
72
|
'settings': value.settings,
|
|
72
73
|
'property_mappings': value.propertyMappings,
|
|
73
74
|
'auth_mode': (0, AuthModeEnum_1.AuthModeEnumToJSON)(value.authMode),
|
|
75
|
+
'maximum_connections': value.maximumConnections,
|
|
74
76
|
};
|
|
75
77
|
}
|
|
76
78
|
exports.EndpointToJSON = EndpointToJSON;
|
|
@@ -59,6 +59,12 @@ export interface EndpointRequest {
|
|
|
59
59
|
* @memberof EndpointRequest
|
|
60
60
|
*/
|
|
61
61
|
authMode: AuthModeEnum;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {number}
|
|
65
|
+
* @memberof EndpointRequest
|
|
66
|
+
*/
|
|
67
|
+
maximumConnections?: number;
|
|
62
68
|
}
|
|
63
69
|
/**
|
|
64
70
|
* Check if a given object implements the EndpointRequest interface.
|
|
@@ -46,6 +46,7 @@ function EndpointRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
46
46
|
'settings': !(0, runtime_1.exists)(json, 'settings') ? undefined : json['settings'],
|
|
47
47
|
'propertyMappings': !(0, runtime_1.exists)(json, 'property_mappings') ? undefined : json['property_mappings'],
|
|
48
48
|
'authMode': (0, AuthModeEnum_1.AuthModeEnumFromJSON)(json['auth_mode']),
|
|
49
|
+
'maximumConnections': !(0, runtime_1.exists)(json, 'maximum_connections') ? undefined : json['maximum_connections'],
|
|
49
50
|
};
|
|
50
51
|
}
|
|
51
52
|
exports.EndpointRequestFromJSONTyped = EndpointRequestFromJSONTyped;
|
|
@@ -64,6 +65,7 @@ function EndpointRequestToJSON(value) {
|
|
|
64
65
|
'settings': value.settings,
|
|
65
66
|
'property_mappings': value.propertyMappings,
|
|
66
67
|
'auth_mode': (0, AuthModeEnum_1.AuthModeEnumToJSON)(value.authMode),
|
|
68
|
+
'maximum_connections': value.maximumConnections,
|
|
67
69
|
};
|
|
68
70
|
}
|
|
69
71
|
exports.EndpointRequestToJSON = EndpointRequestToJSON;
|
|
@@ -59,6 +59,12 @@ export interface PatchedEndpointRequest {
|
|
|
59
59
|
* @memberof PatchedEndpointRequest
|
|
60
60
|
*/
|
|
61
61
|
authMode?: AuthModeEnum;
|
|
62
|
+
/**
|
|
63
|
+
*
|
|
64
|
+
* @type {number}
|
|
65
|
+
* @memberof PatchedEndpointRequest
|
|
66
|
+
*/
|
|
67
|
+
maximumConnections?: number;
|
|
62
68
|
}
|
|
63
69
|
/**
|
|
64
70
|
* Check if a given object implements the PatchedEndpointRequest interface.
|
|
@@ -41,6 +41,7 @@ function PatchedEndpointRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
41
41
|
'settings': !(0, runtime_1.exists)(json, 'settings') ? undefined : json['settings'],
|
|
42
42
|
'propertyMappings': !(0, runtime_1.exists)(json, 'property_mappings') ? undefined : json['property_mappings'],
|
|
43
43
|
'authMode': !(0, runtime_1.exists)(json, 'auth_mode') ? undefined : (0, AuthModeEnum_1.AuthModeEnumFromJSON)(json['auth_mode']),
|
|
44
|
+
'maximumConnections': !(0, runtime_1.exists)(json, 'maximum_connections') ? undefined : json['maximum_connections'],
|
|
44
45
|
};
|
|
45
46
|
}
|
|
46
47
|
exports.PatchedEndpointRequestFromJSONTyped = PatchedEndpointRequestFromJSONTyped;
|
|
@@ -59,6 +60,7 @@ function PatchedEndpointRequestToJSON(value) {
|
|
|
59
60
|
'settings': value.settings,
|
|
60
61
|
'property_mappings': value.propertyMappings,
|
|
61
62
|
'auth_mode': (0, AuthModeEnum_1.AuthModeEnumToJSON)(value.authMode),
|
|
63
|
+
'maximum_connections': value.maximumConnections,
|
|
62
64
|
};
|
|
63
65
|
}
|
|
64
66
|
exports.PatchedEndpointRequestToJSON = PatchedEndpointRequestToJSON;
|
package/package.json
CHANGED
package/src/models/Endpoint.ts
CHANGED
|
@@ -99,6 +99,12 @@ export interface Endpoint {
|
|
|
99
99
|
* @memberof Endpoint
|
|
100
100
|
*/
|
|
101
101
|
readonly launchUrl: string | null;
|
|
102
|
+
/**
|
|
103
|
+
*
|
|
104
|
+
* @type {number}
|
|
105
|
+
* @memberof Endpoint
|
|
106
|
+
*/
|
|
107
|
+
maximumConnections?: number;
|
|
102
108
|
}
|
|
103
109
|
|
|
104
110
|
/**
|
|
@@ -138,6 +144,7 @@ export function EndpointFromJSONTyped(json: any, ignoreDiscriminator: boolean):
|
|
|
138
144
|
'propertyMappings': !exists(json, 'property_mappings') ? undefined : json['property_mappings'],
|
|
139
145
|
'authMode': AuthModeEnumFromJSON(json['auth_mode']),
|
|
140
146
|
'launchUrl': json['launch_url'],
|
|
147
|
+
'maximumConnections': !exists(json, 'maximum_connections') ? undefined : json['maximum_connections'],
|
|
141
148
|
};
|
|
142
149
|
}
|
|
143
150
|
|
|
@@ -157,6 +164,7 @@ export function EndpointToJSON(value?: Endpoint | null): any {
|
|
|
157
164
|
'settings': value.settings,
|
|
158
165
|
'property_mappings': value.propertyMappings,
|
|
159
166
|
'auth_mode': AuthModeEnumToJSON(value.authMode),
|
|
167
|
+
'maximum_connections': value.maximumConnections,
|
|
160
168
|
};
|
|
161
169
|
}
|
|
162
170
|
|
|
@@ -74,6 +74,12 @@ export interface EndpointRequest {
|
|
|
74
74
|
* @memberof EndpointRequest
|
|
75
75
|
*/
|
|
76
76
|
authMode: AuthModeEnum;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {number}
|
|
80
|
+
* @memberof EndpointRequest
|
|
81
|
+
*/
|
|
82
|
+
maximumConnections?: number;
|
|
77
83
|
}
|
|
78
84
|
|
|
79
85
|
/**
|
|
@@ -107,6 +113,7 @@ export function EndpointRequestFromJSONTyped(json: any, ignoreDiscriminator: boo
|
|
|
107
113
|
'settings': !exists(json, 'settings') ? undefined : json['settings'],
|
|
108
114
|
'propertyMappings': !exists(json, 'property_mappings') ? undefined : json['property_mappings'],
|
|
109
115
|
'authMode': AuthModeEnumFromJSON(json['auth_mode']),
|
|
116
|
+
'maximumConnections': !exists(json, 'maximum_connections') ? undefined : json['maximum_connections'],
|
|
110
117
|
};
|
|
111
118
|
}
|
|
112
119
|
|
|
@@ -126,6 +133,7 @@ export function EndpointRequestToJSON(value?: EndpointRequest | null): any {
|
|
|
126
133
|
'settings': value.settings,
|
|
127
134
|
'property_mappings': value.propertyMappings,
|
|
128
135
|
'auth_mode': AuthModeEnumToJSON(value.authMode),
|
|
136
|
+
'maximum_connections': value.maximumConnections,
|
|
129
137
|
};
|
|
130
138
|
}
|
|
131
139
|
|
|
@@ -74,6 +74,12 @@ export interface PatchedEndpointRequest {
|
|
|
74
74
|
* @memberof PatchedEndpointRequest
|
|
75
75
|
*/
|
|
76
76
|
authMode?: AuthModeEnum;
|
|
77
|
+
/**
|
|
78
|
+
*
|
|
79
|
+
* @type {number}
|
|
80
|
+
* @memberof PatchedEndpointRequest
|
|
81
|
+
*/
|
|
82
|
+
maximumConnections?: number;
|
|
77
83
|
}
|
|
78
84
|
|
|
79
85
|
/**
|
|
@@ -102,6 +108,7 @@ export function PatchedEndpointRequestFromJSONTyped(json: any, ignoreDiscriminat
|
|
|
102
108
|
'settings': !exists(json, 'settings') ? undefined : json['settings'],
|
|
103
109
|
'propertyMappings': !exists(json, 'property_mappings') ? undefined : json['property_mappings'],
|
|
104
110
|
'authMode': !exists(json, 'auth_mode') ? undefined : AuthModeEnumFromJSON(json['auth_mode']),
|
|
111
|
+
'maximumConnections': !exists(json, 'maximum_connections') ? undefined : json['maximum_connections'],
|
|
105
112
|
};
|
|
106
113
|
}
|
|
107
114
|
|
|
@@ -121,6 +128,7 @@ export function PatchedEndpointRequestToJSON(value?: PatchedEndpointRequest | nu
|
|
|
121
128
|
'settings': value.settings,
|
|
122
129
|
'property_mappings': value.propertyMappings,
|
|
123
130
|
'auth_mode': AuthModeEnumToJSON(value.authMode),
|
|
131
|
+
'maximum_connections': value.maximumConnections,
|
|
124
132
|
};
|
|
125
133
|
}
|
|
126
134
|
|