henrybuilt-js-library
Advanced tools
Comparing version 1.8.244 to 1.8.245
{ | ||
"name": "henrybuilt-js-library", | ||
"version": "1.8.244", | ||
"version": "1.8.245", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -131,8 +131,8 @@ var _ = require('lodash'); | ||
async get(arg1, arg2={}) { | ||
return api.requestAction('get', arg1, arg2); | ||
async get(arg1, arg2={}, options={}) { | ||
return api.requestAction('get', arg1, arg2, options); | ||
}, | ||
async create(arg1, arg2={}) { | ||
return api.requestAction('create', arg1, arg2); | ||
async create(arg1, arg2={}, options={}) { | ||
return api.requestAction('create', arg1, arg2, options); | ||
}, | ||
@@ -144,4 +144,4 @@ | ||
async destroy(arg1, arg2={}) { | ||
return api.requestAction('destroy', arg1, arg2); | ||
async destroy(arg1, arg2={}, options={}) { | ||
return api.requestAction('destroy', arg1, arg2, options); | ||
} | ||
@@ -148,0 +148,0 @@ }; |
Sorry, the diff of this file is too big to display
931805
8337