need4deed-sdk 0.0.78 → 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.
|
@@ -33,6 +33,12 @@ export declare enum OpportunityMatchStatus {
|
|
|
33
33
|
NEEDS_REMATCH = "opp-needs-rematch",
|
|
34
34
|
UNMATCHED = "opp-unmatched"
|
|
35
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
|
+
}
|
|
36
42
|
export declare enum OpportunityVolunteerStatusType {
|
|
37
43
|
PENDING = "opp-pending",
|
|
38
44
|
MATCHED = "opp-matched",
|
|
@@ -112,6 +118,7 @@ export interface ApiOpportunityGetList {
|
|
|
112
118
|
category: OptionById;
|
|
113
119
|
volunteerType: VolunteerStateTypeType;
|
|
114
120
|
statusOpportunity: OpportunityStatusType;
|
|
121
|
+
statusMatch: OpportunityMatchStatusType;
|
|
115
122
|
createdAt: Date;
|
|
116
123
|
activities: OptionById[];
|
|
117
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;
|
|
@@ -35,6 +35,13 @@ var OpportunityMatchStatus;
|
|
|
35
35
|
OpportunityMatchStatus["NEEDS_REMATCH"] = "opp-needs-rematch";
|
|
36
36
|
OpportunityMatchStatus["UNMATCHED"] = "opp-unmatched";
|
|
37
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 = {}));
|
|
38
45
|
var OpportunityVolunteerStatusType;
|
|
39
46
|
(function (OpportunityVolunteerStatusType) {
|
|
40
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