@wildix/xbees-conversations-utils 1.0.7 → 1.0.8

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.
@@ -134,6 +134,7 @@ function normalizeStreamChannel(channel) {
134
134
  assignee,
135
135
  telephony: data.telephony,
136
136
  sms: data.sms,
137
+ mms: data.mms,
137
138
  broadcast: data.broadcast || data.is_broadcast,
138
139
  external: data.external,
139
140
  createdAt: data.created_at,
@@ -126,6 +126,7 @@ export function normalizeStreamChannel(channel) {
126
126
  assignee,
127
127
  telephony: data.telephony,
128
128
  sms: data.sms,
129
+ mms: data.mms,
129
130
  broadcast: data.broadcast || data.is_broadcast,
130
131
  external: data.external,
131
132
  createdAt: data.created_at,
@@ -24,6 +24,7 @@ export interface StreamChannelFields extends UR {
24
24
  assignee?: NormalizedUser;
25
25
  telephony?: boolean;
26
26
  sms?: boolean;
27
+ mms?: boolean;
27
28
  broadcast?: boolean;
28
29
  is_broadcast?: boolean;
29
30
  external?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wildix/xbees-conversations-utils",
3
- "version": "1.0.7",
3
+ "version": "1.0.8",
4
4
  "description": "",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -12,6 +12,7 @@
12
12
  "build:include:deps": "lerna run --scope $npm_package_name --include-dependencies build",
13
13
  "build:types": "tsc -p tsconfig.types.json",
14
14
  "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
15
+ "build:api-extractor": "mkdir -p etc && api-extractor run --local --verbose",
15
16
  "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo"
16
17
  },
17
18
  "engines": {