need4deed-sdk 0.0.128 → 0.0.130

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.
@@ -74,6 +74,15 @@ export type ApiRepresentativePatch = ApiPersonPatch & {
74
74
  role?: AgentRoleType;
75
75
  agentId?: number;
76
76
  };
77
+ export interface ApiAgentContactPost {
78
+ firstName: string;
79
+ lastName: string;
80
+ role: AgentRoleType;
81
+ email?: string;
82
+ phone?: string;
83
+ addressStreet?: string;
84
+ addressPostcode?: string;
85
+ }
77
86
  interface AgentGetList {
78
87
  id: number;
79
88
  title: string;
@@ -91,6 +100,7 @@ interface AgentGet extends AgentGetList {
91
100
  updatedAt: Date;
92
101
  operator: string;
93
102
  representative: ApiRepresentativeGet;
103
+ contacts: ApiAgentMembership[];
94
104
  serviceType: AgentServiceType[];
95
105
  statusEngagement: AgentEngagementStatusType;
96
106
  agentDetails: AgentDetails;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "need4deed-sdk",
3
- "version": "0.0.128",
3
+ "version": "0.0.130",
4
4
  "description": "Need4Deed.org SDK",
5
5
  "type": "commonjs",
6
6
  "main": "dist/index.js",