@soigo-dev/types-soigo-app 3.0.8 → 3.0.10

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/lib/auth.d.ts CHANGED
@@ -2,12 +2,5 @@ export interface IGoogleLogin {
2
2
  readonly idToken: string;
3
3
  }
4
4
  export interface IGoogleLoginResponse {
5
- readonly provider: 'google';
6
- readonly isNewUser: boolean;
7
5
  readonly accessToken: string;
8
- readonly user: {
9
- readonly id: number;
10
- readonly email?: string;
11
- readonly displayName: string;
12
- };
13
6
  }
package/lib/venue.d.ts CHANGED
@@ -28,11 +28,12 @@ export declare enum Atmospheres {
28
28
  export declare enum TypeSongs {
29
29
  Undefined = 0,
30
30
  LiveBand = 1,
31
- Thai = 2,
32
- Latino = 3,
33
- HipHop = 4,
34
- Jazz = 5,
35
- Electronic = 6
31
+ DJ = 2,
32
+ Thai = 3,
33
+ Latino = 4,
34
+ HipHop = 5,
35
+ Jazz = 6,
36
+ Electronic = 7
36
37
  }
37
38
  export declare enum ParkingLots {
38
39
  Undefined = 0,
package/lib/venue.js CHANGED
@@ -35,11 +35,12 @@ var TypeSongs;
35
35
  (function (TypeSongs) {
36
36
  TypeSongs[TypeSongs["Undefined"] = 0] = "Undefined";
37
37
  TypeSongs[TypeSongs["LiveBand"] = 1] = "LiveBand";
38
- TypeSongs[TypeSongs["Thai"] = 2] = "Thai";
39
- TypeSongs[TypeSongs["Latino"] = 3] = "Latino";
40
- TypeSongs[TypeSongs["HipHop"] = 4] = "HipHop";
41
- TypeSongs[TypeSongs["Jazz"] = 5] = "Jazz";
42
- TypeSongs[TypeSongs["Electronic"] = 6] = "Electronic";
38
+ TypeSongs[TypeSongs["DJ"] = 2] = "DJ";
39
+ TypeSongs[TypeSongs["Thai"] = 3] = "Thai";
40
+ TypeSongs[TypeSongs["Latino"] = 4] = "Latino";
41
+ TypeSongs[TypeSongs["HipHop"] = 5] = "HipHop";
42
+ TypeSongs[TypeSongs["Jazz"] = 6] = "Jazz";
43
+ TypeSongs[TypeSongs["Electronic"] = 7] = "Electronic";
43
44
  })(TypeSongs || (exports.TypeSongs = TypeSongs = {}));
44
45
  var ParkingLots;
45
46
  (function (ParkingLots) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@soigo-dev/types-soigo-app",
3
- "version": "3.0.8",
3
+ "version": "3.0.10",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",