need4deed-sdk 0.0.79 → 0.0.81
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.
|
@@ -27,13 +27,15 @@ export declare enum OpportunityStatusType {
|
|
|
27
27
|
INACTIVE = "opp-inactive",
|
|
28
28
|
PAST = "opp-past"
|
|
29
29
|
}
|
|
30
|
-
export declare enum OpportunityMatchStatus {
|
|
31
|
-
PENDING_MATCH = "opp-pending-match",
|
|
32
|
-
MATCHED = "opp-matched",
|
|
33
|
-
NEEDS_REMATCH = "opp-needs-rematch",
|
|
34
|
-
UNMATCHED = "opp-unmatched"
|
|
35
|
-
}
|
|
36
30
|
export declare enum OpportunityMatchStatusType {
|
|
31
|
+
PENDING_MATCH = "opp-vol-pending-match",
|
|
32
|
+
NO_MATCHES = "opp-vol-no-matches",
|
|
33
|
+
MATCHED = "opp-vol-matched",
|
|
34
|
+
NEEDS_REMATCH = "opp-vol-needs-rematch",
|
|
35
|
+
UNMATCHED = "opp-vol-unmatched",
|
|
36
|
+
PAST = "opp-vol-past"
|
|
37
|
+
}
|
|
38
|
+
export declare enum OpportunityMatchStatus {
|
|
37
39
|
NO_MATCHES = "vol-no-matches",
|
|
38
40
|
PENDING_MATCH = "vol-pending-match",
|
|
39
41
|
MATCHED = "vol-matched",
|
|
@@ -123,6 +125,7 @@ export interface ApiOpportunityGetList {
|
|
|
123
125
|
activities: OptionById[];
|
|
124
126
|
languages: ApiLanguage[];
|
|
125
127
|
availability: ApiAvailability[];
|
|
128
|
+
location: OptionById[];
|
|
126
129
|
accompanyingDetails: ApiOpportunityAccompanyingDetails;
|
|
127
130
|
}
|
|
128
131
|
export interface ApiOpportunityGet extends ApiOpportunityGetList {
|
|
@@ -130,7 +133,6 @@ export interface ApiOpportunityGet extends ApiOpportunityGetList {
|
|
|
130
133
|
numberOfVolunteers: number;
|
|
131
134
|
description: string;
|
|
132
135
|
skills: OptionById[];
|
|
133
|
-
location: OptionById[];
|
|
134
136
|
comments: ApiComment[];
|
|
135
137
|
contact: ApiOpportunityContact;
|
|
136
138
|
agent: ApiOpportunityAgent;
|
|
@@ -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.
|
|
14
|
+
exports.OpportunityVolunteerStatusType = exports.OpportunityMatchStatus = exports.OpportunityMatchStatusType = 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;
|
|
@@ -28,20 +28,22 @@ var OpportunityStatusType;
|
|
|
28
28
|
OpportunityStatusType["INACTIVE"] = "opp-inactive";
|
|
29
29
|
OpportunityStatusType["PAST"] = "opp-past";
|
|
30
30
|
})(OpportunityStatusType || (exports.OpportunityStatusType = OpportunityStatusType = {}));
|
|
31
|
-
var OpportunityMatchStatus;
|
|
32
|
-
(function (OpportunityMatchStatus) {
|
|
33
|
-
OpportunityMatchStatus["PENDING_MATCH"] = "opp-pending-match";
|
|
34
|
-
OpportunityMatchStatus["MATCHED"] = "opp-matched";
|
|
35
|
-
OpportunityMatchStatus["NEEDS_REMATCH"] = "opp-needs-rematch";
|
|
36
|
-
OpportunityMatchStatus["UNMATCHED"] = "opp-unmatched";
|
|
37
|
-
})(OpportunityMatchStatus || (exports.OpportunityMatchStatus = OpportunityMatchStatus = {}));
|
|
38
31
|
var OpportunityMatchStatusType;
|
|
39
32
|
(function (OpportunityMatchStatusType) {
|
|
40
|
-
OpportunityMatchStatusType["
|
|
41
|
-
OpportunityMatchStatusType["
|
|
42
|
-
OpportunityMatchStatusType["MATCHED"] = "vol-matched";
|
|
43
|
-
OpportunityMatchStatusType["
|
|
33
|
+
OpportunityMatchStatusType["PENDING_MATCH"] = "opp-vol-pending-match";
|
|
34
|
+
OpportunityMatchStatusType["NO_MATCHES"] = "opp-vol-no-matches";
|
|
35
|
+
OpportunityMatchStatusType["MATCHED"] = "opp-vol-matched";
|
|
36
|
+
OpportunityMatchStatusType["NEEDS_REMATCH"] = "opp-vol-needs-rematch";
|
|
37
|
+
OpportunityMatchStatusType["UNMATCHED"] = "opp-vol-unmatched";
|
|
38
|
+
OpportunityMatchStatusType["PAST"] = "opp-vol-past";
|
|
44
39
|
})(OpportunityMatchStatusType || (exports.OpportunityMatchStatusType = OpportunityMatchStatusType = {}));
|
|
40
|
+
var OpportunityMatchStatus;
|
|
41
|
+
(function (OpportunityMatchStatus) {
|
|
42
|
+
OpportunityMatchStatus["NO_MATCHES"] = "vol-no-matches";
|
|
43
|
+
OpportunityMatchStatus["PENDING_MATCH"] = "vol-pending-match";
|
|
44
|
+
OpportunityMatchStatus["MATCHED"] = "vol-matched";
|
|
45
|
+
OpportunityMatchStatus["PAST"] = "vol-past";
|
|
46
|
+
})(OpportunityMatchStatus || (exports.OpportunityMatchStatus = OpportunityMatchStatus = {}));
|
|
45
47
|
var OpportunityVolunteerStatusType;
|
|
46
48
|
(function (OpportunityVolunteerStatusType) {
|
|
47
49
|
OpportunityVolunteerStatusType["PENDING"] = "opp-pending";
|