@arcware-cloud/pixelstreaming-websdk 0.1.11 → 1.0.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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@arcware-cloud/pixelstreaming-websdk",
3
3
  "description": "WebSDK for easy implementation of pixel streaming with Arcware Cloud Services. Heavily based on the '@epicgames-ps' library.",
4
- "version": "0.1.11",
4
+ "version": "1.0.2",
5
5
  "type": "commonjs",
6
6
  "main": "./index.umd.js",
7
7
  "module": "./index.umd.js",
@@ -21,8 +21,8 @@
21
21
  "license": "MIT",
22
22
  "dependencies": {},
23
23
  "peerDependencies": {
24
- "@epicgames-ps/lib-pixelstreamingfrontend-ue5.2": "0.4.0",
25
- "@epicgames-ps/lib-pixelstreamingfrontend-ui-ue5.2": "0.3.0",
24
+ "@epicgames-ps/lib-pixelstreamingfrontend-ue5.5": "0.4.7",
25
+ "@epicgames-ps/lib-pixelstreamingfrontend-ui-ue5.5": "0.4.7",
26
26
  "lodash": "4.17.21",
27
27
  "lottie-web": "5.10.2",
28
28
  "moment": "2.29.4",
package/types/index.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- export * from "@epicgames-ps/lib-pixelstreamingfrontend-ue5.2";
2
- export * from "@epicgames-ps/lib-pixelstreamingfrontend-ui-ue5.2";
1
+ export * from "@epicgames-ps/lib-pixelstreamingfrontend-ue5.5";
2
+ export * from "@epicgames-ps/lib-pixelstreamingfrontend-ui-ue5.5";
3
3
  export * from "./lib";
@@ -1,4 +1,4 @@
1
- import { Application, UIOptions } from "@epicgames-ps/lib-pixelstreamingfrontend-ui-ue5.2";
1
+ import { Application, UIOptions } from "@epicgames-ps/lib-pixelstreamingfrontend-ui-ue5.5";
2
2
  import { ArcwarePixelStreaming } from "./ArcwarePixelStreaming";
3
3
  export declare class ArcwareApplication extends Application {
4
4
  static Flags: {
@@ -1,5 +1,4 @@
1
- import { Config } from "@epicgames-ps/lib-pixelstreamingfrontend-ue5.2";
2
- import { ConfigParams } from "@epicgames-ps/lib-pixelstreamingfrontend-ue5.2/types/Config/Config";
1
+ import { Config, ConfigParams } from "@epicgames-ps/lib-pixelstreamingfrontend-ue5.5";
3
2
  import { Session } from "./domain/Session";
4
3
  import { Settings } from "./domain/ArcwareSettingsSchema";
5
4
  /** Default arcware signalling endpoint. */
@@ -27,10 +26,10 @@ export declare class ArcwareConfig extends Config {
27
26
  readonly session: Session;
28
27
  readonly settings: Settings;
29
28
  private _initialSettings;
30
- readonly VERSION = "0.1.11";
29
+ readonly VERSION = "1.0.2";
31
30
  constructor(config: ArcwareConfigParams);
32
31
  /** Setup connection string. */
33
32
  get urlFlags(): string;
34
- get initialSettings(): Partial<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").AllSettings>;
33
+ get initialSettings(): Partial<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").AllSettings>;
35
34
  modifyInitialSettings(mouseLock: boolean): void;
36
35
  }
@@ -1,6 +1,5 @@
1
1
  import { Messages } from "@arcware-cloud/shared-pixelstreaming-websdk";
2
- import { PixelStreaming } from "@epicgames-ps/lib-pixelstreamingfrontend-ue5.2";
3
- import { PixelStreamingOverrides } from "@epicgames-ps/lib-pixelstreamingfrontend-ue5.2/types/PixelStreaming/PixelStreaming";
2
+ import { PixelStreaming, PixelStreamingOverrides } from "@epicgames-ps/lib-pixelstreamingfrontend-ue5.5";
4
3
  import { ArcwareConfig } from "./ArcwareConfig";
5
4
  import { EventHandler } from "./domain/EventHandler";
6
5
  import { Session } from "./domain/Session";
@@ -9,7 +8,6 @@ export declare class ArcwarePixelStreaming extends PixelStreaming {
9
8
  /** Override default config with ArcwareConfig. */
10
9
  config: ArcwareConfig;
11
10
  streamInfo?: Messages.StreamInfo;
12
- private webRtcController;
13
11
  loveLettersContainer: HTMLDivElement | undefined;
14
12
  private loveLettersList;
15
13
  private loveLettersQueue;
@@ -43,6 +41,7 @@ export declare class ArcwarePixelStreaming extends PixelStreaming {
43
41
  index?: number | undefined;
44
42
  queueLength?: number | undefined;
45
43
  waited?: number | undefined;
44
+ /** As soon as upstream is fixed, we got to adjust the url building process. */
46
45
  estimatedWaitTime?: number | undefined;
47
46
  averageWaitTime?: number | undefined;
48
47
  };
@@ -1,10 +1,10 @@
1
- import { AggregatedStats } from "@epicgames-ps/lib-pixelstreamingfrontend-ue5.2";
1
+ import { AggregatedStats, CandidatePairStats } from "@epicgames-ps/lib-pixelstreamingfrontend-ue5.5";
2
2
  export declare function Stats(stats: AggregatedStats): import("zod").objectOutputType<{
3
- codecs: import("zod").ZodOptional<import("zod").ZodType<Map<string, string>, import("zod").ZodTypeDef, Map<string, string>>>;
4
- candidatePair: import("zod").ZodOptional<import("zod").ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidatePairStats, import("zod").ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidatePairStats>>;
5
- localCandidates: import("zod").ZodOptional<import("zod").ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidateStat[], import("zod").ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidateStat[]>>;
6
- remoteCandidates: import("zod").ZodOptional<import("zod").ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidateStat[], import("zod").ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidateStat[]>>;
7
- DataChannelStats: import("zod").ZodOptional<import("zod").ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").DataChannelStats, import("zod").ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").DataChannelStats>>;
3
+ codecs: import("zod").ZodOptional<import("zod").ZodType<Map<string, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5/dist/types/PeerConnectionController/CodecStats").CodecStats>, import("zod").ZodTypeDef, Map<string, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5/dist/types/PeerConnectionController/CodecStats").CodecStats>>>;
4
+ candidatePair: import("zod").ZodOptional<import("zod").ZodType<CandidatePairStats[], import("zod").ZodTypeDef, CandidatePairStats[]>>;
5
+ localCandidates: import("zod").ZodOptional<import("zod").ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidateStat[], import("zod").ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidateStat[]>>;
6
+ remoteCandidates: import("zod").ZodOptional<import("zod").ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidateStat[], import("zod").ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidateStat[]>>;
7
+ DataChannelStats: import("zod").ZodOptional<import("zod").ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").DataChannelStats, import("zod").ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").DataChannelStats>>;
8
8
  bytesReceived: import("zod").ZodOptional<import("zod").ZodNumber>;
9
9
  packetsLost: import("zod").ZodOptional<import("zod").ZodNumber>;
10
10
  frameWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
@@ -2,11 +2,11 @@ import { z } from "zod";
2
2
  export declare const ZStats: z.ZodObject<{
3
3
  type: z.ZodLiteral<"stats">;
4
4
  stats: z.ZodObject<{
5
- codecs: z.ZodOptional<z.ZodType<Map<string, string>, z.ZodTypeDef, Map<string, string>>>;
6
- candidatePair: z.ZodOptional<z.ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidatePairStats, z.ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidatePairStats>>;
7
- localCandidates: z.ZodOptional<z.ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidateStat[], z.ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidateStat[]>>;
8
- remoteCandidates: z.ZodOptional<z.ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidateStat[], z.ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidateStat[]>>;
9
- DataChannelStats: z.ZodOptional<z.ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").DataChannelStats, z.ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").DataChannelStats>>;
5
+ codecs: z.ZodOptional<z.ZodType<Map<string, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5/dist/types/PeerConnectionController/CodecStats").CodecStats>, z.ZodTypeDef, Map<string, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5/dist/types/PeerConnectionController/CodecStats").CodecStats>>>;
6
+ candidatePair: z.ZodOptional<z.ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidatePairStats[], z.ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidatePairStats[]>>;
7
+ localCandidates: z.ZodOptional<z.ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidateStat[], z.ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidateStat[]>>;
8
+ remoteCandidates: z.ZodOptional<z.ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidateStat[], z.ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidateStat[]>>;
9
+ DataChannelStats: z.ZodOptional<z.ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").DataChannelStats, z.ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").DataChannelStats>>;
10
10
  bytesReceived: z.ZodOptional<z.ZodNumber>;
11
11
  packetsLost: z.ZodOptional<z.ZodNumber>;
12
12
  frameWidth: z.ZodOptional<z.ZodNumber>;
@@ -36,11 +36,11 @@ export declare const ZStats: z.ZodObject<{
36
36
  videoBitrate: z.ZodOptional<z.ZodNumber>;
37
37
  audioBitrate: z.ZodOptional<z.ZodNumber>;
38
38
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
39
- codecs: z.ZodOptional<z.ZodType<Map<string, string>, z.ZodTypeDef, Map<string, string>>>;
40
- candidatePair: z.ZodOptional<z.ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidatePairStats, z.ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidatePairStats>>;
41
- localCandidates: z.ZodOptional<z.ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidateStat[], z.ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidateStat[]>>;
42
- remoteCandidates: z.ZodOptional<z.ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidateStat[], z.ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidateStat[]>>;
43
- DataChannelStats: z.ZodOptional<z.ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").DataChannelStats, z.ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").DataChannelStats>>;
39
+ codecs: z.ZodOptional<z.ZodType<Map<string, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5/dist/types/PeerConnectionController/CodecStats").CodecStats>, z.ZodTypeDef, Map<string, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5/dist/types/PeerConnectionController/CodecStats").CodecStats>>>;
40
+ candidatePair: z.ZodOptional<z.ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidatePairStats[], z.ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidatePairStats[]>>;
41
+ localCandidates: z.ZodOptional<z.ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidateStat[], z.ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidateStat[]>>;
42
+ remoteCandidates: z.ZodOptional<z.ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidateStat[], z.ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidateStat[]>>;
43
+ DataChannelStats: z.ZodOptional<z.ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").DataChannelStats, z.ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").DataChannelStats>>;
44
44
  bytesReceived: z.ZodOptional<z.ZodNumber>;
45
45
  packetsLost: z.ZodOptional<z.ZodNumber>;
46
46
  frameWidth: z.ZodOptional<z.ZodNumber>;
@@ -70,11 +70,11 @@ export declare const ZStats: z.ZodObject<{
70
70
  videoBitrate: z.ZodOptional<z.ZodNumber>;
71
71
  audioBitrate: z.ZodOptional<z.ZodNumber>;
72
72
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
73
- codecs: z.ZodOptional<z.ZodType<Map<string, string>, z.ZodTypeDef, Map<string, string>>>;
74
- candidatePair: z.ZodOptional<z.ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidatePairStats, z.ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidatePairStats>>;
75
- localCandidates: z.ZodOptional<z.ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidateStat[], z.ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidateStat[]>>;
76
- remoteCandidates: z.ZodOptional<z.ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidateStat[], z.ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidateStat[]>>;
77
- DataChannelStats: z.ZodOptional<z.ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").DataChannelStats, z.ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").DataChannelStats>>;
73
+ codecs: z.ZodOptional<z.ZodType<Map<string, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5/dist/types/PeerConnectionController/CodecStats").CodecStats>, z.ZodTypeDef, Map<string, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5/dist/types/PeerConnectionController/CodecStats").CodecStats>>>;
74
+ candidatePair: z.ZodOptional<z.ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidatePairStats[], z.ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidatePairStats[]>>;
75
+ localCandidates: z.ZodOptional<z.ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidateStat[], z.ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidateStat[]>>;
76
+ remoteCandidates: z.ZodOptional<z.ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidateStat[], z.ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidateStat[]>>;
77
+ DataChannelStats: z.ZodOptional<z.ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").DataChannelStats, z.ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").DataChannelStats>>;
78
78
  bytesReceived: z.ZodOptional<z.ZodNumber>;
79
79
  packetsLost: z.ZodOptional<z.ZodNumber>;
80
80
  frameWidth: z.ZodOptional<z.ZodNumber>;
@@ -107,11 +107,11 @@ export declare const ZStats: z.ZodObject<{
107
107
  }, "strip", z.ZodTypeAny, {
108
108
  type: "stats";
109
109
  stats: {
110
- codecs?: Map<string, string> | undefined;
111
- candidatePair?: import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidatePairStats | undefined;
112
- localCandidates?: import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidateStat[] | undefined;
113
- remoteCandidates?: import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidateStat[] | undefined;
114
- DataChannelStats?: import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").DataChannelStats | undefined;
110
+ codecs?: Map<string, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5/dist/types/PeerConnectionController/CodecStats").CodecStats> | undefined;
111
+ candidatePair?: import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidatePairStats[] | undefined;
112
+ localCandidates?: import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidateStat[] | undefined;
113
+ remoteCandidates?: import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidateStat[] | undefined;
114
+ DataChannelStats?: import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").DataChannelStats | undefined;
115
115
  bytesReceived?: number | undefined;
116
116
  packetsLost?: number | undefined;
117
117
  frameWidth?: number | undefined;
@@ -138,11 +138,11 @@ export declare const ZStats: z.ZodObject<{
138
138
  }, {
139
139
  type: "stats";
140
140
  stats: {
141
- codecs?: Map<string, string> | undefined;
142
- candidatePair?: import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidatePairStats | undefined;
143
- localCandidates?: import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidateStat[] | undefined;
144
- remoteCandidates?: import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidateStat[] | undefined;
145
- DataChannelStats?: import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").DataChannelStats | undefined;
141
+ codecs?: Map<string, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5/dist/types/PeerConnectionController/CodecStats").CodecStats> | undefined;
142
+ candidatePair?: import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidatePairStats[] | undefined;
143
+ localCandidates?: import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidateStat[] | undefined;
144
+ remoteCandidates?: import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidateStat[] | undefined;
145
+ DataChannelStats?: import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").DataChannelStats | undefined;
146
146
  bytesReceived?: number | undefined;
147
147
  packetsLost?: number | undefined;
148
148
  frameWidth?: number | undefined;
@@ -11,11 +11,11 @@ export declare const Send: {
11
11
  stats: import("zod").ZodObject<{
12
12
  type: import("zod").ZodLiteral<"stats">;
13
13
  stats: import("zod").ZodObject<{
14
- codecs: import("zod").ZodOptional<import("zod").ZodType<Map<string, string>, import("zod").ZodTypeDef, Map<string, string>>>;
15
- candidatePair: import("zod").ZodOptional<import("zod").ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidatePairStats, import("zod").ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidatePairStats>>;
16
- localCandidates: import("zod").ZodOptional<import("zod").ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidateStat[], import("zod").ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidateStat[]>>;
17
- remoteCandidates: import("zod").ZodOptional<import("zod").ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidateStat[], import("zod").ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidateStat[]>>;
18
- DataChannelStats: import("zod").ZodOptional<import("zod").ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").DataChannelStats, import("zod").ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").DataChannelStats>>;
14
+ codecs: import("zod").ZodOptional<import("zod").ZodType<Map<string, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5/dist/types/PeerConnectionController/CodecStats").CodecStats>, import("zod").ZodTypeDef, Map<string, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5/dist/types/PeerConnectionController/CodecStats").CodecStats>>>;
15
+ candidatePair: import("zod").ZodOptional<import("zod").ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidatePairStats[], import("zod").ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidatePairStats[]>>;
16
+ localCandidates: import("zod").ZodOptional<import("zod").ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidateStat[], import("zod").ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidateStat[]>>;
17
+ remoteCandidates: import("zod").ZodOptional<import("zod").ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidateStat[], import("zod").ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidateStat[]>>;
18
+ DataChannelStats: import("zod").ZodOptional<import("zod").ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").DataChannelStats, import("zod").ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").DataChannelStats>>;
19
19
  bytesReceived: import("zod").ZodOptional<import("zod").ZodNumber>;
20
20
  packetsLost: import("zod").ZodOptional<import("zod").ZodNumber>;
21
21
  frameWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
@@ -45,11 +45,11 @@ export declare const Send: {
45
45
  videoBitrate: import("zod").ZodOptional<import("zod").ZodNumber>;
46
46
  audioBitrate: import("zod").ZodOptional<import("zod").ZodNumber>;
47
47
  }, "passthrough", import("zod").ZodTypeAny, import("zod").objectOutputType<{
48
- codecs: import("zod").ZodOptional<import("zod").ZodType<Map<string, string>, import("zod").ZodTypeDef, Map<string, string>>>;
49
- candidatePair: import("zod").ZodOptional<import("zod").ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidatePairStats, import("zod").ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidatePairStats>>;
50
- localCandidates: import("zod").ZodOptional<import("zod").ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidateStat[], import("zod").ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidateStat[]>>;
51
- remoteCandidates: import("zod").ZodOptional<import("zod").ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidateStat[], import("zod").ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidateStat[]>>;
52
- DataChannelStats: import("zod").ZodOptional<import("zod").ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").DataChannelStats, import("zod").ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").DataChannelStats>>;
48
+ codecs: import("zod").ZodOptional<import("zod").ZodType<Map<string, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5/dist/types/PeerConnectionController/CodecStats").CodecStats>, import("zod").ZodTypeDef, Map<string, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5/dist/types/PeerConnectionController/CodecStats").CodecStats>>>;
49
+ candidatePair: import("zod").ZodOptional<import("zod").ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidatePairStats[], import("zod").ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidatePairStats[]>>;
50
+ localCandidates: import("zod").ZodOptional<import("zod").ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidateStat[], import("zod").ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidateStat[]>>;
51
+ remoteCandidates: import("zod").ZodOptional<import("zod").ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidateStat[], import("zod").ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidateStat[]>>;
52
+ DataChannelStats: import("zod").ZodOptional<import("zod").ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").DataChannelStats, import("zod").ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").DataChannelStats>>;
53
53
  bytesReceived: import("zod").ZodOptional<import("zod").ZodNumber>;
54
54
  packetsLost: import("zod").ZodOptional<import("zod").ZodNumber>;
55
55
  frameWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
@@ -79,11 +79,11 @@ export declare const Send: {
79
79
  videoBitrate: import("zod").ZodOptional<import("zod").ZodNumber>;
80
80
  audioBitrate: import("zod").ZodOptional<import("zod").ZodNumber>;
81
81
  }, import("zod").ZodTypeAny, "passthrough">, import("zod").objectInputType<{
82
- codecs: import("zod").ZodOptional<import("zod").ZodType<Map<string, string>, import("zod").ZodTypeDef, Map<string, string>>>;
83
- candidatePair: import("zod").ZodOptional<import("zod").ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidatePairStats, import("zod").ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidatePairStats>>;
84
- localCandidates: import("zod").ZodOptional<import("zod").ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidateStat[], import("zod").ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidateStat[]>>;
85
- remoteCandidates: import("zod").ZodOptional<import("zod").ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidateStat[], import("zod").ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidateStat[]>>;
86
- DataChannelStats: import("zod").ZodOptional<import("zod").ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").DataChannelStats, import("zod").ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").DataChannelStats>>;
82
+ codecs: import("zod").ZodOptional<import("zod").ZodType<Map<string, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5/dist/types/PeerConnectionController/CodecStats").CodecStats>, import("zod").ZodTypeDef, Map<string, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5/dist/types/PeerConnectionController/CodecStats").CodecStats>>>;
83
+ candidatePair: import("zod").ZodOptional<import("zod").ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidatePairStats[], import("zod").ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidatePairStats[]>>;
84
+ localCandidates: import("zod").ZodOptional<import("zod").ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidateStat[], import("zod").ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidateStat[]>>;
85
+ remoteCandidates: import("zod").ZodOptional<import("zod").ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidateStat[], import("zod").ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidateStat[]>>;
86
+ DataChannelStats: import("zod").ZodOptional<import("zod").ZodType<import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").DataChannelStats, import("zod").ZodTypeDef, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").DataChannelStats>>;
87
87
  bytesReceived: import("zod").ZodOptional<import("zod").ZodNumber>;
88
88
  packetsLost: import("zod").ZodOptional<import("zod").ZodNumber>;
89
89
  frameWidth: import("zod").ZodOptional<import("zod").ZodNumber>;
@@ -116,11 +116,11 @@ export declare const Send: {
116
116
  }, "strip", import("zod").ZodTypeAny, {
117
117
  type: "stats";
118
118
  stats: {
119
- codecs?: Map<string, string> | undefined;
120
- candidatePair?: import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidatePairStats | undefined;
121
- localCandidates?: import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidateStat[] | undefined;
122
- remoteCandidates?: import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidateStat[] | undefined;
123
- DataChannelStats?: import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").DataChannelStats | undefined;
119
+ codecs?: Map<string, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5/dist/types/PeerConnectionController/CodecStats").CodecStats> | undefined;
120
+ candidatePair?: import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidatePairStats[] | undefined;
121
+ localCandidates?: import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidateStat[] | undefined;
122
+ remoteCandidates?: import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidateStat[] | undefined;
123
+ DataChannelStats?: import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").DataChannelStats | undefined;
124
124
  bytesReceived?: number | undefined;
125
125
  packetsLost?: number | undefined;
126
126
  frameWidth?: number | undefined;
@@ -147,11 +147,11 @@ export declare const Send: {
147
147
  }, {
148
148
  type: "stats";
149
149
  stats: {
150
- codecs?: Map<string, string> | undefined;
151
- candidatePair?: import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidatePairStats | undefined;
152
- localCandidates?: import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidateStat[] | undefined;
153
- remoteCandidates?: import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").CandidateStat[] | undefined;
154
- DataChannelStats?: import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.2").DataChannelStats | undefined;
150
+ codecs?: Map<string, import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5/dist/types/PeerConnectionController/CodecStats").CodecStats> | undefined;
151
+ candidatePair?: import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidatePairStats[] | undefined;
152
+ localCandidates?: import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidateStat[] | undefined;
153
+ remoteCandidates?: import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").CandidateStat[] | undefined;
154
+ DataChannelStats?: import("@epicgames-ps/lib-pixelstreamingfrontend-ue5.5").DataChannelStats | undefined;
155
155
  bytesReceived?: number | undefined;
156
156
  packetsLost?: number | undefined;
157
157
  frameWidth?: number | undefined;