need4deed-sdk 0.0.82 → 0.0.84

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.
@@ -1,8 +1,13 @@
1
+ import { OptionById } from "./common";
2
+ import { TranslatedIntoType } from "./opportunity";
1
3
  export interface ApiOpportunityAccompanyingDetails {
2
4
  appointmentAddress?: string;
3
5
  appointmentDate?: string;
4
6
  appointmentTime?: string;
5
7
  refugeeNumber?: string;
6
8
  refugeeName?: string;
7
- languageToTranslate?: number;
9
+ appointmentLanguage?: TranslatedIntoType;
10
+ refugeeLanguage?: OptionById[];
11
+ appointmentPostcode?: OptionById;
12
+ appointmentDistrict?: OptionById;
8
13
  }
@@ -132,6 +132,9 @@ export interface ApiVolunteerGet {
132
132
  updatedAt: Date;
133
133
  goodConductCertificate: DocumentStatusType;
134
134
  measlesVaccination: DocumentStatusType;
135
+ statusVaccinationDate: Date | null;
136
+ statusCGCApplicationDate: Date | null;
137
+ statusCGCDate: Date | null;
135
138
  infoAbout: string;
136
139
  infoExperience: string;
137
140
  timelineLogs: TimedText[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "need4deed-sdk",
3
- "version": "0.0.82",
3
+ "version": "0.0.84",
4
4
  "description": "Need4Deed.org SDK",
5
5
  "type": "commonjs",
6
6
  "main": "dist/index.js",