@playkit-js/playkit-js-ui 0.78.3 → 0.78.4-canary.0-fa0437a

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.
@@ -95,6 +95,14 @@ declare const actions_3: {
95
95
  type: string;
96
96
  hasError: boolean;
97
97
  };
98
+ readonly updateErrorDetails: (errorCategory: number, errorTitle?: string, errorMessage?: string) => {
99
+ type: string;
100
+ errorDetails: {
101
+ errorCategory: number;
102
+ errorTitle: string;
103
+ errorMessage: string;
104
+ };
105
+ };
98
106
  readonly updatePlayerState: (prevoiusState: string, currentState: string) => {
99
107
  type: string;
100
108
  playerState: {
@@ -3399,6 +3407,11 @@ declare const initialState_3: {
3399
3407
  };
3400
3408
  adUrl: string;
3401
3409
  hasError: boolean;
3410
+ errorDetails: {
3411
+ errorCategory: undefined;
3412
+ errorTitle: undefined;
3413
+ errorMessage: undefined;
3414
+ };
3402
3415
  isVr: boolean;
3403
3416
  vrStereoMode: boolean;
3404
3417
  isCasting: boolean;
@@ -7295,6 +7308,7 @@ declare const types_3: {
7295
7308
  UPDATE_IS_IMG: string;
7296
7309
  UPDATE_IS_DOCUMENT: string;
7297
7310
  UPDATE_ERROR: string;
7311
+ UPDATE_ERROR_DETAILS: string;
7298
7312
  UPDATE_IS_IDLE: string;
7299
7313
  UPDATE_FALLBACK_TO_MUTED_AUTOPLAY: string;
7300
7314
  UPDATE_IS_VR: string;