@placeos/ts-client 4.8.1 → 4.8.3
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.
- package/dist/domains/functions.d.ts +3 -4
- package/dist/index.cjs.js +2 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +207 -207
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +2 -2
- package/dist/index.umd.js.map +1 -1
- package/dist/signage/interfaces.d.ts +4 -0
- package/package.json +1 -1
- package/src/domains/functions.ts +3 -4
- package/src/signage/interfaces.ts +6 -1
|
@@ -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
|
|
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<
|
|
37
|
+
export declare function lookupDomainByEmail(email: string): Observable<string>;
|