spartaxx.businessmodels 1.0.260 → 1.0.262
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/ClientPackageParam.ts +2 -0
- package/package.json +1 -1
package/CCC/AccountInfo.js
CHANGED
package/CCC/AccountInfo.ts
CHANGED
@@ -66,6 +66,7 @@ export interface AccountInfo {
|
|
66
66
|
IsInactivate?: boolean;
|
67
67
|
IsInactivateReasonCode?: number;
|
68
68
|
IsReactivateAccount?: boolean;
|
69
|
+
CDU?: string;
|
69
70
|
}
|
70
71
|
|
71
72
|
export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
@@ -136,6 +137,7 @@ export async function createDefaultAccountInfo(): Promise<AccountInfo> {
|
|
136
137
|
IsDontProtested: false,
|
137
138
|
IsInactivate: false,
|
138
139
|
IsInactivateReasonCode: 0,
|
139
|
-
IsReactivateAccount: false
|
140
|
+
IsReactivateAccount: false,
|
141
|
+
CDU: "",
|
140
142
|
};
|
141
143
|
}
|
@@ -1,5 +1,6 @@
|
|
1
1
|
|
2
2
|
import { ClientPackageDocument } from "./ClientPackageDocuments";
|
3
|
+
import { GAPOAClientInputForm } from "./GAPOAClientInputForm";
|
3
4
|
|
4
5
|
export interface ClientPackageParam {
|
5
6
|
ClientId?: number;
|
@@ -14,4 +15,5 @@ export interface ClientPackageParam {
|
|
14
15
|
FromEmail?:string;
|
15
16
|
UserId?: number;
|
16
17
|
ItIsUSMailVersion?:boolean;
|
18
|
+
GAPOAClientInputForm?:GAPOAClientInputForm;
|
17
19
|
}
|