@webex/internal-plugin-dss 3.0.0-bnr.5 → 3.0.0-next.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,4 +0,0 @@
1
- declare const DSS: any;
2
- export default DSS;
3
-
4
- export { }
@@ -1,11 +0,0 @@
1
- // This file is read by tools that parse documentation comments conforming to the TSDoc standard.
2
- // It should be published with your NPM package. It should not be tracked by Git.
3
- {
4
- "tsdocVersion": "0.12",
5
- "toolPackages": [
6
- {
7
- "packageName": "@microsoft/api-extractor",
8
- "packageVersion": "7.34.4"
9
- }
10
- ]
11
- }
@@ -1,14 +0,0 @@
1
- export declare const DSS_REGISTERED = "dss:registered";
2
- export declare const DSS_UNREGISTERED = "dss:unregistered";
3
- export declare const DSS_LOOKUP_MERCURY_EVENT = "event:directory.lookup";
4
- export declare const DSS_SEARCH_MERCURY_EVENT = "event:directory.search";
5
- export declare const DSS_LOOKUP_RESULT = "dss:lookup.result";
6
- export declare const DSS_RESULT = "dss:result";
7
- export declare const DSS_SERVICE_NAME = "directorySearch";
8
- export declare const SEARCH_TYPES: {
9
- PERSON: string;
10
- CALLING_SERVICE: string;
11
- EXTERNAL_CALLING: string;
12
- ROOM: string;
13
- ROBOT: string;
14
- };
@@ -1,3 +0,0 @@
1
- import '@webex/internal-plugin-mercury';
2
- declare const DSS: any;
3
- export default DSS;
@@ -1 +0,0 @@
1
- export { default } from './dss';
@@ -1,28 +0,0 @@
1
- export interface LookupDetailOptions {
2
- id: string;
3
- }
4
- export declare enum EntityProviderType {
5
- CI_USER = "CI_USER",
6
- CI_MACHINE = "CI_MACHINE",
7
- CONTACTS = "CONTACTS",
8
- CSDM = "CSDM"
9
- }
10
- export interface LookupOptions {
11
- ids: string[];
12
- entityProviderType?: EntityProviderType;
13
- }
14
- export interface LookupByEmailOptions {
15
- emails: string[];
16
- }
17
- export declare enum SearchType {
18
- PERSON = "PERSON",
19
- CALLING_SERVICE = "CALLING_SERVICE",
20
- EXTERNAL_CALLING = "EXTERNAL_CALLING",
21
- ROOM = "ROOM",
22
- ROBOT = "ROBOT"
23
- }
24
- export interface SearchOptions {
25
- requestedTypes: SearchType[];
26
- resultSize: number;
27
- queryString: string;
28
- }