fansunited-sdk-esm 1.33.0 → 1.33.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.
@@ -0,0 +1,5 @@
1
+ export declare enum EntityTypeEnum {
2
+ COMPETITION = "competition",
3
+ TEAM = "team",
4
+ PLAYER = "player"
5
+ }
@@ -0,0 +1,4 @@
1
+ export declare enum SportSourceEnum {
2
+ FOOTBALL = "FOOTBALL",
3
+ CUSTOM = "CUSTOM"
4
+ }
@@ -4,7 +4,7 @@ export declare const setBaseUrl: (environment: string, namespace: string) => str
4
4
  export declare const transformIdsToBeUnique: (ids: string[]) => string[];
5
5
  export declare const isDisabledCache: (disableCache: boolean) => boolean;
6
6
  export declare const initDisableCache: () => string;
7
- export declare const sortArrayInAscOrder: (array: string[]) => string[];
7
+ export declare const sortArrayInAscOrder: (array: string[]) => any;
8
8
  /**
9
9
  * Used for test cases when we want an array with more than X length
10
10
  * @param value The value that will contain in the array
@@ -0,0 +1,4 @@
1
+ import InterestModel from "./InterestModel";
2
+ export default class FullInterestModel extends InterestModel {
3
+ model: any;
4
+ }