@argent/x-shared 1.52.1 → 1.52.3

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.
@@ -953,7 +953,7 @@ export declare const apiStrkDelegatedStakingSchema: z.ZodObject<z.objectUtil.ext
953
953
  tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
954
954
  totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
955
955
  }, {
956
- investmentId: z.ZodString;
956
+ investmentId: z.ZodOptional<z.ZodString>;
957
957
  data: z.ZodObject<{
958
958
  stakerInfo: z.ZodObject<{
959
959
  name: z.ZodOptional<z.ZodString>;
@@ -1028,9 +1028,9 @@ export declare const apiStrkDelegatedStakingSchema: z.ZodObject<z.objectUtil.ext
1028
1028
  } | undefined;
1029
1029
  };
1030
1030
  id: string;
1031
- investmentId: string;
1032
1031
  totalBalances: Record<string, string>;
1033
1032
  tokenAddress?: `0x${string}` | undefined;
1033
+ investmentId?: string | undefined;
1034
1034
  }, {
1035
1035
  data: {
1036
1036
  stakerInfo: {
@@ -1048,9 +1048,9 @@ export declare const apiStrkDelegatedStakingSchema: z.ZodObject<z.objectUtil.ext
1048
1048
  } | undefined;
1049
1049
  };
1050
1050
  id: string;
1051
- investmentId: string;
1052
1051
  totalBalances: Record<string, string>;
1053
1052
  tokenAddress?: string | undefined;
1053
+ investmentId?: string | undefined;
1054
1054
  }>;
1055
1055
  export declare const apiStrkDelegatedStakingPositionsSchema: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
1056
1056
  id: z.ZodString;
@@ -1058,7 +1058,7 @@ export declare const apiStrkDelegatedStakingPositionsSchema: z.ZodArray<z.ZodObj
1058
1058
  tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
1059
1059
  totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
1060
1060
  }, {
1061
- investmentId: z.ZodString;
1061
+ investmentId: z.ZodOptional<z.ZodString>;
1062
1062
  data: z.ZodObject<{
1063
1063
  stakerInfo: z.ZodObject<{
1064
1064
  name: z.ZodOptional<z.ZodString>;
@@ -1133,9 +1133,9 @@ export declare const apiStrkDelegatedStakingPositionsSchema: z.ZodArray<z.ZodObj
1133
1133
  } | undefined;
1134
1134
  };
1135
1135
  id: string;
1136
- investmentId: string;
1137
1136
  totalBalances: Record<string, string>;
1138
1137
  tokenAddress?: `0x${string}` | undefined;
1138
+ investmentId?: string | undefined;
1139
1139
  }, {
1140
1140
  data: {
1141
1141
  stakerInfo: {
@@ -1153,9 +1153,9 @@ export declare const apiStrkDelegatedStakingPositionsSchema: z.ZodArray<z.ZodObj
1153
1153
  } | undefined;
1154
1154
  };
1155
1155
  id: string;
1156
- investmentId: string;
1157
1156
  totalBalances: Record<string, string>;
1158
1157
  tokenAddress?: string | undefined;
1158
+ investmentId?: string | undefined;
1159
1159
  }>, "many">;
1160
1160
  export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
1161
1161
  id: z.ZodString;
@@ -1429,7 +1429,7 @@ export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[
1429
1429
  tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
1430
1430
  totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
1431
1431
  }, {
1432
- investmentId: z.ZodString;
1432
+ investmentId: z.ZodOptional<z.ZodString>;
1433
1433
  data: z.ZodObject<{
1434
1434
  stakerInfo: z.ZodObject<{
1435
1435
  name: z.ZodOptional<z.ZodString>;
@@ -1504,9 +1504,9 @@ export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[
1504
1504
  } | undefined;
1505
1505
  };
1506
1506
  id: string;
1507
- investmentId: string;
1508
1507
  totalBalances: Record<string, string>;
1509
1508
  tokenAddress?: `0x${string}` | undefined;
1509
+ investmentId?: string | undefined;
1510
1510
  }, {
1511
1511
  data: {
1512
1512
  stakerInfo: {
@@ -1524,9 +1524,9 @@ export declare const apiDefiPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[
1524
1524
  } | undefined;
1525
1525
  };
1526
1526
  id: string;
1527
- investmentId: string;
1528
1527
  totalBalances: Record<string, string>;
1529
1528
  tokenAddress?: string | undefined;
1529
+ investmentId?: string | undefined;
1530
1530
  }>]>;
1531
1531
  export type ApiDefiPosition = z.infer<typeof apiDefiPositionSchema>;
1532
1532
  export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
@@ -1801,7 +1801,7 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
1801
1801
  tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
1802
1802
  totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
1803
1803
  }, {
1804
- investmentId: z.ZodString;
1804
+ investmentId: z.ZodOptional<z.ZodString>;
1805
1805
  data: z.ZodObject<{
1806
1806
  stakerInfo: z.ZodObject<{
1807
1807
  name: z.ZodOptional<z.ZodString>;
@@ -1876,9 +1876,9 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
1876
1876
  } | undefined;
1877
1877
  };
1878
1878
  id: string;
1879
- investmentId: string;
1880
1879
  totalBalances: Record<string, string>;
1881
1880
  tokenAddress?: `0x${string}` | undefined;
1881
+ investmentId?: string | undefined;
1882
1882
  }, {
1883
1883
  data: {
1884
1884
  stakerInfo: {
@@ -1896,9 +1896,9 @@ export declare const apiDefiDecompositionProducts: z.ZodArray<z.ZodUnion<[z.ZodU
1896
1896
  } | undefined;
1897
1897
  };
1898
1898
  id: string;
1899
- investmentId: string;
1900
1899
  totalBalances: Record<string, string>;
1901
1900
  tokenAddress?: string | undefined;
1901
+ investmentId?: string | undefined;
1902
1902
  }>]>, "many">;
1903
1903
  export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
1904
1904
  productId: z.ZodOptional<z.ZodString>;
@@ -2187,7 +2187,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
2187
2187
  tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
2188
2188
  totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
2189
2189
  }, {
2190
- investmentId: z.ZodString;
2190
+ investmentId: z.ZodOptional<z.ZodString>;
2191
2191
  data: z.ZodObject<{
2192
2192
  stakerInfo: z.ZodObject<{
2193
2193
  name: z.ZodOptional<z.ZodString>;
@@ -2262,9 +2262,9 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
2262
2262
  } | undefined;
2263
2263
  };
2264
2264
  id: string;
2265
- investmentId: string;
2266
2265
  totalBalances: Record<string, string>;
2267
2266
  tokenAddress?: `0x${string}` | undefined;
2267
+ investmentId?: string | undefined;
2268
2268
  }, {
2269
2269
  data: {
2270
2270
  stakerInfo: {
@@ -2282,9 +2282,9 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
2282
2282
  } | undefined;
2283
2283
  };
2284
2284
  id: string;
2285
- investmentId: string;
2286
2285
  totalBalances: Record<string, string>;
2287
2286
  tokenAddress?: string | undefined;
2287
+ investmentId?: string | undefined;
2288
2288
  }>]>, "many">;
2289
2289
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
2290
2290
  productId: z.ZodOptional<z.ZodString>;
@@ -2573,7 +2573,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
2573
2573
  tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
2574
2574
  totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
2575
2575
  }, {
2576
- investmentId: z.ZodString;
2576
+ investmentId: z.ZodOptional<z.ZodString>;
2577
2577
  data: z.ZodObject<{
2578
2578
  stakerInfo: z.ZodObject<{
2579
2579
  name: z.ZodOptional<z.ZodString>;
@@ -2648,9 +2648,9 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
2648
2648
  } | undefined;
2649
2649
  };
2650
2650
  id: string;
2651
- investmentId: string;
2652
2651
  totalBalances: Record<string, string>;
2653
2652
  tokenAddress?: `0x${string}` | undefined;
2653
+ investmentId?: string | undefined;
2654
2654
  }, {
2655
2655
  data: {
2656
2656
  stakerInfo: {
@@ -2668,9 +2668,9 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
2668
2668
  } | undefined;
2669
2669
  };
2670
2670
  id: string;
2671
- investmentId: string;
2672
2671
  totalBalances: Record<string, string>;
2673
2672
  tokenAddress?: string | undefined;
2673
+ investmentId?: string | undefined;
2674
2674
  }>]>, "many">;
2675
2675
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
2676
2676
  productId: z.ZodOptional<z.ZodString>;
@@ -2959,7 +2959,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
2959
2959
  tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
2960
2960
  totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
2961
2961
  }, {
2962
- investmentId: z.ZodString;
2962
+ investmentId: z.ZodOptional<z.ZodString>;
2963
2963
  data: z.ZodObject<{
2964
2964
  stakerInfo: z.ZodObject<{
2965
2965
  name: z.ZodOptional<z.ZodString>;
@@ -3034,9 +3034,9 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
3034
3034
  } | undefined;
3035
3035
  };
3036
3036
  id: string;
3037
- investmentId: string;
3038
3037
  totalBalances: Record<string, string>;
3039
3038
  tokenAddress?: `0x${string}` | undefined;
3039
+ investmentId?: string | undefined;
3040
3040
  }, {
3041
3041
  data: {
3042
3042
  stakerInfo: {
@@ -3054,9 +3054,9 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
3054
3054
  } | undefined;
3055
3055
  };
3056
3056
  id: string;
3057
- investmentId: string;
3058
3057
  totalBalances: Record<string, string>;
3059
3058
  tokenAddress?: string | undefined;
3059
+ investmentId?: string | undefined;
3060
3060
  }>]>, "many">;
3061
3061
  }, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
3062
3062
  productId: z.ZodOptional<z.ZodString>;
@@ -3345,7 +3345,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
3345
3345
  tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
3346
3346
  totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
3347
3347
  }, {
3348
- investmentId: z.ZodString;
3348
+ investmentId: z.ZodOptional<z.ZodString>;
3349
3349
  data: z.ZodObject<{
3350
3350
  stakerInfo: z.ZodObject<{
3351
3351
  name: z.ZodOptional<z.ZodString>;
@@ -3420,9 +3420,9 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
3420
3420
  } | undefined;
3421
3421
  };
3422
3422
  id: string;
3423
- investmentId: string;
3424
3423
  totalBalances: Record<string, string>;
3425
3424
  tokenAddress?: `0x${string}` | undefined;
3425
+ investmentId?: string | undefined;
3426
3426
  }, {
3427
3427
  data: {
3428
3428
  stakerInfo: {
@@ -3440,9 +3440,9 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
3440
3440
  } | undefined;
3441
3441
  };
3442
3442
  id: string;
3443
- investmentId: string;
3444
3443
  totalBalances: Record<string, string>;
3445
3444
  tokenAddress?: string | undefined;
3445
+ investmentId?: string | undefined;
3446
3446
  }>]>, "many">;
3447
3447
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
3448
3448
  productId: z.ZodOptional<z.ZodString>;
@@ -3731,7 +3731,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
3731
3731
  tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
3732
3732
  totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
3733
3733
  }, {
3734
- investmentId: z.ZodString;
3734
+ investmentId: z.ZodOptional<z.ZodString>;
3735
3735
  data: z.ZodObject<{
3736
3736
  stakerInfo: z.ZodObject<{
3737
3737
  name: z.ZodOptional<z.ZodString>;
@@ -3806,9 +3806,9 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
3806
3806
  } | undefined;
3807
3807
  };
3808
3808
  id: string;
3809
- investmentId: string;
3810
3809
  totalBalances: Record<string, string>;
3811
3810
  tokenAddress?: `0x${string}` | undefined;
3811
+ investmentId?: string | undefined;
3812
3812
  }, {
3813
3813
  data: {
3814
3814
  stakerInfo: {
@@ -3826,9 +3826,9 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
3826
3826
  } | undefined;
3827
3827
  };
3828
3828
  id: string;
3829
- investmentId: string;
3830
3829
  totalBalances: Record<string, string>;
3831
3830
  tokenAddress?: string | undefined;
3831
+ investmentId?: string | undefined;
3832
3832
  }>]>, "many">;
3833
3833
  }, z.ZodTypeAny, "passthrough">> & {
3834
3834
  extend: <E extends z.ZodRawShape>(extension: E) => z.ZodEffects<z.ZodObject<{
@@ -4118,7 +4118,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
4118
4118
  tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
4119
4119
  totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
4120
4120
  }, {
4121
- investmentId: z.ZodString;
4121
+ investmentId: z.ZodOptional<z.ZodString>;
4122
4122
  data: z.ZodObject<{
4123
4123
  stakerInfo: z.ZodObject<{
4124
4124
  name: z.ZodOptional<z.ZodString>;
@@ -4193,9 +4193,9 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
4193
4193
  } | undefined;
4194
4194
  };
4195
4195
  id: string;
4196
- investmentId: string;
4197
4196
  totalBalances: Record<string, string>;
4198
4197
  tokenAddress?: `0x${string}` | undefined;
4198
+ investmentId?: string | undefined;
4199
4199
  }, {
4200
4200
  data: {
4201
4201
  stakerInfo: {
@@ -4213,9 +4213,9 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
4213
4213
  } | undefined;
4214
4214
  };
4215
4215
  id: string;
4216
- investmentId: string;
4217
4216
  totalBalances: Record<string, string>;
4218
4217
  tokenAddress?: string | undefined;
4218
+ investmentId?: string | undefined;
4219
4219
  }>]>, "many">;
4220
4220
  } & E, "passthrough", z.ZodTypeAny, z.objectOutputType<{
4221
4221
  productId: z.ZodOptional<z.ZodString>;
@@ -4504,7 +4504,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
4504
4504
  tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
4505
4505
  totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
4506
4506
  }, {
4507
- investmentId: z.ZodString;
4507
+ investmentId: z.ZodOptional<z.ZodString>;
4508
4508
  data: z.ZodObject<{
4509
4509
  stakerInfo: z.ZodObject<{
4510
4510
  name: z.ZodOptional<z.ZodString>;
@@ -4579,9 +4579,9 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
4579
4579
  } | undefined;
4580
4580
  };
4581
4581
  id: string;
4582
- investmentId: string;
4583
4582
  totalBalances: Record<string, string>;
4584
4583
  tokenAddress?: `0x${string}` | undefined;
4584
+ investmentId?: string | undefined;
4585
4585
  }, {
4586
4586
  data: {
4587
4587
  stakerInfo: {
@@ -4599,9 +4599,9 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
4599
4599
  } | undefined;
4600
4600
  };
4601
4601
  id: string;
4602
- investmentId: string;
4603
4602
  totalBalances: Record<string, string>;
4604
4603
  tokenAddress?: string | undefined;
4604
+ investmentId?: string | undefined;
4605
4605
  }>]>, "many">;
4606
4606
  } & E, z.ZodTypeAny, "passthrough">, z.objectInputType<{
4607
4607
  productId: z.ZodOptional<z.ZodString>;
@@ -4890,7 +4890,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
4890
4890
  tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
4891
4891
  totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
4892
4892
  }, {
4893
- investmentId: z.ZodString;
4893
+ investmentId: z.ZodOptional<z.ZodString>;
4894
4894
  data: z.ZodObject<{
4895
4895
  stakerInfo: z.ZodObject<{
4896
4896
  name: z.ZodOptional<z.ZodString>;
@@ -4965,9 +4965,9 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
4965
4965
  } | undefined;
4966
4966
  };
4967
4967
  id: string;
4968
- investmentId: string;
4969
4968
  totalBalances: Record<string, string>;
4970
4969
  tokenAddress?: `0x${string}` | undefined;
4970
+ investmentId?: string | undefined;
4971
4971
  }, {
4972
4972
  data: {
4973
4973
  stakerInfo: {
@@ -4985,9 +4985,9 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
4985
4985
  } | undefined;
4986
4986
  };
4987
4987
  id: string;
4988
- investmentId: string;
4989
4988
  totalBalances: Record<string, string>;
4990
4989
  tokenAddress?: string | undefined;
4990
+ investmentId?: string | undefined;
4991
4991
  }>]>, "many">;
4992
4992
  } & E, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
4993
4993
  productId: z.ZodOptional<z.ZodString>;
@@ -5276,7 +5276,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
5276
5276
  tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
5277
5277
  totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
5278
5278
  }, {
5279
- investmentId: z.ZodString;
5279
+ investmentId: z.ZodOptional<z.ZodString>;
5280
5280
  data: z.ZodObject<{
5281
5281
  stakerInfo: z.ZodObject<{
5282
5282
  name: z.ZodOptional<z.ZodString>;
@@ -5351,9 +5351,9 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
5351
5351
  } | undefined;
5352
5352
  };
5353
5353
  id: string;
5354
- investmentId: string;
5355
5354
  totalBalances: Record<string, string>;
5356
5355
  tokenAddress?: `0x${string}` | undefined;
5356
+ investmentId?: string | undefined;
5357
5357
  }, {
5358
5358
  data: {
5359
5359
  stakerInfo: {
@@ -5371,9 +5371,9 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
5371
5371
  } | undefined;
5372
5372
  };
5373
5373
  id: string;
5374
- investmentId: string;
5375
5374
  totalBalances: Record<string, string>;
5376
5375
  tokenAddress?: string | undefined;
5376
+ investmentId?: string | undefined;
5377
5377
  }>]>, "many">;
5378
5378
  } & E, z.ZodTypeAny, "passthrough">, z.objectInputType<{
5379
5379
  productId: z.ZodOptional<z.ZodString>;
@@ -5662,7 +5662,7 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
5662
5662
  tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
5663
5663
  totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
5664
5664
  }, {
5665
- investmentId: z.ZodString;
5665
+ investmentId: z.ZodOptional<z.ZodString>;
5666
5666
  data: z.ZodObject<{
5667
5667
  stakerInfo: z.ZodObject<{
5668
5668
  name: z.ZodOptional<z.ZodString>;
@@ -5737,9 +5737,9 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
5737
5737
  } | undefined;
5738
5738
  };
5739
5739
  id: string;
5740
- investmentId: string;
5741
5740
  totalBalances: Record<string, string>;
5742
5741
  tokenAddress?: `0x${string}` | undefined;
5742
+ investmentId?: string | undefined;
5743
5743
  }, {
5744
5744
  data: {
5745
5745
  stakerInfo: {
@@ -5757,9 +5757,9 @@ export declare const apiDefiDecompositionProduct: z.ZodEffects<z.ZodObject<{
5757
5757
  } | undefined;
5758
5758
  };
5759
5759
  id: string;
5760
- investmentId: string;
5761
5760
  totalBalances: Record<string, string>;
5762
5761
  tokenAddress?: string | undefined;
5762
+ investmentId?: string | undefined;
5763
5763
  }>]>, "many">;
5764
5764
  } & E, z.ZodTypeAny, "passthrough">>;
5765
5765
  };
@@ -6052,7 +6052,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
6052
6052
  tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
6053
6053
  totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
6054
6054
  }, {
6055
- investmentId: z.ZodString;
6055
+ investmentId: z.ZodOptional<z.ZodString>;
6056
6056
  data: z.ZodObject<{
6057
6057
  stakerInfo: z.ZodObject<{
6058
6058
  name: z.ZodOptional<z.ZodString>;
@@ -6127,9 +6127,9 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
6127
6127
  } | undefined;
6128
6128
  };
6129
6129
  id: string;
6130
- investmentId: string;
6131
6130
  totalBalances: Record<string, string>;
6132
6131
  tokenAddress?: `0x${string}` | undefined;
6132
+ investmentId?: string | undefined;
6133
6133
  }, {
6134
6134
  data: {
6135
6135
  stakerInfo: {
@@ -6147,9 +6147,9 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
6147
6147
  } | undefined;
6148
6148
  };
6149
6149
  id: string;
6150
- investmentId: string;
6151
6150
  totalBalances: Record<string, string>;
6152
6151
  tokenAddress?: string | undefined;
6152
+ investmentId?: string | undefined;
6153
6153
  }>]>, "many">;
6154
6154
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
6155
6155
  productId: z.ZodOptional<z.ZodString>;
@@ -6438,7 +6438,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
6438
6438
  tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
6439
6439
  totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
6440
6440
  }, {
6441
- investmentId: z.ZodString;
6441
+ investmentId: z.ZodOptional<z.ZodString>;
6442
6442
  data: z.ZodObject<{
6443
6443
  stakerInfo: z.ZodObject<{
6444
6444
  name: z.ZodOptional<z.ZodString>;
@@ -6513,9 +6513,9 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
6513
6513
  } | undefined;
6514
6514
  };
6515
6515
  id: string;
6516
- investmentId: string;
6517
6516
  totalBalances: Record<string, string>;
6518
6517
  tokenAddress?: `0x${string}` | undefined;
6518
+ investmentId?: string | undefined;
6519
6519
  }, {
6520
6520
  data: {
6521
6521
  stakerInfo: {
@@ -6533,9 +6533,9 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
6533
6533
  } | undefined;
6534
6534
  };
6535
6535
  id: string;
6536
- investmentId: string;
6537
6536
  totalBalances: Record<string, string>;
6538
6537
  tokenAddress?: string | undefined;
6538
+ investmentId?: string | undefined;
6539
6539
  }>]>, "many">;
6540
6540
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
6541
6541
  productId: z.ZodOptional<z.ZodString>;
@@ -6824,7 +6824,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
6824
6824
  tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
6825
6825
  totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
6826
6826
  }, {
6827
- investmentId: z.ZodString;
6827
+ investmentId: z.ZodOptional<z.ZodString>;
6828
6828
  data: z.ZodObject<{
6829
6829
  stakerInfo: z.ZodObject<{
6830
6830
  name: z.ZodOptional<z.ZodString>;
@@ -6899,9 +6899,9 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
6899
6899
  } | undefined;
6900
6900
  };
6901
6901
  id: string;
6902
- investmentId: string;
6903
6902
  totalBalances: Record<string, string>;
6904
6903
  tokenAddress?: `0x${string}` | undefined;
6904
+ investmentId?: string | undefined;
6905
6905
  }, {
6906
6906
  data: {
6907
6907
  stakerInfo: {
@@ -6919,9 +6919,9 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
6919
6919
  } | undefined;
6920
6920
  };
6921
6921
  id: string;
6922
- investmentId: string;
6923
6922
  totalBalances: Record<string, string>;
6924
6923
  tokenAddress?: string | undefined;
6924
+ investmentId?: string | undefined;
6925
6925
  }>]>, "many">;
6926
6926
  }, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
6927
6927
  productId: z.ZodOptional<z.ZodString>;
@@ -7210,7 +7210,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
7210
7210
  tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
7211
7211
  totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
7212
7212
  }, {
7213
- investmentId: z.ZodString;
7213
+ investmentId: z.ZodOptional<z.ZodString>;
7214
7214
  data: z.ZodObject<{
7215
7215
  stakerInfo: z.ZodObject<{
7216
7216
  name: z.ZodOptional<z.ZodString>;
@@ -7285,9 +7285,9 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
7285
7285
  } | undefined;
7286
7286
  };
7287
7287
  id: string;
7288
- investmentId: string;
7289
7288
  totalBalances: Record<string, string>;
7290
7289
  tokenAddress?: `0x${string}` | undefined;
7290
+ investmentId?: string | undefined;
7291
7291
  }, {
7292
7292
  data: {
7293
7293
  stakerInfo: {
@@ -7305,9 +7305,9 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
7305
7305
  } | undefined;
7306
7306
  };
7307
7307
  id: string;
7308
- investmentId: string;
7309
7308
  totalBalances: Record<string, string>;
7310
7309
  tokenAddress?: string | undefined;
7310
+ investmentId?: string | undefined;
7311
7311
  }>]>, "many">;
7312
7312
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
7313
7313
  productId: z.ZodOptional<z.ZodString>;
@@ -7596,7 +7596,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
7596
7596
  tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
7597
7597
  totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
7598
7598
  }, {
7599
- investmentId: z.ZodString;
7599
+ investmentId: z.ZodOptional<z.ZodString>;
7600
7600
  data: z.ZodObject<{
7601
7601
  stakerInfo: z.ZodObject<{
7602
7602
  name: z.ZodOptional<z.ZodString>;
@@ -7671,9 +7671,9 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
7671
7671
  } | undefined;
7672
7672
  };
7673
7673
  id: string;
7674
- investmentId: string;
7675
7674
  totalBalances: Record<string, string>;
7676
7675
  tokenAddress?: `0x${string}` | undefined;
7676
+ investmentId?: string | undefined;
7677
7677
  }, {
7678
7678
  data: {
7679
7679
  stakerInfo: {
@@ -7691,9 +7691,9 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
7691
7691
  } | undefined;
7692
7692
  };
7693
7693
  id: string;
7694
- investmentId: string;
7695
7694
  totalBalances: Record<string, string>;
7696
7695
  tokenAddress?: string | undefined;
7696
+ investmentId?: string | undefined;
7697
7697
  }>]>, "many">;
7698
7698
  }, z.ZodTypeAny, "passthrough">> & {
7699
7699
  extend: <E extends z.ZodRawShape>(extension: E) => z.ZodEffects<z.ZodObject<{
@@ -7983,7 +7983,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
7983
7983
  tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
7984
7984
  totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
7985
7985
  }, {
7986
- investmentId: z.ZodString;
7986
+ investmentId: z.ZodOptional<z.ZodString>;
7987
7987
  data: z.ZodObject<{
7988
7988
  stakerInfo: z.ZodObject<{
7989
7989
  name: z.ZodOptional<z.ZodString>;
@@ -8058,9 +8058,9 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
8058
8058
  } | undefined;
8059
8059
  };
8060
8060
  id: string;
8061
- investmentId: string;
8062
8061
  totalBalances: Record<string, string>;
8063
8062
  tokenAddress?: `0x${string}` | undefined;
8063
+ investmentId?: string | undefined;
8064
8064
  }, {
8065
8065
  data: {
8066
8066
  stakerInfo: {
@@ -8078,9 +8078,9 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
8078
8078
  } | undefined;
8079
8079
  };
8080
8080
  id: string;
8081
- investmentId: string;
8082
8081
  totalBalances: Record<string, string>;
8083
8082
  tokenAddress?: string | undefined;
8083
+ investmentId?: string | undefined;
8084
8084
  }>]>, "many">;
8085
8085
  } & E, "passthrough", z.ZodTypeAny, z.objectOutputType<{
8086
8086
  productId: z.ZodOptional<z.ZodString>;
@@ -8369,7 +8369,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
8369
8369
  tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
8370
8370
  totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
8371
8371
  }, {
8372
- investmentId: z.ZodString;
8372
+ investmentId: z.ZodOptional<z.ZodString>;
8373
8373
  data: z.ZodObject<{
8374
8374
  stakerInfo: z.ZodObject<{
8375
8375
  name: z.ZodOptional<z.ZodString>;
@@ -8444,9 +8444,9 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
8444
8444
  } | undefined;
8445
8445
  };
8446
8446
  id: string;
8447
- investmentId: string;
8448
8447
  totalBalances: Record<string, string>;
8449
8448
  tokenAddress?: `0x${string}` | undefined;
8449
+ investmentId?: string | undefined;
8450
8450
  }, {
8451
8451
  data: {
8452
8452
  stakerInfo: {
@@ -8464,9 +8464,9 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
8464
8464
  } | undefined;
8465
8465
  };
8466
8466
  id: string;
8467
- investmentId: string;
8468
8467
  totalBalances: Record<string, string>;
8469
8468
  tokenAddress?: string | undefined;
8469
+ investmentId?: string | undefined;
8470
8470
  }>]>, "many">;
8471
8471
  } & E, z.ZodTypeAny, "passthrough">, z.objectInputType<{
8472
8472
  productId: z.ZodOptional<z.ZodString>;
@@ -8755,7 +8755,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
8755
8755
  tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
8756
8756
  totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
8757
8757
  }, {
8758
- investmentId: z.ZodString;
8758
+ investmentId: z.ZodOptional<z.ZodString>;
8759
8759
  data: z.ZodObject<{
8760
8760
  stakerInfo: z.ZodObject<{
8761
8761
  name: z.ZodOptional<z.ZodString>;
@@ -8830,9 +8830,9 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
8830
8830
  } | undefined;
8831
8831
  };
8832
8832
  id: string;
8833
- investmentId: string;
8834
8833
  totalBalances: Record<string, string>;
8835
8834
  tokenAddress?: `0x${string}` | undefined;
8835
+ investmentId?: string | undefined;
8836
8836
  }, {
8837
8837
  data: {
8838
8838
  stakerInfo: {
@@ -8850,9 +8850,9 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
8850
8850
  } | undefined;
8851
8851
  };
8852
8852
  id: string;
8853
- investmentId: string;
8854
8853
  totalBalances: Record<string, string>;
8855
8854
  tokenAddress?: string | undefined;
8855
+ investmentId?: string | undefined;
8856
8856
  }>]>, "many">;
8857
8857
  } & E, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
8858
8858
  productId: z.ZodOptional<z.ZodString>;
@@ -9141,7 +9141,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
9141
9141
  tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
9142
9142
  totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
9143
9143
  }, {
9144
- investmentId: z.ZodString;
9144
+ investmentId: z.ZodOptional<z.ZodString>;
9145
9145
  data: z.ZodObject<{
9146
9146
  stakerInfo: z.ZodObject<{
9147
9147
  name: z.ZodOptional<z.ZodString>;
@@ -9216,9 +9216,9 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
9216
9216
  } | undefined;
9217
9217
  };
9218
9218
  id: string;
9219
- investmentId: string;
9220
9219
  totalBalances: Record<string, string>;
9221
9220
  tokenAddress?: `0x${string}` | undefined;
9221
+ investmentId?: string | undefined;
9222
9222
  }, {
9223
9223
  data: {
9224
9224
  stakerInfo: {
@@ -9236,9 +9236,9 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
9236
9236
  } | undefined;
9237
9237
  };
9238
9238
  id: string;
9239
- investmentId: string;
9240
9239
  totalBalances: Record<string, string>;
9241
9240
  tokenAddress?: string | undefined;
9241
+ investmentId?: string | undefined;
9242
9242
  }>]>, "many">;
9243
9243
  } & E, z.ZodTypeAny, "passthrough">, z.objectInputType<{
9244
9244
  productId: z.ZodOptional<z.ZodString>;
@@ -9527,7 +9527,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
9527
9527
  tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
9528
9528
  totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
9529
9529
  }, {
9530
- investmentId: z.ZodString;
9530
+ investmentId: z.ZodOptional<z.ZodString>;
9531
9531
  data: z.ZodObject<{
9532
9532
  stakerInfo: z.ZodObject<{
9533
9533
  name: z.ZodOptional<z.ZodString>;
@@ -9602,9 +9602,9 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
9602
9602
  } | undefined;
9603
9603
  };
9604
9604
  id: string;
9605
- investmentId: string;
9606
9605
  totalBalances: Record<string, string>;
9607
9606
  tokenAddress?: `0x${string}` | undefined;
9607
+ investmentId?: string | undefined;
9608
9608
  }, {
9609
9609
  data: {
9610
9610
  stakerInfo: {
@@ -9622,9 +9622,9 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
9622
9622
  } | undefined;
9623
9623
  };
9624
9624
  id: string;
9625
- investmentId: string;
9626
9625
  totalBalances: Record<string, string>;
9627
9626
  tokenAddress?: string | undefined;
9627
+ investmentId?: string | undefined;
9628
9628
  }>]>, "many">;
9629
9629
  } & E, z.ZodTypeAny, "passthrough">>;
9630
9630
  }, "many">;
@@ -9917,7 +9917,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
9917
9917
  tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
9918
9918
  totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
9919
9919
  }, {
9920
- investmentId: z.ZodString;
9920
+ investmentId: z.ZodOptional<z.ZodString>;
9921
9921
  data: z.ZodObject<{
9922
9922
  stakerInfo: z.ZodObject<{
9923
9923
  name: z.ZodOptional<z.ZodString>;
@@ -9992,9 +9992,9 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
9992
9992
  } | undefined;
9993
9993
  };
9994
9994
  id: string;
9995
- investmentId: string;
9996
9995
  totalBalances: Record<string, string>;
9997
9996
  tokenAddress?: `0x${string}` | undefined;
9997
+ investmentId?: string | undefined;
9998
9998
  }, {
9999
9999
  data: {
10000
10000
  stakerInfo: {
@@ -10012,9 +10012,9 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
10012
10012
  } | undefined;
10013
10013
  };
10014
10014
  id: string;
10015
- investmentId: string;
10016
10015
  totalBalances: Record<string, string>;
10017
10016
  tokenAddress?: string | undefined;
10017
+ investmentId?: string | undefined;
10018
10018
  }>]>, "many">;
10019
10019
  }, z.ZodTypeAny, "passthrough">[];
10020
10020
  }, {
@@ -10306,7 +10306,7 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
10306
10306
  tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
10307
10307
  totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
10308
10308
  }, {
10309
- investmentId: z.ZodString;
10309
+ investmentId: z.ZodOptional<z.ZodString>;
10310
10310
  data: z.ZodObject<{
10311
10311
  stakerInfo: z.ZodObject<{
10312
10312
  name: z.ZodOptional<z.ZodString>;
@@ -10381,9 +10381,9 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
10381
10381
  } | undefined;
10382
10382
  };
10383
10383
  id: string;
10384
- investmentId: string;
10385
10384
  totalBalances: Record<string, string>;
10386
10385
  tokenAddress?: `0x${string}` | undefined;
10386
+ investmentId?: string | undefined;
10387
10387
  }, {
10388
10388
  data: {
10389
10389
  stakerInfo: {
@@ -10401,9 +10401,9 @@ export declare const apiDefiDecompositionSchema: z.ZodObject<{
10401
10401
  } | undefined;
10402
10402
  };
10403
10403
  id: string;
10404
- investmentId: string;
10405
10404
  totalBalances: Record<string, string>;
10406
10405
  tokenAddress?: string | undefined;
10406
+ investmentId?: string | undefined;
10407
10407
  }>]>, "many">;
10408
10408
  }, z.ZodTypeAny, "passthrough">[];
10409
10409
  }>;
@@ -10697,7 +10697,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
10697
10697
  tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
10698
10698
  totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
10699
10699
  }, {
10700
- investmentId: z.ZodString;
10700
+ investmentId: z.ZodOptional<z.ZodString>;
10701
10701
  data: z.ZodObject<{
10702
10702
  stakerInfo: z.ZodObject<{
10703
10703
  name: z.ZodOptional<z.ZodString>;
@@ -10772,9 +10772,9 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
10772
10772
  } | undefined;
10773
10773
  };
10774
10774
  id: string;
10775
- investmentId: string;
10776
10775
  totalBalances: Record<string, string>;
10777
10776
  tokenAddress?: `0x${string}` | undefined;
10777
+ investmentId?: string | undefined;
10778
10778
  }, {
10779
10779
  data: {
10780
10780
  stakerInfo: {
@@ -10792,9 +10792,9 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
10792
10792
  } | undefined;
10793
10793
  };
10794
10794
  id: string;
10795
- investmentId: string;
10796
10795
  totalBalances: Record<string, string>;
10797
10796
  tokenAddress?: string | undefined;
10797
+ investmentId?: string | undefined;
10798
10798
  }>]>, "many">;
10799
10799
  }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
10800
10800
  productId: z.ZodOptional<z.ZodString>;
@@ -11083,7 +11083,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
11083
11083
  tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
11084
11084
  totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
11085
11085
  }, {
11086
- investmentId: z.ZodString;
11086
+ investmentId: z.ZodOptional<z.ZodString>;
11087
11087
  data: z.ZodObject<{
11088
11088
  stakerInfo: z.ZodObject<{
11089
11089
  name: z.ZodOptional<z.ZodString>;
@@ -11158,9 +11158,9 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
11158
11158
  } | undefined;
11159
11159
  };
11160
11160
  id: string;
11161
- investmentId: string;
11162
11161
  totalBalances: Record<string, string>;
11163
11162
  tokenAddress?: `0x${string}` | undefined;
11163
+ investmentId?: string | undefined;
11164
11164
  }, {
11165
11165
  data: {
11166
11166
  stakerInfo: {
@@ -11178,9 +11178,9 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
11178
11178
  } | undefined;
11179
11179
  };
11180
11180
  id: string;
11181
- investmentId: string;
11182
11181
  totalBalances: Record<string, string>;
11183
11182
  tokenAddress?: string | undefined;
11183
+ investmentId?: string | undefined;
11184
11184
  }>]>, "many">;
11185
11185
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
11186
11186
  productId: z.ZodOptional<z.ZodString>;
@@ -11469,7 +11469,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
11469
11469
  tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
11470
11470
  totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
11471
11471
  }, {
11472
- investmentId: z.ZodString;
11472
+ investmentId: z.ZodOptional<z.ZodString>;
11473
11473
  data: z.ZodObject<{
11474
11474
  stakerInfo: z.ZodObject<{
11475
11475
  name: z.ZodOptional<z.ZodString>;
@@ -11544,9 +11544,9 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
11544
11544
  } | undefined;
11545
11545
  };
11546
11546
  id: string;
11547
- investmentId: string;
11548
11547
  totalBalances: Record<string, string>;
11549
11548
  tokenAddress?: `0x${string}` | undefined;
11549
+ investmentId?: string | undefined;
11550
11550
  }, {
11551
11551
  data: {
11552
11552
  stakerInfo: {
@@ -11564,9 +11564,9 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
11564
11564
  } | undefined;
11565
11565
  };
11566
11566
  id: string;
11567
- investmentId: string;
11568
11567
  totalBalances: Record<string, string>;
11569
11568
  tokenAddress?: string | undefined;
11569
+ investmentId?: string | undefined;
11570
11570
  }>]>, "many">;
11571
11571
  }, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
11572
11572
  productId: z.ZodOptional<z.ZodString>;
@@ -11855,7 +11855,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
11855
11855
  tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
11856
11856
  totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
11857
11857
  }, {
11858
- investmentId: z.ZodString;
11858
+ investmentId: z.ZodOptional<z.ZodString>;
11859
11859
  data: z.ZodObject<{
11860
11860
  stakerInfo: z.ZodObject<{
11861
11861
  name: z.ZodOptional<z.ZodString>;
@@ -11930,9 +11930,9 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
11930
11930
  } | undefined;
11931
11931
  };
11932
11932
  id: string;
11933
- investmentId: string;
11934
11933
  totalBalances: Record<string, string>;
11935
11934
  tokenAddress?: `0x${string}` | undefined;
11935
+ investmentId?: string | undefined;
11936
11936
  }, {
11937
11937
  data: {
11938
11938
  stakerInfo: {
@@ -11950,9 +11950,9 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
11950
11950
  } | undefined;
11951
11951
  };
11952
11952
  id: string;
11953
- investmentId: string;
11954
11953
  totalBalances: Record<string, string>;
11955
11954
  tokenAddress?: string | undefined;
11955
+ investmentId?: string | undefined;
11956
11956
  }>]>, "many">;
11957
11957
  }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
11958
11958
  productId: z.ZodOptional<z.ZodString>;
@@ -12241,7 +12241,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
12241
12241
  tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
12242
12242
  totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
12243
12243
  }, {
12244
- investmentId: z.ZodString;
12244
+ investmentId: z.ZodOptional<z.ZodString>;
12245
12245
  data: z.ZodObject<{
12246
12246
  stakerInfo: z.ZodObject<{
12247
12247
  name: z.ZodOptional<z.ZodString>;
@@ -12316,9 +12316,9 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
12316
12316
  } | undefined;
12317
12317
  };
12318
12318
  id: string;
12319
- investmentId: string;
12320
12319
  totalBalances: Record<string, string>;
12321
12320
  tokenAddress?: `0x${string}` | undefined;
12321
+ investmentId?: string | undefined;
12322
12322
  }, {
12323
12323
  data: {
12324
12324
  stakerInfo: {
@@ -12336,9 +12336,9 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
12336
12336
  } | undefined;
12337
12337
  };
12338
12338
  id: string;
12339
- investmentId: string;
12340
12339
  totalBalances: Record<string, string>;
12341
12340
  tokenAddress?: string | undefined;
12341
+ investmentId?: string | undefined;
12342
12342
  }>]>, "many">;
12343
12343
  }, z.ZodTypeAny, "passthrough">> & {
12344
12344
  extend: <E extends z.ZodRawShape>(extension: E) => z.ZodEffects<z.ZodObject<{
@@ -12628,7 +12628,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
12628
12628
  tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
12629
12629
  totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
12630
12630
  }, {
12631
- investmentId: z.ZodString;
12631
+ investmentId: z.ZodOptional<z.ZodString>;
12632
12632
  data: z.ZodObject<{
12633
12633
  stakerInfo: z.ZodObject<{
12634
12634
  name: z.ZodOptional<z.ZodString>;
@@ -12703,9 +12703,9 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
12703
12703
  } | undefined;
12704
12704
  };
12705
12705
  id: string;
12706
- investmentId: string;
12707
12706
  totalBalances: Record<string, string>;
12708
12707
  tokenAddress?: `0x${string}` | undefined;
12708
+ investmentId?: string | undefined;
12709
12709
  }, {
12710
12710
  data: {
12711
12711
  stakerInfo: {
@@ -12723,9 +12723,9 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
12723
12723
  } | undefined;
12724
12724
  };
12725
12725
  id: string;
12726
- investmentId: string;
12727
12726
  totalBalances: Record<string, string>;
12728
12727
  tokenAddress?: string | undefined;
12728
+ investmentId?: string | undefined;
12729
12729
  }>]>, "many">;
12730
12730
  } & E, "passthrough", z.ZodTypeAny, z.objectOutputType<{
12731
12731
  productId: z.ZodOptional<z.ZodString>;
@@ -13014,7 +13014,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
13014
13014
  tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
13015
13015
  totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
13016
13016
  }, {
13017
- investmentId: z.ZodString;
13017
+ investmentId: z.ZodOptional<z.ZodString>;
13018
13018
  data: z.ZodObject<{
13019
13019
  stakerInfo: z.ZodObject<{
13020
13020
  name: z.ZodOptional<z.ZodString>;
@@ -13089,9 +13089,9 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
13089
13089
  } | undefined;
13090
13090
  };
13091
13091
  id: string;
13092
- investmentId: string;
13093
13092
  totalBalances: Record<string, string>;
13094
13093
  tokenAddress?: `0x${string}` | undefined;
13094
+ investmentId?: string | undefined;
13095
13095
  }, {
13096
13096
  data: {
13097
13097
  stakerInfo: {
@@ -13109,9 +13109,9 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
13109
13109
  } | undefined;
13110
13110
  };
13111
13111
  id: string;
13112
- investmentId: string;
13113
13112
  totalBalances: Record<string, string>;
13114
13113
  tokenAddress?: string | undefined;
13114
+ investmentId?: string | undefined;
13115
13115
  }>]>, "many">;
13116
13116
  } & E, z.ZodTypeAny, "passthrough">, z.objectInputType<{
13117
13117
  productId: z.ZodOptional<z.ZodString>;
@@ -13400,7 +13400,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
13400
13400
  tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
13401
13401
  totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
13402
13402
  }, {
13403
- investmentId: z.ZodString;
13403
+ investmentId: z.ZodOptional<z.ZodString>;
13404
13404
  data: z.ZodObject<{
13405
13405
  stakerInfo: z.ZodObject<{
13406
13406
  name: z.ZodOptional<z.ZodString>;
@@ -13475,9 +13475,9 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
13475
13475
  } | undefined;
13476
13476
  };
13477
13477
  id: string;
13478
- investmentId: string;
13479
13478
  totalBalances: Record<string, string>;
13480
13479
  tokenAddress?: `0x${string}` | undefined;
13480
+ investmentId?: string | undefined;
13481
13481
  }, {
13482
13482
  data: {
13483
13483
  stakerInfo: {
@@ -13495,9 +13495,9 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
13495
13495
  } | undefined;
13496
13496
  };
13497
13497
  id: string;
13498
- investmentId: string;
13499
13498
  totalBalances: Record<string, string>;
13500
13499
  tokenAddress?: string | undefined;
13500
+ investmentId?: string | undefined;
13501
13501
  }>]>, "many">;
13502
13502
  } & E, z.ZodTypeAny, "passthrough">>, z.objectOutputType<{
13503
13503
  productId: z.ZodOptional<z.ZodString>;
@@ -13786,7 +13786,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
13786
13786
  tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
13787
13787
  totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
13788
13788
  }, {
13789
- investmentId: z.ZodString;
13789
+ investmentId: z.ZodOptional<z.ZodString>;
13790
13790
  data: z.ZodObject<{
13791
13791
  stakerInfo: z.ZodObject<{
13792
13792
  name: z.ZodOptional<z.ZodString>;
@@ -13861,9 +13861,9 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
13861
13861
  } | undefined;
13862
13862
  };
13863
13863
  id: string;
13864
- investmentId: string;
13865
13864
  totalBalances: Record<string, string>;
13866
13865
  tokenAddress?: `0x${string}` | undefined;
13866
+ investmentId?: string | undefined;
13867
13867
  }, {
13868
13868
  data: {
13869
13869
  stakerInfo: {
@@ -13881,9 +13881,9 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
13881
13881
  } | undefined;
13882
13882
  };
13883
13883
  id: string;
13884
- investmentId: string;
13885
13884
  totalBalances: Record<string, string>;
13886
13885
  tokenAddress?: string | undefined;
13886
+ investmentId?: string | undefined;
13887
13887
  }>]>, "many">;
13888
13888
  } & E, z.ZodTypeAny, "passthrough">, z.objectInputType<{
13889
13889
  productId: z.ZodOptional<z.ZodString>;
@@ -14172,7 +14172,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
14172
14172
  tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
14173
14173
  totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
14174
14174
  }, {
14175
- investmentId: z.ZodString;
14175
+ investmentId: z.ZodOptional<z.ZodString>;
14176
14176
  data: z.ZodObject<{
14177
14177
  stakerInfo: z.ZodObject<{
14178
14178
  name: z.ZodOptional<z.ZodString>;
@@ -14247,9 +14247,9 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
14247
14247
  } | undefined;
14248
14248
  };
14249
14249
  id: string;
14250
- investmentId: string;
14251
14250
  totalBalances: Record<string, string>;
14252
14251
  tokenAddress?: `0x${string}` | undefined;
14252
+ investmentId?: string | undefined;
14253
14253
  }, {
14254
14254
  data: {
14255
14255
  stakerInfo: {
@@ -14267,9 +14267,9 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
14267
14267
  } | undefined;
14268
14268
  };
14269
14269
  id: string;
14270
- investmentId: string;
14271
14270
  totalBalances: Record<string, string>;
14272
14271
  tokenAddress?: string | undefined;
14272
+ investmentId?: string | undefined;
14273
14273
  }>]>, "many">;
14274
14274
  } & E, z.ZodTypeAny, "passthrough">>;
14275
14275
  }, "many">;
@@ -14562,7 +14562,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
14562
14562
  tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
14563
14563
  totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
14564
14564
  }, {
14565
- investmentId: z.ZodString;
14565
+ investmentId: z.ZodOptional<z.ZodString>;
14566
14566
  data: z.ZodObject<{
14567
14567
  stakerInfo: z.ZodObject<{
14568
14568
  name: z.ZodOptional<z.ZodString>;
@@ -14637,9 +14637,9 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
14637
14637
  } | undefined;
14638
14638
  };
14639
14639
  id: string;
14640
- investmentId: string;
14641
14640
  totalBalances: Record<string, string>;
14642
14641
  tokenAddress?: `0x${string}` | undefined;
14642
+ investmentId?: string | undefined;
14643
14643
  }, {
14644
14644
  data: {
14645
14645
  stakerInfo: {
@@ -14657,9 +14657,9 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
14657
14657
  } | undefined;
14658
14658
  };
14659
14659
  id: string;
14660
- investmentId: string;
14661
14660
  totalBalances: Record<string, string>;
14662
14661
  tokenAddress?: string | undefined;
14662
+ investmentId?: string | undefined;
14663
14663
  }>]>, "many">;
14664
14664
  }, z.ZodTypeAny, "passthrough">[];
14665
14665
  }, {
@@ -14951,7 +14951,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
14951
14951
  tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
14952
14952
  totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
14953
14953
  }, {
14954
- investmentId: z.ZodString;
14954
+ investmentId: z.ZodOptional<z.ZodString>;
14955
14955
  data: z.ZodObject<{
14956
14956
  stakerInfo: z.ZodObject<{
14957
14957
  name: z.ZodOptional<z.ZodString>;
@@ -15026,9 +15026,9 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
15026
15026
  } | undefined;
15027
15027
  };
15028
15028
  id: string;
15029
- investmentId: string;
15030
15029
  totalBalances: Record<string, string>;
15031
15030
  tokenAddress?: `0x${string}` | undefined;
15031
+ investmentId?: string | undefined;
15032
15032
  }, {
15033
15033
  data: {
15034
15034
  stakerInfo: {
@@ -15046,9 +15046,9 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
15046
15046
  } | undefined;
15047
15047
  };
15048
15048
  id: string;
15049
- investmentId: string;
15050
15049
  totalBalances: Record<string, string>;
15051
15050
  tokenAddress?: string | undefined;
15051
+ investmentId?: string | undefined;
15052
15052
  }>]>, "many">;
15053
15053
  }, z.ZodTypeAny, "passthrough">[];
15054
15054
  }>, "many">;
@@ -15342,7 +15342,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
15342
15342
  tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
15343
15343
  totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
15344
15344
  }, {
15345
- investmentId: z.ZodString;
15345
+ investmentId: z.ZodOptional<z.ZodString>;
15346
15346
  data: z.ZodObject<{
15347
15347
  stakerInfo: z.ZodObject<{
15348
15348
  name: z.ZodOptional<z.ZodString>;
@@ -15417,9 +15417,9 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
15417
15417
  } | undefined;
15418
15418
  };
15419
15419
  id: string;
15420
- investmentId: string;
15421
15420
  totalBalances: Record<string, string>;
15422
15421
  tokenAddress?: `0x${string}` | undefined;
15422
+ investmentId?: string | undefined;
15423
15423
  }, {
15424
15424
  data: {
15425
15425
  stakerInfo: {
@@ -15437,9 +15437,9 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
15437
15437
  } | undefined;
15438
15438
  };
15439
15439
  id: string;
15440
- investmentId: string;
15441
15440
  totalBalances: Record<string, string>;
15442
15441
  tokenAddress?: string | undefined;
15442
+ investmentId?: string | undefined;
15443
15443
  }>]>, "many">;
15444
15444
  }, z.ZodTypeAny, "passthrough">[];
15445
15445
  }[];
@@ -15733,7 +15733,7 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
15733
15733
  tokenAddress: z.ZodOptional<z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>>;
15734
15734
  totalBalances: z.ZodRecord<z.ZodString, z.ZodString>;
15735
15735
  }, {
15736
- investmentId: z.ZodString;
15736
+ investmentId: z.ZodOptional<z.ZodString>;
15737
15737
  data: z.ZodObject<{
15738
15738
  stakerInfo: z.ZodObject<{
15739
15739
  name: z.ZodOptional<z.ZodString>;
@@ -15808,9 +15808,9 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
15808
15808
  } | undefined;
15809
15809
  };
15810
15810
  id: string;
15811
- investmentId: string;
15812
15811
  totalBalances: Record<string, string>;
15813
15812
  tokenAddress?: `0x${string}` | undefined;
15813
+ investmentId?: string | undefined;
15814
15814
  }, {
15815
15815
  data: {
15816
15816
  stakerInfo: {
@@ -15828,9 +15828,9 @@ export declare const apiDefiPositionsSchema: z.ZodObject<{
15828
15828
  } | undefined;
15829
15829
  };
15830
15830
  id: string;
15831
- investmentId: string;
15832
15831
  totalBalances: Record<string, string>;
15833
15832
  tokenAddress?: string | undefined;
15833
+ investmentId?: string | undefined;
15834
15834
  }>]>, "many">;
15835
15835
  }, z.ZodTypeAny, "passthrough">[];
15836
15836
  }[];