@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.
@@ -51,12 +51,6 @@ export interface GroupMember {
51
51
  * @memberof GroupMember
52
52
  */
53
53
  email?: string;
54
- /**
55
- *
56
- * @type {string}
57
- * @memberof GroupMember
58
- */
59
- readonly avatar: string;
60
54
  /**
61
55
  *
62
56
  * @type {{ [key: string]: any; }}
@@ -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
  };
@@ -51,12 +51,6 @@ export interface InvitationCreatedBy {
51
51
  * @memberof InvitationCreatedBy
52
52
  */
53
53
  email?: string;
54
- /**
55
- *
56
- * @type {string}
57
- * @memberof InvitationCreatedBy
58
- */
59
- readonly avatar: string;
60
54
  /**
61
55
  *
62
56
  * @type {{ [key: string]: any; }}
@@ -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
  };
@@ -51,12 +51,6 @@ export interface GroupMember {
51
51
  * @memberof GroupMember
52
52
  */
53
53
  email?: string;
54
- /**
55
- *
56
- * @type {string}
57
- * @memberof GroupMember
58
- */
59
- readonly avatar: string;
60
54
  /**
61
55
  *
62
56
  * @type {{ [key: string]: any; }}
@@ -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
  };
@@ -51,12 +51,6 @@ export interface InvitationCreatedBy {
51
51
  * @memberof InvitationCreatedBy
52
52
  */
53
53
  email?: string;
54
- /**
55
- *
56
- * @type {string}
57
- * @memberof InvitationCreatedBy
58
- */
59
- readonly avatar: string;
60
54
  /**
61
55
  *
62
56
  * @type {{ [key: string]: any; }}
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goauthentik/api",
3
- "version": "2023.2.2-1676492932",
3
+ "version": "2023.2.2-1676893299",
4
4
  "description": "OpenAPI client for @goauthentik/api",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -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
  };