spartaxx.businessmodels 1.0.263 → 1.0.265
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/AccountInfo.js +1 -0
- package/CCC/AccountInfo.ts +3 -1
- package/CCC/CCCModel.js +3 -1
- package/CCC/ClientInputForm.ts +27 -0
- package/Common/AppConfigHub.js +12 -1
- package/Common/AppConfigHub.ts +23 -1
- package/package.json +1 -1
- package/CCC/GAPOAClientInputForm.ts +0 -22
- /package/CCC/{GAPOAClientInputForm.js → ClientInputForm.js} +0 -0
package/CCC/AccountInfo.js
CHANGED
package/CCC/AccountInfo.ts
CHANGED
@@ -64,9 +64,10 @@ export interface AccountInfo {
|
|
64
64
|
IsProtested?: boolean;
|
65
65
|
IsDontProtested?: boolean;
|
66
66
|
IsInactivate?: boolean;
|
67
|
-
IsInactivateReasonCode?: number
|
67
|
+
IsInactivateReasonCode?: number
|
68
68
|
IsReactivateAccount?: boolean;
|
69
69
|
CDU?: string;
|
70
|
+
AccountSourceId?: number;
|
70
71
|
}
|
71
72
|
|
72
73
|
export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
@@ -139,5 +140,6 @@ export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
|
139
140
|
IsInactivateReasonCode: 0,
|
140
141
|
IsReactivateAccount: false,
|
141
142
|
CDU: "",
|
143
|
+
AccountSourceId: 0
|
142
144
|
};
|
143
145
|
}
|
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/Common/AppConfigHub.js
CHANGED
@@ -232,7 +232,18 @@ function createDefaultAppConfigHub() {
|
|
232
232
|
CPckFilenamePrefixCLAofAPropertySurvey: "",
|
233
233
|
CPckFileNamePrefixNationalAgreementFormCoverLetter: "",
|
234
234
|
CPckFilenamePrefixCLPropertySurvey: "",
|
235
|
-
DNDNextYearServicePackageId: 0
|
235
|
+
DNDNextYearServicePackageId: 0,
|
236
|
+
CCCPkgInactiveCAFTypeId: 0,
|
237
|
+
CCCPkgInactiveClientRemarks: "",
|
238
|
+
CCCPkgInactiveLetterTypeId: 0,
|
239
|
+
CCCPkgDNDCAFTypeId: 0,
|
240
|
+
CCCPkgDNDClientRemarks: "",
|
241
|
+
CCCPkgDNDReasonCode: "",
|
242
|
+
CCCPkgDNDLetterTypeId: 0,
|
243
|
+
CCCPkgReactiveCAFTypeId: 0,
|
244
|
+
CCCPkgReactiveClientRemarks: "",
|
245
|
+
CCCPkgReactiveReasonCode: "",
|
246
|
+
CCCPkgReactiveLetterTypeId: 0,
|
236
247
|
};
|
237
248
|
});
|
238
249
|
}
|
package/Common/AppConfigHub.ts
CHANGED
@@ -219,6 +219,17 @@ export interface AppConfigHub {
|
|
219
219
|
CPckFileNamePrefixNationalAgreementFormCoverLetter: string;
|
220
220
|
CPckFilenamePrefixCLPropertySurvey: string;
|
221
221
|
DNDNextYearServicePackageId: number;
|
222
|
+
CCCPkgInactiveCAFTypeId: number;
|
223
|
+
CCCPkgInactiveClientRemarks: string;
|
224
|
+
CCCPkgInactiveLetterTypeId: number;
|
225
|
+
CCCPkgDNDCAFTypeId: number;
|
226
|
+
CCCPkgDNDClientRemarks: string;
|
227
|
+
CCCPkgDNDReasonCode: string;
|
228
|
+
CCCPkgDNDLetterTypeId: number;
|
229
|
+
CCCPkgReactiveCAFTypeId: number;
|
230
|
+
CCCPkgReactiveClientRemarks: string;
|
231
|
+
CCCPkgReactiveReasonCode: string;
|
232
|
+
CCCPkgReactiveLetterTypeId: number;
|
222
233
|
}
|
223
234
|
|
224
235
|
export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
@@ -442,7 +453,18 @@ export async function createDefaultAppConfigHub(): Promise<AppConfigHub> {
|
|
442
453
|
CPckFilenamePrefixCLAofAPropertySurvey: "",
|
443
454
|
CPckFileNamePrefixNationalAgreementFormCoverLetter: "",
|
444
455
|
CPckFilenamePrefixCLPropertySurvey: "",
|
445
|
-
DNDNextYearServicePackageId: 0
|
456
|
+
DNDNextYearServicePackageId: 0,
|
457
|
+
CCCPkgInactiveCAFTypeId: 0,
|
458
|
+
CCCPkgInactiveClientRemarks: "",
|
459
|
+
CCCPkgInactiveLetterTypeId: 0,
|
460
|
+
CCCPkgDNDCAFTypeId: 0,
|
461
|
+
CCCPkgDNDClientRemarks: "",
|
462
|
+
CCCPkgDNDReasonCode: "",
|
463
|
+
CCCPkgDNDLetterTypeId: 0,
|
464
|
+
CCCPkgReactiveCAFTypeId: 0,
|
465
|
+
CCCPkgReactiveClientRemarks: "",
|
466
|
+
CCCPkgReactiveReasonCode: "",
|
467
|
+
CCCPkgReactiveLetterTypeId: 0,
|
446
468
|
}
|
447
469
|
}
|
448
470
|
|
package/package.json
CHANGED
@@ -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
|
-
|
File without changes
|