@xfloor/floor-memory-sdk-ts 1.0.9 → 1.0.10
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.
|
|
1
|
+
# @xfloor/floor-memory-sdk-ts@1.0.10
|
|
2
2
|
|
|
3
3
|
A TypeScript SDK client for the localhost API.
|
|
4
4
|
|
|
@@ -246,7 +246,7 @@ and is automatically generated by the
|
|
|
246
246
|
[OpenAPI Generator](https://openapi-generator.tech) project:
|
|
247
247
|
|
|
248
248
|
- API version: `1.0.0`
|
|
249
|
-
- Package version: `1.0.
|
|
249
|
+
- Package version: `1.0.10`
|
|
250
250
|
- Generator version: `7.18.0`
|
|
251
251
|
- Build package: `org.openapitools.codegen.languages.TypeScriptFetchClientCodegen`
|
|
252
252
|
|
|
@@ -67,6 +67,12 @@ export interface FloorInfo {
|
|
|
67
67
|
* @memberof FloorInfo
|
|
68
68
|
*/
|
|
69
69
|
floorType: string;
|
|
70
|
+
/**
|
|
71
|
+
* Optional - Applicable only if pod is present.
|
|
72
|
+
* @type {string}
|
|
73
|
+
* @memberof FloorInfo
|
|
74
|
+
*/
|
|
75
|
+
appId?: string;
|
|
70
76
|
}
|
|
71
77
|
/**
|
|
72
78
|
* Check if a given object implements the FloorInfo interface.
|
package/dist/models/FloorInfo.js
CHANGED
|
@@ -54,6 +54,7 @@ function FloorInfoFromJSONTyped(json, ignoreDiscriminator) {
|
|
|
54
54
|
'avatar': json['avatar'] == null ? undefined : (0, Media_1.MediaFromJSON)(json['avatar']),
|
|
55
55
|
'isOwner': json['is_owner'],
|
|
56
56
|
'floorType': json['floor_type'],
|
|
57
|
+
'appId': json['app_id'] == null ? undefined : json['app_id'],
|
|
57
58
|
};
|
|
58
59
|
}
|
|
59
60
|
function FloorInfoToJSON(json) {
|
|
@@ -73,5 +74,6 @@ function FloorInfoToJSONTyped(value, ignoreDiscriminator) {
|
|
|
73
74
|
'avatar': (0, Media_1.MediaToJSON)(value['avatar']),
|
|
74
75
|
'is_owner': value['isOwner'],
|
|
75
76
|
'floor_type': value['floorType'],
|
|
77
|
+
'app_id': value['appId'],
|
|
76
78
|
};
|
|
77
79
|
}
|
|
@@ -67,6 +67,12 @@ export interface GetFloorInformation200Response {
|
|
|
67
67
|
* @memberof GetFloorInformation200Response
|
|
68
68
|
*/
|
|
69
69
|
floorType: string;
|
|
70
|
+
/**
|
|
71
|
+
* Optional - Applicable only if pod is present.
|
|
72
|
+
* @type {string}
|
|
73
|
+
* @memberof GetFloorInformation200Response
|
|
74
|
+
*/
|
|
75
|
+
appId?: string;
|
|
70
76
|
}
|
|
71
77
|
/**
|
|
72
78
|
* Check if a given object implements the GetFloorInformation200Response interface.
|
|
@@ -54,6 +54,7 @@ function GetFloorInformation200ResponseFromJSONTyped(json, ignoreDiscriminator)
|
|
|
54
54
|
'avatar': json['avatar'] == null ? undefined : (0, Media_1.MediaFromJSON)(json['avatar']),
|
|
55
55
|
'isOwner': json['is_owner'],
|
|
56
56
|
'floorType': json['floor_type'],
|
|
57
|
+
'appId': json['app_id'] == null ? undefined : json['app_id'],
|
|
57
58
|
};
|
|
58
59
|
}
|
|
59
60
|
function GetFloorInformation200ResponseToJSON(json) {
|
|
@@ -73,5 +74,6 @@ function GetFloorInformation200ResponseToJSONTyped(value, ignoreDiscriminator) {
|
|
|
73
74
|
'avatar': (0, Media_1.MediaToJSON)(value['avatar']),
|
|
74
75
|
'is_owner': value['isOwner'],
|
|
75
76
|
'floor_type': value['floorType'],
|
|
77
|
+
'app_id': value['appId'],
|
|
76
78
|
};
|
|
77
79
|
}
|