Skip to content

Commit

Permalink
Update comments
Browse files Browse the repository at this point in the history
  • Loading branch information
karpov-kir committed May 16, 2024
1 parent ecbbf27 commit 1fda763
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions src/ts/conviva/ConvivaExtension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,21 @@ import * as Conviva from '@convivainc/conviva-js-coresdk';
declare module '@convivainc/conviva-js-coresdk' {
export class ContentMetadata {
public static readonly StreamType: Conviva.ConvivaConstants['StreamType'];
public applicationName: string;

// Can only be set once
public assetName: string;

// Can only be set before playback started
public viewerId: string;
public streamType: Conviva.valueof<Conviva.ConvivaConstants['StreamType']>;
public applicationName: string;
public custom: Record<string, string>;
public defaultResource: string;
public duration: number;

// Dynamic
public defaultResource: string;
public encodedFrameRate: number;
public streamType: Conviva.valueof<Conviva.ConvivaConstants['StreamType']>;
public streamUrl: string;
public viewerId: string;
}

export interface LoggingInterface {
Expand Down

0 comments on commit 1fda763

Please sign in to comment.