-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #301 from avadev/24.8.2
Update for 24.8.2
- Loading branch information
Showing
29 changed files
with
9,654 additions
and
8,761 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
/* | ||
* AvaTax Software Development Kit for JavaScript | ||
* | ||
* (c) 2004-2022 Avalara, Inc. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
* | ||
* @author Jonathan Wenger <[email protected]> | ||
* @author Sachin Baijal <[email protected]> | ||
* @copyright 2004-2018 Avalara, Inc. | ||
* @license https://www.apache.org/licenses/LICENSE-2.0 | ||
* @link https://github.com/avadev/AvaTax-REST-V2-JS-SDK | ||
*/ | ||
|
||
import * as Enums from '../enums/index'; | ||
import { CommunicationCustomerResponse } from "./CommunicationCustomerResponse"; | ||
import { CommunicationTaxTypeResponse } from "./CommunicationTaxTypeResponse"; | ||
import { JsonObject, JsonProperty } from "json2typescript"; | ||
import { DateConverter } from "../utils/dateConverter"; | ||
|
||
/** | ||
* Encloses communication certificate details | ||
* @export | ||
* @class CommunicationCertificateResponse | ||
*/ | ||
@JsonObject("CommunicationCertificateResponse") | ||
export class CommunicationCertificateResponse { | ||
/** | ||
* @type {number} | ||
* @memberof CommunicationCertificateResponse | ||
*/ | ||
@JsonProperty("id", Number, true) | ||
id?: number | undefined = undefined; | ||
/** | ||
* @type {Date} | ||
* @memberof CommunicationCertificateResponse | ||
*/ | ||
@JsonProperty("effectiveDate", DateConverter, true) | ||
effectiveDate?: Date | undefined = undefined; | ||
/** | ||
* @type {Date} | ||
* @memberof CommunicationCertificateResponse | ||
*/ | ||
@JsonProperty("expirationDate", DateConverter, true) | ||
expirationDate?: Date | undefined = undefined; | ||
/** | ||
* @type {string} | ||
* @memberof CommunicationCertificateResponse | ||
*/ | ||
@JsonProperty("exemptionReason", String, true) | ||
exemptionReason?: string | undefined = undefined; | ||
/** | ||
* @type {string} | ||
* @memberof CommunicationCertificateResponse | ||
*/ | ||
@JsonProperty("exemptionRegion", String, true) | ||
exemptionRegion?: string | undefined = undefined; | ||
/** | ||
* @type {string} | ||
* @memberof CommunicationCertificateResponse | ||
*/ | ||
@JsonProperty("taxNumber", String, true) | ||
taxNumber?: string | undefined = undefined; | ||
/** | ||
* @type {string} | ||
* @memberof CommunicationCertificateResponse | ||
*/ | ||
@JsonProperty("certificateStatus", String, true) | ||
certificateStatus?: string | undefined = undefined; | ||
/** | ||
* @type {CommunicationCustomerResponse[]} | ||
* @memberof CommunicationCertificateResponse | ||
*/ | ||
@JsonProperty("customers", [CommunicationCustomerResponse], true) | ||
customers?: CommunicationCustomerResponse[] | undefined = undefined; | ||
/** | ||
* @type {CommunicationTaxTypeResponse[]} | ||
* @memberof CommunicationCertificateResponse | ||
*/ | ||
@JsonProperty("exemptions", [CommunicationTaxTypeResponse], true) | ||
exemptions?: CommunicationTaxTypeResponse[] | undefined = undefined; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
/* | ||
* AvaTax Software Development Kit for JavaScript | ||
* | ||
* (c) 2004-2022 Avalara, Inc. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
* | ||
* @author Jonathan Wenger <[email protected]> | ||
* @author Sachin Baijal <[email protected]> | ||
* @copyright 2004-2018 Avalara, Inc. | ||
* @license https://www.apache.org/licenses/LICENSE-2.0 | ||
* @link https://github.com/avadev/AvaTax-REST-V2-JS-SDK | ||
*/ | ||
|
||
import * as Enums from '../enums/index'; | ||
import { CommunicationCertificateResponse } from "./CommunicationCertificateResponse"; | ||
import { JsonObject, JsonProperty } from "json2typescript"; | ||
import { DateConverter } from "../utils/dateConverter"; | ||
|
||
/** | ||
* Encloses count and model value details | ||
* @export | ||
* @class CommunicationCertificateResponsePage | ||
*/ | ||
@JsonObject("CommunicationCertificateResponsePage") | ||
export class CommunicationCertificateResponsePage { | ||
/** | ||
* @type {number} | ||
* @memberof CommunicationCertificateResponsePage | ||
*/ | ||
@JsonProperty("count", Number, true) | ||
count?: number | undefined = undefined; | ||
/** | ||
* @type {CommunicationCertificateResponse[]} | ||
* @memberof CommunicationCertificateResponsePage | ||
*/ | ||
@JsonProperty("value", [CommunicationCertificateResponse], true) | ||
value?: CommunicationCertificateResponse[] | undefined = undefined; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* | ||
* AvaTax Software Development Kit for JavaScript | ||
* | ||
* (c) 2004-2022 Avalara, Inc. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
* | ||
* @author Jonathan Wenger <[email protected]> | ||
* @author Sachin Baijal <[email protected]> | ||
* @copyright 2004-2018 Avalara, Inc. | ||
* @license https://www.apache.org/licenses/LICENSE-2.0 | ||
* @link https://github.com/avadev/AvaTax-REST-V2-JS-SDK | ||
*/ | ||
|
||
import * as Enums from '../enums/index'; | ||
import { JsonObject, JsonProperty } from "json2typescript"; | ||
import { DateConverter } from "../utils/dateConverter"; | ||
|
||
/** | ||
* Encloses communication certificate customer | ||
* @export | ||
* @class CommunicationCustomerResponse | ||
*/ | ||
@JsonObject("CommunicationCustomerResponse") | ||
export class CommunicationCustomerResponse { | ||
/** | ||
* @type {number} | ||
* @memberof CommunicationCustomerResponse | ||
*/ | ||
@JsonProperty("id", Number, true) | ||
id?: number | undefined = undefined; | ||
/** | ||
* @type {string} | ||
* @memberof CommunicationCustomerResponse | ||
*/ | ||
@JsonProperty("customerNumber", String, true) | ||
customerNumber?: string | undefined = undefined; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/* | ||
* AvaTax Software Development Kit for JavaScript | ||
* | ||
* (c) 2004-2022 Avalara, Inc. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
* | ||
* @author Jonathan Wenger <[email protected]> | ||
* @author Sachin Baijal <[email protected]> | ||
* @copyright 2004-2018 Avalara, Inc. | ||
* @license https://www.apache.org/licenses/LICENSE-2.0 | ||
* @link https://github.com/avadev/AvaTax-REST-V2-JS-SDK | ||
*/ | ||
|
||
import * as Enums from '../enums/index'; | ||
import { JsonObject, JsonProperty } from "json2typescript"; | ||
import { DateConverter } from "../utils/dateConverter"; | ||
|
||
/** | ||
* Encloses Communication exemption designator details | ||
* @export | ||
* @class CommunicationExemptionDesignatorResponse | ||
*/ | ||
@JsonObject("CommunicationExemptionDesignatorResponse") | ||
export class CommunicationExemptionDesignatorResponse { | ||
/** | ||
* @type {number} | ||
* @memberof CommunicationExemptionDesignatorResponse | ||
*/ | ||
@JsonProperty("id", Number, true) | ||
id?: number | undefined = undefined; | ||
/** | ||
* @type {string} | ||
* @memberof CommunicationExemptionDesignatorResponse | ||
*/ | ||
@JsonProperty("type", String, true) | ||
type?: string | undefined = undefined; | ||
/** | ||
* @type {string} | ||
* @memberof CommunicationExemptionDesignatorResponse | ||
*/ | ||
@JsonProperty("name", String, true) | ||
name?: string | undefined = undefined; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/* | ||
* AvaTax Software Development Kit for JavaScript | ||
* | ||
* (c) 2004-2022 Avalara, Inc. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
* | ||
* @author Jonathan Wenger <[email protected]> | ||
* @author Sachin Baijal <[email protected]> | ||
* @copyright 2004-2018 Avalara, Inc. | ||
* @license https://www.apache.org/licenses/LICENSE-2.0 | ||
* @link https://github.com/avadev/AvaTax-REST-V2-JS-SDK | ||
*/ | ||
|
||
import * as Enums from '../enums/index'; | ||
import { JsonObject, JsonProperty } from "json2typescript"; | ||
import { DateConverter } from "../utils/dateConverter"; | ||
|
||
/** | ||
* Encloses communication location details | ||
* @export | ||
* @class CommunicationLocationResponse | ||
*/ | ||
@JsonObject("CommunicationLocationResponse") | ||
export class CommunicationLocationResponse { | ||
/** | ||
* @type {string} | ||
* @memberof CommunicationLocationResponse | ||
*/ | ||
@JsonProperty("country", String, true) | ||
country?: string | undefined = undefined; | ||
/** | ||
* @type {string} | ||
* @memberof CommunicationLocationResponse | ||
*/ | ||
@JsonProperty("state", String, true) | ||
state?: string | undefined = undefined; | ||
/** | ||
* @type {string} | ||
* @memberof CommunicationLocationResponse | ||
*/ | ||
@JsonProperty("county", String, true) | ||
county?: string | undefined = undefined; | ||
/** | ||
* @type {string} | ||
* @memberof CommunicationLocationResponse | ||
*/ | ||
@JsonProperty("city", String, true) | ||
city?: string | undefined = undefined; | ||
} |
Oops, something went wrong.