fansunited-sdk-esm 1.47.0 → 1.48.0

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.
@@ -1,4 +1,4 @@
1
1
  export type LangType = "bg" | "en" | "ro" | "el" | "sk" | "pt" | "sr" | "hu" | "it" | "sv" | "es" | "fr" | "nl" | "de";
2
2
  export type IdSchemaType = "native" | "enetpulse" | "sportal365" | "sportradar";
3
- export type EnvironmentType = "dev" | "prod" | "staging";
3
+ export type EnvironmentType = "dev" | "prod" | "staging" | "watg";
4
4
  export type ErrorHandlingModeType = "default" | "standard";
@@ -1,6 +1,4 @@
1
1
  import TemplateModel from "./TemplateModel";
2
2
  export default class TemplateByIdModel extends TemplateModel {
3
- labels: Record<string, string>;
4
- customFields: Record<string, string>;
5
3
  adContent: string;
6
4
  }
@@ -16,6 +16,8 @@ export default class TemplateModel {
16
16
  competitionIds: string[];
17
17
  excludedProfileIds: string[];
18
18
  rules: string;
19
+ labels: Record<string, string>;
20
+ customFields: Record<string, string>;
19
21
  flags: string[];
20
22
  images: ImagesModel;
21
23
  status: LeaderboardStatus;
@@ -1,6 +1,4 @@
1
1
  import GamesListModel from "./GamesListModel";
2
2
  export default class GameByIdModel extends GamesListModel {
3
3
  adContent: string;
4
- labels: Record<string, string>;
5
- customFields: Record<string, string>;
6
4
  }
@@ -16,6 +16,8 @@ export default class GamesListModel {
16
16
  related: RelatedEntity[];
17
17
  excludedProfileIds: string[];
18
18
  rules: string;
19
+ labels: Record<string, string>;
20
+ customFields: Record<string, string>;
19
21
  flags: string[];
20
22
  images: ImagesModel;
21
23
  createdAt: string;