need4deed-sdk 0.0.104 → 0.0.105

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.
@@ -140,6 +140,11 @@ export interface ApiAgentTitleConflict {
140
140
  conflict: "title";
141
141
  agentId: number;
142
142
  }
143
+ export interface ApiAgentAddressConflict {
144
+ conflict: "address";
145
+ agentId: number;
146
+ }
147
+ export type ApiAgentRegisterConflict = ApiAgentTitleConflict | ApiAgentAddressConflict;
143
148
  export interface ApiAgentMembership {
144
149
  id: number;
145
150
  agentId: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "need4deed-sdk",
3
- "version": "0.0.104",
3
+ "version": "0.0.105",
4
4
  "description": "Need4Deed.org SDK",
5
5
  "type": "commonjs",
6
6
  "main": "dist/index.js",