need4deed-sdk 0.0.26 → 0.0.28
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.
|
@@ -4,7 +4,7 @@ import { ApiLanguage } from "./language";
|
|
|
4
4
|
import { ApiOpportunityGetList } from "./opportunity";
|
|
5
5
|
import { OptionItem } from "./option";
|
|
6
6
|
import { ApiPersonGet } from "./person";
|
|
7
|
-
import {
|
|
7
|
+
import { ApiAvailability, TimedText } from "./time";
|
|
8
8
|
export interface Volunteer {
|
|
9
9
|
origin_opportunity: number | undefined;
|
|
10
10
|
full_name: string;
|
|
@@ -62,7 +62,8 @@ export declare enum VolunteerStateAppreciationType {
|
|
|
62
62
|
export declare enum VolunteerStateTypeType {
|
|
63
63
|
ACCOMPANYING = "accompanying",
|
|
64
64
|
REGULAR = "regular",
|
|
65
|
-
EVENTS = "events"
|
|
65
|
+
EVENTS = "events",
|
|
66
|
+
REGULAR_ACCOMPANYING = "regular-accompanying"
|
|
66
67
|
}
|
|
67
68
|
export declare enum VolunteerStateCGCType {
|
|
68
69
|
UPLOADED = "uploaded",
|
|
@@ -98,7 +99,7 @@ export interface ApiVolunteerGetList {
|
|
|
98
99
|
name: string;
|
|
99
100
|
avatarUrl: string;
|
|
100
101
|
languages: ApiLanguage[];
|
|
101
|
-
availability:
|
|
102
|
+
availability: ApiAvailability[];
|
|
102
103
|
activities: OptionItem[];
|
|
103
104
|
skills: OptionItem[];
|
|
104
105
|
locations: OptionItem[];
|
|
@@ -126,7 +127,7 @@ export interface ApiVolunteerGet {
|
|
|
126
127
|
opportunitiesApplied: OptionItem[];
|
|
127
128
|
opportunitiesMatched: OptionItem[];
|
|
128
129
|
languages: ApiLanguage[];
|
|
129
|
-
availability:
|
|
130
|
+
availability: ApiAvailability[];
|
|
130
131
|
activities: OptionItem[];
|
|
131
132
|
skills: OptionItem[];
|
|
132
133
|
locations: OptionItem[];
|
|
@@ -29,6 +29,7 @@ var VolunteerStateTypeType;
|
|
|
29
29
|
VolunteerStateTypeType["ACCOMPANYING"] = "accompanying";
|
|
30
30
|
VolunteerStateTypeType["REGULAR"] = "regular";
|
|
31
31
|
VolunteerStateTypeType["EVENTS"] = "events";
|
|
32
|
+
VolunteerStateTypeType["REGULAR_ACCOMPANYING"] = "regular-accompanying";
|
|
32
33
|
})(VolunteerStateTypeType || (exports.VolunteerStateTypeType = VolunteerStateTypeType = {}));
|
|
33
34
|
var VolunteerStateCGCType;
|
|
34
35
|
(function (VolunteerStateCGCType) {
|