Skip to content

Commit

Permalink
Merge pull request #271 from avadev/jwenger/fix-file-casing
Browse files Browse the repository at this point in the history
Fix file casing
  • Loading branch information
svc-developer authored Mar 16, 2023
2 parents fff45f0 + 6612315 commit aa074b9
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 42 deletions.
52 changes: 26 additions & 26 deletions lib/models/SkyscraperStatusModel.ts
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
/*
* 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 { RequiredFilingCalendarDataFieldModel } from "./RequiredFilingCalendarDataFieldModel";
import { JsonObject, JsonProperty } from "json2typescript";
import { DateConverter } from "../utils/dateConverter";

/**
* Represents a list of statuses of returns available in skyscraper
* @export
* @class SkyscraperStatusModel
*/
/*
* 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 { RequiredFilingCalendarDataFieldModel } from "./requiredFilingCalendarDataFieldModel";
import { JsonObject, JsonProperty } from "json2typescript";
import { DateConverter } from "../utils/dateConverter";

/**
* Represents a list of statuses of returns available in skyscraper
* @export
* @class SkyscraperStatusModel
*/
@JsonObject("SkyscraperStatusModel")
export class SkyscraperStatusModel {
export class SkyscraperStatusModel {
/**
* @type {string}
* @memberof SkyscraperStatusModel
Expand Down
32 changes: 16 additions & 16 deletions lib/models/index.ts
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
/*
* 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
*/

/*
* 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
*/

export * from './ACHEntryDetailModel';
export * from './AccountConfigurationModel';
export * from './AccountLicenseKeyModel';
Expand Down Expand Up @@ -324,7 +324,7 @@ export * from './VerifyTransactionModel';
export * from './VoidTransactionModel';
export * from './WorksheetDocument';
export * from './WorksheetDocumentLine';
export * from './RequiredFilingCalendarDataFieldModel';
export * from './requiredFilingCalendarDataFieldModel';
export * from './ShippingVerifyResult';
export * from './ErrorDetails';
export * from './AgeVerifyRequest';
Expand Down

0 comments on commit aa074b9

Please sign in to comment.