need4deed-sdk 0.0.111 → 0.0.113

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,3 +1,7 @@
1
+ export interface ApiCommentTaggedPerson {
2
+ id: number;
3
+ readAt: Date | null;
4
+ }
1
5
  export interface ApiComment {
2
6
  id: number;
3
7
  content: string;
@@ -5,5 +9,5 @@ export interface ApiComment {
5
9
  entityType?: string;
6
10
  authorName: string;
7
11
  timestamp: Date;
8
- taggedPersonIds: number[];
12
+ taggedPersons: ApiCommentTaggedPerson[];
9
13
  }
@@ -135,6 +135,7 @@ export interface ApiOpportunityGetList {
135
135
  location: OptionById[];
136
136
  accompanyingDetails: ApiOpportunityAccompanyingDetails;
137
137
  agentTitle: string;
138
+ agentId: number;
138
139
  volunteerNames?: string[];
139
140
  }
140
141
  export interface ApiOpportunityGet extends ApiOpportunityGetList {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "need4deed-sdk",
3
- "version": "0.0.111",
3
+ "version": "0.0.113",
4
4
  "description": "Need4Deed.org SDK",
5
5
  "type": "commonjs",
6
6
  "main": "dist/index.js",