@xfloor/floor-memory-sdk-ts 1.0.9 → 1.0.11
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,5 +1,4 @@
|
|
|
1
|
-
# @xfloor/floor-memory-sdk-ts@1.0.
|
|
2
|
-
|
|
1
|
+
# @xfloor/floor-memory-sdk-ts@1.0.11
|
|
3
2
|
A TypeScript SDK client for the localhost API.
|
|
4
3
|
|
|
5
4
|
### Usage
|
|
@@ -246,7 +245,7 @@ and is automatically generated by the
|
|
|
246
245
|
[OpenAPI Generator](https://openapi-generator.tech) project:
|
|
247
246
|
|
|
248
247
|
- API version: `1.0.0`
|
|
249
|
-
- Package version: `1.0.
|
|
248
|
+
- Package version: `1.0.11`
|
|
250
249
|
- Generator version: `7.18.0`
|
|
251
250
|
- Build package: `org.openapitools.codegen.languages.TypeScriptFetchClientCodegen`
|
|
252
251
|
|
|
@@ -288,3 +287,24 @@ npm publish
|
|
|
288
287
|
### License
|
|
289
288
|
|
|
290
289
|
[MIT](https://xfloor.ai/ipomo/blog1551084548304/1642341504453)
|
|
290
|
+
|
|
291
|
+
|
|
292
|
+
<!-- xfloor:platform-notes:start -->
|
|
293
|
+
## Platform Notes (macOS, Linux, Windows)
|
|
294
|
+
|
|
295
|
+
### macOS / Linux
|
|
296
|
+
```bash
|
|
297
|
+
npm install
|
|
298
|
+
npm run build
|
|
299
|
+
```
|
|
300
|
+
|
|
301
|
+
### Windows (PowerShell or CMD)
|
|
302
|
+
```powershell
|
|
303
|
+
npm install
|
|
304
|
+
npm run build
|
|
305
|
+
```
|
|
306
|
+
|
|
307
|
+
The npm commands are the same across operating systems. For local path references, use OS-specific path formats:
|
|
308
|
+
- macOS/Linux: `/path/to/project`
|
|
309
|
+
- Windows: `C:\path\to\project`
|
|
310
|
+
<!-- xfloor:platform-notes:end -->
|
|
@@ -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
|
}
|