need4deed-sdk 0.0.34 → 0.0.36

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.
@@ -9,7 +9,9 @@ export declare enum ContactMethodType {
9
9
  PHONE = "phone-number",
10
10
  TELEGRAM = "telegram",
11
11
  WHATSAPP = "whatsapp",
12
- SIGNAL = "signal"
12
+ SIGNAL = "signal",
13
+ SMS = "sms",
14
+ VOICENOTE = "voicenote"
13
15
  }
14
16
  export declare enum CommunicationType {
15
17
  BRIEF = "briefed",
@@ -29,3 +31,5 @@ export interface ApiCommunicationGet extends ApiVolunteerCommunicationPost {
29
31
  volunteerId: number;
30
32
  userId: number;
31
33
  }
34
+ export interface ApiVolunteerCommunicationPatch extends ApiVolunteerCommunicationPost {
35
+ }
@@ -15,6 +15,8 @@ var ContactMethodType;
15
15
  ContactMethodType["TELEGRAM"] = "telegram";
16
16
  ContactMethodType["WHATSAPP"] = "whatsapp";
17
17
  ContactMethodType["SIGNAL"] = "signal";
18
+ ContactMethodType["SMS"] = "sms";
19
+ ContactMethodType["VOICENOTE"] = "voicenote";
18
20
  })(ContactMethodType || (exports.ContactMethodType = ContactMethodType = {}));
19
21
  var CommunicationType;
20
22
  (function (CommunicationType) {
@@ -24,3 +26,4 @@ var CommunicationType;
24
26
  CommunicationType["STATUS_UPDATE"] = "status-update";
25
27
  CommunicationType["POST_FOLLOWUP"] = "post-match-followup";
26
28
  })(CommunicationType || (exports.CommunicationType = CommunicationType = {}));
29
+ ;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "need4deed-sdk",
3
- "version": "0.0.34",
3
+ "version": "0.0.36",
4
4
  "description": "Need4Deed.org SDK",
5
5
  "type": "commonjs",
6
6
  "main": "dist/index.js",