@wildix/xbees-connect 1.3.18 → 1.3.19-alpha.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.
package/dist-cjs/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wildix/xbees-connect",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.19-alpha.2",
|
|
4
4
|
"description": "This library provides easy communication between x-bees and integrated web applications",
|
|
5
5
|
"author": "dimitri.chernykh <dimitri.chernykh@wildix.com>",
|
|
6
6
|
"homepage": "",
|
package/dist-es/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wildix/xbees-connect",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.19-alpha.2",
|
|
4
4
|
"description": "This library provides easy communication between x-bees and integrated web applications",
|
|
5
5
|
"author": "dimitri.chernykh <dimitri.chernykh@wildix.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
export interface EmailPhoneEntry {
|
|
2
|
+
value: string;
|
|
3
|
+
label?: string;
|
|
4
|
+
field?: string;
|
|
5
|
+
}
|
|
1
6
|
export interface ContactShape {
|
|
2
7
|
id: string;
|
|
3
8
|
name: string;
|
|
@@ -11,6 +16,9 @@ export interface ContactShape {
|
|
|
11
16
|
homeMobileNumber?: string;
|
|
12
17
|
extension?: string;
|
|
13
18
|
organization?: string;
|
|
19
|
+
additionalEmails?: EmailPhoneEntry[];
|
|
20
|
+
additionalPhones?: EmailPhoneEntry[];
|
|
21
|
+
matchedValue?: string;
|
|
14
22
|
}
|
|
15
23
|
export type Contact = (ContactShape & {
|
|
16
24
|
email: string;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
export type { AvailableContactData } from './AvailableContactData';
|
|
2
2
|
export type { Callback } from './Callback';
|
|
3
3
|
export type { ConnectClient } from './Client';
|
|
4
|
-
export type { Contact, ContactQuery } from './Contact';
|
|
4
|
+
export type { Contact, ContactQuery, EmailPhoneEntry } from './Contact';
|
|
5
5
|
export type { EventPayloadMap, RawMessageEvent } from './Event';
|
|
6
6
|
export type { JSONArray, JSONObject } from './Json';
|
|
7
7
|
export type { Listener, RemoveEventListener } from './Listener';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wildix/xbees-connect",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.19-alpha.2",
|
|
4
4
|
"description": "This library provides easy communication between x-bees and integrated web applications",
|
|
5
5
|
"author": "dimitri.chernykh <dimitri.chernykh@wildix.com>",
|
|
6
6
|
"homepage": "",
|
|
@@ -9,17 +9,6 @@
|
|
|
9
9
|
"main": "./dist-cjs/index.js",
|
|
10
10
|
"types": "./dist-types/index.d.ts",
|
|
11
11
|
"module": "./dist-es/index.js",
|
|
12
|
-
"scripts": {
|
|
13
|
-
"build": "pnpm run clean && pnpm run build:es && pnpm run build:cjs && pnpm run build:types",
|
|
14
|
-
"build:es": "tsc -p tsconfig.es.json",
|
|
15
|
-
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
16
|
-
"build:types": "tsc -p tsconfig.types.json",
|
|
17
|
-
"build:docs": "typedoc",
|
|
18
|
-
"lint": "eslint . && tsc --noEmit",
|
|
19
|
-
"lint:fix": "eslint . --fix",
|
|
20
|
-
"clean": "rimraf --glob './dist-*' '*.tsbuildinfo'",
|
|
21
|
-
"build:api-extractor": "api-extractor run --local"
|
|
22
|
-
},
|
|
23
12
|
"files": [
|
|
24
13
|
"dist-*/**"
|
|
25
14
|
],
|
|
@@ -44,5 +33,16 @@
|
|
|
44
33
|
},
|
|
45
34
|
"engines": {
|
|
46
35
|
"node": ">=16"
|
|
36
|
+
},
|
|
37
|
+
"scripts": {
|
|
38
|
+
"build": "pnpm run clean && pnpm run build:es && pnpm run build:cjs && pnpm run build:types",
|
|
39
|
+
"build:es": "tsc -p tsconfig.es.json",
|
|
40
|
+
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
41
|
+
"build:types": "tsc -p tsconfig.types.json",
|
|
42
|
+
"build:docs": "typedoc",
|
|
43
|
+
"lint": "eslint . && tsc --noEmit",
|
|
44
|
+
"lint:fix": "eslint . --fix",
|
|
45
|
+
"clean": "rimraf --glob './dist-*' '*.tsbuildinfo'",
|
|
46
|
+
"build:api-extractor": "api-extractor run --local"
|
|
47
47
|
}
|
|
48
|
-
}
|
|
48
|
+
}
|