need4deed-sdk 0.0.73 → 0.0.75
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.
|
@@ -112,16 +112,16 @@ export interface ApiOpportunityGetList {
|
|
|
112
112
|
volunteerType: VolunteerStateTypeType;
|
|
113
113
|
statusOpportunity: OpportunityStatusType;
|
|
114
114
|
createdAt: Date;
|
|
115
|
+
activities: OptionById[];
|
|
116
|
+
languages: ApiLanguage[];
|
|
117
|
+
availability: ApiAvailability[];
|
|
115
118
|
}
|
|
116
119
|
export interface ApiOpportunityGet extends ApiOpportunityGetList {
|
|
117
120
|
createdAt: Date;
|
|
118
121
|
numberOfVolunteers: number;
|
|
119
122
|
description: string;
|
|
120
|
-
languages: ApiLanguage[];
|
|
121
|
-
activities: OptionById[];
|
|
122
123
|
skills: OptionById[];
|
|
123
124
|
location: OptionById[];
|
|
124
|
-
availability: ApiAvailability[];
|
|
125
125
|
comments: ApiComment[];
|
|
126
126
|
contact: ApiOpportunityContact;
|
|
127
127
|
agent: ApiOpportunityAgent;
|
package/dist/types/api/time.d.ts
CHANGED