heartraite 1.0.97 → 1.0.99

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,5 @@
1
1
  export declare enum MatchmakingMode {
2
2
  ACTIVE = "active",
3
- PAUSED = "paused"
3
+ PAUSED = "paused",
4
+ DISABLED = "disabled"
4
5
  }
@@ -5,4 +5,5 @@ var MatchmakingMode;
5
5
  (function (MatchmakingMode) {
6
6
  MatchmakingMode["ACTIVE"] = "active";
7
7
  MatchmakingMode["PAUSED"] = "paused";
8
+ MatchmakingMode["DISABLED"] = "disabled";
8
9
  })(MatchmakingMode || (exports.MatchmakingMode = MatchmakingMode = {}));
@@ -1,5 +1,6 @@
1
1
  export declare enum ProviderType {
2
2
  PASSWORD = "password",
3
3
  GOOGLE = "google.com",
4
- FACEBOOK = "facebook.com"
4
+ FACEBOOK = "facebook.com",
5
+ APPLE = "apple.com"
5
6
  }
@@ -6,4 +6,5 @@ var ProviderType;
6
6
  ProviderType["PASSWORD"] = "password";
7
7
  ProviderType["GOOGLE"] = "google.com";
8
8
  ProviderType["FACEBOOK"] = "facebook.com";
9
+ ProviderType["APPLE"] = "apple.com";
9
10
  })(ProviderType || (exports.ProviderType = ProviderType = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "heartraite",
3
- "version": "1.0.97",
3
+ "version": "1.0.99",
4
4
  "description": "Heartraite npm package for common functionality",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -1,4 +1,5 @@
1
1
  export enum MatchmakingMode {
2
2
  ACTIVE = "active",
3
3
  PAUSED = "paused",
4
+ DISABLED = "disabled",
4
5
  }
@@ -2,4 +2,5 @@ export enum ProviderType {
2
2
  PASSWORD = "password",
3
3
  GOOGLE = "google.com",
4
4
  FACEBOOK = "facebook.com",
5
+ APPLE = "apple.com",
5
6
  }