@goauthentik/api 2025.6.3-1751754396 → 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.
- package/dist/esm/models/PatchedSCIMSourceGroupRequest.d.ts +6 -0
- package/dist/esm/models/PatchedSCIMSourceGroupRequest.d.ts.map +1 -1
- package/dist/esm/models/PatchedSCIMSourceGroupRequest.js +2 -0
- package/dist/esm/models/PatchedSCIMSourceGroupRequest.js.map +1 -1
- package/dist/esm/models/PatchedSCIMSourceUserRequest.d.ts +6 -0
- package/dist/esm/models/PatchedSCIMSourceUserRequest.d.ts.map +1 -1
- package/dist/esm/models/PatchedSCIMSourceUserRequest.js +2 -0
- package/dist/esm/models/PatchedSCIMSourceUserRequest.js.map +1 -1
- package/dist/esm/models/ProviderTypeEnum.d.ts +1 -0
- package/dist/esm/models/ProviderTypeEnum.d.ts.map +1 -1
- package/dist/esm/models/ProviderTypeEnum.js +1 -0
- package/dist/esm/models/ProviderTypeEnum.js.map +1 -1
- package/dist/esm/models/SCIMSourceGroup.d.ts +7 -1
- package/dist/esm/models/SCIMSourceGroup.d.ts.map +1 -1
- package/dist/esm/models/SCIMSourceGroup.js +4 -2
- package/dist/esm/models/SCIMSourceGroup.js.map +1 -1
- package/dist/esm/models/SCIMSourceGroupRequest.d.ts +7 -1
- package/dist/esm/models/SCIMSourceGroupRequest.d.ts.map +1 -1
- package/dist/esm/models/SCIMSourceGroupRequest.js +4 -2
- package/dist/esm/models/SCIMSourceGroupRequest.js.map +1 -1
- package/dist/esm/models/SCIMSourceUser.d.ts +7 -1
- package/dist/esm/models/SCIMSourceUser.d.ts.map +1 -1
- package/dist/esm/models/SCIMSourceUser.js +4 -2
- package/dist/esm/models/SCIMSourceUser.js.map +1 -1
- package/dist/esm/models/SCIMSourceUserRequest.d.ts +7 -1
- package/dist/esm/models/SCIMSourceUserRequest.d.ts.map +1 -1
- package/dist/esm/models/SCIMSourceUserRequest.js +4 -2
- package/dist/esm/models/SCIMSourceUserRequest.js.map +1 -1
- package/dist/models/PatchedSCIMSourceGroupRequest.d.ts +6 -0
- package/dist/models/PatchedSCIMSourceGroupRequest.d.ts.map +1 -1
- package/dist/models/PatchedSCIMSourceGroupRequest.js +2 -0
- package/dist/models/PatchedSCIMSourceGroupRequest.js.map +1 -1
- package/dist/models/PatchedSCIMSourceUserRequest.d.ts +6 -0
- package/dist/models/PatchedSCIMSourceUserRequest.d.ts.map +1 -1
- package/dist/models/PatchedSCIMSourceUserRequest.js +2 -0
- package/dist/models/PatchedSCIMSourceUserRequest.js.map +1 -1
- package/dist/models/ProviderTypeEnum.d.ts +1 -0
- package/dist/models/ProviderTypeEnum.d.ts.map +1 -1
- package/dist/models/ProviderTypeEnum.js +1 -0
- package/dist/models/ProviderTypeEnum.js.map +1 -1
- package/dist/models/SCIMSourceGroup.d.ts +7 -1
- package/dist/models/SCIMSourceGroup.d.ts.map +1 -1
- package/dist/models/SCIMSourceGroup.js +4 -2
- package/dist/models/SCIMSourceGroup.js.map +1 -1
- package/dist/models/SCIMSourceGroupRequest.d.ts +7 -1
- package/dist/models/SCIMSourceGroupRequest.d.ts.map +1 -1
- package/dist/models/SCIMSourceGroupRequest.js +4 -2
- package/dist/models/SCIMSourceGroupRequest.js.map +1 -1
- package/dist/models/SCIMSourceUser.d.ts +7 -1
- package/dist/models/SCIMSourceUser.d.ts.map +1 -1
- package/dist/models/SCIMSourceUser.js +4 -2
- package/dist/models/SCIMSourceUser.js.map +1 -1
- package/dist/models/SCIMSourceUserRequest.d.ts +7 -1
- package/dist/models/SCIMSourceUserRequest.d.ts.map +1 -1
- package/dist/models/SCIMSourceUserRequest.js +4 -2
- package/dist/models/SCIMSourceUserRequest.js.map +1 -1
- package/dist/tsconfig.esm.tsbuildinfo +1 -1
- package/package.json +1 -1
- package/src/models/PatchedSCIMSourceGroupRequest.ts +8 -0
- package/src/models/PatchedSCIMSourceUserRequest.ts +8 -0
- package/src/models/ProviderTypeEnum.ts +1 -0
- package/src/models/SCIMSourceGroup.ts +11 -3
- package/src/models/SCIMSourceGroupRequest.ts +11 -3
- package/src/models/SCIMSourceUser.ts +11 -3
- package/src/models/SCIMSourceUserRequest.ts +11 -3
- package/tsconfig.tsbuildinfo +1 -1
package/package.json
CHANGED
|
@@ -25,6 +25,12 @@ export interface PatchedSCIMSourceGroupRequest {
|
|
|
25
25
|
* @memberof PatchedSCIMSourceGroupRequest
|
|
26
26
|
*/
|
|
27
27
|
id?: string;
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof PatchedSCIMSourceGroupRequest
|
|
32
|
+
*/
|
|
33
|
+
externalId?: string;
|
|
28
34
|
/**
|
|
29
35
|
*
|
|
30
36
|
* @type {string}
|
|
@@ -63,6 +69,7 @@ export function PatchedSCIMSourceGroupRequestFromJSONTyped(json: any, ignoreDisc
|
|
|
63
69
|
return {
|
|
64
70
|
|
|
65
71
|
'id': json['id'] == null ? undefined : json['id'],
|
|
72
|
+
'externalId': json['external_id'] == null ? undefined : json['external_id'],
|
|
66
73
|
'group': json['group'] == null ? undefined : json['group'],
|
|
67
74
|
'source': json['source'] == null ? undefined : json['source'],
|
|
68
75
|
'attributes': json['attributes'] == null ? undefined : json['attributes'],
|
|
@@ -81,6 +88,7 @@ export function PatchedSCIMSourceGroupRequestToJSONTyped(value?: PatchedSCIMSour
|
|
|
81
88
|
return {
|
|
82
89
|
|
|
83
90
|
'id': value['id'],
|
|
91
|
+
'external_id': value['externalId'],
|
|
84
92
|
'group': value['group'],
|
|
85
93
|
'source': value['source'],
|
|
86
94
|
'attributes': value['attributes'],
|
|
@@ -25,6 +25,12 @@ export interface PatchedSCIMSourceUserRequest {
|
|
|
25
25
|
* @memberof PatchedSCIMSourceUserRequest
|
|
26
26
|
*/
|
|
27
27
|
id?: string;
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof PatchedSCIMSourceUserRequest
|
|
32
|
+
*/
|
|
33
|
+
externalId?: string;
|
|
28
34
|
/**
|
|
29
35
|
*
|
|
30
36
|
* @type {number}
|
|
@@ -63,6 +69,7 @@ export function PatchedSCIMSourceUserRequestFromJSONTyped(json: any, ignoreDiscr
|
|
|
63
69
|
return {
|
|
64
70
|
|
|
65
71
|
'id': json['id'] == null ? undefined : json['id'],
|
|
72
|
+
'externalId': json['external_id'] == null ? undefined : json['external_id'],
|
|
66
73
|
'user': json['user'] == null ? undefined : json['user'],
|
|
67
74
|
'source': json['source'] == null ? undefined : json['source'],
|
|
68
75
|
'attributes': json['attributes'] == null ? undefined : json['attributes'],
|
|
@@ -81,6 +88,7 @@ export function PatchedSCIMSourceUserRequestToJSONTyped(value?: PatchedSCIMSourc
|
|
|
81
88
|
return {
|
|
82
89
|
|
|
83
90
|
'id': value['id'],
|
|
91
|
+
'external_id': value['externalId'],
|
|
84
92
|
'user': value['user'],
|
|
85
93
|
'source': value['source'],
|
|
86
94
|
'attributes': value['attributes'],
|
|
@@ -32,7 +32,13 @@ export interface SCIMSourceGroup {
|
|
|
32
32
|
* @type {string}
|
|
33
33
|
* @memberof SCIMSourceGroup
|
|
34
34
|
*/
|
|
35
|
-
id
|
|
35
|
+
id?: string;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof SCIMSourceGroup
|
|
40
|
+
*/
|
|
41
|
+
externalId: string;
|
|
36
42
|
/**
|
|
37
43
|
*
|
|
38
44
|
* @type {string}
|
|
@@ -63,7 +69,7 @@ export interface SCIMSourceGroup {
|
|
|
63
69
|
* Check if a given object implements the SCIMSourceGroup interface.
|
|
64
70
|
*/
|
|
65
71
|
export function instanceOfSCIMSourceGroup(value: object): value is SCIMSourceGroup {
|
|
66
|
-
if (!('
|
|
72
|
+
if (!('externalId' in value) || value['externalId'] === undefined) return false;
|
|
67
73
|
if (!('group' in value) || value['group'] === undefined) return false;
|
|
68
74
|
if (!('groupObj' in value) || value['groupObj'] === undefined) return false;
|
|
69
75
|
if (!('source' in value) || value['source'] === undefined) return false;
|
|
@@ -80,7 +86,8 @@ export function SCIMSourceGroupFromJSONTyped(json: any, ignoreDiscriminator: boo
|
|
|
80
86
|
}
|
|
81
87
|
return {
|
|
82
88
|
|
|
83
|
-
'id': json['id'],
|
|
89
|
+
'id': json['id'] == null ? undefined : json['id'],
|
|
90
|
+
'externalId': json['external_id'],
|
|
84
91
|
'group': json['group'],
|
|
85
92
|
'groupObj': UserGroupFromJSON(json['group_obj']),
|
|
86
93
|
'source': json['source'],
|
|
@@ -100,6 +107,7 @@ export function SCIMSourceGroupToJSONTyped(value?: Omit<SCIMSourceGroup, 'group_
|
|
|
100
107
|
return {
|
|
101
108
|
|
|
102
109
|
'id': value['id'],
|
|
110
|
+
'external_id': value['externalId'],
|
|
103
111
|
'group': value['group'],
|
|
104
112
|
'source': value['source'],
|
|
105
113
|
'attributes': value['attributes'],
|
|
@@ -24,7 +24,13 @@ export interface SCIMSourceGroupRequest {
|
|
|
24
24
|
* @type {string}
|
|
25
25
|
* @memberof SCIMSourceGroupRequest
|
|
26
26
|
*/
|
|
27
|
-
id
|
|
27
|
+
id?: string;
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof SCIMSourceGroupRequest
|
|
32
|
+
*/
|
|
33
|
+
externalId: string;
|
|
28
34
|
/**
|
|
29
35
|
*
|
|
30
36
|
* @type {string}
|
|
@@ -49,7 +55,7 @@ export interface SCIMSourceGroupRequest {
|
|
|
49
55
|
* Check if a given object implements the SCIMSourceGroupRequest interface.
|
|
50
56
|
*/
|
|
51
57
|
export function instanceOfSCIMSourceGroupRequest(value: object): value is SCIMSourceGroupRequest {
|
|
52
|
-
if (!('
|
|
58
|
+
if (!('externalId' in value) || value['externalId'] === undefined) return false;
|
|
53
59
|
if (!('group' in value) || value['group'] === undefined) return false;
|
|
54
60
|
if (!('source' in value) || value['source'] === undefined) return false;
|
|
55
61
|
return true;
|
|
@@ -65,7 +71,8 @@ export function SCIMSourceGroupRequestFromJSONTyped(json: any, ignoreDiscriminat
|
|
|
65
71
|
}
|
|
66
72
|
return {
|
|
67
73
|
|
|
68
|
-
'id': json['id'],
|
|
74
|
+
'id': json['id'] == null ? undefined : json['id'],
|
|
75
|
+
'externalId': json['external_id'],
|
|
69
76
|
'group': json['group'],
|
|
70
77
|
'source': json['source'],
|
|
71
78
|
'attributes': json['attributes'] == null ? undefined : json['attributes'],
|
|
@@ -84,6 +91,7 @@ export function SCIMSourceGroupRequestToJSONTyped(value?: SCIMSourceGroupRequest
|
|
|
84
91
|
return {
|
|
85
92
|
|
|
86
93
|
'id': value['id'],
|
|
94
|
+
'external_id': value['externalId'],
|
|
87
95
|
'group': value['group'],
|
|
88
96
|
'source': value['source'],
|
|
89
97
|
'attributes': value['attributes'],
|
|
@@ -32,7 +32,13 @@ export interface SCIMSourceUser {
|
|
|
32
32
|
* @type {string}
|
|
33
33
|
* @memberof SCIMSourceUser
|
|
34
34
|
*/
|
|
35
|
-
id
|
|
35
|
+
id?: string;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof SCIMSourceUser
|
|
40
|
+
*/
|
|
41
|
+
externalId: string;
|
|
36
42
|
/**
|
|
37
43
|
*
|
|
38
44
|
* @type {number}
|
|
@@ -63,7 +69,7 @@ export interface SCIMSourceUser {
|
|
|
63
69
|
* Check if a given object implements the SCIMSourceUser interface.
|
|
64
70
|
*/
|
|
65
71
|
export function instanceOfSCIMSourceUser(value: object): value is SCIMSourceUser {
|
|
66
|
-
if (!('
|
|
72
|
+
if (!('externalId' in value) || value['externalId'] === undefined) return false;
|
|
67
73
|
if (!('user' in value) || value['user'] === undefined) return false;
|
|
68
74
|
if (!('userObj' in value) || value['userObj'] === undefined) return false;
|
|
69
75
|
if (!('source' in value) || value['source'] === undefined) return false;
|
|
@@ -80,7 +86,8 @@ export function SCIMSourceUserFromJSONTyped(json: any, ignoreDiscriminator: bool
|
|
|
80
86
|
}
|
|
81
87
|
return {
|
|
82
88
|
|
|
83
|
-
'id': json['id'],
|
|
89
|
+
'id': json['id'] == null ? undefined : json['id'],
|
|
90
|
+
'externalId': json['external_id'],
|
|
84
91
|
'user': json['user'],
|
|
85
92
|
'userObj': GroupMemberFromJSON(json['user_obj']),
|
|
86
93
|
'source': json['source'],
|
|
@@ -100,6 +107,7 @@ export function SCIMSourceUserToJSONTyped(value?: Omit<SCIMSourceUser, 'user_obj
|
|
|
100
107
|
return {
|
|
101
108
|
|
|
102
109
|
'id': value['id'],
|
|
110
|
+
'external_id': value['externalId'],
|
|
103
111
|
'user': value['user'],
|
|
104
112
|
'source': value['source'],
|
|
105
113
|
'attributes': value['attributes'],
|
|
@@ -24,7 +24,13 @@ export interface SCIMSourceUserRequest {
|
|
|
24
24
|
* @type {string}
|
|
25
25
|
* @memberof SCIMSourceUserRequest
|
|
26
26
|
*/
|
|
27
|
-
id
|
|
27
|
+
id?: string;
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof SCIMSourceUserRequest
|
|
32
|
+
*/
|
|
33
|
+
externalId: string;
|
|
28
34
|
/**
|
|
29
35
|
*
|
|
30
36
|
* @type {number}
|
|
@@ -49,7 +55,7 @@ export interface SCIMSourceUserRequest {
|
|
|
49
55
|
* Check if a given object implements the SCIMSourceUserRequest interface.
|
|
50
56
|
*/
|
|
51
57
|
export function instanceOfSCIMSourceUserRequest(value: object): value is SCIMSourceUserRequest {
|
|
52
|
-
if (!('
|
|
58
|
+
if (!('externalId' in value) || value['externalId'] === undefined) return false;
|
|
53
59
|
if (!('user' in value) || value['user'] === undefined) return false;
|
|
54
60
|
if (!('source' in value) || value['source'] === undefined) return false;
|
|
55
61
|
return true;
|
|
@@ -65,7 +71,8 @@ export function SCIMSourceUserRequestFromJSONTyped(json: any, ignoreDiscriminato
|
|
|
65
71
|
}
|
|
66
72
|
return {
|
|
67
73
|
|
|
68
|
-
'id': json['id'],
|
|
74
|
+
'id': json['id'] == null ? undefined : json['id'],
|
|
75
|
+
'externalId': json['external_id'],
|
|
69
76
|
'user': json['user'],
|
|
70
77
|
'source': json['source'],
|
|
71
78
|
'attributes': json['attributes'] == null ? undefined : json['attributes'],
|
|
@@ -84,6 +91,7 @@ export function SCIMSourceUserRequestToJSONTyped(value?: SCIMSourceUserRequest |
|
|
|
84
91
|
return {
|
|
85
92
|
|
|
86
93
|
'id': value['id'],
|
|
94
|
+
'external_id': value['externalId'],
|
|
87
95
|
'user': value['user'],
|
|
88
96
|
'source': value['source'],
|
|
89
97
|
'attributes': value['attributes'],
|