resurgence-data 1.0.12 → 1.0.13

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,9 +1,12 @@
1
1
  export interface InviteCreateModel {
2
2
  userId: string;
3
3
  emailAddress: string;
4
+ firstName: string;
5
+ lastName: string;
4
6
  billerId: string;
5
7
  token: string;
6
8
  status?: string;
9
+ role: string;
7
10
  }
8
11
  export interface InviteUpdateModel extends InviteCreateModel {
9
12
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "resurgence-data",
3
- "version": "1.0.12",
3
+ "version": "1.0.13",
4
4
  "description": "DTOs and shareable resources",
5
5
  "module": "dist/index.js",
6
6
  "main": "dist/index.js",