@goauthentik/api 2024.8.3-1728912934 → 2024.8.3-1728939481

Sign up to get free protection for your applications and to get access to all the features.
@@ -75,6 +75,12 @@ export interface Device {
75
75
  * @memberof Device
76
76
  */
77
77
  readonly lastUsed: Date | null;
78
+ /**
79
+ * Get extra description
80
+ * @type {string}
81
+ * @memberof Device
82
+ */
83
+ readonly extraDescription: string;
78
84
  }
79
85
  /**
80
86
  * Check if a given object implements the Device interface.
@@ -26,6 +26,7 @@ export function instanceOfDevice(value) {
26
26
  isInstance = isInstance && "created" in value;
27
27
  isInstance = isInstance && "lastUpdated" in value;
28
28
  isInstance = isInstance && "lastUsed" in value;
29
+ isInstance = isInstance && "extraDescription" in value;
29
30
  return isInstance;
30
31
  }
31
32
  export function DeviceFromJSON(json) {
@@ -46,6 +47,7 @@ export function DeviceFromJSONTyped(json, ignoreDiscriminator) {
46
47
  'created': (new Date(json['created'])),
47
48
  'lastUpdated': (new Date(json['last_updated'])),
48
49
  'lastUsed': (json['last_used'] === null ? null : new Date(json['last_used'])),
50
+ 'extraDescription': json['extra_description'],
49
51
  };
50
52
  }
51
53
  export function DeviceToJSON(value) {
@@ -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,
@@ -81,6 +81,12 @@ export interface SCIMProvider {
81
81
  * @memberof SCIMProvider
82
82
  */
83
83
  url: string;
84
+ /**
85
+ *
86
+ * @type {boolean}
87
+ * @memberof SCIMProvider
88
+ */
89
+ verifyCertificates?: boolean;
84
90
  /**
85
91
  * Authentication token
86
92
  * @type {string}
@@ -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,
@@ -75,6 +75,12 @@ export interface Device {
75
75
  * @memberof Device
76
76
  */
77
77
  readonly lastUsed: Date | null;
78
+ /**
79
+ * Get extra description
80
+ * @type {string}
81
+ * @memberof Device
82
+ */
83
+ readonly extraDescription: string;
78
84
  }
79
85
  /**
80
86
  * Check if a given object implements the Device interface.
@@ -29,6 +29,7 @@ function instanceOfDevice(value) {
29
29
  isInstance = isInstance && "created" in value;
30
30
  isInstance = isInstance && "lastUpdated" in value;
31
31
  isInstance = isInstance && "lastUsed" in value;
32
+ isInstance = isInstance && "extraDescription" in value;
32
33
  return isInstance;
33
34
  }
34
35
  exports.instanceOfDevice = instanceOfDevice;
@@ -51,6 +52,7 @@ function DeviceFromJSONTyped(json, ignoreDiscriminator) {
51
52
  'created': (new Date(json['created'])),
52
53
  'lastUpdated': (new Date(json['last_updated'])),
53
54
  'lastUsed': (json['last_used'] === null ? null : new Date(json['last_used'])),
55
+ 'extraDescription': json['extra_description'],
54
56
  };
55
57
  }
56
58
  exports.DeviceFromJSONTyped = DeviceFromJSONTyped;
@@ -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,
@@ -81,6 +81,12 @@ export interface SCIMProvider {
81
81
  * @memberof SCIMProvider
82
82
  */
83
83
  url: string;
84
+ /**
85
+ *
86
+ * @type {boolean}
87
+ * @memberof SCIMProvider
88
+ */
89
+ verifyCertificates?: boolean;
84
90
  /**
85
91
  * Authentication token
86
92
  * @type {string}
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goauthentik/api",
3
- "version": "2024.8.3-1728912934",
3
+ "version": "2024.8.3-1728939481",
4
4
  "description": "OpenAPI client for @goauthentik/api",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -79,6 +79,12 @@ export interface Device {
79
79
  * @memberof Device
80
80
  */
81
81
  readonly lastUsed: Date | null;
82
+ /**
83
+ * Get extra description
84
+ * @type {string}
85
+ * @memberof Device
86
+ */
87
+ readonly extraDescription: string;
82
88
  }
83
89
 
84
90
  /**
@@ -96,6 +102,7 @@ export function instanceOfDevice(value: object): boolean {
96
102
  isInstance = isInstance && "created" in value;
97
103
  isInstance = isInstance && "lastUpdated" in value;
98
104
  isInstance = isInstance && "lastUsed" in value;
105
+ isInstance = isInstance && "extraDescription" in value;
99
106
 
100
107
  return isInstance;
101
108
  }
@@ -120,6 +127,7 @@ export function DeviceFromJSONTyped(json: any, ignoreDiscriminator: boolean): De
120
127
  'created': (new Date(json['created'])),
121
128
  'lastUpdated': (new Date(json['last_updated'])),
122
129
  'lastUsed': (json['last_used'] === null ? null : new Date(json['last_used'])),
130
+ 'extraDescription': json['extra_description'],
123
131
  };
124
132
  }
125
133
 
@@ -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,