http-request-manager 18.5.20 → 18.5.21
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.
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "http-request-manager",
|
|
3
|
-
"version": "18.5.
|
|
3
|
+
"version": "18.5.21",
|
|
4
4
|
"homepage": "https://wavecoders.ca",
|
|
5
5
|
"author": "Mike Bonifacio <wavecoders@gmail.com> (http://wavecoders@gmail.com/)",
|
|
6
6
|
"description": "This is an Angular Module containing Components/Services using Material",
|
|
@@ -215,18 +215,18 @@ declare class ChannelInfo implements ChannelInfoInterface {
|
|
|
215
215
|
}
|
|
216
216
|
|
|
217
217
|
interface WSUserInterface {
|
|
218
|
-
|
|
218
|
+
id: string;
|
|
219
219
|
ldap?: string;
|
|
220
220
|
name?: string;
|
|
221
221
|
email?: string;
|
|
222
222
|
[key: string]: any;
|
|
223
223
|
}
|
|
224
224
|
declare class WSUser implements WSUserInterface {
|
|
225
|
-
|
|
225
|
+
id: string;
|
|
226
226
|
ldap: string;
|
|
227
227
|
name: string;
|
|
228
228
|
email: string;
|
|
229
|
-
constructor(
|
|
229
|
+
constructor(id?: string, ldap?: string, name?: string, email?: string);
|
|
230
230
|
static adapt(item?: any): WSUser;
|
|
231
231
|
}
|
|
232
232
|
|
|
Binary file
|