spartaxx.businessmodels 1.0.262 → 1.0.264

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CCC/CCCModel.js CHANGED
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.createDefaultClientPhoneInfo = exports.createDefaultAccountInfo = exports.createDefaultClientInfo = exports.createDefaultQualifiedClientInfo = void 0;
3
+ exports.GAPOAClientInputForm = exports.createDefaultClientPhoneInfo = exports.createDefaultAccountInfo = exports.createDefaultClientInfo = exports.createDefaultQualifiedClientInfo = void 0;
4
4
  const QualifiedClientInfo_1 = require("./QualifiedClientInfo");
5
5
  Object.defineProperty(exports, "createDefaultQualifiedClientInfo", { enumerable: true, get: function () { return QualifiedClientInfo_1.createDefaultQualifiedClientInfo; } });
6
6
  const ClientInfo_1 = require("./ClientInfo");
@@ -9,3 +9,5 @@ const AccountInfo_1 = require("./AccountInfo");
9
9
  Object.defineProperty(exports, "createDefaultAccountInfo", { enumerable: true, get: function () { return AccountInfo_1.createDefaultAccountInfo; } });
10
10
  const ClientPhoneInfo_1 = require("./ClientPhoneInfo");
11
11
  Object.defineProperty(exports, "createDefaultClientPhoneInfo", { enumerable: true, get: function () { return ClientPhoneInfo_1.createDefaultClientPhoneInfo; } });
12
+ const GAPOAClientInputForm_1 = require("./GAPOAClientInputForm");
13
+ Object.defineProperty(exports, "GAPOAClientInputForm", { enumerable: true, get: function () { return GAPOAClientInputForm_1.GAPOAClientInputForm; } });
@@ -0,0 +1,27 @@
1
+ export interface ClientInputForm {
2
+ TaxpayerName?: string;
3
+ TelephoneNumber?: number;
4
+ MaillingAddress?: string;
5
+ SpouseName?: string;
6
+ SpouseTelephoneNumber?: number;
7
+ SpouseMaillingAddress?: string;
8
+ PropertyAddress?: string;
9
+ TaxType?: string;
10
+ TaxPeriod?: number;
11
+ MakePaymentsOnBehalfOfTaxYear?: boolean;
12
+ ReceiveChecksForRefunds?: boolean;
13
+ ExecuteWaiversForTaxDeficiencies?: boolean;
14
+ ExecuteTaxPeriodExtensions?: boolean;
15
+ FileProtestsAndAppeals?: boolean;
16
+ ExecuteRefundClaims?: boolean;
17
+ ReceiveConfidentialTaxInformation?: boolean;
18
+ PerformOtherTaxMatters?: boolean;
19
+ RevokePriorForSameMatters?: boolean;
20
+ ListRepresentatives?: string;
21
+ Date?: string;
22
+ Tittle?:number;
23
+ SigneeName?:string;
24
+ SigneeRole?:string;
25
+
26
+ }
27
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.262",
3
+ "version": "1.0.264",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {
@@ -1,22 +0,0 @@
1
- export interface GAPOAClientInputForm {
2
- TaxpayerName?: string;
3
- TelephoneNumber?: number;
4
- MaillingAddress?: string;
5
- SpouseName?: string;
6
- SpouseTelephoneNumber?: number;
7
- SpouseMaillingAddress?: string;
8
- PropertyAddress?: string;
9
- TaxType?: string;
10
- TaxPeriod?: number;
11
- MakePaymentsOnBehalfOfTaxYear?: string;
12
- ReceiveChecksForRefunds?: string;
13
- ExecuteWaiversForTaxDeficiencies?: string;
14
- ExecuteTaxPeriodExtensions?: string;
15
- FileProtestsAndAppeals?: string;
16
- ExecuteRefundClaims?: string;
17
- ReceiveConfidentialTaxInformation?: string;
18
- PerformOtherTaxMatters?: string;
19
- RevokePriorForSameMatters?: string;
20
- ListRepresentatives?: string;
21
- }
22
-