need4deed-sdk 0.0.76 → 0.0.78

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,5 +4,5 @@ export interface ApiOpportunityAccompanyingDetails {
4
4
  appointmentTime?: string;
5
5
  refugeeNumber?: string;
6
6
  refugeeName?: string;
7
- languageToTranslate?: string;
7
+ languageToTranslate?: number;
8
8
  }
@@ -24,6 +24,7 @@ export declare enum OpportunityStatusType {
24
24
  NEW = "opp-new",
25
25
  SEARCHING = "opp-searching",
26
26
  ACTIVE = "opp-active",
27
+ INACTIVE = "opp-inactive",
27
28
  PAST = "opp-past"
28
29
  }
29
30
  export declare enum OpportunityMatchStatus {
@@ -149,14 +150,7 @@ export type ApiOpportunityPatch = Partial<{
149
150
  address: string;
150
151
  district: string;
151
152
  };
152
- accompanyingDetails: {
153
- appointmentAddress: string;
154
- appointmentDate: string;
155
- appointmentTime: string;
156
- refugeeNumber: string;
157
- refugeeName: string;
158
- languagesToTranslate: number;
159
- };
153
+ accompanyingDetails: ApiOpportunityAccompanyingDetails;
160
154
  }>;
161
155
  export interface OpportunityVolunteer {
162
156
  id: number;
@@ -25,6 +25,7 @@ var OpportunityStatusType;
25
25
  OpportunityStatusType["NEW"] = "opp-new";
26
26
  OpportunityStatusType["SEARCHING"] = "opp-searching";
27
27
  OpportunityStatusType["ACTIVE"] = "opp-active";
28
+ OpportunityStatusType["INACTIVE"] = "opp-inactive";
28
29
  OpportunityStatusType["PAST"] = "opp-past";
29
30
  })(OpportunityStatusType || (exports.OpportunityStatusType = OpportunityStatusType = {}));
30
31
  var OpportunityMatchStatus;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "need4deed-sdk",
3
- "version": "0.0.76",
3
+ "version": "0.0.78",
4
4
  "description": "Need4Deed.org SDK",
5
5
  "type": "commonjs",
6
6
  "main": "dist/index.js",