-
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 #289 from avadev/23.10.1
Update for 23.10.1
- Loading branch information
Showing
17 changed files
with
7,955 additions
and
6,987 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
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"; | ||
|
||
/** | ||
* AP Config Setting Request Model | ||
* @export | ||
* @class APConfigSettingRequestModel | ||
*/ | ||
@JsonObject("APConfigSettingRequestModel") | ||
export class APConfigSettingRequestModel { | ||
/** | ||
* @type {number} | ||
* @memberof APConfigSettingRequestModel | ||
*/ | ||
@JsonProperty("amount", Number, true) | ||
amount?: number | undefined = undefined; | ||
/** | ||
* @type {number} | ||
* @memberof APConfigSettingRequestModel | ||
*/ | ||
@JsonProperty("varianceForIgnore", Number, true) | ||
varianceForIgnore?: number | undefined = undefined; | ||
/** | ||
* @type {number} | ||
* @memberof APConfigSettingRequestModel | ||
*/ | ||
@JsonProperty("varianceForAccrue", Number, true) | ||
varianceForAccrue?: number | undefined = undefined; | ||
/** | ||
* @type {number} | ||
* @memberof APConfigSettingRequestModel | ||
*/ | ||
@JsonProperty("variancePercent", Number, true) | ||
variancePercent?: number | 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,70 @@ | ||
/* | ||
* 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 { TaxProfileMetaDataModel } from "./TaxProfileMetaDataModel"; | ||
import { JsonObject, JsonProperty } from "json2typescript"; | ||
import { DateConverter } from "../utils/dateConverter"; | ||
|
||
/** | ||
* AP Config Setting Response Model | ||
* @export | ||
* @class APConfigSettingSuccessResponseModel | ||
*/ | ||
@JsonObject("APConfigSettingSuccessResponseModel") | ||
export class APConfigSettingSuccessResponseModel { | ||
/** | ||
* @type {number} | ||
* @memberof APConfigSettingSuccessResponseModel | ||
*/ | ||
@JsonProperty("ruleId", Number, true) | ||
ruleId?: number | undefined = undefined; | ||
/** | ||
* @type {number} | ||
* @memberof APConfigSettingSuccessResponseModel | ||
*/ | ||
@JsonProperty("companyId", Number, true) | ||
companyId?: number | undefined = undefined; | ||
/** | ||
* @type {TaxProfileMetaDataModel} | ||
* @memberof APConfigSettingSuccessResponseModel | ||
*/ | ||
@JsonProperty("meta", TaxProfileMetaDataModel, true) | ||
meta?: TaxProfileMetaDataModel | undefined = undefined; | ||
/** | ||
* @type {number} | ||
* @memberof APConfigSettingSuccessResponseModel | ||
*/ | ||
@JsonProperty("amount", Number, true) | ||
amount?: number | undefined = undefined; | ||
/** | ||
* @type {number} | ||
* @memberof APConfigSettingSuccessResponseModel | ||
*/ | ||
@JsonProperty("varianceForIgnore", Number, true) | ||
varianceForIgnore?: number | undefined = undefined; | ||
/** | ||
* @type {number} | ||
* @memberof APConfigSettingSuccessResponseModel | ||
*/ | ||
@JsonProperty("varianceForAccrue", Number, true) | ||
varianceForAccrue?: number | undefined = undefined; | ||
/** | ||
* @type {number} | ||
* @memberof APConfigSettingSuccessResponseModel | ||
*/ | ||
@JsonProperty("variancePercent", Number, true) | ||
variancePercent?: number | 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,34 @@ | ||
/* | ||
* 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 { CostCenterRequestModel } from "./CostCenterRequestModel"; | ||
import { JsonObject, JsonProperty } from "json2typescript"; | ||
import { DateConverter } from "../utils/dateConverter"; | ||
|
||
/** | ||
* Represents a bulk upload input model. | ||
* @export | ||
* @class CostCenterBulkUploadInputModel | ||
*/ | ||
@JsonObject("CostCenterBulkUploadInputModel") | ||
export class CostCenterBulkUploadInputModel { | ||
/** | ||
* @type {CostCenterRequestModel[]} | ||
* @memberof CostCenterBulkUploadInputModel | ||
*/ | ||
@JsonProperty("costCenters", [CostCenterRequestModel], true) | ||
costCenters?: CostCenterRequestModel[] | 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 { CostCenterUploadErrorModel } from "./CostCenterUploadErrorModel"; | ||
import { JsonObject, JsonProperty } from "json2typescript"; | ||
import { DateConverter } from "../utils/dateConverter"; | ||
|
||
/** | ||
* Represents a bulk upload response model. | ||
* @export | ||
* @class CostCenterBulkUploadOutputModel | ||
*/ | ||
@JsonObject("CostCenterBulkUploadOutputModel") | ||
export class CostCenterBulkUploadOutputModel { | ||
/** | ||
* @type {number} | ||
* @memberof CostCenterBulkUploadOutputModel | ||
*/ | ||
@JsonProperty("total", Number, true) | ||
total?: number | undefined = undefined; | ||
/** | ||
* @type {CostCenterUploadErrorModel[]} | ||
* @memberof CostCenterBulkUploadOutputModel | ||
*/ | ||
@JsonProperty("failed", [CostCenterUploadErrorModel], true) | ||
failed?: CostCenterUploadErrorModel[] | 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,58 @@ | ||
/* | ||
* 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 { Int64TaxProfileObjectReferenceModel } from "./Int64TaxProfileObjectReferenceModel"; | ||
import { JsonObject, JsonProperty } from "json2typescript"; | ||
import { DateConverter } from "../utils/dateConverter"; | ||
|
||
/** | ||
* Cost Center Request Model | ||
* @export | ||
* @class CostCenterRequestModel | ||
*/ | ||
@JsonObject("CostCenterRequestModel") | ||
export class CostCenterRequestModel { | ||
/** | ||
* @type {string} | ||
* @memberof CostCenterRequestModel | ||
*/ | ||
@JsonProperty("entityUseCode", String, true) | ||
entityUseCode?: string | undefined = undefined; | ||
/** | ||
* @type {Date} | ||
* @memberof CostCenterRequestModel | ||
*/ | ||
@JsonProperty("effectiveDate", DateConverter, true) | ||
effectiveDate?: Date | undefined = undefined; | ||
/** | ||
* @type {Date} | ||
* @memberof CostCenterRequestModel | ||
*/ | ||
@JsonProperty("endDate", DateConverter, true) | ||
endDate?: Date | undefined = undefined; | ||
/** | ||
* @type {Int64TaxProfileObjectReferenceModel} | ||
* @memberof CostCenterRequestModel | ||
*/ | ||
@JsonProperty("defaultItem", Int64TaxProfileObjectReferenceModel, true) | ||
defaultItem?: Int64TaxProfileObjectReferenceModel | undefined = undefined; | ||
/** | ||
* @type {string} | ||
* @memberof CostCenterRequestModel | ||
*/ | ||
@JsonProperty("costCenterCode", String) | ||
costCenterCode: string = 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,77 @@ | ||
/* | ||
* 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 { TaxProfileMetaDataModel } from "./TaxProfileMetaDataModel"; | ||
import { Int64TaxProfileObjectReferenceModel } from "./Int64TaxProfileObjectReferenceModel"; | ||
import { JsonObject, JsonProperty } from "json2typescript"; | ||
import { DateConverter } from "../utils/dateConverter"; | ||
|
||
/** | ||
* Cost Center Response Model | ||
* @export | ||
* @class CostCenterSuccessResponseModel | ||
*/ | ||
@JsonObject("CostCenterSuccessResponseModel") | ||
export class CostCenterSuccessResponseModel { | ||
/** | ||
* @type {number} | ||
* @memberof CostCenterSuccessResponseModel | ||
*/ | ||
@JsonProperty("costCenterId", Number, true) | ||
costCenterId?: number | undefined = undefined; | ||
/** | ||
* @type {number} | ||
* @memberof CostCenterSuccessResponseModel | ||
*/ | ||
@JsonProperty("companyId", Number, true) | ||
companyId?: number | undefined = undefined; | ||
/** | ||
* @type {TaxProfileMetaDataModel} | ||
* @memberof CostCenterSuccessResponseModel | ||
*/ | ||
@JsonProperty("meta", TaxProfileMetaDataModel, true) | ||
meta?: TaxProfileMetaDataModel | undefined = undefined; | ||
/** | ||
* @type {string} | ||
* @memberof CostCenterSuccessResponseModel | ||
*/ | ||
@JsonProperty("entityUseCode", String, true) | ||
entityUseCode?: string | undefined = undefined; | ||
/** | ||
* @type {Date} | ||
* @memberof CostCenterSuccessResponseModel | ||
*/ | ||
@JsonProperty("effectiveDate", DateConverter, true) | ||
effectiveDate?: Date | undefined = undefined; | ||
/** | ||
* @type {Date} | ||
* @memberof CostCenterSuccessResponseModel | ||
*/ | ||
@JsonProperty("endDate", DateConverter, true) | ||
endDate?: Date | undefined = undefined; | ||
/** | ||
* @type {Int64TaxProfileObjectReferenceModel} | ||
* @memberof CostCenterSuccessResponseModel | ||
*/ | ||
@JsonProperty("defaultItem", Int64TaxProfileObjectReferenceModel, true) | ||
defaultItem?: Int64TaxProfileObjectReferenceModel | undefined = undefined; | ||
/** | ||
* @type {string} | ||
* @memberof CostCenterSuccessResponseModel | ||
*/ | ||
@JsonProperty("costCenterCode", String) | ||
costCenterCode: string = undefined; | ||
} |
Oops, something went wrong.