@xfloor/floor-memory-sdk-ts 1.0.22 → 1.0.24

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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # @xfloor/floor-memory-sdk-ts@1.0.22
1
+ # @xfloor/floor-memory-sdk-ts@1.0.24
2
2
  A TypeScript SDK client for the appfloor.in API.
3
3
 
4
4
  ### Usage
@@ -202,7 +202,7 @@ and is automatically generated by the
202
202
  [OpenAPI Generator](https://openapi-generator.tech) project:
203
203
 
204
204
  - API version: `1.0.0`
205
- - Package version: `1.0.22`
205
+ - Package version: `1.0.24`
206
206
  - Generator version: `7.18.0`
207
207
  - Build package: `org.openapitools.codegen.languages.TypeScriptFetchClientCodegen`
208
208
 
@@ -43,6 +43,12 @@ export interface UserDetailsProfile {
43
43
  * @memberof UserDetailsProfile
44
44
  */
45
45
  fID: string;
46
+ /**
47
+ *
48
+ * @type {string}
49
+ * @memberof UserDetailsProfile
50
+ */
51
+ title?: string;
46
52
  /**
47
53
  * User Name
48
54
  * @type {string}
@@ -46,6 +46,7 @@ function UserDetailsProfileFromJSONTyped(json, ignoreDiscriminator) {
46
46
  'floorCountInfo': json['floor_count_info'] == null ? undefined : (0, Remaining_1.RemainingFromJSON)(json['floor_count_info']),
47
47
  'blockCountInfo': json['block_count_info'] == null ? undefined : (0, Remaining_1.RemainingFromJSON)(json['block_count_info']),
48
48
  'fID': json['FID'],
49
+ 'title': json['title'] == null ? undefined : json['title'],
49
50
  'name': json['name'] == null ? undefined : json['name'],
50
51
  'email': json['email'] == null ? undefined : json['email'],
51
52
  'mobileNumber': json['mobile_number'] == null ? undefined : json['mobile_number'],
@@ -66,6 +67,7 @@ function UserDetailsProfileToJSONTyped(value, ignoreDiscriminator) {
66
67
  'floor_count_info': (0, Remaining_1.RemainingToJSON)(value['floorCountInfo']),
67
68
  'block_count_info': (0, Remaining_1.RemainingToJSON)(value['blockCountInfo']),
68
69
  'FID': value['fID'],
70
+ 'title': value['title'],
69
71
  'name': value['name'],
70
72
  'email': value['email'],
71
73
  'mobile_number': value['mobileNumber'],
@@ -28,7 +28,7 @@ export interface UserDetailsProfileAvatar {
28
28
  * @type {string}
29
29
  * @memberof UserDetailsProfileAvatar
30
30
  */
31
- id: string;
31
+ type: string;
32
32
  }
33
33
  /**
34
34
  * Check if a given object implements the UserDetailsProfileAvatar interface.
@@ -26,7 +26,7 @@ exports.UserDetailsProfileAvatarToJSONTyped = UserDetailsProfileAvatarToJSONType
26
26
  function instanceOfUserDetailsProfileAvatar(value) {
27
27
  if (!('url' in value) || value['url'] === undefined)
28
28
  return false;
29
- if (!('id' in value) || value['id'] === undefined)
29
+ if (!('type' in value) || value['type'] === undefined)
30
30
  return false;
31
31
  return true;
32
32
  }
@@ -39,7 +39,7 @@ function UserDetailsProfileAvatarFromJSONTyped(json, ignoreDiscriminator) {
39
39
  }
40
40
  return {
41
41
  'url': json['url'],
42
- 'id': json['id'],
42
+ 'type': json['type'],
43
43
  };
44
44
  }
45
45
  function UserDetailsProfileAvatarToJSON(json) {
@@ -52,6 +52,6 @@ function UserDetailsProfileAvatarToJSONTyped(value, ignoreDiscriminator) {
52
52
  }
53
53
  return {
54
54
  'url': value['url'],
55
- 'id': value['id'],
55
+ 'type': value['type'],
56
56
  };
57
57
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xfloor/floor-memory-sdk-ts",
3
- "version": "1.0.22",
3
+ "version": "1.0.24",
4
4
  "description": "TypeScript SDK for xFloor Memory APIs (Memory + Registration).",
5
5
  "author": "xFloor",
6
6
  "repository": {