Socket
Socket
Sign inDemoInstall

dispatch-node-sdk

Package Overview
Dependencies
Maintainers
3
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.10.0 to 2.11.0

14

dist/lib/bookingService.js

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

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

@@ -35,4 +35,4 @@ var headers = _extends({}, options.headers, {

if (suggestedTimes.suggested_times.length > 0) {
var _response$job_offer$e = response.job_offer.entities;
var entities = _response$job_offer$e === undefined ? [] : _response$job_offer$e;
var _response$job_offer$e = response.job_offer.entities,
entities = _response$job_offer$e === undefined ? [] : _response$job_offer$e;
var job_id = entities[0].job_id;

@@ -39,0 +39,0 @@

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

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

@@ -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 ? 'https://api.dispatch.me' : arguments[2];
var host = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 'https://api.dispatch.me';

@@ -140,2 +140,4 @@ _classCallCheck(this, Dispatch);

accounts: new _Collection2.default(this, endpoints.ACCOUNTS),
accountOrganizations: new _Collection2.default(this, endpoints.ACCOUNT_ORGANIZATIONS),
applications: new _Collection2.default(this, endpoints.APPLICATIONS),
appointment: (0, _appointment2.default)(this),

@@ -150,4 +152,6 @@ appointments: new _Collection2.default(this, endpoints.APPOINTMENTS),

customers: new _Collection2.default(this, endpoints.CUSTOMERS),
customerUsers: new _Collection2.default(this, endpoints.CUSTOMER_USERS),
invoice: (0, _invoice2.default)(this),
job: (0, _job2.default)(this),
jobOffers: new _Collection2.default(this, endpoints.JOB_OFFERS),
jobs: new _Collection2.default(this, endpoints.JOBS),

@@ -494,3 +498,3 @@ layer: (0, _layerIdentityToken2.default)(this),

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

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

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

@@ -548,3 +552,3 @@ var fullPath = endpoint;

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

@@ -576,3 +580,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] : {};

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

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

@@ -670,3 +674,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 ? 'square_photo' : arguments[2];
var type = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 'square_photo';
var options = arguments[3];

@@ -693,3 +697,3 @@

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

@@ -713,6 +717,6 @@ this.session = sessionVars;

var organizationID = _ref.organizationID;
var query = _ref.query;
var filter = _ref.filter;
var maxResultsPerModel = _ref.maxResultsPerModel;
var organizationID = _ref.organizationID,
query = _ref.query,
filter = _ref.filter,
maxResultsPerModel = _ref.maxResultsPerModel;

@@ -820,3 +824,3 @@ var customers = void 0;

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

@@ -823,0 +827,0 @@ var returnData = {

@@ -6,3 +6,5 @@ 'use strict';

});
var ACCOUNT_ORGANIZATIONS = exports.ACCOUNT_ORGANIZATIONS = '/v1/account_organizations';
var ACCOUNTS = exports.ACCOUNTS = '/v1/accounts';
var APPLICATIONS = exports.APPLICATIONS = '/v1/applications';
var APPOINTMENTS = exports.APPOINTMENTS = '/v1/appointments';

@@ -16,3 +18,5 @@ var ATTACHMENTS = exports.ATTACHMENTS = '/v1/attachments';

var CONVERSATIONS = exports.CONVERSATIONS = '/v1/conversations';
var CUSTOMER_USERS = exports.CUSTOMER_USERS = '/v1/users/customers';
var CUSTOMERS = exports.CUSTOMERS = '/v1/customers';
var JOB_OFFERS = exports.JOB_OFFERS = '/v1/job_offers';
var JOBS = exports.JOBS = '/v2/jobs';

@@ -19,0 +23,0 @@ var LAYER_IDENTITY_TOKENS = exports.LAYER_IDENTITY_TOKENS = '/v1/layer/identity_tokens';

@@ -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] : {};

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

}
}, {
key: 'archive',
value: function archive(id, options) {
return this.client.doAuthenticatedRequest('POST', this.endpoint + '/' + id + '/archive', null, options);
}
}, {
key: 'restore',
value: function restore(id, options) {
return this.client.doAuthenticatedRequest('POST', this.endpoint + '/' + id + '/restore', null, options);
}

@@ -103,4 +113,4 @@ /**

return this.getWithMeta(_extends({}, query, { limit: 0 })).then(function (_ref) {
var _ref$meta = _ref.meta;
var meta = _ref$meta === undefined ? {} : _ref$meta;
var _ref$meta = _ref.meta,
meta = _ref$meta === undefined ? {} : _ref$meta;

@@ -107,0 +117,0 @@ return meta.total;

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

getConversation: function getConversation(_ref) {
var organizationID = _ref.organizationID;
var customerUserID = _ref.customerUserID;
var organizationID = _ref.organizationID,
customerUserID = _ref.customerUserID;

@@ -17,0 +17,0 @@ if (!organizationID || !customerUserID) {

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

pay: function pay(_ref) {
var amount = _ref.amount;
var cardToken = _ref.cardToken;
var paymentMethod = _ref.paymentMethod;
var amount = _ref.amount,
cardToken = _ref.cardToken,
paymentMethod = _ref.paymentMethod;

@@ -25,0 +25,0 @@ if (cardToken) {

@@ -42,5 +42,5 @@ 'use strict';

return client.entities.jobs.getOne(id).then(function (_ref) {
var organization_id = _ref.organization_id;
var _ref$customer = _ref.customer;
var customer = _ref$customer === undefined ? {} : _ref$customer;
var organization_id = _ref.organization_id,
_ref$customer = _ref.customer,
customer = _ref$customer === undefined ? {} : _ref$customer;

@@ -68,4 +68,4 @@ return client.entities.billingDocuments.create({

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] : {};

@@ -184,3 +184,3 @@ return client.entities.jobs.getOne(id).then(function (_ref2) {

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];

@@ -196,3 +196,3 @@

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

@@ -227,3 +227,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] : {};

@@ -244,3 +244,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] : {};

@@ -247,0 +247,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 ? "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 && obj !== Symbol.prototype ? "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 ? "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 && obj !== Symbol.prototype ? "symbol" : typeof obj; };

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

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

function getAuthHeaders(_ref) {
var path = _ref.path;
var body = _ref.body;
var userID = _ref.userID;
var userType = _ref.userType;
var secret = _ref.secret;
var path = _ref.path,
body = _ref.body,
userID = _ref.userID,
userType = _ref.userType,
secret = _ref.secret;

@@ -37,0 +37,0 @@ // Date must be formatted like this:

@@ -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 ? "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 && obj !== Symbol.prototype ? "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 ? null : arguments[2];
var options = arguments.length <= 3 || arguments[3] === undefined ? {} : arguments[3];
var body = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null;
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 ? null : arguments[2];
var options = arguments.length <= 3 || arguments[3] === undefined ? {} : arguments[3];
var body = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : null;
var options = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : {};

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

@@ -54,2 +54,4 @@ import * as endpoints from './endpoints';

accounts: new Collection(this, endpoints.ACCOUNTS),
accountOrganizations: new Collection(this, endpoints.ACCOUNT_ORGANIZATIONS),
applications: new Collection(this, endpoints.APPLICATIONS),
appointment: appointmentMethods(this),

@@ -64,4 +66,6 @@ appointments: new Collection(this, endpoints.APPOINTMENTS),

customers: new Collection(this, endpoints.CUSTOMERS),
customerUsers: new Collection(this, endpoints.CUSTOMER_USERS),
invoice: invoiceMethods(this),
job: jobMethods(this),
jobOffers: new Collection(this, endpoints.JOB_OFFERS),
jobs: new Collection(this, endpoints.JOBS),

@@ -68,0 +72,0 @@ layer: layerMethods(this),

@@ -0,2 +1,4 @@

export const ACCOUNT_ORGANIZATIONS = '/v1/account_organizations';
export const ACCOUNTS = '/v1/accounts';
export const APPLICATIONS = '/v1/applications';
export const APPOINTMENTS = '/v1/appointments';

@@ -10,3 +12,5 @@ export const ATTACHMENTS = '/v1/attachments';

export const CONVERSATIONS = '/v1/conversations';
export const CUSTOMER_USERS = '/v1/users/customers';
export const CUSTOMERS = '/v1/customers';
export const JOB_OFFERS = '/v1/job_offers';
export const JOBS = '/v2/jobs';

@@ -13,0 +17,0 @@ export const LAYER_IDENTITY_TOKENS = '/v1/layer/identity_tokens';

@@ -53,2 +53,10 @@ import _ from 'underscore';

archive(id, options) {
return this.client.doAuthenticatedRequest('POST', `${this.endpoint}/${id}/archive`, null, options);
}
restore(id, options) {
return this.client.doAuthenticatedRequest('POST', `${this.endpoint}/${id}/restore`, null, options);
}
/**

@@ -55,0 +63,0 @@ * Returns the count of total records for the given query

{
"name": "dispatch-node-sdk",
"version": "2.10.0",
"version": "2.11.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