truflow 0.0.110 → 0.0.112

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.
@@ -0,0 +1 @@
1
+ export type IFetchAllmoxyAuthToken = (clientID: string, clientSecret: string) => Promise<string>;
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -29,6 +29,6 @@ export interface ILeanNotification {
29
29
  title: string;
30
30
  message: string;
31
31
  read: boolean;
32
- target?: mongoose.Types.ObjectId;
32
+ target: mongoose.Types.ObjectId;
33
33
  type: "error" | "warning" | "success" | "info";
34
34
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "truflow",
3
- "version": "0.0.110",
3
+ "version": "0.0.112",
4
4
  "main": "./dist/index.js",
5
5
  "license": "MIT",
6
6
  "scripts": {
@@ -0,0 +1,4 @@
1
+ export type IFetchAllmoxyAuthToken = (
2
+ clientID: string,
3
+ clientSecret: string
4
+ ) => Promise<string>;
@@ -6,6 +6,6 @@ export interface ILeanNotification {
6
6
  title: string;
7
7
  message: string;
8
8
  read: boolean;
9
- target?: mongoose.Types.ObjectId;
9
+ target: mongoose.Types.ObjectId;
10
10
  type: "error" | "warning" | "success" | "info";
11
11
  }