@temboplus/afloat 0.1.77-beta.5 → 0.1.77-beta.6
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.
|
@@ -213,6 +213,7 @@ declare const PayoutFiltersSchema: z.ZodObject<{
|
|
|
213
213
|
id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
214
214
|
partnerReference: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
215
215
|
channel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
216
|
+
currencyCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
216
217
|
status: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof PayoutStatus>>>;
|
|
217
218
|
approvalStatus: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof PayoutApprovalStatus>>>;
|
|
218
219
|
minAmount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -230,6 +231,7 @@ declare const PayoutFiltersSchema: z.ZodObject<{
|
|
|
230
231
|
startDate?: string | null | undefined;
|
|
231
232
|
endDate?: string | null | undefined;
|
|
232
233
|
channel?: string | null | undefined;
|
|
234
|
+
currencyCode?: string | null | undefined;
|
|
233
235
|
msisdn?: string | null | undefined;
|
|
234
236
|
payeeName?: string | null | undefined;
|
|
235
237
|
partnerReference?: string | null | undefined;
|
|
@@ -246,6 +248,7 @@ declare const PayoutFiltersSchema: z.ZodObject<{
|
|
|
246
248
|
page?: number | undefined;
|
|
247
249
|
limit?: number | undefined;
|
|
248
250
|
channel?: string | null | undefined;
|
|
251
|
+
currencyCode?: string | null | undefined;
|
|
249
252
|
msisdn?: string | null | undefined;
|
|
250
253
|
payeeName?: string | null | undefined;
|
|
251
254
|
partnerReference?: string | null | undefined;
|
|
@@ -494,6 +497,7 @@ export declare const PayoutDTOSchemas: {
|
|
|
494
497
|
id: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
495
498
|
partnerReference: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
496
499
|
channel: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
500
|
+
currencyCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
497
501
|
status: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof PayoutStatus>>>;
|
|
498
502
|
approvalStatus: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof PayoutApprovalStatus>>>;
|
|
499
503
|
minAmount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
@@ -511,6 +515,7 @@ export declare const PayoutDTOSchemas: {
|
|
|
511
515
|
startDate?: string | null | undefined;
|
|
512
516
|
endDate?: string | null | undefined;
|
|
513
517
|
channel?: string | null | undefined;
|
|
518
|
+
currencyCode?: string | null | undefined;
|
|
514
519
|
msisdn?: string | null | undefined;
|
|
515
520
|
payeeName?: string | null | undefined;
|
|
516
521
|
partnerReference?: string | null | undefined;
|
|
@@ -527,6 +532,7 @@ export declare const PayoutDTOSchemas: {
|
|
|
527
532
|
page?: number | undefined;
|
|
528
533
|
limit?: number | undefined;
|
|
529
534
|
channel?: string | null | undefined;
|
|
535
|
+
currencyCode?: string | null | undefined;
|
|
530
536
|
msisdn?: string | null | undefined;
|
|
531
537
|
payeeName?: string | null | undefined;
|
|
532
538
|
partnerReference?: string | null | undefined;
|
|
@@ -47,6 +47,7 @@ export declare class PayoutQuery extends QueryBuilder {
|
|
|
47
47
|
whereProfileId(profileId: string): this;
|
|
48
48
|
wherePartnerReference(partnerReference: string): this;
|
|
49
49
|
whereSearch(searchTerm: string): this;
|
|
50
|
+
whereCurrencyCode(currencyCode: string): this;
|
|
50
51
|
/**
|
|
51
52
|
* Apply all filters from PayoutFilters object
|
|
52
53
|
*/
|