Socket
Socket
Sign inDemoInstall

dispatch-node-sdk

Package Overview
Dependencies
Maintainers
4
Versions
148
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dispatch-node-sdk - npm Package Compare versions

Comparing version 2.17.0 to 2.18.0

2

dist/lib/bookingService.js

@@ -20,3 +20,3 @@ 'use strict';

bookNewOffer: function bookNewOffer(offerData) {
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
var options = arguments.length <= 1 || arguments[1] === undefined ? {} : arguments[1];
var accountId = offerData.accountId;

@@ -23,0 +23,0 @@ var data = offerData.data;

@@ -59,3 +59,3 @@ 'use strict';

value: function setForEntity(entityType, entityID, config) {
var overwrite = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false;
var overwrite = arguments.length <= 3 || arguments[3] === undefined ? false : arguments[3];

@@ -62,0 +62,0 @@ return this.client.doAuthenticatedRequest('POST', '/config/' + entityType + '/' + entityID, {

@@ -127,3 +127,3 @@ 'use strict';

function Dispatch(clientID, clientSecret) {
var host = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 'https://api.dispatch.me';
var host = arguments.length <= 2 || arguments[2] === undefined ? 'https://api.dispatch.me' : arguments[2];

@@ -149,2 +149,3 @@ _classCallCheck(this, Dispatch);

brands: new _Collection2.default(this, endpoints.BRANDS),
calendarEvents: new _Collection2.default(this, endpoints.CALENDAR_EVENTS),
conversation: (0, _conversation2.default)(this),

@@ -499,3 +500,3 @@ customer: (0, _customer2.default)(this),

var refreshToken = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : null;
var refreshToken = arguments.length <= 0 || arguments[0] === undefined ? null : arguments[0];

@@ -523,4 +524,4 @@ return this.getNoAuthClient().post('/oauth/token', {

value: function getCollection(endpoint) {
var filter = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;
var opts = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
var filter = arguments.length <= 1 || arguments[1] === undefined ? null : arguments[1];
var opts = arguments.length <= 2 || arguments[2] === undefined ? {} : arguments[2];

@@ -553,3 +554,3 @@ var fullPath = endpoint;

value: function getCollectionWithMeta(endpoint) {
var filter = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : null;
var filter = arguments.length <= 1 || arguments[1] === undefined ? null : arguments[1];

@@ -581,3 +582,3 @@ return this.getCollection(endpoint, filter, { raw: true }).then(function (response) {

value: function appendAnalyticsHeaders() {
var options = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
var options = arguments.length <= 0 || arguments[0] === undefined ? {} : arguments[0];

@@ -615,4 +616,4 @@ var analytics = Object.assign({}, this.session, options.analytics);

var body = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null;
var options = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {};
var body = arguments.length <= 2 || arguments[2] === undefined ? null : arguments[2];
var options = arguments.length <= 3 || arguments[3] === undefined ? {} : arguments[3];

@@ -675,3 +676,3 @@ var req = new _request2.default(method, endpoint, body, this.appendAnalyticsHeaders(options));

value: function uploadFile(file, name) {
var type = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 'square_photo';
var type = arguments.length <= 2 || arguments[2] === undefined ? 'square_photo' : arguments[2];
var options = arguments[3];

@@ -698,3 +699,3 @@

value: function setSession() {
var sessionVars = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
var sessionVars = arguments.length <= 0 || arguments[0] === undefined ? {} : arguments[0];

@@ -732,3 +733,3 @@ this.session = sessionVars;

function getMatchedWords() {
var result = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
var result = arguments.length <= 0 || arguments[0] === undefined ? {} : arguments[0];

@@ -764,3 +765,3 @@ var matches = result._highlightResult || {}; // eslint-disable-line no-underscore-dangle

function arraysToStrings(obj) {
var skipProps = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : [];
var skipProps = arguments.length <= 1 || arguments[1] === undefined ? [] : arguments[1];

@@ -847,3 +848,3 @@ Object.getOwnPropertyNames(obj || {}).forEach(function (prop) {

var appointmentInfo = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null;
var appointmentInfo = arguments.length <= 2 || arguments[2] === undefined ? null : arguments[2];

@@ -850,0 +851,0 @@ var returnData = {

@@ -16,2 +16,3 @@ 'use strict';

var BRANDS = exports.BRANDS = '/v1/brands';
var CALENDAR_EVENTS = exports.CALENDAR_EVENTS = '/calendar_events/events';
var CONVERSATIONS = exports.CONVERSATIONS = '/v1/conversations';

@@ -18,0 +19,0 @@ var CUSTOMER_USERS = exports.CUSTOMER_USERS = '/v1/users/customers';

@@ -18,3 +18,3 @@ 'use strict';

sendNotification: function sendNotification(appointmentProperties) {
var headerOptions = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
var headerOptions = arguments.length <= 1 || arguments[1] === undefined ? {} : arguments[1];

@@ -21,0 +21,0 @@ return client.doAuthenticatedRequest('PATCH', endpoints.APPOINTMENTS + '/' + id + '/notify', appointmentProperties, headerOptions);

@@ -36,4 +36,4 @@ 'use strict';

value: function get() {
var query = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
var opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
var query = arguments.length <= 0 || arguments[0] === undefined ? {} : arguments[0];
var opts = arguments.length <= 1 || arguments[1] === undefined ? {} : arguments[1];

@@ -45,3 +45,3 @@ return this.client.getCollection(this.endpoint, query, opts);

value: function getWithMeta() {
var query = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
var query = arguments.length <= 0 || arguments[0] === undefined ? {} : arguments[0];

@@ -58,3 +58,3 @@ return this.client.getCollectionWithMeta(this.endpoint, query);

value: function create(data) {
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
var options = arguments.length <= 1 || arguments[1] === undefined ? {} : arguments[1];

@@ -76,3 +76,3 @@ return this.client.doAuthenticatedRequest('POST', this.endpoint, data, options).then(function (response) {

value: function update(id, data) {
var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
var options = arguments.length <= 2 || arguments[2] === undefined ? {} : arguments[2];

@@ -79,0 +79,0 @@ return this.client.doAuthenticatedRequest('PATCH', this.getSingleEndpoint(id), data, options).then(function (response) {

@@ -26,3 +26,4 @@ 'use strict';

customer_id_eq: id,
file_token_not_eq: 'null'
file_token_not_eq: 'null',
include_archived: true
}

@@ -40,3 +41,4 @@ };

customer_id_eq: id,
file_token_null: '1'
file_token_null: '1',
include_archived: true
}

@@ -53,3 +55,4 @@ };

filter: {
customer_id_eq: id
customer_id_eq: id,
include_archived: true
}

@@ -56,0 +59,0 @@ };

@@ -73,4 +73,4 @@ 'use strict';

function actOnOffer(client, id, action) {
var body = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {};
var options = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : {};
var body = arguments.length <= 3 || arguments[3] === undefined ? {} : arguments[3];
var options = arguments.length <= 4 || arguments[4] === undefined ? {} : arguments[4];

@@ -188,3 +188,3 @@ if (action === 'accept') {

createAppointment: function createAppointment() {
var data = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
var data = arguments.length <= 0 || arguments[0] === undefined ? {} : arguments[0];
var options = arguments[1];

@@ -200,3 +200,3 @@

getAppointments: function getAppointments() {
var query = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
var query = arguments.length <= 0 || arguments[0] === undefined ? {} : arguments[0];

@@ -231,3 +231,3 @@ if (query.filter) {

getSurveys: function getSurveys() {
var query = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
var query = arguments.length <= 0 || arguments[0] === undefined ? {} : arguments[0];

@@ -248,3 +248,3 @@ var DEFAULT_QUERY = {

update: function update(jobProperties) {
var headerOptions = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
var headerOptions = arguments.length <= 1 || arguments[1] === undefined ? {} : arguments[1];

@@ -251,0 +251,0 @@ return client.doAuthenticatedRequest('PATCH', endpoints.JOBS + '/' + id, jobProperties, headerOptions).then(function (response) {

@@ -7,3 +7,3 @@ 'use strict';

var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol ? "symbol" : typeof obj; };

@@ -10,0 +10,0 @@ exports.default = organizationMethods;

@@ -7,3 +7,3 @@ 'use strict';

var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol ? "symbol" : typeof obj; };

@@ -10,0 +10,0 @@ exports.default = userMethods;

@@ -56,3 +56,3 @@ 'use strict';

value: function addForEntity(entityType, entityID, name) {
var config = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {};
var config = arguments.length <= 3 || arguments[3] === undefined ? {} : arguments[3];

@@ -59,0 +59,0 @@ var body = _extends({

@@ -7,3 +7,3 @@ 'use strict';

var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; };
var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function (obj) { return typeof obj; } : function (obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol ? "symbol" : typeof obj; };

@@ -10,0 +10,0 @@ exports.stringify = stringify;

@@ -88,3 +88,3 @@ 'use strict';

value: function get(endpoint) {
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
var options = arguments.length <= 1 || arguments[1] === undefined ? {} : arguments[1];

@@ -96,3 +96,3 @@ return this.doRequest('GET', endpoint, null, options);

value: function post(endpoint, body) {
var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
var options = arguments.length <= 2 || arguments[2] === undefined ? {} : arguments[2];

@@ -104,3 +104,3 @@ return this.doRequest('POST', endpoint, body, options);

value: function put(endpoint, body) {
var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
var options = arguments.length <= 2 || arguments[2] === undefined ? {} : arguments[2];

@@ -112,3 +112,3 @@ return this.doRequest('PUT', endpoint, body, options);

value: function patch(endpoint, body) {
var options = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {};
var options = arguments.length <= 2 || arguments[2] === undefined ? {} : arguments[2];

@@ -120,3 +120,3 @@ return this.doRequest('PATCH', endpoint, body, options);

value: function _delete(endpoint) {
var options = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
var options = arguments.length <= 1 || arguments[1] === undefined ? {} : arguments[1];

@@ -128,4 +128,4 @@ return this.doRequest('DELETE', endpoint, null, options);

value: function doRequest(method, endpoint) {
var body = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null;
var options = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {};
var body = arguments.length <= 2 || arguments[2] === undefined ? null : arguments[2];
var options = arguments.length <= 3 || arguments[3] === undefined ? {} : arguments[3];

@@ -132,0 +132,0 @@ var url = this.host + endpoint;

@@ -13,4 +13,4 @@ "use strict";

function Request(method, endpoint) {
var body = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null;
var options = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {};
var body = arguments.length <= 2 || arguments[2] === undefined ? null : arguments[2];
var options = arguments.length <= 3 || arguments[3] === undefined ? {} : arguments[3];

@@ -17,0 +17,0 @@ _classCallCheck(this, Request);

@@ -63,2 +63,3 @@ import * as endpoints from './endpoints';

brands: new Collection(this, endpoints.BRANDS),
calendarEvents: new Collection(this, endpoints.CALENDAR_EVENTS),
conversation: conversationMethods(this),

@@ -65,0 +66,0 @@ customer: customerMethods(this),

@@ -11,2 +11,3 @@ export const ACCOUNT_ORGANIZATIONS = '/v1/account_organizations';

export const BRANDS = '/v1/brands';
export const CALENDAR_EVENTS = '/calendar_events/events';
export const CONVERSATIONS = '/v1/conversations';

@@ -13,0 +14,0 @@ export const CUSTOMER_USERS = '/v1/users/customers';

@@ -19,2 +19,3 @@ import { CUSTOMERS, ATTACHMENTS } from '../endpoints';

file_token_not_eq: 'null',
include_archived: true,
},

@@ -33,2 +34,3 @@ };

file_token_null: '1',
include_archived: true,
},

@@ -46,2 +48,3 @@ };

customer_id_eq: id,
include_archived: true,
},

@@ -48,0 +51,0 @@ };

@@ -32,3 +32,3 @@ import expect from 'expect';

const scope = nock('https://api.dispatch.me')
.get(`${endpoints.ATTACHMENTS}?filter[customer_id_eq]=456`)
.get(`${endpoints.ATTACHMENTS}?filter[customer_id_eq]=456&filter[include_archived]=true`)
.reply(200);

@@ -43,3 +43,3 @@ client.entities.customer(456).getAttachments();

const scope = nock('https://api.dispatch.me')
.get(`${endpoints.ATTACHMENTS}?filter[customer_id_eq]=456&filter[file_token_null]=1`)
.get(`${endpoints.ATTACHMENTS}?filter[customer_id_eq]=456&filter[file_token_null]=1&filter[include_archived]=true`)
.reply(200);

@@ -54,3 +54,4 @@ client.entities.customer(456).getNotes();

const scope = nock('https://api.dispatch.me')
.get(`${endpoints.ATTACHMENTS}?filter[customer_id_eq]=456&filter[file_token_not_eq]=null`)
.get(`${endpoints.ATTACHMENTS}?filter[customer_id_eq]=456&filter[file_token_not_eq]=null&filter[include_archived]=true`)
.reply(200);

@@ -57,0 +58,0 @@ client.entities.customer(456).getPhotos();

{
"name": "dispatch-node-sdk",
"version": "2.17.0",
"version": "2.18.0",
"description": "High- and low-level libraries for interacting with the Dispatch API",

@@ -5,0 +5,0 @@ "main": "dist/lib/index.js",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc