@turndown/library 0.1.1 → 0.1.3

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.
@@ -1,4 +1,4 @@
1
- import { FilterCondition, SortCondition, TurndownObject } from "@/types/base";
1
+ import { FilterCondition, SortCondition, TurndownObject } from "../../index";
2
2
  export interface Version {
3
3
  major: number;
4
4
  minor: number;
@@ -1,4 +1,4 @@
1
- import { TurndownObject } from "@/types/base";
1
+ import { TurndownObject } from "../../index";
2
2
  /**
3
3
  * Convert a string to "Normal Case":
4
4
  * - Inserts spaces between camel/pascal case boundaries
@@ -1,4 +1,4 @@
1
- import { MetaData } from "@/types";
1
+ import { MetaData } from "../index";
2
2
  export * from "./routes";
3
3
  export interface ChecklistTemplate extends MetaData {
4
4
  id: string;
@@ -1,4 +1,4 @@
1
- import { MetaData, ObjectValues, USStateCodeType } from "@/types";
1
+ import { MetaData, ObjectValues, USStateCodeType } from "../index";
2
2
  export * from "./routes";
3
3
  export interface Company extends MetaData {
4
4
  id: string;
@@ -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";
@@ -1,4 +1,4 @@
1
- import { MetaData, ObjectValues, USStateCodeType } from "@/types";
1
+ import { MetaData, ObjectValues, USStateCodeType } from "../index";
2
2
  export * from "./routes";
3
3
  declare const PROPERTY_TYPES: {
4
4
  readonly HOUSE: "House";
@@ -1,4 +1,4 @@
1
- import { MetaData } from "@/types";
1
+ import { MetaData } from "../index";
2
2
  export * from "./routes";
3
3
  export interface Room extends MetaData {
4
4
  id: string;
@@ -1,4 +1,4 @@
1
- import { MetaData } from "@/types";
1
+ import { MetaData } from "../index";
2
2
  import { ChecklistTemplateItem } from "../checklist-template";
3
3
  export * from "./routes";
4
4
  export interface RoomChecklist extends MetaData {
@@ -1,4 +1,4 @@
1
- import { MetaData, ObjectValues } from "@/types";
1
+ import { MetaData, ObjectValues } from "../index";
2
2
  export interface User extends MetaData {
3
3
  id: string;
4
4
  firstName: string;
@@ -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.1",
3
+ "version": "0.1.3",
4
4
  "description": "Shared TypeScript library for the Turndown suite.",
5
5
  "keywords": [
6
6
  "types",