@arcware-cloud/pixelstreaming-websdk 1.3.16 → 1.3.19

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.
@@ -140,6 +140,8 @@ export declare const ArcwareSettingsSchema: z.ZodObject<{
140
140
  splashScreenMode: z.ZodOptional<z.ZodEnum<["contain", "cover", "stretch", "repeat"]>>;
141
141
  splashScreenPosition: z.ZodOptional<z.ZodString>;
142
142
  splashScreenBgColor: z.ZodOptional<z.ZodString>;
143
+ hideLoveLetters: z.ZodOptional<z.ZodBoolean>;
144
+ hideAfkOverlay: z.ZodOptional<z.ZodBoolean>;
143
145
  }, "strict", z.ZodTypeAny, {
144
146
  loadingIconUrl?: string;
145
147
  loadingIconFadeMs?: number;
@@ -147,6 +149,8 @@ export declare const ArcwareSettingsSchema: z.ZodObject<{
147
149
  splashScreenMode?: "repeat" | "contain" | "cover" | "stretch";
148
150
  splashScreenPosition?: string;
149
151
  splashScreenBgColor?: string;
152
+ hideLoveLetters?: boolean;
153
+ hideAfkOverlay?: boolean;
150
154
  }, {
151
155
  loadingIconUrl?: string;
152
156
  loadingIconFadeMs?: number;
@@ -154,7 +158,10 @@ export declare const ArcwareSettingsSchema: z.ZodObject<{
154
158
  splashScreenMode?: "repeat" | "contain" | "cover" | "stretch";
155
159
  splashScreenPosition?: string;
156
160
  splashScreenBgColor?: string;
161
+ hideLoveLetters?: boolean;
162
+ hideAfkOverlay?: boolean;
157
163
  }>>;
164
+ fetchRemoteWhiteLabelling: z.ZodOptional<z.ZodBoolean>;
158
165
  }, "strip", z.ZodTypeAny, {
159
166
  session?: string;
160
167
  token?: string;
@@ -207,7 +214,10 @@ export declare const ArcwareSettingsSchema: z.ZodObject<{
207
214
  splashScreenMode?: "repeat" | "contain" | "cover" | "stretch";
208
215
  splashScreenPosition?: string;
209
216
  splashScreenBgColor?: string;
217
+ hideLoveLetters?: boolean;
218
+ hideAfkOverlay?: boolean;
210
219
  };
220
+ fetchRemoteWhiteLabelling?: boolean;
211
221
  }, {
212
222
  session?: string;
213
223
  token?: string;
@@ -260,6 +270,9 @@ export declare const ArcwareSettingsSchema: z.ZodObject<{
260
270
  splashScreenMode?: "repeat" | "contain" | "cover" | "stretch";
261
271
  splashScreenPosition?: string;
262
272
  splashScreenBgColor?: string;
273
+ hideLoveLetters?: boolean;
274
+ hideAfkOverlay?: boolean;
263
275
  };
276
+ fetchRemoteWhiteLabelling?: boolean;
264
277
  }>;
265
278
  export type Settings = z.infer<typeof ArcwareSettingsSchema>;
@@ -7,6 +7,8 @@ export declare const ZWhiteLabel: z.ZodObject<{
7
7
  splashScreenMode: z.ZodOptional<z.ZodEnum<["contain", "cover", "stretch", "repeat"]>>;
8
8
  splashScreenPosition: z.ZodOptional<z.ZodString>;
9
9
  splashScreenBgColor: z.ZodOptional<z.ZodString>;
10
+ hideLoveLetters: z.ZodOptional<z.ZodBoolean>;
11
+ hideAfkOverlay: z.ZodOptional<z.ZodBoolean>;
10
12
  }, "strict", z.ZodTypeAny, {
11
13
  loadingIconUrl?: string;
12
14
  loadingIconFadeMs?: number;
@@ -14,6 +16,8 @@ export declare const ZWhiteLabel: z.ZodObject<{
14
16
  splashScreenMode?: "repeat" | "contain" | "cover" | "stretch";
15
17
  splashScreenPosition?: string;
16
18
  splashScreenBgColor?: string;
19
+ hideLoveLetters?: boolean;
20
+ hideAfkOverlay?: boolean;
17
21
  }, {
18
22
  loadingIconUrl?: string;
19
23
  loadingIconFadeMs?: number;
@@ -21,5 +25,7 @@ export declare const ZWhiteLabel: z.ZodObject<{
21
25
  splashScreenMode?: "repeat" | "contain" | "cover" | "stretch";
22
26
  splashScreenPosition?: string;
23
27
  splashScreenBgColor?: string;
28
+ hideLoveLetters?: boolean;
29
+ hideAfkOverlay?: boolean;
24
30
  }>;
25
31
  export type WhiteLabel = z.infer<typeof ZWhiteLabel>;