fansunited-sdk-esm 1.77.0 → 1.78.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.
@@ -12,6 +12,7 @@ import TopX from "../../Namespaces/TopX/TopX";
12
12
  import Progress from "../../Namespaces/Progress/Progress";
13
13
  import Voting from "../../Namespaces/Voting/Voting";
14
14
  import Fantasy from "../../Namespaces/Fantasy/Fantasy";
15
+ import SDKVersionModel from "../../Version/Models/SDKVersionModel";
15
16
  export default class FansUnitedSDKModel {
16
17
  profile: Profile;
17
18
  football: Football;
@@ -27,4 +28,5 @@ export default class FansUnitedSDKModel {
27
28
  progress: Progress;
28
29
  voting: Voting;
29
30
  fantasy: Fantasy;
31
+ getVersion: () => SDKVersionModel;
30
32
  }
@@ -0,0 +1,7 @@
1
+ export default class SDKVersionModel {
2
+ version: string;
3
+ major: number;
4
+ minor: number;
5
+ patch: number;
6
+ releaseCandidate: number | null;
7
+ }
@@ -0,0 +1,7 @@
1
+ export declare function getVersion(): {
2
+ version: any;
3
+ major: number;
4
+ minor: number;
5
+ patch: any;
6
+ releaseCandidate: any;
7
+ };