@temboplus/afloat 0.2.1-beta.3 → 0.2.1-beta.5

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.
@@ -242,6 +242,7 @@ declare const PayoutFiltersSchema: z.ZodObject<{
242
242
  minAmount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
243
243
  maxAmount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
244
244
  search: z.ZodOptional<z.ZodNullable<z.ZodString>>;
245
+ relations: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
245
246
  }, "strip", z.ZodTypeAny, {
246
247
  page: number;
247
248
  limit: number;
@@ -269,6 +270,7 @@ declare const PayoutFiltersSchema: z.ZodObject<{
269
270
  actionedByIdIn?: string[] | null | undefined;
270
271
  minAmount?: number | null | undefined;
271
272
  maxAmount?: number | null | undefined;
273
+ relations?: string[] | null | undefined;
272
274
  }, {
273
275
  status?: PayoutStatus | null | undefined;
274
276
  page?: number | undefined;
@@ -296,6 +298,7 @@ declare const PayoutFiltersSchema: z.ZodObject<{
296
298
  actionedByIdIn?: string | string[] | null | undefined;
297
299
  minAmount?: number | null | undefined;
298
300
  maxAmount?: number | null | undefined;
301
+ relations?: string[] | null | undefined;
299
302
  }>;
300
303
  /**
301
304
  * URL-safe schema for query parameters (all strings)
@@ -326,6 +329,7 @@ declare const PayoutURLQueryParamsSchema: z.ZodObject<{
326
329
  minAmount: z.ZodOptional<z.ZodEffects<z.ZodString, number, string>>;
327
330
  maxAmount: z.ZodOptional<z.ZodEffects<z.ZodString, number, string>>;
328
331
  search: z.ZodOptional<z.ZodString>;
332
+ relations: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
329
333
  }, "strip", z.ZodTypeAny, {
330
334
  sortBy: string;
331
335
  sortOrder: "asc" | "desc";
@@ -352,6 +356,7 @@ declare const PayoutURLQueryParamsSchema: z.ZodObject<{
352
356
  actionedByIdIn?: string[] | undefined;
353
357
  minAmount?: number | undefined;
354
358
  maxAmount?: number | undefined;
359
+ relations?: string[] | undefined;
355
360
  }, {
356
361
  status?: string | undefined;
357
362
  page?: string | undefined;
@@ -378,6 +383,7 @@ declare const PayoutURLQueryParamsSchema: z.ZodObject<{
378
383
  actionedByIdIn?: string | string[] | undefined;
379
384
  minAmount?: string | undefined;
380
385
  maxAmount?: string | undefined;
386
+ relations?: string[] | undefined;
381
387
  }>;
382
388
  /**
383
389
  * Type definition inferred from AuthorizerSchema
@@ -581,6 +587,7 @@ export declare const PayoutDTOSchemas: {
581
587
  minAmount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
582
588
  maxAmount: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
583
589
  search: z.ZodOptional<z.ZodNullable<z.ZodString>>;
590
+ relations: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
584
591
  }, "strip", z.ZodTypeAny, {
585
592
  page: number;
586
593
  limit: number;
@@ -608,6 +615,7 @@ export declare const PayoutDTOSchemas: {
608
615
  actionedByIdIn?: string[] | null | undefined;
609
616
  minAmount?: number | null | undefined;
610
617
  maxAmount?: number | null | undefined;
618
+ relations?: string[] | null | undefined;
611
619
  }, {
612
620
  status?: PayoutStatus | null | undefined;
613
621
  page?: number | undefined;
@@ -635,6 +643,7 @@ export declare const PayoutDTOSchemas: {
635
643
  actionedByIdIn?: string | string[] | null | undefined;
636
644
  minAmount?: number | null | undefined;
637
645
  maxAmount?: number | null | undefined;
646
+ relations?: string[] | null | undefined;
638
647
  }>;
639
648
  readonly PayoutURLQueryParams: z.ZodObject<{
640
649
  page: z.ZodOptional<z.ZodEffects<z.ZodString, number, string>>;
@@ -662,6 +671,7 @@ export declare const PayoutDTOSchemas: {
662
671
  minAmount: z.ZodOptional<z.ZodEffects<z.ZodString, number, string>>;
663
672
  maxAmount: z.ZodOptional<z.ZodEffects<z.ZodString, number, string>>;
664
673
  search: z.ZodOptional<z.ZodString>;
674
+ relations: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
665
675
  }, "strip", z.ZodTypeAny, {
666
676
  sortBy: string;
667
677
  sortOrder: "asc" | "desc";
@@ -688,6 +698,7 @@ export declare const PayoutDTOSchemas: {
688
698
  actionedByIdIn?: string[] | undefined;
689
699
  minAmount?: number | undefined;
690
700
  maxAmount?: number | undefined;
701
+ relations?: string[] | undefined;
691
702
  }, {
692
703
  status?: string | undefined;
693
704
  page?: string | undefined;
@@ -714,6 +725,7 @@ export declare const PayoutDTOSchemas: {
714
725
  actionedByIdIn?: string | string[] | undefined;
715
726
  minAmount?: string | undefined;
716
727
  maxAmount?: string | undefined;
728
+ relations?: string[] | undefined;
717
729
  }>;
718
730
  };
719
731
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@temboplus/afloat",
3
- "version": "0.2.1-beta.3",
3
+ "version": "0.2.1-beta.5",
4
4
  "description": "A foundational library for Temboplus-Afloat projects.",
5
5
  "main": "./dist/index.cjs.js",
6
6
  "module": "./dist/index.esm.js",