meemup-library 1.1.72 → 1.1.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.
@@ -3,3 +3,4 @@ export default interface IStaff extends IAddStaff {
3
3
  id: number;
4
4
  disabled: boolean;
5
5
  }
6
+ export declare const initStaff: IStaff;
@@ -1 +1,11 @@
1
- export {};
1
+ export const initStaff = {
2
+ id: -1,
3
+ disabled: false,
4
+ firstName: "",
5
+ lastName: "",
6
+ phone: "",
7
+ email: "",
8
+ pinCode: "",
9
+ roleId: 1,
10
+ lockoutTimeout: 120
11
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meemup-library",
3
- "version": "1.1.72",
3
+ "version": "1.1.73",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",