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.
@@ -77,7 +77,8 @@ function createDefaultAccountInfo() {
77
77
  IsDontProtested: false,
78
78
  IsInactivate: false,
79
79
  IsInactivateReasonCode: 0,
80
- IsReactivateAccount: false
80
+ IsReactivateAccount: false,
81
+ CDU: "",
81
82
  };
82
83
  });
83
84
  }
@@ -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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.260",
3
+ "version": "1.0.262",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {