@temboplus/afloat 0.1.74-0 → 0.1.75-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 +64 -64
- package/dist/features/contact/contact.api-contract.d.ts +24 -24
- package/dist/features/contact/contact.dtos.d.ts +6 -6
- package/dist/features/payout/payout.api-contract.d.ts +20 -20
- package/dist/features/payout/payout.dtos.d.ts +40 -40
- package/dist/features/wallet/wallet.contract.d.ts +6 -6
- package/dist/features/wallet/wallet.dtos.d.ts +12 -12
- package/dist/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
|
@@ -143,8 +143,8 @@ declare const PayoutDTOSchema: z.ZodObject<{
|
|
|
143
143
|
}, "strip", z.ZodTypeAny, {
|
|
144
144
|
status: PayoutStatus;
|
|
145
145
|
id: string;
|
|
146
|
-
profileId: string;
|
|
147
146
|
createdAt: Date;
|
|
147
|
+
profileId: string;
|
|
148
148
|
updatedAt: Date;
|
|
149
149
|
channel: string;
|
|
150
150
|
msisdn: string;
|
|
@@ -171,8 +171,8 @@ declare const PayoutDTOSchema: z.ZodObject<{
|
|
|
171
171
|
}, {
|
|
172
172
|
status: PayoutStatus;
|
|
173
173
|
id: string;
|
|
174
|
-
profileId: string;
|
|
175
174
|
createdAt: Date;
|
|
175
|
+
profileId: string;
|
|
176
176
|
updatedAt: Date;
|
|
177
177
|
channel: string;
|
|
178
178
|
msisdn: string;
|
|
@@ -225,35 +225,35 @@ declare const PayoutFiltersSchema: z.ZodObject<{
|
|
|
225
225
|
sortOrder: "asc" | "desc";
|
|
226
226
|
status?: PayoutStatus | null | undefined;
|
|
227
227
|
id?: string | null | undefined;
|
|
228
|
+
search?: string | null | undefined;
|
|
229
|
+
startDate?: string | null | undefined;
|
|
230
|
+
endDate?: string | null | undefined;
|
|
228
231
|
profileId?: string | null | undefined;
|
|
229
232
|
channel?: string | null | undefined;
|
|
230
233
|
msisdn?: string | null | undefined;
|
|
231
234
|
payeeName?: string | null | undefined;
|
|
232
235
|
partnerReference?: string | null | undefined;
|
|
233
236
|
approvalStatus?: PayoutApprovalStatus | null | undefined;
|
|
234
|
-
startDate?: string | null | undefined;
|
|
235
|
-
endDate?: string | null | undefined;
|
|
236
237
|
minAmount?: number | null | undefined;
|
|
237
238
|
maxAmount?: number | null | undefined;
|
|
238
|
-
search?: string | null | undefined;
|
|
239
239
|
}, {
|
|
240
240
|
status?: PayoutStatus | null | undefined;
|
|
241
|
+
page?: number | undefined;
|
|
242
|
+
limit?: number | undefined;
|
|
241
243
|
id?: string | null | undefined;
|
|
244
|
+
search?: string | null | undefined;
|
|
245
|
+
startDate?: string | null | undefined;
|
|
246
|
+
endDate?: string | null | undefined;
|
|
242
247
|
profileId?: string | null | undefined;
|
|
243
248
|
channel?: string | null | undefined;
|
|
244
249
|
msisdn?: string | null | undefined;
|
|
245
250
|
payeeName?: string | null | undefined;
|
|
246
251
|
partnerReference?: string | null | undefined;
|
|
247
252
|
approvalStatus?: PayoutApprovalStatus | null | undefined;
|
|
248
|
-
page?: number | undefined;
|
|
249
|
-
limit?: number | undefined;
|
|
250
253
|
sortBy?: string | undefined;
|
|
251
254
|
sortOrder?: "asc" | "desc" | undefined;
|
|
252
|
-
startDate?: string | null | undefined;
|
|
253
|
-
endDate?: string | null | undefined;
|
|
254
255
|
minAmount?: number | null | undefined;
|
|
255
256
|
maxAmount?: number | null | undefined;
|
|
256
|
-
search?: string | null | undefined;
|
|
257
257
|
}>;
|
|
258
258
|
/**
|
|
259
259
|
* URL-safe schema for query parameters (all strings)
|
|
@@ -280,38 +280,38 @@ declare const PayoutURLQueryParamsSchema: z.ZodObject<{
|
|
|
280
280
|
sortBy: string;
|
|
281
281
|
sortOrder: "asc" | "desc";
|
|
282
282
|
status?: PayoutStatus | undefined;
|
|
283
|
+
page?: number | undefined;
|
|
284
|
+
limit?: number | undefined;
|
|
283
285
|
id?: string | undefined;
|
|
286
|
+
search?: string | undefined;
|
|
287
|
+
startDate?: string | undefined;
|
|
288
|
+
endDate?: string | undefined;
|
|
284
289
|
profileId?: string | undefined;
|
|
285
290
|
channel?: string | undefined;
|
|
286
291
|
msisdn?: string | undefined;
|
|
287
292
|
payeeName?: string | undefined;
|
|
288
293
|
partnerReference?: string | undefined;
|
|
289
294
|
approvalStatus?: PayoutApprovalStatus | undefined;
|
|
290
|
-
page?: number | undefined;
|
|
291
|
-
limit?: number | undefined;
|
|
292
|
-
startDate?: string | undefined;
|
|
293
|
-
endDate?: string | undefined;
|
|
294
295
|
minAmount?: number | undefined;
|
|
295
296
|
maxAmount?: number | undefined;
|
|
296
|
-
search?: string | undefined;
|
|
297
297
|
}, {
|
|
298
298
|
status?: string | undefined;
|
|
299
|
+
page?: string | undefined;
|
|
300
|
+
limit?: string | undefined;
|
|
299
301
|
id?: string | undefined;
|
|
302
|
+
search?: string | undefined;
|
|
303
|
+
startDate?: string | undefined;
|
|
304
|
+
endDate?: string | undefined;
|
|
300
305
|
profileId?: string | undefined;
|
|
301
306
|
channel?: string | undefined;
|
|
302
307
|
msisdn?: string | undefined;
|
|
303
308
|
payeeName?: string | undefined;
|
|
304
309
|
partnerReference?: string | undefined;
|
|
305
310
|
approvalStatus?: string | undefined;
|
|
306
|
-
page?: string | undefined;
|
|
307
|
-
limit?: string | undefined;
|
|
308
311
|
sortBy?: string | undefined;
|
|
309
312
|
sortOrder?: "asc" | "desc" | undefined;
|
|
310
|
-
startDate?: string | undefined;
|
|
311
|
-
endDate?: string | undefined;
|
|
312
313
|
minAmount?: string | undefined;
|
|
313
314
|
maxAmount?: string | undefined;
|
|
314
|
-
search?: string | undefined;
|
|
315
315
|
}>;
|
|
316
316
|
/**
|
|
317
317
|
* Type definition inferred from AuthorizerSchema
|
|
@@ -389,8 +389,8 @@ export declare const PayoutDTOSchemas: {
|
|
|
389
389
|
}, "strip", z.ZodTypeAny, {
|
|
390
390
|
status: PayoutStatus;
|
|
391
391
|
id: string;
|
|
392
|
-
profileId: string;
|
|
393
392
|
createdAt: Date;
|
|
393
|
+
profileId: string;
|
|
394
394
|
updatedAt: Date;
|
|
395
395
|
channel: string;
|
|
396
396
|
msisdn: string;
|
|
@@ -417,8 +417,8 @@ export declare const PayoutDTOSchemas: {
|
|
|
417
417
|
}, {
|
|
418
418
|
status: PayoutStatus;
|
|
419
419
|
id: string;
|
|
420
|
-
profileId: string;
|
|
421
420
|
createdAt: Date;
|
|
421
|
+
profileId: string;
|
|
422
422
|
updatedAt: Date;
|
|
423
423
|
channel: string;
|
|
424
424
|
msisdn: string;
|
|
@@ -506,35 +506,35 @@ export declare const PayoutDTOSchemas: {
|
|
|
506
506
|
sortOrder: "asc" | "desc";
|
|
507
507
|
status?: PayoutStatus | null | undefined;
|
|
508
508
|
id?: string | null | undefined;
|
|
509
|
+
search?: string | null | undefined;
|
|
510
|
+
startDate?: string | null | undefined;
|
|
511
|
+
endDate?: string | null | undefined;
|
|
509
512
|
profileId?: string | null | undefined;
|
|
510
513
|
channel?: string | null | undefined;
|
|
511
514
|
msisdn?: string | null | undefined;
|
|
512
515
|
payeeName?: string | null | undefined;
|
|
513
516
|
partnerReference?: string | null | undefined;
|
|
514
517
|
approvalStatus?: PayoutApprovalStatus | null | undefined;
|
|
515
|
-
startDate?: string | null | undefined;
|
|
516
|
-
endDate?: string | null | undefined;
|
|
517
518
|
minAmount?: number | null | undefined;
|
|
518
519
|
maxAmount?: number | null | undefined;
|
|
519
|
-
search?: string | null | undefined;
|
|
520
520
|
}, {
|
|
521
521
|
status?: PayoutStatus | null | undefined;
|
|
522
|
+
page?: number | undefined;
|
|
523
|
+
limit?: number | undefined;
|
|
522
524
|
id?: string | null | undefined;
|
|
525
|
+
search?: string | null | undefined;
|
|
526
|
+
startDate?: string | null | undefined;
|
|
527
|
+
endDate?: string | null | undefined;
|
|
523
528
|
profileId?: string | null | undefined;
|
|
524
529
|
channel?: string | null | undefined;
|
|
525
530
|
msisdn?: string | null | undefined;
|
|
526
531
|
payeeName?: string | null | undefined;
|
|
527
532
|
partnerReference?: string | null | undefined;
|
|
528
533
|
approvalStatus?: PayoutApprovalStatus | null | undefined;
|
|
529
|
-
page?: number | undefined;
|
|
530
|
-
limit?: number | undefined;
|
|
531
534
|
sortBy?: string | undefined;
|
|
532
535
|
sortOrder?: "asc" | "desc" | undefined;
|
|
533
|
-
startDate?: string | null | undefined;
|
|
534
|
-
endDate?: string | null | undefined;
|
|
535
536
|
minAmount?: number | null | undefined;
|
|
536
537
|
maxAmount?: number | null | undefined;
|
|
537
|
-
search?: string | null | undefined;
|
|
538
538
|
}>;
|
|
539
539
|
readonly PayoutURLQueryParams: z.ZodObject<{
|
|
540
540
|
page: z.ZodOptional<z.ZodEffects<z.ZodString, number, string>>;
|
|
@@ -558,38 +558,38 @@ export declare const PayoutDTOSchemas: {
|
|
|
558
558
|
sortBy: string;
|
|
559
559
|
sortOrder: "asc" | "desc";
|
|
560
560
|
status?: PayoutStatus | undefined;
|
|
561
|
+
page?: number | undefined;
|
|
562
|
+
limit?: number | undefined;
|
|
561
563
|
id?: string | undefined;
|
|
564
|
+
search?: string | undefined;
|
|
565
|
+
startDate?: string | undefined;
|
|
566
|
+
endDate?: string | undefined;
|
|
562
567
|
profileId?: string | undefined;
|
|
563
568
|
channel?: string | undefined;
|
|
564
569
|
msisdn?: string | undefined;
|
|
565
570
|
payeeName?: string | undefined;
|
|
566
571
|
partnerReference?: string | undefined;
|
|
567
572
|
approvalStatus?: PayoutApprovalStatus | undefined;
|
|
568
|
-
page?: number | undefined;
|
|
569
|
-
limit?: number | undefined;
|
|
570
|
-
startDate?: string | undefined;
|
|
571
|
-
endDate?: string | undefined;
|
|
572
573
|
minAmount?: number | undefined;
|
|
573
574
|
maxAmount?: number | undefined;
|
|
574
|
-
search?: string | undefined;
|
|
575
575
|
}, {
|
|
576
576
|
status?: string | undefined;
|
|
577
|
+
page?: string | undefined;
|
|
578
|
+
limit?: string | undefined;
|
|
577
579
|
id?: string | undefined;
|
|
580
|
+
search?: string | undefined;
|
|
581
|
+
startDate?: string | undefined;
|
|
582
|
+
endDate?: string | undefined;
|
|
578
583
|
profileId?: string | undefined;
|
|
579
584
|
channel?: string | undefined;
|
|
580
585
|
msisdn?: string | undefined;
|
|
581
586
|
payeeName?: string | undefined;
|
|
582
587
|
partnerReference?: string | undefined;
|
|
583
588
|
approvalStatus?: string | undefined;
|
|
584
|
-
page?: string | undefined;
|
|
585
|
-
limit?: string | undefined;
|
|
586
589
|
sortBy?: string | undefined;
|
|
587
590
|
sortOrder?: "asc" | "desc" | undefined;
|
|
588
|
-
startDate?: string | undefined;
|
|
589
|
-
endDate?: string | undefined;
|
|
590
591
|
minAmount?: string | undefined;
|
|
591
592
|
maxAmount?: string | undefined;
|
|
592
|
-
search?: string | undefined;
|
|
593
593
|
}>;
|
|
594
594
|
};
|
|
595
595
|
/**
|
|
@@ -11,16 +11,16 @@ export declare const contract: {
|
|
|
11
11
|
currencyCode: z.ZodOptional<z.ZodEffects<z.ZodDefault<z.ZodString>, string, string | undefined>>;
|
|
12
12
|
}, "strip", z.ZodTypeAny, {
|
|
13
13
|
id?: string | undefined;
|
|
14
|
-
profileId?: string | undefined;
|
|
15
14
|
accountNo?: string | undefined;
|
|
15
|
+
profileId?: string | undefined;
|
|
16
16
|
channel?: string | undefined;
|
|
17
17
|
countryCode?: string | undefined;
|
|
18
18
|
currencyCode?: string | undefined;
|
|
19
19
|
accountName?: string | undefined;
|
|
20
20
|
}, {
|
|
21
21
|
id?: string | undefined;
|
|
22
|
-
profileId?: string | undefined;
|
|
23
22
|
accountNo?: string | undefined;
|
|
23
|
+
profileId?: string | undefined;
|
|
24
24
|
channel?: string | undefined;
|
|
25
25
|
countryCode?: string | undefined;
|
|
26
26
|
currencyCode?: string | undefined;
|
|
@@ -41,20 +41,20 @@ export declare const contract: {
|
|
|
41
41
|
updatedAt: z.ZodString;
|
|
42
42
|
}, "strip", z.ZodTypeAny, {
|
|
43
43
|
id: string;
|
|
44
|
-
|
|
44
|
+
accountNo: string;
|
|
45
45
|
createdAt: string;
|
|
46
|
+
profileId: string;
|
|
46
47
|
updatedAt: string;
|
|
47
|
-
accountNo: string;
|
|
48
48
|
channel: string;
|
|
49
49
|
countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
|
|
50
50
|
currencyCode: import("@temboplus/frontend-core").CurrencyCode;
|
|
51
51
|
accountName: string;
|
|
52
52
|
}, {
|
|
53
53
|
id: string;
|
|
54
|
-
|
|
54
|
+
accountNo: string;
|
|
55
55
|
createdAt: string;
|
|
56
|
+
profileId: string;
|
|
56
57
|
updatedAt: string;
|
|
57
|
-
accountNo: string;
|
|
58
58
|
channel: string;
|
|
59
59
|
accountName: string;
|
|
60
60
|
countryCode?: string | undefined;
|
|
@@ -16,20 +16,20 @@ declare const walletSchema: z.ZodObject<{
|
|
|
16
16
|
updatedAt: z.ZodString;
|
|
17
17
|
}, "strip", z.ZodTypeAny, {
|
|
18
18
|
id: string;
|
|
19
|
-
|
|
19
|
+
accountNo: string;
|
|
20
20
|
createdAt: string;
|
|
21
|
+
profileId: string;
|
|
21
22
|
updatedAt: string;
|
|
22
|
-
accountNo: string;
|
|
23
23
|
channel: string;
|
|
24
24
|
countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
|
|
25
25
|
currencyCode: import("@temboplus/frontend-core").CurrencyCode;
|
|
26
26
|
accountName: string;
|
|
27
27
|
}, {
|
|
28
28
|
id: string;
|
|
29
|
-
|
|
29
|
+
accountNo: string;
|
|
30
30
|
createdAt: string;
|
|
31
|
+
profileId: string;
|
|
31
32
|
updatedAt: string;
|
|
32
|
-
accountNo: string;
|
|
33
33
|
channel: string;
|
|
34
34
|
accountName: string;
|
|
35
35
|
countryCode?: string | undefined;
|
|
@@ -50,16 +50,16 @@ declare const walletQuerySchema: z.ZodObject<{
|
|
|
50
50
|
currencyCode: z.ZodOptional<z.ZodEffects<z.ZodDefault<z.ZodString>, string, string | undefined>>;
|
|
51
51
|
}, "strip", z.ZodTypeAny, {
|
|
52
52
|
id?: string | undefined;
|
|
53
|
-
profileId?: string | undefined;
|
|
54
53
|
accountNo?: string | undefined;
|
|
54
|
+
profileId?: string | undefined;
|
|
55
55
|
channel?: string | undefined;
|
|
56
56
|
countryCode?: string | undefined;
|
|
57
57
|
currencyCode?: string | undefined;
|
|
58
58
|
accountName?: string | undefined;
|
|
59
59
|
}, {
|
|
60
60
|
id?: string | undefined;
|
|
61
|
-
profileId?: string | undefined;
|
|
62
61
|
accountNo?: string | undefined;
|
|
62
|
+
profileId?: string | undefined;
|
|
63
63
|
channel?: string | undefined;
|
|
64
64
|
countryCode?: string | undefined;
|
|
65
65
|
currencyCode?: string | undefined;
|
|
@@ -119,20 +119,20 @@ export declare const WalletDTOSchemas: {
|
|
|
119
119
|
updatedAt: z.ZodString;
|
|
120
120
|
}, "strip", z.ZodTypeAny, {
|
|
121
121
|
id: string;
|
|
122
|
-
|
|
122
|
+
accountNo: string;
|
|
123
123
|
createdAt: string;
|
|
124
|
+
profileId: string;
|
|
124
125
|
updatedAt: string;
|
|
125
|
-
accountNo: string;
|
|
126
126
|
channel: string;
|
|
127
127
|
countryCode: import("@temboplus/frontend-core").ISO2CountryCode;
|
|
128
128
|
currencyCode: import("@temboplus/frontend-core").CurrencyCode;
|
|
129
129
|
accountName: string;
|
|
130
130
|
}, {
|
|
131
131
|
id: string;
|
|
132
|
-
|
|
132
|
+
accountNo: string;
|
|
133
133
|
createdAt: string;
|
|
134
|
+
profileId: string;
|
|
134
135
|
updatedAt: string;
|
|
135
|
-
accountNo: string;
|
|
136
136
|
channel: string;
|
|
137
137
|
accountName: string;
|
|
138
138
|
countryCode?: string | undefined;
|
|
@@ -148,16 +148,16 @@ export declare const WalletDTOSchemas: {
|
|
|
148
148
|
currencyCode: z.ZodOptional<z.ZodEffects<z.ZodDefault<z.ZodString>, string, string | undefined>>;
|
|
149
149
|
}, "strip", z.ZodTypeAny, {
|
|
150
150
|
id?: string | undefined;
|
|
151
|
-
profileId?: string | undefined;
|
|
152
151
|
accountNo?: string | undefined;
|
|
152
|
+
profileId?: string | undefined;
|
|
153
153
|
channel?: string | undefined;
|
|
154
154
|
countryCode?: string | undefined;
|
|
155
155
|
currencyCode?: string | undefined;
|
|
156
156
|
accountName?: string | undefined;
|
|
157
157
|
}, {
|
|
158
158
|
id?: string | undefined;
|
|
159
|
-
profileId?: string | undefined;
|
|
160
159
|
accountNo?: string | undefined;
|
|
160
|
+
profileId?: string | undefined;
|
|
161
161
|
channel?: string | undefined;
|
|
162
162
|
countryCode?: string | undefined;
|
|
163
163
|
currencyCode?: string | undefined;
|