RubyGems
npm
Organizations
Log in
Sign up
npm
spartaxx.businessmodels
Versions diffs
1.0.124 → 1.0.126
spartaxx.businessmodels 1.0.124 → 1.0.126
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/Common/ManageFrequency.ts
+1
-2
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/Common/ManageFrequency.ts
CHANGED
Viewed
@@ -1,6 +1,5 @@
1
1
export interface ManageFrequencyConfig {
2
-
Year
?:
number
;
3
-
Month?: string;
2
+
Frequency
?:
string
;
4
3
Week?: string;
5
4
Day?: string[];
6
5
StartTime?: string;
package/package.json
CHANGED
Viewed
@@ -1,6 +1,6 @@
1
1
{
2
2
"name": "spartaxx.businessmodels",
3
-
"version": "1.0.
124
",
3
+
"version": "1.0.
126
",
4
4
"main": "protest.js",
5
5
"type": "commonjs",
6
6
"scripts": {