@equisoft/equisoft-connect-sdk-typescript 10.32.2 → 10.32.3-snapshot.20221019120309

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.
@@ -57,12 +57,6 @@ export interface UsersUser {
57
57
  * @memberof UsersUser
58
58
  */
59
59
  role: string;
60
- /**
61
- *
62
- * @type {number}
63
- * @memberof UsersUser
64
- */
65
- maxConcurrentAccess: number;
66
60
  }
67
61
  /**
68
62
  * Check if a given object implements the UsersUser interface.
@@ -26,7 +26,6 @@ function instanceOfUsersUser(value) {
26
26
  isInstance = isInstance && "lastName" in value;
27
27
  isInstance = isInstance && "locale" in value;
28
28
  isInstance = isInstance && "role" in value;
29
- isInstance = isInstance && "maxConcurrentAccess" in value;
30
29
  return isInstance;
31
30
  }
32
31
  exports.instanceOfUsersUser = instanceOfUsersUser;
@@ -46,7 +45,6 @@ function UsersUserFromJSONTyped(json, ignoreDiscriminator) {
46
45
  'lastName': json['lastName'],
47
46
  'locale': json['locale'],
48
47
  'role': json['role'],
49
- 'maxConcurrentAccess': json['maxConcurrentAccess'],
50
48
  };
51
49
  }
52
50
  exports.UsersUserFromJSONTyped = UsersUserFromJSONTyped;
@@ -65,7 +63,6 @@ function UsersUserToJSON(value) {
65
63
  'lastName': value.lastName,
66
64
  'locale': value.locale,
67
65
  'role': value.role,
68
- 'maxConcurrentAccess': value.maxConcurrentAccess,
69
66
  };
70
67
  }
71
68
  exports.UsersUserToJSON = UsersUserToJSON;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@equisoft/equisoft-connect-sdk-typescript",
3
- "version": "10.32.2",
3
+ "version": "10.32.3-snapshot.20221019120309",
4
4
  "description": "OpenAPI client for @equisoft/equisoft-connect-sdk-typescript",
5
5
  "author": "OpenAPI-Generator",
6
6
  "main": "./dist/index.js",
@@ -61,12 +61,6 @@ export interface UsersUser {
61
61
  * @memberof UsersUser
62
62
  */
63
63
  role: string;
64
- /**
65
- *
66
- * @type {number}
67
- * @memberof UsersUser
68
- */
69
- maxConcurrentAccess: number;
70
64
  }
71
65
 
72
66
  /**
@@ -81,7 +75,6 @@ export function instanceOfUsersUser(value: object): boolean {
81
75
  isInstance = isInstance && "lastName" in value;
82
76
  isInstance = isInstance && "locale" in value;
83
77
  isInstance = isInstance && "role" in value;
84
- isInstance = isInstance && "maxConcurrentAccess" in value;
85
78
 
86
79
  return isInstance;
87
80
  }
@@ -103,7 +96,6 @@ export function UsersUserFromJSONTyped(json: any, ignoreDiscriminator: boolean):
103
96
  'lastName': json['lastName'],
104
97
  'locale': json['locale'],
105
98
  'role': json['role'],
106
- 'maxConcurrentAccess': json['maxConcurrentAccess'],
107
99
  };
108
100
  }
109
101
 
@@ -123,7 +115,6 @@ export function UsersUserToJSON(value?: UsersUser | null): any {
123
115
  'lastName': value.lastName,
124
116
  'locale': value.locale,
125
117
  'role': value.role,
126
- 'maxConcurrentAccess': value.maxConcurrentAccess,
127
118
  };
128
119
  }
129
120