need4deed-sdk 0.0.72 → 0.0.74
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.
|
@@ -84,6 +84,7 @@ export interface OpportunityLegacyFormData {
|
|
|
84
84
|
activities: string[];
|
|
85
85
|
skills: string[];
|
|
86
86
|
timeslots?: [number, string][];
|
|
87
|
+
onetime_date_time?: string;
|
|
87
88
|
volunteers_number: number;
|
|
88
89
|
vo_information?: string;
|
|
89
90
|
category: string;
|
|
@@ -111,16 +112,16 @@ export interface ApiOpportunityGetList {
|
|
|
111
112
|
volunteerType: VolunteerStateTypeType;
|
|
112
113
|
statusOpportunity: OpportunityStatusType;
|
|
113
114
|
createdAt: Date;
|
|
115
|
+
activities: OptionById[];
|
|
116
|
+
languages: ApiLanguage[];
|
|
117
|
+
availability: ApiAvailability[];
|
|
114
118
|
}
|
|
115
119
|
export interface ApiOpportunityGet extends ApiOpportunityGetList {
|
|
116
120
|
createdAt: Date;
|
|
117
121
|
numberOfVolunteers: number;
|
|
118
122
|
description: string;
|
|
119
|
-
languages: ApiLanguage[];
|
|
120
|
-
activities: OptionById[];
|
|
121
123
|
skills: OptionById[];
|
|
122
124
|
location: OptionById[];
|
|
123
|
-
availability: ApiAvailability[];
|
|
124
125
|
comments: ApiComment[];
|
|
125
126
|
contact: ApiOpportunityContact;
|
|
126
127
|
agent: ApiOpportunityAgent;
|