@redseat/api 0.2.0 → 0.2.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.
@@ -276,9 +276,10 @@ export interface IMovie {
276
276
  }
277
277
  export interface IServer {
278
278
  id: string;
279
- name: string;
279
+ name?: string;
280
280
  url: string;
281
281
  port?: number;
282
+ local?: string;
282
283
  }
283
284
  export interface MediaRequest {
284
285
  sort?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@redseat/api",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
4
4
  "description": "TypeScript API client library for interacting with Redseat servers",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",