@turndown/library 0.1.2 → 0.1.4

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.
@@ -3,7 +3,7 @@ export type TurndownObject<T = GenericTurndownObject> = Record<string, T> | T |
3
3
  export interface MetaData {
4
4
  createdAt: Date;
5
5
  updatedAt: Date;
6
- deletedAt: Date;
6
+ deletedAt?: Date;
7
7
  }
8
8
  export type ObjectValues<T> = T[keyof T];
9
9
  export type ObjectKeys<T> = [keyof T];
@@ -1,4 +1,4 @@
1
- import { MetaData, ObjectValues } from "@/types";
1
+ import { MetaData, ObjectValues } from "../index";
2
2
  export * from "./routes";
3
3
  declare const INVENTORY_RESTOCK_ORDER_STATUS: {
4
4
  readonly PENDING: "PENDING";
@@ -6,7 +6,7 @@ export interface User extends MetaData {
6
6
  mi?: string;
7
7
  username?: string;
8
8
  email: string;
9
- profilePhoto: string;
9
+ profilePhoto?: string;
10
10
  passwordHash?: string;
11
11
  signinAttempts?: number;
12
12
  locked?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@turndown/library",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "Shared TypeScript library for the Turndown suite.",
5
5
  "keywords": [
6
6
  "types",