@telemetryos/root-sdk 1.15.0 → 1.16.0

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/dist/media.d.ts CHANGED
@@ -1,5 +1,4 @@
1
1
  import { Client } from './client.js';
2
- type MediaContentUser = {};
3
2
  export type MediaContent = {
4
3
  id: string;
5
4
  contentFolderId: string;
@@ -9,10 +8,6 @@ export type MediaContent = {
9
8
  thumbnailUrl: string;
10
9
  keys: string[];
11
10
  publicUrls: string[];
12
- hidden: boolean;
13
- validFrom?: Date;
14
- validTo?: Date;
15
- createdBy?: MediaContentUser;
16
11
  transcodedAt?: Date;
17
12
  createdAt: Date;
18
13
  updatedAt: Date;
@@ -84,4 +79,3 @@ export declare class Media {
84
79
  */
85
80
  openPicker(options?: MediaPickerOptions): Promise<MediaSelection | null>;
86
81
  }
87
- export {};
package/dist/store.d.ts CHANGED
@@ -62,9 +62,9 @@ export declare class Store {
62
62
  */
63
63
  export declare class StoreSlice {
64
64
  _kind: string;
65
- _namespace: string | undefined;
65
+ _namespace: string;
66
66
  _client: Client;
67
- constructor(kind: string, namespace: string | undefined, client: Client);
67
+ constructor(kind: string, namespace: string, client: Client);
68
68
  /**
69
69
  * Saves a value in the store.
70
70
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@telemetryos/root-sdk",
3
- "version": "1.15.0",
3
+ "version": "1.16.0",
4
4
  "description": "The official TelemetryOS root application sdk package. Provides types and apis for building root TelemetryOS applications.",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -35,7 +35,7 @@
35
35
  "license": "",
36
36
  "repository": "github:TelemetryTV/Application-API",
37
37
  "dependencies": {
38
- "@telemetryos/sdk-bridge": "^1.15.0",
38
+ "@telemetryos/sdk-bridge": "^1.16.0",
39
39
  "zod": "^3.24.4"
40
40
  },
41
41
  "devDependencies": {