@goauthentik/api 2023.2.2-1676492932 → 2023.2.2-1676893299
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/GroupMember.d.ts +0 -6
- package/dist/esm/models/GroupMember.js +0 -1
- package/dist/esm/models/InvitationCreatedBy.d.ts +0 -6
- package/dist/esm/models/InvitationCreatedBy.js +0 -1
- package/dist/models/GroupMember.d.ts +0 -6
- package/dist/models/GroupMember.js +0 -1
- package/dist/models/InvitationCreatedBy.d.ts +0 -6
- package/dist/models/InvitationCreatedBy.js +0 -1
- package/package.json +1 -1
- package/src/models/GroupMember.ts +0 -7
- package/src/models/InvitationCreatedBy.ts +0 -7
|
@@ -26,7 +26,6 @@ export function GroupMemberFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
26
26
|
'isActive': !exists(json, 'is_active') ? undefined : json['is_active'],
|
|
27
27
|
'lastLogin': !exists(json, 'last_login') ? undefined : (json['last_login'] === null ? null : new Date(json['last_login'])),
|
|
28
28
|
'email': !exists(json, 'email') ? undefined : json['email'],
|
|
29
|
-
'avatar': json['avatar'],
|
|
30
29
|
'attributes': !exists(json, 'attributes') ? undefined : json['attributes'],
|
|
31
30
|
'uid': json['uid'],
|
|
32
31
|
};
|
|
@@ -26,7 +26,6 @@ export function InvitationCreatedByFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
26
26
|
'isActive': !exists(json, 'is_active') ? undefined : json['is_active'],
|
|
27
27
|
'lastLogin': !exists(json, 'last_login') ? undefined : (json['last_login'] === null ? null : new Date(json['last_login'])),
|
|
28
28
|
'email': !exists(json, 'email') ? undefined : json['email'],
|
|
29
|
-
'avatar': json['avatar'],
|
|
30
29
|
'attributes': !exists(json, 'attributes') ? undefined : json['attributes'],
|
|
31
30
|
'uid': json['uid'],
|
|
32
31
|
};
|
|
@@ -30,7 +30,6 @@ function GroupMemberFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
30
30
|
'isActive': !(0, runtime_1.exists)(json, 'is_active') ? undefined : json['is_active'],
|
|
31
31
|
'lastLogin': !(0, runtime_1.exists)(json, 'last_login') ? undefined : (json['last_login'] === null ? null : new Date(json['last_login'])),
|
|
32
32
|
'email': !(0, runtime_1.exists)(json, 'email') ? undefined : json['email'],
|
|
33
|
-
'avatar': json['avatar'],
|
|
34
33
|
'attributes': !(0, runtime_1.exists)(json, 'attributes') ? undefined : json['attributes'],
|
|
35
34
|
'uid': json['uid'],
|
|
36
35
|
};
|
|
@@ -30,7 +30,6 @@ function InvitationCreatedByFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
30
30
|
'isActive': !(0, runtime_1.exists)(json, 'is_active') ? undefined : json['is_active'],
|
|
31
31
|
'lastLogin': !(0, runtime_1.exists)(json, 'last_login') ? undefined : (json['last_login'] === null ? null : new Date(json['last_login'])),
|
|
32
32
|
'email': !(0, runtime_1.exists)(json, 'email') ? undefined : json['email'],
|
|
33
|
-
'avatar': json['avatar'],
|
|
34
33
|
'attributes': !(0, runtime_1.exists)(json, 'attributes') ? undefined : json['attributes'],
|
|
35
34
|
'uid': json['uid'],
|
|
36
35
|
};
|
package/package.json
CHANGED
|
@@ -55,12 +55,6 @@ export interface GroupMember {
|
|
|
55
55
|
* @memberof GroupMember
|
|
56
56
|
*/
|
|
57
57
|
email?: string;
|
|
58
|
-
/**
|
|
59
|
-
*
|
|
60
|
-
* @type {string}
|
|
61
|
-
* @memberof GroupMember
|
|
62
|
-
*/
|
|
63
|
-
readonly avatar: string;
|
|
64
58
|
/**
|
|
65
59
|
*
|
|
66
60
|
* @type {{ [key: string]: any; }}
|
|
@@ -91,7 +85,6 @@ export function GroupMemberFromJSONTyped(json: any, ignoreDiscriminator: boolean
|
|
|
91
85
|
'isActive': !exists(json, 'is_active') ? undefined : json['is_active'],
|
|
92
86
|
'lastLogin': !exists(json, 'last_login') ? undefined : (json['last_login'] === null ? null : new Date(json['last_login'])),
|
|
93
87
|
'email': !exists(json, 'email') ? undefined : json['email'],
|
|
94
|
-
'avatar': json['avatar'],
|
|
95
88
|
'attributes': !exists(json, 'attributes') ? undefined : json['attributes'],
|
|
96
89
|
'uid': json['uid'],
|
|
97
90
|
};
|
|
@@ -62,12 +62,6 @@ export interface InvitationCreatedBy {
|
|
|
62
62
|
* @memberof InvitationCreatedBy
|
|
63
63
|
*/
|
|
64
64
|
email?: string;
|
|
65
|
-
/**
|
|
66
|
-
*
|
|
67
|
-
* @type {string}
|
|
68
|
-
* @memberof InvitationCreatedBy
|
|
69
|
-
*/
|
|
70
|
-
readonly avatar: string;
|
|
71
65
|
/**
|
|
72
66
|
*
|
|
73
67
|
* @type {{ [key: string]: any; }}
|
|
@@ -98,7 +92,6 @@ export function InvitationCreatedByFromJSONTyped(json: any, ignoreDiscriminator:
|
|
|
98
92
|
'isActive': !exists(json, 'is_active') ? undefined : json['is_active'],
|
|
99
93
|
'lastLogin': !exists(json, 'last_login') ? undefined : (json['last_login'] === null ? null : new Date(json['last_login'])),
|
|
100
94
|
'email': !exists(json, 'email') ? undefined : json['email'],
|
|
101
|
-
'avatar': json['avatar'],
|
|
102
95
|
'attributes': !exists(json, 'attributes') ? undefined : json['attributes'],
|
|
103
96
|
'uid': json['uid'],
|
|
104
97
|
};
|