@hedia/types 2.1.47-alpha.2 → 2.1.47

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,10 +1,10 @@
1
1
  import { Logbook } from "../../logbook/logbook";
2
2
  export declare namespace LogbookEvents {
3
- interface CreateLogbook {
3
+ interface ICreateLogbook {
4
4
  logbook: Logbook.Types.ILogbookEntry;
5
5
  userId: number;
6
6
  }
7
- interface DeleteLogbook {
7
+ interface IDeleteLogbook {
8
8
  uuid: string;
9
9
  userId: number;
10
10
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hedia/types",
3
- "version": "2.1.47-alpha.2",
3
+ "version": "2.1.47",
4
4
  "description": "Enums, interfaces, and other common types for use in Hedia's software.",
5
5
  "main": "dist/index.js",
6
6
  "repository": {
@@ -1,11 +1,11 @@
1
1
  import { Logbook } from "../../logbook/logbook";
2
2
 
3
3
  export namespace LogbookEvents {
4
- export interface CreateLogbook {
4
+ export interface ICreateLogbook {
5
5
  logbook: Logbook.Types.ILogbookEntry;
6
6
  userId: number;
7
7
  }
8
- export interface DeleteLogbook {
8
+ export interface IDeleteLogbook {
9
9
  uuid: string;
10
10
  userId: number;
11
11
  }