meemup-library 1.1.55 → 1.1.56

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.
@@ -7,3 +7,4 @@ export default interface IAddStaff {
7
7
  roleId: number;
8
8
  lockoutTimeout: number;
9
9
  }
10
+ export declare const initStaff: IAddStaff;
@@ -1 +1,9 @@
1
- export {};
1
+ export const initStaff = {
2
+ firstName: "",
3
+ lastName: "",
4
+ phone: "",
5
+ email: "",
6
+ pinCode: "",
7
+ roleId: 1,
8
+ lockoutTimeout: 120
9
+ };
@@ -0,0 +1,5 @@
1
+ import ITable from "../ITable";
2
+ import IStaffRow from "./IStaffRow";
3
+ export default interface ITableStaff extends ITable {
4
+ data: IStaffRow[];
5
+ }
@@ -0,0 +1 @@
1
+ export {};
@@ -2,3 +2,4 @@ export default interface IAddStaffRole {
2
2
  name: string;
3
3
  permittedActions: number[];
4
4
  }
5
+ export declare const initStaffRole: IAddStaffRole;
@@ -1 +1,4 @@
1
- export {};
1
+ export const initStaffRole = {
2
+ name: "",
3
+ permittedActions: []
4
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meemup-library",
3
- "version": "1.1.55",
3
+ "version": "1.1.56",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",