spartaxx.businessmodels 1.0.265 → 1.0.268
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 +2 -1
- package/CCC/AccountInfo.ts +3 -1
- package/CCC/CCCModel.js +1 -3
- package/CCC/CCCModel.ts +2 -2
- package/CCC/ClientPackageParam.ts +2 -2
- package/package.json +1 -1
package/CCC/AccountInfo.js
CHANGED
package/CCC/AccountInfo.ts
CHANGED
@@ -68,6 +68,7 @@ export interface AccountInfo {
|
|
68
68
|
IsReactivateAccount?: boolean;
|
69
69
|
CDU?: string;
|
70
70
|
AccountSourceId?: number;
|
71
|
+
ReasonCode?: string;
|
71
72
|
}
|
72
73
|
|
73
74
|
export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
@@ -140,6 +141,7 @@ export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
|
140
141
|
IsInactivateReasonCode: 0,
|
141
142
|
IsReactivateAccount: false,
|
142
143
|
CDU: "",
|
143
|
-
AccountSourceId: 0
|
144
|
+
AccountSourceId: 0,
|
145
|
+
ReasonCode: ""
|
144
146
|
};
|
145
147
|
}
|
package/CCC/CCCModel.js
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
-
exports.
|
3
|
+
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,5 +9,3 @@ 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; } });
|
package/CCC/CCCModel.ts
CHANGED
@@ -24,7 +24,7 @@ import { ClientPackageParam } from "./ClientPackageParam";
|
|
24
24
|
import { CCCClientContactFormInfo } from "./CCCClientContactFormInfo";
|
25
25
|
import { NoticeOfProtestClientInfo } from "./NoticeOfProtestClientInfo";
|
26
26
|
import { ClientPhoneInfo, createDefaultClientPhoneInfo } from "./ClientPhoneInfo";
|
27
|
-
import {
|
27
|
+
import { ClientInputForm } from "./ClientInputForm";
|
28
28
|
import { ValidateClientSignWithDocuFirstAPIParam } from "./ValidateClientSignWithDocuFirstAPIParam";
|
29
29
|
|
30
30
|
export {
|
@@ -58,6 +58,6 @@ export {
|
|
58
58
|
NoticeOfProtestClientInfo,
|
59
59
|
ClientPhoneInfo,
|
60
60
|
createDefaultClientPhoneInfo,
|
61
|
-
|
61
|
+
ClientInputForm,
|
62
62
|
ValidateClientSignWithDocuFirstAPIParam
|
63
63
|
}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
|
2
2
|
import { ClientPackageDocument } from "./ClientPackageDocuments";
|
3
|
-
import {
|
3
|
+
import { ClientInputForm } from "./ClientInputForm";
|
4
4
|
|
5
5
|
export interface ClientPackageParam {
|
6
6
|
ClientId?: number;
|
@@ -15,5 +15,5 @@ export interface ClientPackageParam {
|
|
15
15
|
FromEmail?:string;
|
16
16
|
UserId?: number;
|
17
17
|
ItIsUSMailVersion?:boolean;
|
18
|
-
|
18
|
+
ClientInputForm?:ClientInputForm;
|
19
19
|
}
|