need4deed-sdk 0.0.77 → 0.0.79

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.
@@ -24,6 +24,7 @@ export declare enum OpportunityStatusType {
24
24
  NEW = "opp-new",
25
25
  SEARCHING = "opp-searching",
26
26
  ACTIVE = "opp-active",
27
+ INACTIVE = "opp-inactive",
27
28
  PAST = "opp-past"
28
29
  }
29
30
  export declare enum OpportunityMatchStatus {
@@ -32,6 +33,12 @@ export declare enum OpportunityMatchStatus {
32
33
  NEEDS_REMATCH = "opp-needs-rematch",
33
34
  UNMATCHED = "opp-unmatched"
34
35
  }
36
+ export declare enum OpportunityMatchStatusType {
37
+ NO_MATCHES = "vol-no-matches",
38
+ PENDING_MATCH = "vol-pending-match",
39
+ MATCHED = "vol-matched",
40
+ PAST = "vol-past"
41
+ }
35
42
  export declare enum OpportunityVolunteerStatusType {
36
43
  PENDING = "opp-pending",
37
44
  MATCHED = "opp-matched",
@@ -111,6 +118,7 @@ export interface ApiOpportunityGetList {
111
118
  category: OptionById;
112
119
  volunteerType: VolunteerStateTypeType;
113
120
  statusOpportunity: OpportunityStatusType;
121
+ statusMatch: OpportunityMatchStatusType;
114
122
  createdAt: Date;
115
123
  activities: OptionById[];
116
124
  languages: ApiLanguage[];
@@ -11,7 +11,7 @@ var __rest = (this && this.__rest) || function (s, e) {
11
11
  return t;
12
12
  };
13
13
  Object.defineProperty(exports, "__esModule", { value: true });
14
- exports.OpportunityVolunteerStatusType = exports.OpportunityMatchStatus = exports.OpportunityStatusType = exports.TranslatedIntoType = exports.OpportunityType = exports.REGULAR_ACCOMPANYING = void 0;
14
+ exports.OpportunityVolunteerStatusType = exports.OpportunityMatchStatusType = exports.OpportunityMatchStatus = exports.OpportunityStatusType = exports.TranslatedIntoType = exports.OpportunityType = exports.REGULAR_ACCOMPANYING = void 0;
15
15
  const profile_1 = require("./profile");
16
16
  exports.REGULAR_ACCOMPANYING = profile_1.ProfileVolunteeringType.REGULAR_ACCOMPANYING, exports.OpportunityType = __rest(profile_1.ProfileVolunteeringType, ["REGULAR_ACCOMPANYING"]);
17
17
  var TranslatedIntoType;
@@ -25,6 +25,7 @@ var OpportunityStatusType;
25
25
  OpportunityStatusType["NEW"] = "opp-new";
26
26
  OpportunityStatusType["SEARCHING"] = "opp-searching";
27
27
  OpportunityStatusType["ACTIVE"] = "opp-active";
28
+ OpportunityStatusType["INACTIVE"] = "opp-inactive";
28
29
  OpportunityStatusType["PAST"] = "opp-past";
29
30
  })(OpportunityStatusType || (exports.OpportunityStatusType = OpportunityStatusType = {}));
30
31
  var OpportunityMatchStatus;
@@ -34,6 +35,13 @@ var OpportunityMatchStatus;
34
35
  OpportunityMatchStatus["NEEDS_REMATCH"] = "opp-needs-rematch";
35
36
  OpportunityMatchStatus["UNMATCHED"] = "opp-unmatched";
36
37
  })(OpportunityMatchStatus || (exports.OpportunityMatchStatus = OpportunityMatchStatus = {}));
38
+ var OpportunityMatchStatusType;
39
+ (function (OpportunityMatchStatusType) {
40
+ OpportunityMatchStatusType["NO_MATCHES"] = "vol-no-matches";
41
+ OpportunityMatchStatusType["PENDING_MATCH"] = "vol-pending-match";
42
+ OpportunityMatchStatusType["MATCHED"] = "vol-matched";
43
+ OpportunityMatchStatusType["PAST"] = "vol-past";
44
+ })(OpportunityMatchStatusType || (exports.OpportunityMatchStatusType = OpportunityMatchStatusType = {}));
37
45
  var OpportunityVolunteerStatusType;
38
46
  (function (OpportunityVolunteerStatusType) {
39
47
  OpportunityVolunteerStatusType["PENDING"] = "opp-pending";
@@ -100,7 +100,8 @@ export declare enum VolunteerStateMatchType {
100
100
  NO_MATCHES = "vol-no-matches",
101
101
  PENDING_MATCH = "vol-pending-match",
102
102
  MATCHED = "vol-matched",
103
- NEEDS_REMATCH = "vol-needs-rematch"
103
+ NEEDS_REMATCH = "vol-needs-rematch",
104
+ PAST = "vol-past"
104
105
  }
105
106
  export declare const VolunteerCommunicationType: typeof PreferredCommunicationType;
106
107
  export type VolunteerCommunicationType = PreferredCommunicationType;
@@ -50,5 +50,6 @@ var VolunteerStateMatchType;
50
50
  VolunteerStateMatchType["PENDING_MATCH"] = "vol-pending-match";
51
51
  VolunteerStateMatchType["MATCHED"] = "vol-matched";
52
52
  VolunteerStateMatchType["NEEDS_REMATCH"] = "vol-needs-rematch";
53
+ VolunteerStateMatchType["PAST"] = "vol-past";
53
54
  })(VolunteerStateMatchType || (exports.VolunteerStateMatchType = VolunteerStateMatchType = {}));
54
55
  exports.VolunteerCommunicationType = person_1.PreferredCommunicationType;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "need4deed-sdk",
3
- "version": "0.0.77",
3
+ "version": "0.0.79",
4
4
  "description": "Need4Deed.org SDK",
5
5
  "type": "commonjs",
6
6
  "main": "dist/index.js",
@@ -1,5 +0,0 @@
1
- export interface ApiAddressGet {
2
- street: string;
3
- city: string;
4
- postcode: string;
5
- }
@@ -1,2 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });