@hmxlabs/dax-client 3.1.0 → 3.2.0

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.
@@ -233,6 +233,8 @@ export interface ContactUsRequest {
233
233
  phoneNumber?: string | null;
234
234
  subject?: string | null;
235
235
  message?: string | null;
236
+ canContactByPhone?: boolean;
237
+ canContactByEmail?: boolean;
236
238
  }
237
239
  export interface WatchSellRequest {
238
240
  fullName?: string | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hmxlabs/dax-client",
3
- "version": "3.1.0",
3
+ "version": "3.2.0",
4
4
  "description": "DAX Client library for calling the DAX Server API",
5
5
  "module": "build/index.js",
6
6
  "main": "build/index.js",
@@ -272,6 +272,8 @@ export interface ContactUsRequest {
272
272
  phoneNumber?: string | null;
273
273
  subject?: string | null;
274
274
  message?: string | null;
275
+ canContactByPhone?: boolean;
276
+ canContactByEmail?: boolean;
275
277
  }
276
278
 
277
279
  export interface WatchSellRequest {