@nxtedition/types 23.0.31 → 23.0.33

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.
@@ -16,7 +16,13 @@ export declare const randomGeneralTitleRecord: () => GeneralTitleRecord;
16
16
  export declare const assertGuardGeneralTitleRecord: __AssertionGuard<GeneralTitleRecord>;
17
17
  export declare const stringifyGeneralTitleRecord: (input: GeneralTitleRecord) => string;
18
18
  export declare const assertStringifyGeneralTitleRecord: (input: unknown) => string;
19
+ /**
20
+ * Record holding manually added tags
21
+ */
19
22
  export interface GeneralTagsRecord {
23
+ /**
24
+ * Manually added tags
25
+ */
20
26
  value?: string[];
21
27
  }
22
28
  export declare const isGeneralTagsRecord: (input: unknown) => input is GeneralTagsRecord;
@@ -100,6 +100,10 @@ export interface MediaProbeRecord {
100
100
  error: NxtError | null;
101
101
  type: MediaType;
102
102
  live?: boolean | null;
103
+ url?: string | null;
104
+ subtitle?: {
105
+ codec?: string | null;
106
+ };
103
107
  }
104
108
  export declare const isMediaProbeRecord: (input: unknown) => input is MediaProbeRecord;
105
109
  export declare const assertMediaProbeRecord: (input: unknown) => MediaProbeRecord;