@xfloor/floor-memory-sdk-ts 1.0.19 → 1.0.20

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.19
1
+ # @xfloor/floor-memory-sdk-ts@1.0.20
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.19`
205
+ - Package version: `1.0.20`
206
206
  - Generator version: `7.18.0`
207
207
  - Build package: `org.openapitools.codegen.languages.TypeScriptFetchClientCodegen`
208
208
 
@@ -30,13 +30,13 @@ export interface SignInWithEmail200ResponseProfile {
30
30
  * @type {Remaining}
31
31
  * @memberof SignInWithEmail200ResponseProfile
32
32
  */
33
- floors?: Remaining;
33
+ floorCountInfo?: Remaining;
34
34
  /**
35
35
  *
36
36
  * @type {Remaining}
37
37
  * @memberof SignInWithEmail200ResponseProfile
38
38
  */
39
- blocks?: Remaining;
39
+ blockCountInfo?: Remaining;
40
40
  /**
41
41
  * Unique ID of floor
42
42
  * @type {string}
@@ -43,8 +43,8 @@ function SignInWithEmail200ResponseProfileFromJSONTyped(json, ignoreDiscriminato
43
43
  }
44
44
  return {
45
45
  'floorId': json['floor_id'],
46
- 'floors': json['floors'] == null ? undefined : (0, Remaining_1.RemainingFromJSON)(json['floors']),
47
- 'blocks': json['blocks'] == null ? undefined : (0, Remaining_1.RemainingFromJSON)(json['blocks']),
46
+ 'floorCountInfo': json['floor_count_info'] == null ? undefined : (0, Remaining_1.RemainingFromJSON)(json['floor_count_info']),
47
+ 'blockCountInfo': json['block_count_info'] == null ? undefined : (0, Remaining_1.RemainingFromJSON)(json['block_count_info']),
48
48
  'fID': json['FID'],
49
49
  'name': json['name'] == null ? undefined : json['name'],
50
50
  'email': json['email'] == null ? undefined : json['email'],
@@ -63,8 +63,8 @@ function SignInWithEmail200ResponseProfileToJSONTyped(value, ignoreDiscriminator
63
63
  }
64
64
  return {
65
65
  'floor_id': value['floorId'],
66
- 'floors': (0, Remaining_1.RemainingToJSON)(value['floors']),
67
- 'blocks': (0, Remaining_1.RemainingToJSON)(value['blocks']),
66
+ 'floor_count_info': (0, Remaining_1.RemainingToJSON)(value['floorCountInfo']),
67
+ 'block_count_info': (0, Remaining_1.RemainingToJSON)(value['blockCountInfo']),
68
68
  'FID': value['fID'],
69
69
  'name': value['name'],
70
70
  'email': value['email'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xfloor/floor-memory-sdk-ts",
3
- "version": "1.0.19",
3
+ "version": "1.0.20",
4
4
  "description": "TypeScript SDK for xFloor Memory APIs (Memory + Registration).",
5
5
  "author": "xFloor",
6
6
  "repository": {