RubyGems
npm
Organizations
Log in
Sign up
npm
spartaxx.businessmodels
Versions diffs
1.0.125 → 1.0.127
spartaxx.businessmodels 1.0.125 → 1.0.127
Sign up to get
free
protection for your applications and to get access to all the features.
Files changed (6)
hide
show
package/CCC/CCCModel.ts
+3
-1
package/CCC/ScoreCardDetails.ts
+5
-3
package/CCC/ScoreCardSummary.js
+2
-0
package/CCC/ScoreCardSummary.ts
+8
-0
package/Protest/ProtestAccountParam.ts
+3
-1
package/package.json
+1
-1
package/CCC/CCCModel.ts
CHANGED
Viewed
@@ -1,5 +1,7 @@
1
1
import { ScoreCardDetails } from "./ScoreCardDetails";
2
+
import { ScoreCardSummary } from "./ScoreCardSummary";
2
3
3
4
export {
4
-
ScoreCardDetails
5
+
ScoreCardDetails
,
6
+
ScoreCardSummary
5
7
}
package/CCC/ScoreCardDetails.ts
CHANGED
Viewed
@@ -1,5 +1,7 @@
1
1
export interface ScoreCardDetails {
2
-
TotalCount: number
,
3
-
USMailCount?: number
,
4
-
EmailCount?: number
2
+
TotalCount: number
;
3
+
USMailCount?: number
;
4
+
EmailCount?: number
;
5
+
ReceivedCount?: number;
6
+
PendingCount?: number;
5
7
}
package/CCC/ScoreCardSummary.js
ADDED
Viewed
@@ -0,0 +1,2 @@
1
+
"use strict";
2
+
Object.defineProperty(exports, "__esModule", { value: true });
package/CCC/ScoreCardSummary.ts
ADDED
Viewed
@@ -0,0 +1,8 @@
1
+
import { ScoreCardDetails } from "./ScoreCardDetails";
2
+
3
+
export interface ScoreCardSummary {
4
+
ClientsQualifiedInfo?: ScoreCardDetails;
5
+
DeliveredInfo?: ScoreCardDetails;
6
+
PendingInfo?: ScoreCardDetails;
7
+
ReceivedInfo?: ScoreCardDetails;
8
+
}
package/Protest/ProtestAccountParam.ts
CHANGED
Viewed
@@ -10,5 +10,7 @@ export interface ProtestAccountParam {
10
10
DatasetSortingOperation?: DatasetSortingOperation;
11
11
IsSelectedAll?:boolean;
12
12
SelectedCounties?: number[];
13
-
LUC?:string
13
+
LUC?:string
;
14
+
NoticeValueMin?:number;
15
+
NoticeValueMax?:number;
14
16
}
package/package.json
CHANGED
Viewed
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "spartaxx.businessmodels",
3
-
"version": "1.0.
125
",
3
+
"version": "1.0.
127
",
4
4
"main": "protest.js",
5
5
"type": "commonjs",
6
6
"scripts": {