need4deed-sdk 0.0.37 → 0.0.39
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.
|
@@ -5,8 +5,8 @@ export interface ApiAppreciationGet {
|
|
|
5
5
|
volunteerId: number;
|
|
6
6
|
opportunityId?: number;
|
|
7
7
|
title: VolunteerStateAppreciationType;
|
|
8
|
-
dateDue: Date;
|
|
9
|
-
dateDelivery?: Date;
|
|
8
|
+
dateDue: Date | null;
|
|
9
|
+
dateDelivery?: Date | null;
|
|
10
10
|
}
|
|
11
11
|
export interface ApiAppreciationPost extends Omit<ApiAppreciationGet, "id" | "userId" | "volunteerId"> {
|
|
12
12
|
}
|
|
@@ -107,13 +107,13 @@ export interface ApiVolunteerGetList {
|
|
|
107
107
|
export interface ApiVolunteerGet {
|
|
108
108
|
id: number;
|
|
109
109
|
person: ApiPersonGet;
|
|
110
|
-
status: VolunteerStateType;
|
|
111
110
|
statusEngagement: VolunteerStateEngagementType;
|
|
112
111
|
statusCommunication: VolunteerStateCommunicationType;
|
|
113
112
|
statusAppreciation: VolunteerStateAppreciationType;
|
|
114
113
|
statusType: VolunteerStateTypeType;
|
|
115
114
|
statusMatch: VolunteerStateMatchType;
|
|
116
115
|
statusCgcProcess: VolunteerStateCGCType;
|
|
116
|
+
dateReturn: Date | null;
|
|
117
117
|
preferredCommunicationType: VolunteerCommunicationType[];
|
|
118
118
|
createdAt: Date;
|
|
119
119
|
updatedAt: Date;
|