@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.
@@ -54,7 +54,6 @@ export * from './clientDispositions';
54
54
  export * from './common';
55
55
  export * from './webhook';
56
56
  export * from './userStatus';
57
- export * from './agentPayments';
58
57
  export * from './templates';
59
58
  export * from './sms';
60
59
  export * from './whatsapp';
@@ -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);
@@ -54,7 +54,6 @@ export * from './clientDispositions';
54
54
  export * from './common';
55
55
  export * from './webhook';
56
56
  export * from './userStatus';
57
- export * from './agentPayments';
58
57
  export * from './templates';
59
58
  export * from './sms';
60
59
  export * from './whatsapp'
@@ -13,13 +13,8 @@ export interface IPayments {
13
13
  fileId?: number;
14
14
  transactionId?: string;
15
15
  extraInfo?: JSON;
16
- paymentDate?: Date;
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?: Date;
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
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cleardu/types",
3
- "version": "1.0.171",
3
+ "version": "1.0.173",
4
4
  "description": "Nest - modern, fast, powerful node.js web framework (@aws)",
5
5
  "author": "Kamil Mysliwiec",
6
6
  "license": "MIT",