@goauthentik/api 2024.8.3-1728912934 → 2024.8.3-1728918276
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/PatchedSCIMProviderRequest.d.ts +6 -0
- package/dist/esm/models/PatchedSCIMProviderRequest.js +2 -0
- package/dist/esm/models/SCIMProvider.d.ts +6 -0
- package/dist/esm/models/SCIMProvider.js +2 -0
- package/dist/esm/models/SCIMProviderRequest.d.ts +6 -0
- package/dist/esm/models/SCIMProviderRequest.js +2 -0
- package/dist/models/PatchedSCIMProviderRequest.d.ts +6 -0
- package/dist/models/PatchedSCIMProviderRequest.js +2 -0
- package/dist/models/SCIMProvider.d.ts +6 -0
- package/dist/models/SCIMProvider.js +2 -0
- package/dist/models/SCIMProviderRequest.d.ts +6 -0
- package/dist/models/SCIMProviderRequest.js +2 -0
- package/package.json +1 -1
- package/src/models/PatchedSCIMProviderRequest.ts +8 -0
- package/src/models/SCIMProvider.ts +8 -0
- package/src/models/SCIMProviderRequest.ts +8 -0
|
@@ -39,6 +39,12 @@ export interface PatchedSCIMProviderRequest {
|
|
|
39
39
|
* @memberof PatchedSCIMProviderRequest
|
|
40
40
|
*/
|
|
41
41
|
url?: string;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {boolean}
|
|
45
|
+
* @memberof PatchedSCIMProviderRequest
|
|
46
|
+
*/
|
|
47
|
+
verifyCertificates?: boolean;
|
|
42
48
|
/**
|
|
43
49
|
* Authentication token
|
|
44
50
|
* @type {string}
|
|
@@ -31,6 +31,7 @@ export function PatchedSCIMProviderRequestFromJSONTyped(json, ignoreDiscriminato
|
|
|
31
31
|
'propertyMappings': !exists(json, 'property_mappings') ? undefined : json['property_mappings'],
|
|
32
32
|
'propertyMappingsGroup': !exists(json, 'property_mappings_group') ? undefined : json['property_mappings_group'],
|
|
33
33
|
'url': !exists(json, 'url') ? undefined : json['url'],
|
|
34
|
+
'verifyCertificates': !exists(json, 'verify_certificates') ? undefined : json['verify_certificates'],
|
|
34
35
|
'token': !exists(json, 'token') ? undefined : json['token'],
|
|
35
36
|
'excludeUsersServiceAccount': !exists(json, 'exclude_users_service_account') ? undefined : json['exclude_users_service_account'],
|
|
36
37
|
'filterGroup': !exists(json, 'filter_group') ? undefined : json['filter_group'],
|
|
@@ -48,6 +49,7 @@ export function PatchedSCIMProviderRequestToJSON(value) {
|
|
|
48
49
|
'property_mappings': value.propertyMappings,
|
|
49
50
|
'property_mappings_group': value.propertyMappingsGroup,
|
|
50
51
|
'url': value.url,
|
|
52
|
+
'verify_certificates': value.verifyCertificates,
|
|
51
53
|
'token': value.token,
|
|
52
54
|
'exclude_users_service_account': value.excludeUsersServiceAccount,
|
|
53
55
|
'filter_group': value.filterGroup,
|
|
@@ -48,6 +48,7 @@ export function SCIMProviderFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
48
48
|
'verboseNamePlural': json['verbose_name_plural'],
|
|
49
49
|
'metaModelName': json['meta_model_name'],
|
|
50
50
|
'url': json['url'],
|
|
51
|
+
'verifyCertificates': !exists(json, 'verify_certificates') ? undefined : json['verify_certificates'],
|
|
51
52
|
'token': json['token'],
|
|
52
53
|
'excludeUsersServiceAccount': !exists(json, 'exclude_users_service_account') ? undefined : json['exclude_users_service_account'],
|
|
53
54
|
'filterGroup': !exists(json, 'filter_group') ? undefined : json['filter_group'],
|
|
@@ -65,6 +66,7 @@ export function SCIMProviderToJSON(value) {
|
|
|
65
66
|
'property_mappings': value.propertyMappings,
|
|
66
67
|
'property_mappings_group': value.propertyMappingsGroup,
|
|
67
68
|
'url': value.url,
|
|
69
|
+
'verify_certificates': value.verifyCertificates,
|
|
68
70
|
'token': value.token,
|
|
69
71
|
'exclude_users_service_account': value.excludeUsersServiceAccount,
|
|
70
72
|
'filter_group': value.filterGroup,
|
|
@@ -39,6 +39,12 @@ export interface SCIMProviderRequest {
|
|
|
39
39
|
* @memberof SCIMProviderRequest
|
|
40
40
|
*/
|
|
41
41
|
url: string;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {boolean}
|
|
45
|
+
* @memberof SCIMProviderRequest
|
|
46
|
+
*/
|
|
47
|
+
verifyCertificates?: boolean;
|
|
42
48
|
/**
|
|
43
49
|
* Authentication token
|
|
44
50
|
* @type {string}
|
|
@@ -34,6 +34,7 @@ export function SCIMProviderRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
34
34
|
'propertyMappings': !exists(json, 'property_mappings') ? undefined : json['property_mappings'],
|
|
35
35
|
'propertyMappingsGroup': !exists(json, 'property_mappings_group') ? undefined : json['property_mappings_group'],
|
|
36
36
|
'url': json['url'],
|
|
37
|
+
'verifyCertificates': !exists(json, 'verify_certificates') ? undefined : json['verify_certificates'],
|
|
37
38
|
'token': json['token'],
|
|
38
39
|
'excludeUsersServiceAccount': !exists(json, 'exclude_users_service_account') ? undefined : json['exclude_users_service_account'],
|
|
39
40
|
'filterGroup': !exists(json, 'filter_group') ? undefined : json['filter_group'],
|
|
@@ -51,6 +52,7 @@ export function SCIMProviderRequestToJSON(value) {
|
|
|
51
52
|
'property_mappings': value.propertyMappings,
|
|
52
53
|
'property_mappings_group': value.propertyMappingsGroup,
|
|
53
54
|
'url': value.url,
|
|
55
|
+
'verify_certificates': value.verifyCertificates,
|
|
54
56
|
'token': value.token,
|
|
55
57
|
'exclude_users_service_account': value.excludeUsersServiceAccount,
|
|
56
58
|
'filter_group': value.filterGroup,
|
|
@@ -39,6 +39,12 @@ export interface PatchedSCIMProviderRequest {
|
|
|
39
39
|
* @memberof PatchedSCIMProviderRequest
|
|
40
40
|
*/
|
|
41
41
|
url?: string;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {boolean}
|
|
45
|
+
* @memberof PatchedSCIMProviderRequest
|
|
46
|
+
*/
|
|
47
|
+
verifyCertificates?: boolean;
|
|
42
48
|
/**
|
|
43
49
|
* Authentication token
|
|
44
50
|
* @type {string}
|
|
@@ -36,6 +36,7 @@ function PatchedSCIMProviderRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
36
36
|
'propertyMappings': !(0, runtime_1.exists)(json, 'property_mappings') ? undefined : json['property_mappings'],
|
|
37
37
|
'propertyMappingsGroup': !(0, runtime_1.exists)(json, 'property_mappings_group') ? undefined : json['property_mappings_group'],
|
|
38
38
|
'url': !(0, runtime_1.exists)(json, 'url') ? undefined : json['url'],
|
|
39
|
+
'verifyCertificates': !(0, runtime_1.exists)(json, 'verify_certificates') ? undefined : json['verify_certificates'],
|
|
39
40
|
'token': !(0, runtime_1.exists)(json, 'token') ? undefined : json['token'],
|
|
40
41
|
'excludeUsersServiceAccount': !(0, runtime_1.exists)(json, 'exclude_users_service_account') ? undefined : json['exclude_users_service_account'],
|
|
41
42
|
'filterGroup': !(0, runtime_1.exists)(json, 'filter_group') ? undefined : json['filter_group'],
|
|
@@ -54,6 +55,7 @@ function PatchedSCIMProviderRequestToJSON(value) {
|
|
|
54
55
|
'property_mappings': value.propertyMappings,
|
|
55
56
|
'property_mappings_group': value.propertyMappingsGroup,
|
|
56
57
|
'url': value.url,
|
|
58
|
+
'verify_certificates': value.verifyCertificates,
|
|
57
59
|
'token': value.token,
|
|
58
60
|
'exclude_users_service_account': value.excludeUsersServiceAccount,
|
|
59
61
|
'filter_group': value.filterGroup,
|
|
@@ -53,6 +53,7 @@ function SCIMProviderFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
53
53
|
'verboseNamePlural': json['verbose_name_plural'],
|
|
54
54
|
'metaModelName': json['meta_model_name'],
|
|
55
55
|
'url': json['url'],
|
|
56
|
+
'verifyCertificates': !(0, runtime_1.exists)(json, 'verify_certificates') ? undefined : json['verify_certificates'],
|
|
56
57
|
'token': json['token'],
|
|
57
58
|
'excludeUsersServiceAccount': !(0, runtime_1.exists)(json, 'exclude_users_service_account') ? undefined : json['exclude_users_service_account'],
|
|
58
59
|
'filterGroup': !(0, runtime_1.exists)(json, 'filter_group') ? undefined : json['filter_group'],
|
|
@@ -71,6 +72,7 @@ function SCIMProviderToJSON(value) {
|
|
|
71
72
|
'property_mappings': value.propertyMappings,
|
|
72
73
|
'property_mappings_group': value.propertyMappingsGroup,
|
|
73
74
|
'url': value.url,
|
|
75
|
+
'verify_certificates': value.verifyCertificates,
|
|
74
76
|
'token': value.token,
|
|
75
77
|
'exclude_users_service_account': value.excludeUsersServiceAccount,
|
|
76
78
|
'filter_group': value.filterGroup,
|
|
@@ -39,6 +39,12 @@ export interface SCIMProviderRequest {
|
|
|
39
39
|
* @memberof SCIMProviderRequest
|
|
40
40
|
*/
|
|
41
41
|
url: string;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {boolean}
|
|
45
|
+
* @memberof SCIMProviderRequest
|
|
46
|
+
*/
|
|
47
|
+
verifyCertificates?: boolean;
|
|
42
48
|
/**
|
|
43
49
|
* Authentication token
|
|
44
50
|
* @type {string}
|
|
@@ -39,6 +39,7 @@ function SCIMProviderRequestFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
39
39
|
'propertyMappings': !(0, runtime_1.exists)(json, 'property_mappings') ? undefined : json['property_mappings'],
|
|
40
40
|
'propertyMappingsGroup': !(0, runtime_1.exists)(json, 'property_mappings_group') ? undefined : json['property_mappings_group'],
|
|
41
41
|
'url': json['url'],
|
|
42
|
+
'verifyCertificates': !(0, runtime_1.exists)(json, 'verify_certificates') ? undefined : json['verify_certificates'],
|
|
42
43
|
'token': json['token'],
|
|
43
44
|
'excludeUsersServiceAccount': !(0, runtime_1.exists)(json, 'exclude_users_service_account') ? undefined : json['exclude_users_service_account'],
|
|
44
45
|
'filterGroup': !(0, runtime_1.exists)(json, 'filter_group') ? undefined : json['filter_group'],
|
|
@@ -57,6 +58,7 @@ function SCIMProviderRequestToJSON(value) {
|
|
|
57
58
|
'property_mappings': value.propertyMappings,
|
|
58
59
|
'property_mappings_group': value.propertyMappingsGroup,
|
|
59
60
|
'url': value.url,
|
|
61
|
+
'verify_certificates': value.verifyCertificates,
|
|
60
62
|
'token': value.token,
|
|
61
63
|
'exclude_users_service_account': value.excludeUsersServiceAccount,
|
|
62
64
|
'filter_group': value.filterGroup,
|
package/package.json
CHANGED
|
@@ -43,6 +43,12 @@ export interface PatchedSCIMProviderRequest {
|
|
|
43
43
|
* @memberof PatchedSCIMProviderRequest
|
|
44
44
|
*/
|
|
45
45
|
url?: string;
|
|
46
|
+
/**
|
|
47
|
+
*
|
|
48
|
+
* @type {boolean}
|
|
49
|
+
* @memberof PatchedSCIMProviderRequest
|
|
50
|
+
*/
|
|
51
|
+
verifyCertificates?: boolean;
|
|
46
52
|
/**
|
|
47
53
|
* Authentication token
|
|
48
54
|
* @type {string}
|
|
@@ -86,6 +92,7 @@ export function PatchedSCIMProviderRequestFromJSONTyped(json: any, ignoreDiscrim
|
|
|
86
92
|
'propertyMappings': !exists(json, 'property_mappings') ? undefined : json['property_mappings'],
|
|
87
93
|
'propertyMappingsGroup': !exists(json, 'property_mappings_group') ? undefined : json['property_mappings_group'],
|
|
88
94
|
'url': !exists(json, 'url') ? undefined : json['url'],
|
|
95
|
+
'verifyCertificates': !exists(json, 'verify_certificates') ? undefined : json['verify_certificates'],
|
|
89
96
|
'token': !exists(json, 'token') ? undefined : json['token'],
|
|
90
97
|
'excludeUsersServiceAccount': !exists(json, 'exclude_users_service_account') ? undefined : json['exclude_users_service_account'],
|
|
91
98
|
'filterGroup': !exists(json, 'filter_group') ? undefined : json['filter_group'],
|
|
@@ -105,6 +112,7 @@ export function PatchedSCIMProviderRequestToJSON(value?: PatchedSCIMProviderRequ
|
|
|
105
112
|
'property_mappings': value.propertyMappings,
|
|
106
113
|
'property_mappings_group': value.propertyMappingsGroup,
|
|
107
114
|
'url': value.url,
|
|
115
|
+
'verify_certificates': value.verifyCertificates,
|
|
108
116
|
'token': value.token,
|
|
109
117
|
'exclude_users_service_account': value.excludeUsersServiceAccount,
|
|
110
118
|
'filter_group': value.filterGroup,
|
|
@@ -85,6 +85,12 @@ export interface SCIMProvider {
|
|
|
85
85
|
* @memberof SCIMProvider
|
|
86
86
|
*/
|
|
87
87
|
url: string;
|
|
88
|
+
/**
|
|
89
|
+
*
|
|
90
|
+
* @type {boolean}
|
|
91
|
+
* @memberof SCIMProvider
|
|
92
|
+
*/
|
|
93
|
+
verifyCertificates?: boolean;
|
|
88
94
|
/**
|
|
89
95
|
* Authentication token
|
|
90
96
|
* @type {string}
|
|
@@ -145,6 +151,7 @@ export function SCIMProviderFromJSONTyped(json: any, ignoreDiscriminator: boolea
|
|
|
145
151
|
'verboseNamePlural': json['verbose_name_plural'],
|
|
146
152
|
'metaModelName': json['meta_model_name'],
|
|
147
153
|
'url': json['url'],
|
|
154
|
+
'verifyCertificates': !exists(json, 'verify_certificates') ? undefined : json['verify_certificates'],
|
|
148
155
|
'token': json['token'],
|
|
149
156
|
'excludeUsersServiceAccount': !exists(json, 'exclude_users_service_account') ? undefined : json['exclude_users_service_account'],
|
|
150
157
|
'filterGroup': !exists(json, 'filter_group') ? undefined : json['filter_group'],
|
|
@@ -164,6 +171,7 @@ export function SCIMProviderToJSON(value?: SCIMProvider | null): any {
|
|
|
164
171
|
'property_mappings': value.propertyMappings,
|
|
165
172
|
'property_mappings_group': value.propertyMappingsGroup,
|
|
166
173
|
'url': value.url,
|
|
174
|
+
'verify_certificates': value.verifyCertificates,
|
|
167
175
|
'token': value.token,
|
|
168
176
|
'exclude_users_service_account': value.excludeUsersServiceAccount,
|
|
169
177
|
'filter_group': value.filterGroup,
|
|
@@ -43,6 +43,12 @@ export interface SCIMProviderRequest {
|
|
|
43
43
|
* @memberof SCIMProviderRequest
|
|
44
44
|
*/
|
|
45
45
|
url: string;
|
|
46
|
+
/**
|
|
47
|
+
*
|
|
48
|
+
* @type {boolean}
|
|
49
|
+
* @memberof SCIMProviderRequest
|
|
50
|
+
*/
|
|
51
|
+
verifyCertificates?: boolean;
|
|
46
52
|
/**
|
|
47
53
|
* Authentication token
|
|
48
54
|
* @type {string}
|
|
@@ -89,6 +95,7 @@ export function SCIMProviderRequestFromJSONTyped(json: any, ignoreDiscriminator:
|
|
|
89
95
|
'propertyMappings': !exists(json, 'property_mappings') ? undefined : json['property_mappings'],
|
|
90
96
|
'propertyMappingsGroup': !exists(json, 'property_mappings_group') ? undefined : json['property_mappings_group'],
|
|
91
97
|
'url': json['url'],
|
|
98
|
+
'verifyCertificates': !exists(json, 'verify_certificates') ? undefined : json['verify_certificates'],
|
|
92
99
|
'token': json['token'],
|
|
93
100
|
'excludeUsersServiceAccount': !exists(json, 'exclude_users_service_account') ? undefined : json['exclude_users_service_account'],
|
|
94
101
|
'filterGroup': !exists(json, 'filter_group') ? undefined : json['filter_group'],
|
|
@@ -108,6 +115,7 @@ export function SCIMProviderRequestToJSON(value?: SCIMProviderRequest | null): a
|
|
|
108
115
|
'property_mappings': value.propertyMappings,
|
|
109
116
|
'property_mappings_group': value.propertyMappingsGroup,
|
|
110
117
|
'url': value.url,
|
|
118
|
+
'verify_certificates': value.verifyCertificates,
|
|
111
119
|
'token': value.token,
|
|
112
120
|
'exclude_users_service_account': value.excludeUsersServiceAccount,
|
|
113
121
|
'filter_group': value.filterGroup,
|