-
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 #295 from avadev/24.6.1
Update for 24.6.1
- Loading branch information
Showing
25 changed files
with
888 additions
and
174 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/* | ||
* 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"; | ||
|
||
/** | ||
* Filter Model | ||
* @export | ||
* @class FilterModel | ||
*/ | ||
@JsonObject("FilterModel") | ||
export class FilterModel { | ||
/** | ||
* @type {string} | ||
* @memberof FilterModel | ||
*/ | ||
@JsonProperty("filter", String, true) | ||
filter?: 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,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 { GLAccountRequestModel } from "./GLAccountRequestModel"; | ||
import { JsonObject, JsonProperty } from "json2typescript"; | ||
import { DateConverter } from "../utils/dateConverter"; | ||
|
||
/** | ||
* Represents a bulk upload input model. | ||
* @export | ||
* @class GLAccountBulkUploadInputModel | ||
*/ | ||
@JsonObject("GLAccountBulkUploadInputModel") | ||
export class GLAccountBulkUploadInputModel { | ||
/** | ||
* @type {GLAccountRequestModel[]} | ||
* @memberof GLAccountBulkUploadInputModel | ||
*/ | ||
@JsonProperty("glAccounts", [GLAccountRequestModel], true) | ||
glAccounts?: GLAccountRequestModel[] | 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 { GLAccountUploadErrorModel } from "./GLAccountUploadErrorModel"; | ||
import { JsonObject, JsonProperty } from "json2typescript"; | ||
import { DateConverter } from "../utils/dateConverter"; | ||
|
||
/** | ||
* Represents a bulk upload response model. | ||
* @export | ||
* @class GLAccountBulkUploadOutputModel | ||
*/ | ||
@JsonObject("GLAccountBulkUploadOutputModel") | ||
export class GLAccountBulkUploadOutputModel { | ||
/** | ||
* @type {number} | ||
* @memberof GLAccountBulkUploadOutputModel | ||
*/ | ||
@JsonProperty("total", Number, true) | ||
total?: number | undefined = undefined; | ||
/** | ||
* @type {GLAccountUploadErrorModel[]} | ||
* @memberof GLAccountBulkUploadOutputModel | ||
*/ | ||
@JsonProperty("failed", [GLAccountUploadErrorModel], true) | ||
failed?: GLAccountUploadErrorModel[] | 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"; | ||
|
||
/** | ||
* GL account request model | ||
* @export | ||
* @class GLAccountRequestModel | ||
*/ | ||
@JsonObject("GLAccountRequestModel") | ||
export class GLAccountRequestModel { | ||
/** | ||
* @type {string} | ||
* @memberof GLAccountRequestModel | ||
*/ | ||
@JsonProperty("entityUseCode", String, true) | ||
entityUseCode?: string | undefined = undefined; | ||
/** | ||
* @type {Date} | ||
* @memberof GLAccountRequestModel | ||
*/ | ||
@JsonProperty("effectiveDate", DateConverter, true) | ||
effectiveDate?: Date | undefined = undefined; | ||
/** | ||
* @type {Date} | ||
* @memberof GLAccountRequestModel | ||
*/ | ||
@JsonProperty("endDate", DateConverter, true) | ||
endDate?: Date | undefined = undefined; | ||
/** | ||
* @type {Int64TaxProfileObjectReferenceModel} | ||
* @memberof GLAccountRequestModel | ||
*/ | ||
@JsonProperty("defaultItem", Int64TaxProfileObjectReferenceModel, true) | ||
defaultItem?: Int64TaxProfileObjectReferenceModel | undefined = undefined; | ||
/** | ||
* @type {string} | ||
* @memberof GLAccountRequestModel | ||
*/ | ||
@JsonProperty("glAccountCode", String) | ||
glAccountCode: 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"; | ||
|
||
/** | ||
* GL account response model | ||
* @export | ||
* @class GLAccountSuccessResponseModel | ||
*/ | ||
@JsonObject("GLAccountSuccessResponseModel") | ||
export class GLAccountSuccessResponseModel { | ||
/** | ||
* @type {number} | ||
* @memberof GLAccountSuccessResponseModel | ||
*/ | ||
@JsonProperty("glAccountId", Number, true) | ||
glAccountId?: number | undefined = undefined; | ||
/** | ||
* @type {number} | ||
* @memberof GLAccountSuccessResponseModel | ||
*/ | ||
@JsonProperty("companyId", Number, true) | ||
companyId?: number | undefined = undefined; | ||
/** | ||
* @type {TaxProfileMetaDataModel} | ||
* @memberof GLAccountSuccessResponseModel | ||
*/ | ||
@JsonProperty("meta", TaxProfileMetaDataModel, true) | ||
meta?: TaxProfileMetaDataModel | undefined = undefined; | ||
/** | ||
* @type {string} | ||
* @memberof GLAccountSuccessResponseModel | ||
*/ | ||
@JsonProperty("entityUseCode", String, true) | ||
entityUseCode?: string | undefined = undefined; | ||
/** | ||
* @type {Date} | ||
* @memberof GLAccountSuccessResponseModel | ||
*/ | ||
@JsonProperty("effectiveDate", DateConverter, true) | ||
effectiveDate?: Date | undefined = undefined; | ||
/** | ||
* @type {Date} | ||
* @memberof GLAccountSuccessResponseModel | ||
*/ | ||
@JsonProperty("endDate", DateConverter, true) | ||
endDate?: Date | undefined = undefined; | ||
/** | ||
* @type {Int64TaxProfileObjectReferenceModel} | ||
* @memberof GLAccountSuccessResponseModel | ||
*/ | ||
@JsonProperty("defaultItem", Int64TaxProfileObjectReferenceModel, true) | ||
defaultItem?: Int64TaxProfileObjectReferenceModel | undefined = undefined; | ||
/** | ||
* @type {string} | ||
* @memberof GLAccountSuccessResponseModel | ||
*/ | ||
@JsonProperty("glAccountCode", String) | ||
glAccountCode: 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,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"; | ||
|
||
/** | ||
* Represents a GL account upload error model | ||
* @export | ||
* @class GLAccountUploadErrorModel | ||
*/ | ||
@JsonObject("GLAccountUploadErrorModel") | ||
export class GLAccountUploadErrorModel { | ||
/** | ||
* @type {number} | ||
* @memberof GLAccountUploadErrorModel | ||
*/ | ||
@JsonProperty("rowIndex", Number, true) | ||
rowIndex?: number | undefined = undefined; | ||
/** | ||
* @type {string} | ||
* @memberof GLAccountUploadErrorModel | ||
*/ | ||
@JsonProperty("glAccountCode", String, true) | ||
glAccountCode?: string | undefined = undefined; | ||
/** | ||
* @type {string[]} | ||
* @memberof GLAccountUploadErrorModel | ||
*/ | ||
@JsonProperty("errors", [String], true) | ||
errors?: string[] | undefined = undefined; | ||
} |
Oops, something went wrong.