@placeos/ts-client 4.8.1 → 4.8.2

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,6 +1,5 @@
1
1
  import { Observable } from 'rxjs';
2
2
  import { PlaceResourceQueryOptions } from '../resources/interface';
3
- import { HashMap } from '../utilities/types';
4
3
  import { PlaceDomain } from './domain';
5
4
  /**
6
5
  * Query the available domains
@@ -30,9 +29,9 @@ export declare function addDomain(form_data: Partial<PlaceDomain>): Observable<P
30
29
  * Remove a domain from the database
31
30
  * @param id ID of the domain
32
31
  */
33
- export declare function removeDomain(id: string): Observable<HashMap<any>>;
32
+ export declare function removeDomain(id: string): Observable<import('../utilities/types').HashMap<any>>;
34
33
  /**
35
- * Find the domain name by looking into domain registered email domains
34
+ * Find the domain associated with a user's email address
36
35
  * @param email Email address to lookup
37
36
  */
38
- export declare function lookupDomainByEmail(email: string): Observable<PlaceDomain>;
37
+ export declare function lookupDomainByEmail(email: string): Observable<string>;