You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/AvaTaxClient.js
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -85,7 +85,7 @@ export default class AvaTaxClient {
85
85
},
86
86
body: JSON.stringify(payload)
87
87
})).then(res => {
88
-
var contentType = res.headers._headers['content-type'][0];
88
+
var contentType = res.headers._headers['content-type'][0];
89
89
90
90
if (contentType === 'application/vnd.ms-excel' || contentType === 'text/csv') {
91
91
return res;
@@ -763,7 +763,7 @@ export default class AvaTaxClient {
763
763
*
764
764
* Marks the in progress batch identified by this URL as cancelled.
765
765
*
766
-
* Only JSON batches can be cancelled.If you attempt to cancel a file batch, you will receive an error message.
766
+
* Only JSON batches can be cancelled.If you attempt to cancel a file batch, you will receive an error message.
767
767
*
768
768
* Only in progress batches can be cancelled. If you attempt to cancel a batch that its status is not Waiting or Processing, you will receive an error message.
769
769
* Cancelling an in progress batch does not delete any transactions that were created before the cancellation.
@@ -2260,7 +2260,7 @@ export default class AvaTaxClient {
2260
2260
*
2261
2261
* @return FetchResult
2262
2262
*/
2263
-
listMrsCompanies({ } = {}) {
2263
+
listMrsCompanies() {
2264
2264
var path = this.buildUrl({
2265
2265
url: `/api/v2/companies/mrs`,
2266
2266
parameters: {}
@@ -3658,7 +3658,7 @@ export default class AvaTaxClient {
3658
3658
*
3659
3659
* @return FetchResult
3660
3660
*/
3661
-
listCrossBorderSections({ } = {}) {
3661
+
listCrossBorderSections() {
3662
3662
var path = this.buildUrl({
3663
3663
url: `/api/v2/definitions/crossborder/sections`,
3664
3664
parameters: {}
@@ -11201,7 +11201,7 @@ export default class AvaTaxClient {
11201
11201
*
11202
11202
* @return FetchResult
11203
11203
*/
11204
-
listMySubscriptions({ } = {}) {
11204
+
listMySubscriptions() {
11205
11205
var path = this.buildUrl({
11206
11206
url: `/api/v2/utilities/subscriptions`,
11207
11207
parameters: {}
@@ -11236,7 +11236,7 @@ export default class AvaTaxClient {
0 commit comments