@temboplus/afloat 0.1.72 → 0.1.74-0
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/dist/features/admin/admin.contract.d.ts +53 -53
- package/dist/features/admin/admin.repository.d.ts +5 -5
- package/dist/features/admin/index.d.ts +2 -2
- package/dist/features/auth/access/access.repository.d.ts +2 -2
- package/dist/features/auth/auth.manager.d.ts +2 -2
- package/dist/features/auth/auth.repository.d.ts +3 -3
- package/dist/features/auth/auth.store.d.ts +1 -1
- package/dist/features/auth/identity/identity.repository.d.ts +2 -2
- package/dist/features/auth/index.d.ts +5 -5
- package/dist/features/auth/profile/profile.repository.d.ts +3 -3
- package/dist/features/auth/storage/client-store.d.ts +2 -2
- package/dist/features/auth/storage/client-token-handler.d.ts +1 -1
- package/dist/features/contact/contact-input-handler.d.ts +2 -2
- package/dist/features/contact/contact.api-contract.d.ts +38 -43
- package/dist/features/contact/contact.dtos.d.ts +6 -6
- package/dist/features/contact/contact.repository.d.ts +4 -4
- package/dist/features/contact/index.d.ts +2 -2
- package/dist/features/payout/index.d.ts +3 -3
- package/dist/features/payout/payout-channel-handler.d.ts +3 -3
- package/dist/features/payout/payout.api-contract.d.ts +91 -112
- package/dist/features/payout/payout.dtos.d.ts +247 -13
- package/dist/features/payout/payout.query.d.ts +126 -0
- package/dist/features/payout/payout.repository.d.ts +45 -53
- package/dist/features/wallet/index.d.ts +4 -4
- package/dist/features/wallet/wallet-manager.session.d.ts +2 -2
- package/dist/features/wallet/wallet.contract.d.ts +9 -9
- package/dist/features/wallet/wallet.dtos.d.ts +14 -14
- package/dist/features/wallet/wallet.repository.d.ts +5 -5
- package/dist/features/wallet/wallet.utils.d.ts +1 -1
- package/dist/index.cjs.js +2 -0
- package/dist/index.cjs.js.map +1 -0
- package/dist/index.d.ts +7 -7
- package/dist/index.esm.js +2 -0
- package/dist/index.esm.js.map +1 -0
- package/dist/lib/api/common-schemas.d.ts +49 -0
- package/dist/lib/api/index.d.ts +2 -2
- package/dist/lib/error/error.permission.d.ts +1 -1
- package/dist/lib/error/index.d.ts +3 -3
- package/dist/lib/query/index.d.ts +2 -0
- package/dist/lib/query/query.builder.d.ts +71 -0
- package/dist/lib/query/query.types.d.ts +36 -0
- package/dist/models/contact-info.model.d.ts +2 -2
- package/dist/models/contact.model.d.ts +2 -2
- package/dist/models/index.d.ts +11 -11
- package/dist/models/managed-user.model.d.ts +2 -2
- package/dist/models/narration.model.d.ts +1 -1
- package/dist/models/payout.model.d.ts +2 -2
- package/dist/models/profile.model.d.ts +1 -1
- package/dist/models/role.model.d.ts +1 -1
- package/dist/models/statement-entry.model.d.ts +2 -2
- package/dist/models/user.model.d.ts +1 -1
- package/dist/models/wallet.model.d.ts +1 -1
- package/package.json +12 -8
- package/dist/index.cjs +0 -2
- package/dist/index.cjs.map +0 -1
- package/dist/index.js +0 -2
- package/dist/index.js.map +0 -1
- package/dist/lib/api/common-responses.d.ts +0 -12
|
@@ -14,28 +14,7 @@ export declare const DEFAULT_ORDER_BY_DESC = "createdAt";
|
|
|
14
14
|
*/
|
|
15
15
|
export declare const contract: {
|
|
16
16
|
getPayouts: {
|
|
17
|
-
query: z.ZodObject<{
|
|
18
|
-
rangeStart: z.ZodNumber;
|
|
19
|
-
rangeEnd: z.ZodNumber;
|
|
20
|
-
eager: z.ZodString;
|
|
21
|
-
approvalStatus: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("./payout.dtos").PayoutApprovalStatus>>>;
|
|
22
|
-
orderByDesc: z.ZodString;
|
|
23
|
-
msisdn: z.ZodOptional<z.ZodString>;
|
|
24
|
-
}, "strip", z.ZodTypeAny, {
|
|
25
|
-
rangeStart: number;
|
|
26
|
-
rangeEnd: number;
|
|
27
|
-
eager: string;
|
|
28
|
-
orderByDesc: string;
|
|
29
|
-
msisdn?: string | undefined;
|
|
30
|
-
approvalStatus?: import("./payout.dtos").PayoutApprovalStatus | null | undefined;
|
|
31
|
-
}, {
|
|
32
|
-
rangeStart: number;
|
|
33
|
-
rangeEnd: number;
|
|
34
|
-
eager: string;
|
|
35
|
-
orderByDesc: string;
|
|
36
|
-
msisdn?: string | undefined;
|
|
37
|
-
approvalStatus?: import("./payout.dtos").PayoutApprovalStatus | null | undefined;
|
|
38
|
-
}>;
|
|
17
|
+
query: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
|
|
39
18
|
method: "GET";
|
|
40
19
|
path: "";
|
|
41
20
|
responses: {
|
|
@@ -52,13 +31,13 @@ export declare const contract: {
|
|
|
52
31
|
countryCode: z.ZodEffects<z.ZodDefault<z.ZodString>, import("@temboplus/frontend-core").ISO2CountryCode, string | undefined>;
|
|
53
32
|
currencyCode: z.ZodEffects<z.ZodDefault<z.ZodString>, import("@temboplus/frontend-core").CurrencyCode, string | undefined>;
|
|
54
33
|
channel: z.ZodString;
|
|
55
|
-
status: z.ZodNativeEnum<typeof import("./payout.dtos").PayoutStatus>;
|
|
34
|
+
status: z.ZodNativeEnum<typeof import("./payout.dtos.js").PayoutStatus>;
|
|
56
35
|
statusMessage: z.ZodString;
|
|
57
36
|
partnerReference: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
58
37
|
createdAt: z.ZodDate;
|
|
59
38
|
updatedAt: z.ZodDate;
|
|
60
39
|
actionedAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
61
|
-
approvalStatus: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("./payout.dtos").PayoutApprovalStatus>>>;
|
|
40
|
+
approvalStatus: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("./payout.dtos.js").PayoutApprovalStatus>>>;
|
|
62
41
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
63
42
|
id: z.ZodString;
|
|
64
43
|
name: z.ZodString;
|
|
@@ -86,23 +65,23 @@ export declare const contract: {
|
|
|
86
65
|
identity: string;
|
|
87
66
|
}>>>;
|
|
88
67
|
}, "strip", z.ZodTypeAny, {
|
|
89
|
-
status: import("./payout.dtos").PayoutStatus;
|
|
68
|
+
status: import("./payout.dtos.js").PayoutStatus;
|
|
90
69
|
id: string;
|
|
70
|
+
profileId: string;
|
|
71
|
+
createdAt: Date;
|
|
72
|
+
updatedAt: Date;
|
|
91
73
|
channel: string;
|
|
92
74
|
msisdn: string;
|
|
93
75
|
amount: number;
|
|
94
76
|
description: string;
|
|
95
77
|
payeeName: string;
|
|
96
|
-
profileId: string;
|
|
97
78
|
countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
|
|
98
79
|
currencyCode: import("@temboplus/frontend-core").CurrencyCode;
|
|
99
80
|
statusMessage: string;
|
|
100
|
-
createdAt: Date;
|
|
101
|
-
updatedAt: Date;
|
|
102
81
|
notes?: string | null | undefined;
|
|
103
82
|
partnerReference?: string | null | undefined;
|
|
104
83
|
actionedAt?: Date | null | undefined;
|
|
105
|
-
approvalStatus?: import("./payout.dtos").PayoutApprovalStatus | null | undefined;
|
|
84
|
+
approvalStatus?: import("./payout.dtos.js").PayoutApprovalStatus | null | undefined;
|
|
106
85
|
createdBy?: {
|
|
107
86
|
name: string;
|
|
108
87
|
id: string;
|
|
@@ -114,23 +93,23 @@ export declare const contract: {
|
|
|
114
93
|
identity: string;
|
|
115
94
|
} | null | undefined;
|
|
116
95
|
}, {
|
|
117
|
-
status: import("./payout.dtos").PayoutStatus;
|
|
96
|
+
status: import("./payout.dtos.js").PayoutStatus;
|
|
118
97
|
id: string;
|
|
98
|
+
profileId: string;
|
|
99
|
+
createdAt: Date;
|
|
100
|
+
updatedAt: Date;
|
|
119
101
|
channel: string;
|
|
120
102
|
msisdn: string;
|
|
121
103
|
amount: number;
|
|
122
104
|
description: string;
|
|
123
105
|
payeeName: string;
|
|
124
|
-
profileId: string;
|
|
125
106
|
statusMessage: string;
|
|
126
|
-
createdAt: Date;
|
|
127
|
-
updatedAt: Date;
|
|
128
107
|
notes?: string | null | undefined;
|
|
129
108
|
countryCode?: string | undefined;
|
|
130
109
|
currencyCode?: string | undefined;
|
|
131
110
|
partnerReference?: string | null | undefined;
|
|
132
111
|
actionedAt?: Date | null | undefined;
|
|
133
|
-
approvalStatus?: import("./payout.dtos").PayoutApprovalStatus | null | undefined;
|
|
112
|
+
approvalStatus?: import("./payout.dtos.js").PayoutApprovalStatus | null | undefined;
|
|
134
113
|
createdBy?: {
|
|
135
114
|
name: string;
|
|
136
115
|
id: string;
|
|
@@ -144,24 +123,25 @@ export declare const contract: {
|
|
|
144
123
|
}>, "many">;
|
|
145
124
|
total: z.ZodNumber;
|
|
146
125
|
}, "strip", z.ZodTypeAny, {
|
|
126
|
+
total: number;
|
|
147
127
|
results: {
|
|
148
|
-
status: import("./payout.dtos").PayoutStatus;
|
|
128
|
+
status: import("./payout.dtos.js").PayoutStatus;
|
|
149
129
|
id: string;
|
|
130
|
+
profileId: string;
|
|
131
|
+
createdAt: Date;
|
|
132
|
+
updatedAt: Date;
|
|
150
133
|
channel: string;
|
|
151
134
|
msisdn: string;
|
|
152
135
|
amount: number;
|
|
153
136
|
description: string;
|
|
154
137
|
payeeName: string;
|
|
155
|
-
profileId: string;
|
|
156
138
|
countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
|
|
157
139
|
currencyCode: import("@temboplus/frontend-core").CurrencyCode;
|
|
158
140
|
statusMessage: string;
|
|
159
|
-
createdAt: Date;
|
|
160
|
-
updatedAt: Date;
|
|
161
141
|
notes?: string | null | undefined;
|
|
162
142
|
partnerReference?: string | null | undefined;
|
|
163
143
|
actionedAt?: Date | null | undefined;
|
|
164
|
-
approvalStatus?: import("./payout.dtos").PayoutApprovalStatus | null | undefined;
|
|
144
|
+
approvalStatus?: import("./payout.dtos.js").PayoutApprovalStatus | null | undefined;
|
|
165
145
|
createdBy?: {
|
|
166
146
|
name: string;
|
|
167
147
|
id: string;
|
|
@@ -173,26 +153,26 @@ export declare const contract: {
|
|
|
173
153
|
identity: string;
|
|
174
154
|
} | null | undefined;
|
|
175
155
|
}[];
|
|
176
|
-
total: number;
|
|
177
156
|
}, {
|
|
157
|
+
total: number;
|
|
178
158
|
results: {
|
|
179
|
-
status: import("./payout.dtos").PayoutStatus;
|
|
159
|
+
status: import("./payout.dtos.js").PayoutStatus;
|
|
180
160
|
id: string;
|
|
161
|
+
profileId: string;
|
|
162
|
+
createdAt: Date;
|
|
163
|
+
updatedAt: Date;
|
|
181
164
|
channel: string;
|
|
182
165
|
msisdn: string;
|
|
183
166
|
amount: number;
|
|
184
167
|
description: string;
|
|
185
168
|
payeeName: string;
|
|
186
|
-
profileId: string;
|
|
187
169
|
statusMessage: string;
|
|
188
|
-
createdAt: Date;
|
|
189
|
-
updatedAt: Date;
|
|
190
170
|
notes?: string | null | undefined;
|
|
191
171
|
countryCode?: string | undefined;
|
|
192
172
|
currencyCode?: string | undefined;
|
|
193
173
|
partnerReference?: string | null | undefined;
|
|
194
174
|
actionedAt?: Date | null | undefined;
|
|
195
|
-
approvalStatus?: import("./payout.dtos").PayoutApprovalStatus | null | undefined;
|
|
175
|
+
approvalStatus?: import("./payout.dtos.js").PayoutApprovalStatus | null | undefined;
|
|
196
176
|
createdBy?: {
|
|
197
177
|
name: string;
|
|
198
178
|
id: string;
|
|
@@ -204,7 +184,6 @@ export declare const contract: {
|
|
|
204
184
|
identity: string;
|
|
205
185
|
} | null | undefined;
|
|
206
186
|
}[];
|
|
207
|
-
total: number;
|
|
208
187
|
}>;
|
|
209
188
|
};
|
|
210
189
|
};
|
|
@@ -213,20 +192,20 @@ export declare const contract: {
|
|
|
213
192
|
rangeStart: z.ZodNumber;
|
|
214
193
|
rangeEnd: z.ZodNumber;
|
|
215
194
|
eager: z.ZodString;
|
|
216
|
-
approvalStatus: z.ZodNativeEnum<typeof import("./payout.dtos").PayoutApprovalStatus>;
|
|
195
|
+
approvalStatus: z.ZodNativeEnum<typeof import("./payout.dtos.js").PayoutApprovalStatus>;
|
|
217
196
|
orderByDesc: z.ZodString;
|
|
218
197
|
}, "strip", z.ZodTypeAny, {
|
|
219
|
-
approvalStatus: import("./payout.dtos").PayoutApprovalStatus;
|
|
220
|
-
rangeStart: number;
|
|
221
|
-
rangeEnd: number;
|
|
198
|
+
approvalStatus: import("./payout.dtos.js").PayoutApprovalStatus;
|
|
222
199
|
eager: string;
|
|
223
200
|
orderByDesc: string;
|
|
224
|
-
}, {
|
|
225
|
-
approvalStatus: import("./payout.dtos").PayoutApprovalStatus;
|
|
226
201
|
rangeStart: number;
|
|
227
202
|
rangeEnd: number;
|
|
203
|
+
}, {
|
|
204
|
+
approvalStatus: import("./payout.dtos.js").PayoutApprovalStatus;
|
|
228
205
|
eager: string;
|
|
229
206
|
orderByDesc: string;
|
|
207
|
+
rangeStart: number;
|
|
208
|
+
rangeEnd: number;
|
|
230
209
|
}>;
|
|
231
210
|
method: "GET";
|
|
232
211
|
path: "";
|
|
@@ -244,13 +223,13 @@ export declare const contract: {
|
|
|
244
223
|
countryCode: z.ZodEffects<z.ZodDefault<z.ZodString>, import("@temboplus/frontend-core").ISO2CountryCode, string | undefined>;
|
|
245
224
|
currencyCode: z.ZodEffects<z.ZodDefault<z.ZodString>, import("@temboplus/frontend-core").CurrencyCode, string | undefined>;
|
|
246
225
|
channel: z.ZodString;
|
|
247
|
-
status: z.ZodNativeEnum<typeof import("./payout.dtos").PayoutStatus>;
|
|
226
|
+
status: z.ZodNativeEnum<typeof import("./payout.dtos.js").PayoutStatus>;
|
|
248
227
|
statusMessage: z.ZodString;
|
|
249
228
|
partnerReference: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
250
229
|
createdAt: z.ZodDate;
|
|
251
230
|
updatedAt: z.ZodDate;
|
|
252
231
|
actionedAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
253
|
-
approvalStatus: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("./payout.dtos").PayoutApprovalStatus>>>;
|
|
232
|
+
approvalStatus: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("./payout.dtos.js").PayoutApprovalStatus>>>;
|
|
254
233
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
255
234
|
id: z.ZodString;
|
|
256
235
|
name: z.ZodString;
|
|
@@ -278,23 +257,23 @@ export declare const contract: {
|
|
|
278
257
|
identity: string;
|
|
279
258
|
}>>>;
|
|
280
259
|
}, "strip", z.ZodTypeAny, {
|
|
281
|
-
status: import("./payout.dtos").PayoutStatus;
|
|
260
|
+
status: import("./payout.dtos.js").PayoutStatus;
|
|
282
261
|
id: string;
|
|
262
|
+
profileId: string;
|
|
263
|
+
createdAt: Date;
|
|
264
|
+
updatedAt: Date;
|
|
283
265
|
channel: string;
|
|
284
266
|
msisdn: string;
|
|
285
267
|
amount: number;
|
|
286
268
|
description: string;
|
|
287
269
|
payeeName: string;
|
|
288
|
-
profileId: string;
|
|
289
270
|
countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
|
|
290
271
|
currencyCode: import("@temboplus/frontend-core").CurrencyCode;
|
|
291
272
|
statusMessage: string;
|
|
292
|
-
createdAt: Date;
|
|
293
|
-
updatedAt: Date;
|
|
294
273
|
notes?: string | null | undefined;
|
|
295
274
|
partnerReference?: string | null | undefined;
|
|
296
275
|
actionedAt?: Date | null | undefined;
|
|
297
|
-
approvalStatus?: import("./payout.dtos").PayoutApprovalStatus | null | undefined;
|
|
276
|
+
approvalStatus?: import("./payout.dtos.js").PayoutApprovalStatus | null | undefined;
|
|
298
277
|
createdBy?: {
|
|
299
278
|
name: string;
|
|
300
279
|
id: string;
|
|
@@ -306,23 +285,23 @@ export declare const contract: {
|
|
|
306
285
|
identity: string;
|
|
307
286
|
} | null | undefined;
|
|
308
287
|
}, {
|
|
309
|
-
status: import("./payout.dtos").PayoutStatus;
|
|
288
|
+
status: import("./payout.dtos.js").PayoutStatus;
|
|
310
289
|
id: string;
|
|
290
|
+
profileId: string;
|
|
291
|
+
createdAt: Date;
|
|
292
|
+
updatedAt: Date;
|
|
311
293
|
channel: string;
|
|
312
294
|
msisdn: string;
|
|
313
295
|
amount: number;
|
|
314
296
|
description: string;
|
|
315
297
|
payeeName: string;
|
|
316
|
-
profileId: string;
|
|
317
298
|
statusMessage: string;
|
|
318
|
-
createdAt: Date;
|
|
319
|
-
updatedAt: Date;
|
|
320
299
|
notes?: string | null | undefined;
|
|
321
300
|
countryCode?: string | undefined;
|
|
322
301
|
currencyCode?: string | undefined;
|
|
323
302
|
partnerReference?: string | null | undefined;
|
|
324
303
|
actionedAt?: Date | null | undefined;
|
|
325
|
-
approvalStatus?: import("./payout.dtos").PayoutApprovalStatus | null | undefined;
|
|
304
|
+
approvalStatus?: import("./payout.dtos.js").PayoutApprovalStatus | null | undefined;
|
|
326
305
|
createdBy?: {
|
|
327
306
|
name: string;
|
|
328
307
|
id: string;
|
|
@@ -336,24 +315,25 @@ export declare const contract: {
|
|
|
336
315
|
}>, "many">;
|
|
337
316
|
total: z.ZodNumber;
|
|
338
317
|
}, "strip", z.ZodTypeAny, {
|
|
318
|
+
total: number;
|
|
339
319
|
results: {
|
|
340
|
-
status: import("./payout.dtos").PayoutStatus;
|
|
320
|
+
status: import("./payout.dtos.js").PayoutStatus;
|
|
341
321
|
id: string;
|
|
322
|
+
profileId: string;
|
|
323
|
+
createdAt: Date;
|
|
324
|
+
updatedAt: Date;
|
|
342
325
|
channel: string;
|
|
343
326
|
msisdn: string;
|
|
344
327
|
amount: number;
|
|
345
328
|
description: string;
|
|
346
329
|
payeeName: string;
|
|
347
|
-
profileId: string;
|
|
348
330
|
countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
|
|
349
331
|
currencyCode: import("@temboplus/frontend-core").CurrencyCode;
|
|
350
332
|
statusMessage: string;
|
|
351
|
-
createdAt: Date;
|
|
352
|
-
updatedAt: Date;
|
|
353
333
|
notes?: string | null | undefined;
|
|
354
334
|
partnerReference?: string | null | undefined;
|
|
355
335
|
actionedAt?: Date | null | undefined;
|
|
356
|
-
approvalStatus?: import("./payout.dtos").PayoutApprovalStatus | null | undefined;
|
|
336
|
+
approvalStatus?: import("./payout.dtos.js").PayoutApprovalStatus | null | undefined;
|
|
357
337
|
createdBy?: {
|
|
358
338
|
name: string;
|
|
359
339
|
id: string;
|
|
@@ -365,26 +345,26 @@ export declare const contract: {
|
|
|
365
345
|
identity: string;
|
|
366
346
|
} | null | undefined;
|
|
367
347
|
}[];
|
|
368
|
-
total: number;
|
|
369
348
|
}, {
|
|
349
|
+
total: number;
|
|
370
350
|
results: {
|
|
371
|
-
status: import("./payout.dtos").PayoutStatus;
|
|
351
|
+
status: import("./payout.dtos.js").PayoutStatus;
|
|
372
352
|
id: string;
|
|
353
|
+
profileId: string;
|
|
354
|
+
createdAt: Date;
|
|
355
|
+
updatedAt: Date;
|
|
373
356
|
channel: string;
|
|
374
357
|
msisdn: string;
|
|
375
358
|
amount: number;
|
|
376
359
|
description: string;
|
|
377
360
|
payeeName: string;
|
|
378
|
-
profileId: string;
|
|
379
361
|
statusMessage: string;
|
|
380
|
-
createdAt: Date;
|
|
381
|
-
updatedAt: Date;
|
|
382
362
|
notes?: string | null | undefined;
|
|
383
363
|
countryCode?: string | undefined;
|
|
384
364
|
currencyCode?: string | undefined;
|
|
385
365
|
partnerReference?: string | null | undefined;
|
|
386
366
|
actionedAt?: Date | null | undefined;
|
|
387
|
-
approvalStatus?: import("./payout.dtos").PayoutApprovalStatus | null | undefined;
|
|
367
|
+
approvalStatus?: import("./payout.dtos.js").PayoutApprovalStatus | null | undefined;
|
|
388
368
|
createdBy?: {
|
|
389
369
|
name: string;
|
|
390
370
|
id: string;
|
|
@@ -396,7 +376,6 @@ export declare const contract: {
|
|
|
396
376
|
identity: string;
|
|
397
377
|
} | null | undefined;
|
|
398
378
|
}[];
|
|
399
|
-
total: number;
|
|
400
379
|
}>;
|
|
401
380
|
};
|
|
402
381
|
};
|
|
@@ -439,13 +418,13 @@ export declare const contract: {
|
|
|
439
418
|
countryCode: z.ZodEffects<z.ZodDefault<z.ZodString>, import("@temboplus/frontend-core").ISO2CountryCode, string | undefined>;
|
|
440
419
|
currencyCode: z.ZodEffects<z.ZodDefault<z.ZodString>, import("@temboplus/frontend-core").CurrencyCode, string | undefined>;
|
|
441
420
|
channel: z.ZodString;
|
|
442
|
-
status: z.ZodNativeEnum<typeof import("./payout.dtos").PayoutStatus>;
|
|
421
|
+
status: z.ZodNativeEnum<typeof import("./payout.dtos.js").PayoutStatus>;
|
|
443
422
|
statusMessage: z.ZodString;
|
|
444
423
|
partnerReference: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
445
424
|
createdAt: z.ZodDate;
|
|
446
425
|
updatedAt: z.ZodDate;
|
|
447
426
|
actionedAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
448
|
-
approvalStatus: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("./payout.dtos").PayoutApprovalStatus>>>;
|
|
427
|
+
approvalStatus: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("./payout.dtos.js").PayoutApprovalStatus>>>;
|
|
449
428
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
450
429
|
id: z.ZodString;
|
|
451
430
|
name: z.ZodString;
|
|
@@ -473,23 +452,23 @@ export declare const contract: {
|
|
|
473
452
|
identity: string;
|
|
474
453
|
}>>>;
|
|
475
454
|
}, "strip", z.ZodTypeAny, {
|
|
476
|
-
status: import("./payout.dtos").PayoutStatus;
|
|
455
|
+
status: import("./payout.dtos.js").PayoutStatus;
|
|
477
456
|
id: string;
|
|
457
|
+
profileId: string;
|
|
458
|
+
createdAt: Date;
|
|
459
|
+
updatedAt: Date;
|
|
478
460
|
channel: string;
|
|
479
461
|
msisdn: string;
|
|
480
462
|
amount: number;
|
|
481
463
|
description: string;
|
|
482
464
|
payeeName: string;
|
|
483
|
-
profileId: string;
|
|
484
465
|
countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
|
|
485
466
|
currencyCode: import("@temboplus/frontend-core").CurrencyCode;
|
|
486
467
|
statusMessage: string;
|
|
487
|
-
createdAt: Date;
|
|
488
|
-
updatedAt: Date;
|
|
489
468
|
notes?: string | null | undefined;
|
|
490
469
|
partnerReference?: string | null | undefined;
|
|
491
470
|
actionedAt?: Date | null | undefined;
|
|
492
|
-
approvalStatus?: import("./payout.dtos").PayoutApprovalStatus | null | undefined;
|
|
471
|
+
approvalStatus?: import("./payout.dtos.js").PayoutApprovalStatus | null | undefined;
|
|
493
472
|
createdBy?: {
|
|
494
473
|
name: string;
|
|
495
474
|
id: string;
|
|
@@ -501,23 +480,23 @@ export declare const contract: {
|
|
|
501
480
|
identity: string;
|
|
502
481
|
} | null | undefined;
|
|
503
482
|
}, {
|
|
504
|
-
status: import("./payout.dtos").PayoutStatus;
|
|
483
|
+
status: import("./payout.dtos.js").PayoutStatus;
|
|
505
484
|
id: string;
|
|
485
|
+
profileId: string;
|
|
486
|
+
createdAt: Date;
|
|
487
|
+
updatedAt: Date;
|
|
506
488
|
channel: string;
|
|
507
489
|
msisdn: string;
|
|
508
490
|
amount: number;
|
|
509
491
|
description: string;
|
|
510
492
|
payeeName: string;
|
|
511
|
-
profileId: string;
|
|
512
493
|
statusMessage: string;
|
|
513
|
-
createdAt: Date;
|
|
514
|
-
updatedAt: Date;
|
|
515
494
|
notes?: string | null | undefined;
|
|
516
495
|
countryCode?: string | undefined;
|
|
517
496
|
currencyCode?: string | undefined;
|
|
518
497
|
partnerReference?: string | null | undefined;
|
|
519
498
|
actionedAt?: Date | null | undefined;
|
|
520
|
-
approvalStatus?: import("./payout.dtos").PayoutApprovalStatus | null | undefined;
|
|
499
|
+
approvalStatus?: import("./payout.dtos.js").PayoutApprovalStatus | null | undefined;
|
|
521
500
|
createdBy?: {
|
|
522
501
|
name: string;
|
|
523
502
|
id: string;
|
|
@@ -577,13 +556,13 @@ export declare const contract: {
|
|
|
577
556
|
countryCode: z.ZodEffects<z.ZodDefault<z.ZodString>, import("@temboplus/frontend-core").ISO2CountryCode, string | undefined>;
|
|
578
557
|
currencyCode: z.ZodEffects<z.ZodDefault<z.ZodString>, import("@temboplus/frontend-core").CurrencyCode, string | undefined>;
|
|
579
558
|
channel: z.ZodString;
|
|
580
|
-
status: z.ZodNativeEnum<typeof import("./payout.dtos").PayoutStatus>;
|
|
559
|
+
status: z.ZodNativeEnum<typeof import("./payout.dtos.js").PayoutStatus>;
|
|
581
560
|
statusMessage: z.ZodString;
|
|
582
561
|
partnerReference: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
583
562
|
createdAt: z.ZodDate;
|
|
584
563
|
updatedAt: z.ZodDate;
|
|
585
564
|
actionedAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
586
|
-
approvalStatus: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("./payout.dtos").PayoutApprovalStatus>>>;
|
|
565
|
+
approvalStatus: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("./payout.dtos.js").PayoutApprovalStatus>>>;
|
|
587
566
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
588
567
|
id: z.ZodString;
|
|
589
568
|
name: z.ZodString;
|
|
@@ -611,23 +590,23 @@ export declare const contract: {
|
|
|
611
590
|
identity: string;
|
|
612
591
|
}>>>;
|
|
613
592
|
}, "strip", z.ZodTypeAny, {
|
|
614
|
-
status: import("./payout.dtos").PayoutStatus;
|
|
593
|
+
status: import("./payout.dtos.js").PayoutStatus;
|
|
615
594
|
id: string;
|
|
595
|
+
profileId: string;
|
|
596
|
+
createdAt: Date;
|
|
597
|
+
updatedAt: Date;
|
|
616
598
|
channel: string;
|
|
617
599
|
msisdn: string;
|
|
618
600
|
amount: number;
|
|
619
601
|
description: string;
|
|
620
602
|
payeeName: string;
|
|
621
|
-
profileId: string;
|
|
622
603
|
countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
|
|
623
604
|
currencyCode: import("@temboplus/frontend-core").CurrencyCode;
|
|
624
605
|
statusMessage: string;
|
|
625
|
-
createdAt: Date;
|
|
626
|
-
updatedAt: Date;
|
|
627
606
|
notes?: string | null | undefined;
|
|
628
607
|
partnerReference?: string | null | undefined;
|
|
629
608
|
actionedAt?: Date | null | undefined;
|
|
630
|
-
approvalStatus?: import("./payout.dtos").PayoutApprovalStatus | null | undefined;
|
|
609
|
+
approvalStatus?: import("./payout.dtos.js").PayoutApprovalStatus | null | undefined;
|
|
631
610
|
createdBy?: {
|
|
632
611
|
name: string;
|
|
633
612
|
id: string;
|
|
@@ -639,23 +618,23 @@ export declare const contract: {
|
|
|
639
618
|
identity: string;
|
|
640
619
|
} | null | undefined;
|
|
641
620
|
}, {
|
|
642
|
-
status: import("./payout.dtos").PayoutStatus;
|
|
621
|
+
status: import("./payout.dtos.js").PayoutStatus;
|
|
643
622
|
id: string;
|
|
623
|
+
profileId: string;
|
|
624
|
+
createdAt: Date;
|
|
625
|
+
updatedAt: Date;
|
|
644
626
|
channel: string;
|
|
645
627
|
msisdn: string;
|
|
646
628
|
amount: number;
|
|
647
629
|
description: string;
|
|
648
630
|
payeeName: string;
|
|
649
|
-
profileId: string;
|
|
650
631
|
statusMessage: string;
|
|
651
|
-
createdAt: Date;
|
|
652
|
-
updatedAt: Date;
|
|
653
632
|
notes?: string | null | undefined;
|
|
654
633
|
countryCode?: string | undefined;
|
|
655
634
|
currencyCode?: string | undefined;
|
|
656
635
|
partnerReference?: string | null | undefined;
|
|
657
636
|
actionedAt?: Date | null | undefined;
|
|
658
|
-
approvalStatus?: import("./payout.dtos").PayoutApprovalStatus | null | undefined;
|
|
637
|
+
approvalStatus?: import("./payout.dtos.js").PayoutApprovalStatus | null | undefined;
|
|
659
638
|
createdBy?: {
|
|
660
639
|
name: string;
|
|
661
640
|
id: string;
|
|
@@ -687,13 +666,13 @@ export declare const contract: {
|
|
|
687
666
|
countryCode: z.ZodEffects<z.ZodDefault<z.ZodString>, import("@temboplus/frontend-core").ISO2CountryCode, string | undefined>;
|
|
688
667
|
currencyCode: z.ZodEffects<z.ZodDefault<z.ZodString>, import("@temboplus/frontend-core").CurrencyCode, string | undefined>;
|
|
689
668
|
channel: z.ZodString;
|
|
690
|
-
status: z.ZodNativeEnum<typeof import("./payout.dtos").PayoutStatus>;
|
|
669
|
+
status: z.ZodNativeEnum<typeof import("./payout.dtos.js").PayoutStatus>;
|
|
691
670
|
statusMessage: z.ZodString;
|
|
692
671
|
partnerReference: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
693
672
|
createdAt: z.ZodDate;
|
|
694
673
|
updatedAt: z.ZodDate;
|
|
695
674
|
actionedAt: z.ZodOptional<z.ZodNullable<z.ZodDate>>;
|
|
696
|
-
approvalStatus: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("./payout.dtos").PayoutApprovalStatus>>>;
|
|
675
|
+
approvalStatus: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("./payout.dtos.js").PayoutApprovalStatus>>>;
|
|
697
676
|
createdBy: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
698
677
|
id: z.ZodString;
|
|
699
678
|
name: z.ZodString;
|
|
@@ -721,23 +700,23 @@ export declare const contract: {
|
|
|
721
700
|
identity: string;
|
|
722
701
|
}>>>;
|
|
723
702
|
}, "strip", z.ZodTypeAny, {
|
|
724
|
-
status: import("./payout.dtos").PayoutStatus;
|
|
703
|
+
status: import("./payout.dtos.js").PayoutStatus;
|
|
725
704
|
id: string;
|
|
705
|
+
profileId: string;
|
|
706
|
+
createdAt: Date;
|
|
707
|
+
updatedAt: Date;
|
|
726
708
|
channel: string;
|
|
727
709
|
msisdn: string;
|
|
728
710
|
amount: number;
|
|
729
711
|
description: string;
|
|
730
712
|
payeeName: string;
|
|
731
|
-
profileId: string;
|
|
732
713
|
countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
|
|
733
714
|
currencyCode: import("@temboplus/frontend-core").CurrencyCode;
|
|
734
715
|
statusMessage: string;
|
|
735
|
-
createdAt: Date;
|
|
736
|
-
updatedAt: Date;
|
|
737
716
|
notes?: string | null | undefined;
|
|
738
717
|
partnerReference?: string | null | undefined;
|
|
739
718
|
actionedAt?: Date | null | undefined;
|
|
740
|
-
approvalStatus?: import("./payout.dtos").PayoutApprovalStatus | null | undefined;
|
|
719
|
+
approvalStatus?: import("./payout.dtos.js").PayoutApprovalStatus | null | undefined;
|
|
741
720
|
createdBy?: {
|
|
742
721
|
name: string;
|
|
743
722
|
id: string;
|
|
@@ -749,23 +728,23 @@ export declare const contract: {
|
|
|
749
728
|
identity: string;
|
|
750
729
|
} | null | undefined;
|
|
751
730
|
}, {
|
|
752
|
-
status: import("./payout.dtos").PayoutStatus;
|
|
731
|
+
status: import("./payout.dtos.js").PayoutStatus;
|
|
753
732
|
id: string;
|
|
733
|
+
profileId: string;
|
|
734
|
+
createdAt: Date;
|
|
735
|
+
updatedAt: Date;
|
|
754
736
|
channel: string;
|
|
755
737
|
msisdn: string;
|
|
756
738
|
amount: number;
|
|
757
739
|
description: string;
|
|
758
740
|
payeeName: string;
|
|
759
|
-
profileId: string;
|
|
760
741
|
statusMessage: string;
|
|
761
|
-
createdAt: Date;
|
|
762
|
-
updatedAt: Date;
|
|
763
742
|
notes?: string | null | undefined;
|
|
764
743
|
countryCode?: string | undefined;
|
|
765
744
|
currencyCode?: string | undefined;
|
|
766
745
|
partnerReference?: string | null | undefined;
|
|
767
746
|
actionedAt?: Date | null | undefined;
|
|
768
|
-
approvalStatus?: import("./payout.dtos").PayoutApprovalStatus | null | undefined;
|
|
747
|
+
approvalStatus?: import("./payout.dtos.js").PayoutApprovalStatus | null | undefined;
|
|
769
748
|
createdBy?: {
|
|
770
749
|
name: string;
|
|
771
750
|
id: string;
|