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;
|