@equisoft/equisoft-connect-sdk-typescript 10.32.2-snapshot.20221013175951 → 10.32.2

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