diff --git a/lib/AvaTaxClient.js b/lib/AvaTaxClient.js index 130ba8a8..2c7ac7fd 100644 --- a/lib/AvaTaxClient.js +++ b/lib/AvaTaxClient.js @@ -10,7 +10,7 @@ * @author Ted Spence * @copyright 2004-2018 Avalara, Inc. * @license https://www.apache.org/licenses/LICENSE-2.0 - * @version 22.2.0 + * @version 22.2.1 * @link https://github.com/avadev/AvaTax-REST-V2-JS-SDK */ @@ -102,10 +102,15 @@ export default class AvaTaxClient { return null; } } - return res.json(); + return res.json().catch((error) => { + let ex = new Error("The server returned the response is in an unexpected format"); + ex.code = 'FormatException'; + ex.details = error; + throw ex; + }); }).then(json => { // handle error - if (json && json.length>0 && json.error) { + if (json && json.error) { let ex = new Error(json.error.message); ex.code = json.error.code; ex.target = json.error.target; @@ -114,7 +119,7 @@ export default class AvaTaxClient { } else { return json; } - }) + }) } /** @@ -175,7 +180,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -212,7 +217,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -261,7 +266,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -298,7 +303,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -330,7 +335,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'delete', payload: null, clientId: strClientId }); } @@ -364,7 +369,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -402,7 +407,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -428,7 +433,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -455,7 +460,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -503,7 +508,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -542,7 +547,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -596,7 +601,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -629,7 +634,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -654,7 +659,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -678,7 +683,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'delete', payload: null, clientId: strClientId }); } @@ -702,7 +707,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -726,7 +731,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -751,7 +756,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'put', payload: model, clientId: strClientId }); } @@ -780,7 +785,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -808,7 +813,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'delete', payload: null, clientId: strClientId }); } @@ -836,7 +841,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -873,7 +878,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -903,7 +908,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'put', payload: model, clientId: strClientId }); } @@ -942,7 +947,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: null, clientId: strClientId }); } @@ -988,7 +993,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -1032,7 +1037,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -1069,7 +1074,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'delete', payload: null, clientId: strClientId }); } @@ -1098,7 +1103,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -1140,7 +1145,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -1198,7 +1203,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -1252,7 +1257,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -1296,7 +1301,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -1343,7 +1348,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -1396,7 +1401,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -1448,7 +1453,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -1489,7 +1494,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'delete', payload: null, clientId: strClientId }); } @@ -1536,7 +1541,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -1584,7 +1589,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -1618,7 +1623,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -1661,7 +1666,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -1705,7 +1710,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -1747,7 +1752,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -1792,7 +1797,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -1847,7 +1852,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -1883,7 +1888,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: null, clientId: strClientId }); } @@ -1926,7 +1931,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -1971,7 +1976,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -2011,7 +2016,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'put', payload: model, clientId: strClientId }); } @@ -2054,7 +2059,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: null, clientId: strClientId }); } @@ -2103,7 +2108,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -2143,7 +2148,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -2181,7 +2186,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -2212,7 +2217,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -2250,7 +2255,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -2288,7 +2293,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -2315,7 +2320,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'delete', payload: null, clientId: strClientId }); } @@ -2348,7 +2353,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'delete', payload: null, clientId: strClientId }); } @@ -2379,7 +2384,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -2413,7 +2418,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -2455,7 +2460,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -2493,7 +2498,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -2527,7 +2532,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -2567,7 +2572,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -2600,7 +2605,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -2645,7 +2650,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -2676,7 +2681,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -2704,7 +2709,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -2757,7 +2762,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -2796,7 +2801,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -2834,7 +2839,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'put', payload: model, clientId: strClientId }); } @@ -2869,7 +2874,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'put', payload: model, clientId: strClientId }); } @@ -2912,7 +2917,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -2942,7 +2947,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -2970,7 +2975,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'delete', payload: null, clientId: strClientId }); } @@ -3000,7 +3005,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -3039,7 +3044,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -3079,7 +3084,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -3112,7 +3117,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'put', payload: model, clientId: strClientId }); } @@ -3155,7 +3160,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -3195,7 +3200,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'delete', payload: null, clientId: strClientId }); } @@ -3244,7 +3249,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -3288,7 +3293,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'put', payload: model, clientId: strClientId }); } @@ -3329,7 +3334,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -3371,7 +3376,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -3414,7 +3419,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -3465,7 +3470,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -3510,7 +3515,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -3565,7 +3570,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -3609,7 +3614,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'put', payload: model, clientId: strClientId }); } @@ -3650,7 +3655,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -3691,7 +3696,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'put', payload: model, clientId: strClientId }); } @@ -3720,7 +3725,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -3749,7 +3754,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'delete', payload: null, clientId: strClientId }); } @@ -3778,7 +3783,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -3815,7 +3820,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -3854,7 +3859,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -3884,7 +3889,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'put', payload: model, clientId: strClientId }); } @@ -3921,7 +3926,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -3954,7 +3959,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -3985,7 +3990,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -4021,7 +4026,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -4060,7 +4065,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -4097,7 +4102,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -4134,7 +4139,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -4167,7 +4172,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -4199,7 +4204,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -4231,7 +4236,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -4263,7 +4268,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -4296,7 +4301,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -4334,7 +4339,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -4378,7 +4383,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -4409,7 +4414,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -4443,7 +4448,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -4478,7 +4483,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -4510,7 +4515,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -4546,7 +4551,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -4597,7 +4602,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -4639,7 +4644,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -4693,7 +4698,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -4726,7 +4731,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -4757,7 +4762,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -4790,7 +4795,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -4839,7 +4844,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -4873,7 +4878,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -4908,7 +4913,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -4945,7 +4950,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -4979,7 +4984,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -5011,7 +5016,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -5043,7 +5048,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -5075,7 +5080,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -5107,7 +5112,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -5139,7 +5144,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -5171,7 +5176,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -5203,7 +5208,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -5235,7 +5240,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -5267,7 +5272,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -5299,7 +5304,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -5332,7 +5337,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -5378,7 +5383,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -5411,7 +5416,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -5439,7 +5444,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -5470,7 +5475,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -5509,7 +5514,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -5545,7 +5550,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -5590,7 +5595,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -5623,7 +5628,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -5658,7 +5663,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -5691,7 +5696,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -5725,7 +5730,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -5757,7 +5762,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -5790,7 +5795,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -5823,7 +5828,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -5857,7 +5862,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -5888,7 +5893,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -5920,7 +5925,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -5954,7 +5959,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -5986,7 +5991,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -6025,7 +6030,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -6054,7 +6059,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -6086,7 +6091,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -6118,7 +6123,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -6152,7 +6157,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -6186,7 +6191,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -6218,7 +6223,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -6250,7 +6255,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -6284,7 +6289,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -6317,7 +6322,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -6349,7 +6354,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -6381,7 +6386,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'delete', payload: null, clientId: strClientId }); } @@ -6413,7 +6418,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -6455,7 +6460,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -6499,7 +6504,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -6535,7 +6540,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'put', payload: model, clientId: strClientId }); } @@ -6565,7 +6570,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -6595,7 +6600,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'put', payload: model, clientId: strClientId }); } @@ -6626,7 +6631,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -6656,7 +6661,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'delete', payload: null, clientId: strClientId }); } @@ -6697,7 +6702,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -6724,7 +6729,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -6769,7 +6774,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -6796,7 +6801,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: null, clientId: strClientId }); } @@ -6832,7 +6837,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -6859,7 +6864,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -6886,7 +6891,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'delete', payload: null, clientId: strClientId }); } @@ -6913,7 +6918,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -6942,7 +6947,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -6969,7 +6974,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: null, clientId: strClientId }); } @@ -6996,7 +7001,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: null, clientId: strClientId }); } @@ -7023,7 +7028,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: null, clientId: strClientId }); } @@ -7059,7 +7064,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -7098,7 +7103,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -7135,7 +7140,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -7167,7 +7172,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'delete', payload: null, clientId: strClientId }); } @@ -7201,7 +7206,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'delete', payload: null, clientId: strClientId }); } @@ -7237,7 +7242,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -7272,7 +7277,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -7311,7 +7316,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -7347,7 +7352,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -7378,7 +7383,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -7414,7 +7419,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'delete', payload: null, clientId: strClientId }); } @@ -7447,7 +7452,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'delete', payload: null, clientId: strClientId }); } @@ -7482,7 +7487,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'delete', payload: null, clientId: strClientId }); } @@ -7513,7 +7518,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'delete', payload: null, clientId: strClientId }); } @@ -7543,7 +7548,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'delete', payload: null, clientId: strClientId }); } @@ -7580,7 +7585,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -7613,7 +7618,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -7648,7 +7653,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -7685,7 +7690,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -7729,7 +7734,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -7775,7 +7780,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -7833,7 +7838,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -7880,7 +7885,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -7929,7 +7934,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -7968,7 +7973,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -8008,7 +8013,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'put', payload: model, clientId: strClientId }); } @@ -8044,7 +8049,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'put', payload: model, clientId: strClientId }); } @@ -8080,7 +8085,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'put', payload: model, clientId: strClientId }); } @@ -8113,7 +8118,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -8141,7 +8146,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'delete', payload: null, clientId: strClientId }); } @@ -8174,7 +8179,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -8220,7 +8225,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -8265,7 +8270,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -8294,7 +8299,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'put', payload: model, clientId: strClientId }); } @@ -8333,7 +8338,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -8361,7 +8366,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -8389,7 +8394,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'delete', payload: null, clientId: strClientId }); } @@ -8424,7 +8429,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'delete', payload: null, clientId: strClientId }); } @@ -8464,7 +8469,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -8499,7 +8504,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -8545,7 +8550,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -8594,7 +8599,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -8643,7 +8648,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -8674,7 +8679,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'put', payload: model, clientId: strClientId }); } @@ -8710,7 +8715,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'put', payload: model, clientId: strClientId }); } @@ -8740,7 +8745,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -8790,7 +8795,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -8840,7 +8845,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -8883,7 +8888,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -8953,7 +8958,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -9004,7 +9009,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -9063,7 +9068,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -9127,7 +9132,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -9203,7 +9208,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -9244,7 +9249,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -9290,7 +9295,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -9336,7 +9341,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -9374,7 +9379,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -9416,7 +9421,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -9454,7 +9459,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'delete', payload: null, clientId: strClientId }); } @@ -9488,7 +9493,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'delete', payload: null, clientId: strClientId }); } @@ -9521,7 +9526,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'delete', payload: null, clientId: strClientId }); } @@ -9559,7 +9564,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -9601,7 +9606,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -9635,7 +9640,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -9683,7 +9688,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -9732,7 +9737,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -9777,7 +9782,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -9824,7 +9829,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -9871,7 +9876,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'put', payload: model, clientId: strClientId }); } @@ -9907,7 +9912,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'put', payload: model, clientId: strClientId }); } @@ -9935,7 +9940,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -9963,7 +9968,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -9990,7 +9995,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'delete', payload: null, clientId: strClientId }); } @@ -10017,7 +10022,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'delete', payload: null, clientId: strClientId }); } @@ -10057,7 +10062,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'put', payload: null, clientId: strClientId }); } @@ -10091,7 +10096,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -10136,7 +10141,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -10178,7 +10183,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -10209,7 +10214,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: null, clientId: strClientId }); } @@ -10240,7 +10245,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -10280,7 +10285,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -10312,7 +10317,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -10343,7 +10348,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'delete', payload: null, clientId: strClientId }); } @@ -10380,7 +10385,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'delete', payload: null, clientId: strClientId }); } @@ -10411,7 +10416,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'delete', payload: null, clientId: strClientId }); } @@ -10436,7 +10441,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -10473,7 +10478,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -10504,7 +10509,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'put', payload: model, clientId: strClientId }); } @@ -10542,7 +10547,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'put', payload: model, clientId: strClientId }); } @@ -10578,7 +10583,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'put', payload: model, clientId: strClientId }); } @@ -10618,7 +10623,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -10651,7 +10656,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -10698,7 +10703,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -10743,7 +10748,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -10785,7 +10790,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -10822,7 +10827,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'delete', payload: null, clientId: strClientId }); } @@ -10859,7 +10864,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -10909,7 +10914,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -10958,7 +10963,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -11000,7 +11005,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'put', payload: model, clientId: strClientId }); } @@ -11030,7 +11035,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -11071,7 +11076,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -11111,7 +11116,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -11143,7 +11148,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -11171,7 +11176,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'delete', payload: null, clientId: strClientId }); } @@ -11203,7 +11208,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -11248,7 +11253,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -11292,7 +11297,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -11327,7 +11332,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'put', payload: model, clientId: strClientId }); } @@ -11377,7 +11382,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -11437,7 +11442,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -11506,7 +11511,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -11562,7 +11567,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -11610,7 +11615,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -11650,7 +11655,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -11690,7 +11695,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'delete', payload: null, clientId: strClientId }); } @@ -11730,7 +11735,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -11783,7 +11788,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -11835,7 +11840,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -11876,7 +11881,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'put', payload: model, clientId: strClientId }); } @@ -11926,7 +11931,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -11989,7 +11994,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -12040,7 +12045,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -12092,7 +12097,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -12126,7 +12131,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -12189,7 +12194,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -12250,7 +12255,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -12313,7 +12318,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -12383,7 +12388,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -12430,7 +12435,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -12489,7 +12494,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -12530,7 +12535,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -12539,8 +12544,7 @@ export default class AvaTaxClient { * Retrieve a single transaction by ID * Get the unique transaction identified by this URL. * - * This endpoint retrieves the exact transaction identified by this ID number even if that transaction was later adjusted - * by using the `AdjustTransaction` endpoint. + * This endpoint retrieves the exact transaction identified by this ID number, as long as it is the most version of the transaction. * * A transaction represents a unique potentially taxable action that your company has recorded, and transactions include actions like * sales, purchases, inventory transfer, and returns (also called refunds). @@ -12577,7 +12581,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -12646,7 +12650,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -12709,7 +12713,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -12784,7 +12788,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -12845,7 +12849,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -12900,7 +12904,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: null, clientId: strClientId }); } @@ -12952,7 +12956,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: null, clientId: strClientId }); } @@ -13012,7 +13016,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -13074,7 +13078,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -13104,7 +13108,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -13133,7 +13137,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'delete', payload: null, clientId: strClientId }); } @@ -13163,7 +13167,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -13206,7 +13210,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -13248,7 +13252,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -13281,7 +13285,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'put', payload: model, clientId: strClientId }); } @@ -13310,7 +13314,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'delete', payload: null, clientId: strClientId }); } @@ -13341,7 +13345,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -13373,7 +13377,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -13406,7 +13410,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'put', payload: model, clientId: strClientId }); } @@ -13442,7 +13446,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'post', payload: model, clientId: strClientId }); } @@ -13475,7 +13479,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'delete', payload: null, clientId: strClientId }); } @@ -13511,7 +13515,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -13553,7 +13557,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -13602,7 +13606,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -13652,7 +13656,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -13684,7 +13688,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'put', payload: model, clientId: strClientId }); } @@ -13714,7 +13718,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -13743,7 +13747,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } @@ -13784,7 +13788,7 @@ export default class AvaTaxClient { this.appNM + '; ' + this.appVer + - '; JavascriptSdk; 22.2.0; ' + + '; JavascriptSdk; 22.2.1; ' + this.machineNM; return this.restCall({ url: path, verb: 'get', payload: null, clientId: strClientId }); } diff --git a/package.json b/package.json index 5e43ea65..db2c4373 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "avatax", - "version": "22.2.0", + "version": "22.2.1", "description": "AvaTax v2 SDK for languages using JavaScript", "main": "index.js", "homepage": "https://github.com/avadev/AvaTax-REST-V2-JS-SDK",