revdev 0.232.0 → 0.233.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.
@@ -22,3 +22,6 @@ export declare enum EntryStatus {
22
22
  Rejected = 2,
23
23
  Pending = 3
24
24
  }
25
+ export declare enum SocialProvider {
26
+ Google = "google"
27
+ }
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.EntryStatus = exports.QuizMode = exports.UserReaction = exports.WordMode = exports.Knowing = void 0;
3
+ exports.SocialProvider = exports.EntryStatus = exports.QuizMode = exports.UserReaction = exports.WordMode = exports.Knowing = void 0;
4
4
  var Knowing;
5
5
  (function (Knowing) {
6
6
  Knowing[Knowing["Known"] = 1] = "Known";
@@ -31,3 +31,7 @@ var EntryStatus;
31
31
  EntryStatus[EntryStatus["Rejected"] = 2] = "Rejected";
32
32
  EntryStatus[EntryStatus["Pending"] = 3] = "Pending";
33
33
  })(EntryStatus = exports.EntryStatus || (exports.EntryStatus = {}));
34
+ var SocialProvider;
35
+ (function (SocialProvider) {
36
+ SocialProvider["Google"] = "google";
37
+ })(SocialProvider = exports.SocialProvider || (exports.SocialProvider = {}));
@@ -21,3 +21,6 @@ export interface ReactionRequest {
21
21
  export interface PinRequest {
22
22
  pin: boolean;
23
23
  }
24
+ export interface TokenRequest {
25
+ token: string;
26
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "revdev",
3
- "version": "0.232.0",
3
+ "version": "0.233.0",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",