@cleardu/types 1.0.171 → 1.0.173
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/constants/brokerMessages/index.d.ts +3 -0
- package/constants/brokerMessages/index.js +5 -2
- package/constants/brokerMessages/index.ts +5 -2
- package/constants/index.d.ts +355 -296
- package/constants/index.js +664 -442
- package/constants/index.ts +665 -442
- package/interfaces/index.d.ts +0 -1
- package/interfaces/index.js +0 -1
- package/interfaces/index.ts +0 -1
- package/interfaces/payments/index.d.ts +11 -7
- package/interfaces/payments/index.ts +13 -8
- package/package.json +1 -1
- package/tsconfig.build.tsbuildinfo +1 -1
- package/interfaces/agentPayments/index.d.ts +0 -12
- package/interfaces/agentPayments/index.js +0 -2
- package/interfaces/agentPayments/index.ts +0 -13
package/interfaces/index.d.ts
CHANGED
package/interfaces/index.js
CHANGED
|
@@ -57,7 +57,6 @@ tslib_1.__exportStar(require("./clientDispositions"), exports);
|
|
|
57
57
|
tslib_1.__exportStar(require("./common"), exports);
|
|
58
58
|
tslib_1.__exportStar(require("./webhook"), exports);
|
|
59
59
|
tslib_1.__exportStar(require("./userStatus"), exports);
|
|
60
|
-
tslib_1.__exportStar(require("./agentPayments"), exports);
|
|
61
60
|
tslib_1.__exportStar(require("./templates"), exports);
|
|
62
61
|
tslib_1.__exportStar(require("./sms"), exports);
|
|
63
62
|
tslib_1.__exportStar(require("./whatsapp"), exports);
|
package/interfaces/index.ts
CHANGED
|
@@ -13,13 +13,8 @@ export interface IPayments {
|
|
|
13
13
|
fileId?: number;
|
|
14
14
|
transactionId?: string;
|
|
15
15
|
extraInfo?: JSON;
|
|
16
|
-
paymentDate
|
|
17
|
-
|
|
18
|
-
export interface IPaymentUpdatePaymentRes {
|
|
19
|
-
status?: string;
|
|
20
|
-
transactionId?: string;
|
|
21
|
-
extraInfo?: JSON;
|
|
22
|
-
url?: string;
|
|
16
|
+
paymentDate: Date;
|
|
17
|
+
loanDispositionId?: number;
|
|
23
18
|
}
|
|
24
19
|
export interface IPaymentCorrectCSVData {
|
|
25
20
|
source?: string;
|
|
@@ -95,7 +90,16 @@ export interface IEnkashAuthResponse {
|
|
|
95
90
|
resultMessage: string;
|
|
96
91
|
}
|
|
97
92
|
export interface IPaymentsList extends IListPayload {
|
|
93
|
+
type: string;
|
|
98
94
|
clientUid: string;
|
|
99
95
|
fromDate: Date;
|
|
100
96
|
toDate: Date;
|
|
101
97
|
}
|
|
98
|
+
export interface IPaymentPartition {
|
|
99
|
+
mainPartitions: string[];
|
|
100
|
+
subPartitions: string[];
|
|
101
|
+
}
|
|
102
|
+
export interface IPaymentPartitionPayload {
|
|
103
|
+
partitionsName: string;
|
|
104
|
+
subPartitionName: string;
|
|
105
|
+
}
|
|
@@ -14,14 +14,8 @@ export interface IPayments {
|
|
|
14
14
|
fileId?: number;
|
|
15
15
|
transactionId?: string;
|
|
16
16
|
extraInfo?: JSON;
|
|
17
|
-
paymentDate
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
export interface IPaymentUpdatePaymentRes {
|
|
21
|
-
status?: string;
|
|
22
|
-
transactionId?: string;
|
|
23
|
-
extraInfo?: JSON;
|
|
24
|
-
url?: string;
|
|
17
|
+
paymentDate: Date;
|
|
18
|
+
loanDispositionId?: number;
|
|
25
19
|
}
|
|
26
20
|
|
|
27
21
|
export interface IPaymentCorrectCSVData {
|
|
@@ -106,7 +100,18 @@ export interface IEnkashAuthResponse {
|
|
|
106
100
|
}
|
|
107
101
|
|
|
108
102
|
export interface IPaymentsList extends IListPayload {
|
|
103
|
+
type: string;
|
|
109
104
|
clientUid: string;
|
|
110
105
|
fromDate: Date;
|
|
111
106
|
toDate: Date;
|
|
112
107
|
}
|
|
108
|
+
|
|
109
|
+
export interface IPaymentPartition {
|
|
110
|
+
mainPartitions: string[];
|
|
111
|
+
subPartitions: string[];
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
export interface IPaymentPartitionPayload {
|
|
115
|
+
partitionsName: string;
|
|
116
|
+
subPartitionName: string;
|
|
117
|
+
}
|