@flashbacktech/flashbackclient 0.1.15 → 0.1.17

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.
@@ -5,4 +5,5 @@ import * as StatsTypes from './types/stats';
5
5
  import * as ApiInterfaces from './interfaces';
6
6
  import * as BridgeTypes from './types/bridge';
7
7
  import * as EmailTypes from './types/email';
8
- export { ApiClient, ApiTypes, AuthTypes, StatsTypes, ApiInterfaces, HttpError, BridgeTypes, EmailTypes };
8
+ import * as QuotaTypes from './types/quota';
9
+ export { ApiClient, ApiTypes, AuthTypes, StatsTypes, ApiInterfaces, HttpError, BridgeTypes, EmailTypes, QuotaTypes };
package/dist/api/index.js CHANGED
@@ -33,7 +33,7 @@ var __importStar = (this && this.__importStar) || (function () {
33
33
  };
34
34
  })();
35
35
  Object.defineProperty(exports, "__esModule", { value: true });
36
- exports.EmailTypes = exports.BridgeTypes = exports.HttpError = exports.ApiInterfaces = exports.StatsTypes = exports.AuthTypes = exports.ApiTypes = exports.ApiClient = void 0;
36
+ exports.QuotaTypes = exports.EmailTypes = exports.BridgeTypes = exports.HttpError = exports.ApiInterfaces = exports.StatsTypes = exports.AuthTypes = exports.ApiTypes = exports.ApiClient = void 0;
37
37
  const client_1 = require("./client");
38
38
  Object.defineProperty(exports, "ApiClient", { enumerable: true, get: function () { return client_1.ApiClient; } });
39
39
  Object.defineProperty(exports, "HttpError", { enumerable: true, get: function () { return client_1.HttpError; } });
@@ -49,3 +49,5 @@ const BridgeTypes = __importStar(require("./types/bridge"));
49
49
  exports.BridgeTypes = BridgeTypes;
50
50
  const EmailTypes = __importStar(require("./types/email"));
51
51
  exports.EmailTypes = EmailTypes;
52
+ const QuotaTypes = __importStar(require("./types/quota"));
53
+ exports.QuotaTypes = QuotaTypes;
@@ -39,8 +39,8 @@ export interface RegisterBody {
39
39
  email: string;
40
40
  password: string;
41
41
  companyName: string;
42
- companyDomain: string;
43
- companyWebsite: string;
42
+ companyWebsite?: string;
43
+ isBusiness: boolean;
44
44
  }
45
45
  export interface LoginBody {
46
46
  email: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flashbacktech/flashbackclient",
3
- "version": "0.1.15",
3
+ "version": "0.1.17",
4
4
  "type": "commonjs",
5
5
  "publishConfig": {
6
6
  "access": "public"