chelys 2.7.3 → 2.7.4

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.
Files changed (2) hide show
  1. package/dist/invite.d.ts +12 -5
  2. package/package.json +1 -1
package/dist/invite.d.ts CHANGED
@@ -4,21 +4,28 @@ export interface Invite {
4
4
  createdBy: string;
5
5
  date: string;
6
6
  }
7
+ export interface NewAccount {
8
+ uid: string;
9
+ displayName: string;
10
+ email: string;
11
+ photoURL: string;
12
+ }
7
13
  export interface InvReqNew {
8
14
  }
15
+ export interface InvReqDelete {
16
+ id: string;
17
+ }
9
18
  export interface InvReqGetAll {
10
19
  }
11
- export interface InvRefCheck {
20
+ export interface InvReqCheck {
12
21
  id: string;
22
+ account: NewAccount;
13
23
  }
14
- export interface InvReqDelete {
15
- id: string;
24
+ export interface InvReqUnsubscribe {
16
25
  }
17
26
  export interface InvResCheck {
18
27
  status: ResponseStatus;
19
28
  }
20
- export interface InvResUnsubscribe {
21
- }
22
29
  export interface InvResUpdate {
23
30
  status: "added" | "modified" | "removed";
24
31
  invite: Invite;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chelys",
3
- "version": "2.7.3",
3
+ "version": "2.7.4",
4
4
  "description": "Common code between Yatga and Kalimba",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {