@goauthentik/api 2025.6.3-1752446452 → 2025.6.3-1752500665

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.
Files changed (48) hide show
  1. package/dist/esm/models/ProviderTypeEnum.d.ts +1 -0
  2. package/dist/esm/models/ProviderTypeEnum.d.ts.map +1 -1
  3. package/dist/esm/models/ProviderTypeEnum.js +1 -0
  4. package/dist/esm/models/ProviderTypeEnum.js.map +1 -1
  5. package/dist/esm/models/SCIMSourceGroup.d.ts +1 -1
  6. package/dist/esm/models/SCIMSourceGroup.d.ts.map +1 -1
  7. package/dist/esm/models/SCIMSourceGroup.js +1 -3
  8. package/dist/esm/models/SCIMSourceGroup.js.map +1 -1
  9. package/dist/esm/models/SCIMSourceGroupRequest.d.ts +1 -1
  10. package/dist/esm/models/SCIMSourceGroupRequest.d.ts.map +1 -1
  11. package/dist/esm/models/SCIMSourceGroupRequest.js +1 -3
  12. package/dist/esm/models/SCIMSourceGroupRequest.js.map +1 -1
  13. package/dist/esm/models/SCIMSourceUser.d.ts +1 -1
  14. package/dist/esm/models/SCIMSourceUser.d.ts.map +1 -1
  15. package/dist/esm/models/SCIMSourceUser.js +1 -3
  16. package/dist/esm/models/SCIMSourceUser.js.map +1 -1
  17. package/dist/esm/models/SCIMSourceUserRequest.d.ts +1 -1
  18. package/dist/esm/models/SCIMSourceUserRequest.d.ts.map +1 -1
  19. package/dist/esm/models/SCIMSourceUserRequest.js +1 -3
  20. package/dist/esm/models/SCIMSourceUserRequest.js.map +1 -1
  21. package/dist/models/ProviderTypeEnum.d.ts +1 -0
  22. package/dist/models/ProviderTypeEnum.d.ts.map +1 -1
  23. package/dist/models/ProviderTypeEnum.js +1 -0
  24. package/dist/models/ProviderTypeEnum.js.map +1 -1
  25. package/dist/models/SCIMSourceGroup.d.ts +1 -1
  26. package/dist/models/SCIMSourceGroup.d.ts.map +1 -1
  27. package/dist/models/SCIMSourceGroup.js +1 -3
  28. package/dist/models/SCIMSourceGroup.js.map +1 -1
  29. package/dist/models/SCIMSourceGroupRequest.d.ts +1 -1
  30. package/dist/models/SCIMSourceGroupRequest.d.ts.map +1 -1
  31. package/dist/models/SCIMSourceGroupRequest.js +1 -3
  32. package/dist/models/SCIMSourceGroupRequest.js.map +1 -1
  33. package/dist/models/SCIMSourceUser.d.ts +1 -1
  34. package/dist/models/SCIMSourceUser.d.ts.map +1 -1
  35. package/dist/models/SCIMSourceUser.js +1 -3
  36. package/dist/models/SCIMSourceUser.js.map +1 -1
  37. package/dist/models/SCIMSourceUserRequest.d.ts +1 -1
  38. package/dist/models/SCIMSourceUserRequest.d.ts.map +1 -1
  39. package/dist/models/SCIMSourceUserRequest.js +1 -3
  40. package/dist/models/SCIMSourceUserRequest.js.map +1 -1
  41. package/dist/tsconfig.esm.tsbuildinfo +1 -1
  42. package/package.json +1 -1
  43. package/src/models/ProviderTypeEnum.ts +1 -0
  44. package/src/models/SCIMSourceGroup.ts +2 -3
  45. package/src/models/SCIMSourceGroupRequest.ts +2 -3
  46. package/src/models/SCIMSourceUser.ts +2 -3
  47. package/src/models/SCIMSourceUserRequest.ts +2 -3
  48. package/tsconfig.tsbuildinfo +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goauthentik/api",
3
- "version": "2025.6.3-1752446452",
3
+ "version": "2025.6.3-1752500665",
4
4
  "description": "OpenAPI client for @goauthentik/api",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -20,6 +20,7 @@
20
20
  export const ProviderTypeEnum = {
21
21
  Apple: 'apple',
22
22
  Openidconnect: 'openidconnect',
23
+ Entraid: 'entraid',
23
24
  Azuread: 'azuread',
24
25
  Discord: 'discord',
25
26
  Facebook: 'facebook',
@@ -32,7 +32,7 @@ export interface SCIMSourceGroup {
32
32
  * @type {string}
33
33
  * @memberof SCIMSourceGroup
34
34
  */
35
- id: string;
35
+ id?: string;
36
36
  /**
37
37
  *
38
38
  * @type {string}
@@ -69,7 +69,6 @@ export interface SCIMSourceGroup {
69
69
  * Check if a given object implements the SCIMSourceGroup interface.
70
70
  */
71
71
  export function instanceOfSCIMSourceGroup(value: object): value is SCIMSourceGroup {
72
- if (!('id' in value) || value['id'] === undefined) return false;
73
72
  if (!('externalId' in value) || value['externalId'] === undefined) return false;
74
73
  if (!('group' in value) || value['group'] === undefined) return false;
75
74
  if (!('groupObj' in value) || value['groupObj'] === undefined) return false;
@@ -87,7 +86,7 @@ export function SCIMSourceGroupFromJSONTyped(json: any, ignoreDiscriminator: boo
87
86
  }
88
87
  return {
89
88
 
90
- 'id': json['id'],
89
+ 'id': json['id'] == null ? undefined : json['id'],
91
90
  'externalId': json['external_id'],
92
91
  'group': json['group'],
93
92
  'groupObj': UserGroupFromJSON(json['group_obj']),
@@ -24,7 +24,7 @@ export interface SCIMSourceGroupRequest {
24
24
  * @type {string}
25
25
  * @memberof SCIMSourceGroupRequest
26
26
  */
27
- id: string;
27
+ id?: string;
28
28
  /**
29
29
  *
30
30
  * @type {string}
@@ -55,7 +55,6 @@ export interface SCIMSourceGroupRequest {
55
55
  * Check if a given object implements the SCIMSourceGroupRequest interface.
56
56
  */
57
57
  export function instanceOfSCIMSourceGroupRequest(value: object): value is SCIMSourceGroupRequest {
58
- if (!('id' in value) || value['id'] === undefined) return false;
59
58
  if (!('externalId' in value) || value['externalId'] === undefined) return false;
60
59
  if (!('group' in value) || value['group'] === undefined) return false;
61
60
  if (!('source' in value) || value['source'] === undefined) return false;
@@ -72,7 +71,7 @@ export function SCIMSourceGroupRequestFromJSONTyped(json: any, ignoreDiscriminat
72
71
  }
73
72
  return {
74
73
 
75
- 'id': json['id'],
74
+ 'id': json['id'] == null ? undefined : json['id'],
76
75
  'externalId': json['external_id'],
77
76
  'group': json['group'],
78
77
  'source': json['source'],
@@ -32,7 +32,7 @@ export interface SCIMSourceUser {
32
32
  * @type {string}
33
33
  * @memberof SCIMSourceUser
34
34
  */
35
- id: string;
35
+ id?: string;
36
36
  /**
37
37
  *
38
38
  * @type {string}
@@ -69,7 +69,6 @@ export interface SCIMSourceUser {
69
69
  * Check if a given object implements the SCIMSourceUser interface.
70
70
  */
71
71
  export function instanceOfSCIMSourceUser(value: object): value is SCIMSourceUser {
72
- if (!('id' in value) || value['id'] === undefined) return false;
73
72
  if (!('externalId' in value) || value['externalId'] === undefined) return false;
74
73
  if (!('user' in value) || value['user'] === undefined) return false;
75
74
  if (!('userObj' in value) || value['userObj'] === undefined) return false;
@@ -87,7 +86,7 @@ export function SCIMSourceUserFromJSONTyped(json: any, ignoreDiscriminator: bool
87
86
  }
88
87
  return {
89
88
 
90
- 'id': json['id'],
89
+ 'id': json['id'] == null ? undefined : json['id'],
91
90
  'externalId': json['external_id'],
92
91
  'user': json['user'],
93
92
  'userObj': GroupMemberFromJSON(json['user_obj']),
@@ -24,7 +24,7 @@ export interface SCIMSourceUserRequest {
24
24
  * @type {string}
25
25
  * @memberof SCIMSourceUserRequest
26
26
  */
27
- id: string;
27
+ id?: string;
28
28
  /**
29
29
  *
30
30
  * @type {string}
@@ -55,7 +55,6 @@ export interface SCIMSourceUserRequest {
55
55
  * Check if a given object implements the SCIMSourceUserRequest interface.
56
56
  */
57
57
  export function instanceOfSCIMSourceUserRequest(value: object): value is SCIMSourceUserRequest {
58
- if (!('id' in value) || value['id'] === undefined) return false;
59
58
  if (!('externalId' in value) || value['externalId'] === undefined) return false;
60
59
  if (!('user' in value) || value['user'] === undefined) return false;
61
60
  if (!('source' in value) || value['source'] === undefined) return false;
@@ -72,7 +71,7 @@ export function SCIMSourceUserRequestFromJSONTyped(json: any, ignoreDiscriminato
72
71
  }
73
72
  return {
74
73
 
75
- 'id': json['id'],
74
+ 'id': json['id'] == null ? undefined : json['id'],
76
75
  'externalId': json['external_id'],
77
76
  'user': json['user'],
78
77
  'source': json['source'],