hevy-shared 1.0.785 → 1.0.787

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/built/index.d.ts CHANGED
@@ -1,7 +1,6 @@
1
1
  import { Lookup } from './typeUtils';
2
2
  export * from './constants';
3
3
  export * from './utils';
4
- export * from './auth';
5
4
  export * from './units';
6
5
  export * from './filterExercises';
7
6
  export * from './setIndicatorUtils';
package/built/index.js CHANGED
@@ -19,7 +19,6 @@ exports.isSuggestedUserSource = exports.isValidUserWorkoutMetricsType = exports.
19
19
  const typeUtils_1 = require("./typeUtils");
20
20
  __exportStar(require("./constants"), exports);
21
21
  __exportStar(require("./utils"), exports);
22
- __exportStar(require("./auth"), exports);
23
22
  __exportStar(require("./units"), exports);
24
23
  __exportStar(require("./filterExercises"), exports);
25
24
  __exportStar(require("./setIndicatorUtils"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hevy-shared",
3
- "version": "1.0.785",
3
+ "version": "1.0.787",
4
4
  "description": "",
5
5
  "main": "built/index.js",
6
6
  "types": "built/index.d.ts",
package/built/auth.d.ts DELETED
@@ -1,13 +0,0 @@
1
- export interface ClientAuthToken {
2
- access_token: string;
3
- refresh_token: string;
4
- expires_at: Date;
5
- }
6
- export interface ClientRefreshTokenRequest {
7
- refresh_token: string;
8
- }
9
- export interface ClientAuthTokenResponse {
10
- access_token: string;
11
- refresh_token: string;
12
- expires_at: string;
13
- }
package/built/auth.js DELETED
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });