@hy-capital/api-habit-tracker-types 1.0.71 → 1.0.73

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/dist/config.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const appName = "Liora";
1
+ export declare const appName = "LifeFix";
package/dist/config.js CHANGED
@@ -1,4 +1,4 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.appName = void 0;
4
- exports.appName = 'Liora';
4
+ exports.appName = 'LifeFix';
package/dist/quote.d.ts CHANGED
@@ -3,7 +3,7 @@ import { IdAndTimeStamps } from './common';
3
3
  export interface BaseQuote {
4
4
  text: string;
5
5
  author: string;
6
- avatar_url: string | null;
6
+ avatar_url: string;
7
7
  topic_type: TopicType;
8
8
  }
9
9
  export interface DbQuote extends BaseQuote, IdAndTimeStamps {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hy-capital/api-habit-tracker-types",
3
- "version": "1.0.71",
3
+ "version": "1.0.73",
4
4
  "main": "dist/index.js",
5
5
  "license": "MIT",
6
6
  "types": "dist/index.d.ts",
package/src/config.ts CHANGED
@@ -1 +1 @@
1
- export const appName = 'Liora';
1
+ export const appName = 'LifeFix';
package/src/quote.ts CHANGED
@@ -4,7 +4,7 @@ import {IdAndTimeStamps} from './common';
4
4
  export interface BaseQuote {
5
5
  text: string;
6
6
  author: string;
7
- avatar_url: string | null;
7
+ avatar_url: string;
8
8
  topic_type: TopicType;
9
9
  }
10
10