Socket
Socket
Sign inDemoInstall

tigerbay

Package Overview
Dependencies
Maintainers
1
Versions
61
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tigerbay - npm Package Compare versions

Comparing version 0.6.11 to 0.7.0

5

lib/models/customers.d.ts

@@ -80,3 +80,8 @@ import { APIGroup, LinkedObject } from "./common";

create(params: CreateCustomerRequest): Promise<Customer>;
/**
* List contact addresses for a customer
* @param customerId
*/
contacts(customerId: number): Promise<CustomerContactResponse[]>;
createContact(customerId: number, contact: CustomerContact): Promise<CustomerContactResponse>;
}

@@ -45,2 +45,11 @@ "use strict";

}
/**
* List contact addresses for a customer
* @param customerId
*/
contacts(customerId) {
return __awaiter(this, void 0, void 0, function* () {
return (yield this.axios.get(`/sales/customers/${customerId}/contacts`)).data;
});
}
createContact(customerId, contact) {

@@ -47,0 +56,0 @@ return __awaiter(this, void 0, void 0, function* () {

2

package.json
{
"name": "tigerbay",
"version": "0.6.11",
"version": "0.7.0",
"description": "API Client library for TigerBay",

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

Sorry, the diff of this file is not supported yet

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