spartaxx.businessmodels 1.0.222 → 1.0.223

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.
@@ -44,4 +44,10 @@ export interface AccountInfo {
44
44
  OwnerTown?: string;
45
45
  OwnerState?: string;
46
46
  OwnerZipCode?: string;
47
+
48
+ IsProtested?: number;
49
+ IsDontProtested?: number;
50
+ IsInactivate?: boolean;
51
+ IsInactivateReasonCode?: number;
52
+ IsReactivateAccount?: boolean;
47
53
  }
@@ -3,6 +3,7 @@ import { QualifiedClientInfo } from "./QualifiedClientInfo";
3
3
  import { AppConfigHub } from "../Common/AppConfigHub";
4
4
  import { RabbitMQQueueInfo } from "../Common/RabbitMQQueueInfo";
5
5
  import { ClientPackageParam } from "./ClientPackageParam";
6
+ import { LookupMaster } from "Masters/LookupMaster";
6
7
 
7
8
  export interface CCCTemplateData {
8
9
  QualifiedClientInfo?: QualifiedClientInfo;
@@ -11,4 +12,5 @@ export interface CCCTemplateData {
11
12
  DocumentsTempPath?: string[];
12
13
  RabbitMQQueueInfo?: RabbitMQQueueInfo;
13
14
  ClientPackageParam?: ClientPackageParam;
15
+ CAFReasonCodeMaster?: LookupMaster[];
14
16
  }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,6 @@
1
+ import { CCCTemplateData } from "./CCCTemplateData";
2
+
3
+ export interface NoticeOfProtestClientInfo {
4
+ AdditionalAccount?: string;
5
+ CCCTemplateData?: CCCTemplateData;
6
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spartaxx.businessmodels",
3
- "version": "1.0.222",
3
+ "version": "1.0.223",
4
4
  "main": "protest.js",
5
5
  "type": "commonjs",
6
6
  "scripts": {