@argent/x-shared 1.70.0 → 1.70.1

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.
@@ -2943,7 +2943,7 @@ export type ParsedCollateralizedDebtPositionsWithUsdValue = z.infer<typeof parse
2943
2943
  declare const parsedStakingPositionSchema: z.ZodObject<{
2944
2944
  id: z.ZodString;
2945
2945
  investmentId: z.ZodOptional<z.ZodString>;
2946
- apy: z.ZodString;
2946
+ apy: z.ZodOptional<z.ZodString>;
2947
2947
  totalApy: z.ZodOptional<z.ZodString>;
2948
2948
  token: z.ZodObject<z.objectUtil.extendShape<{
2949
2949
  address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
@@ -2971,13 +2971,13 @@ declare const parsedStakingPositionSchema: z.ZodObject<{
2971
2971
  }>>;
2972
2972
  }, "strip", z.ZodTypeAny, {
2973
2973
  id: string;
2974
- apy: string;
2975
2974
  token: {
2976
2975
  address: `0x${string}`;
2977
2976
  networkId: string;
2978
2977
  balance: string;
2979
2978
  };
2980
2979
  totalApy?: string | undefined;
2980
+ apy?: string | undefined;
2981
2981
  investmentId?: string | undefined;
2982
2982
  liquidityToken?: {
2983
2983
  address: `0x${string}`;
@@ -2985,13 +2985,13 @@ declare const parsedStakingPositionSchema: z.ZodObject<{
2985
2985
  } | undefined;
2986
2986
  }, {
2987
2987
  id: string;
2988
- apy: string;
2989
2988
  token: {
2990
2989
  address: string;
2991
2990
  networkId: string;
2992
2991
  balance: string;
2993
2992
  };
2994
2993
  totalApy?: string | undefined;
2994
+ apy?: string | undefined;
2995
2995
  investmentId?: string | undefined;
2996
2996
  liquidityToken?: {
2997
2997
  address: string;
@@ -3001,7 +3001,7 @@ declare const parsedStakingPositionSchema: z.ZodObject<{
3001
3001
  declare const parsedStakingPositionWithUsdValueSchema: z.ZodObject<z.objectUtil.extendShape<{
3002
3002
  id: z.ZodString;
3003
3003
  investmentId: z.ZodOptional<z.ZodString>;
3004
- apy: z.ZodString;
3004
+ apy: z.ZodOptional<z.ZodString>;
3005
3005
  totalApy: z.ZodOptional<z.ZodString>;
3006
3006
  token: z.ZodObject<z.objectUtil.extendShape<{
3007
3007
  address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
@@ -3048,7 +3048,6 @@ declare const parsedStakingPositionWithUsdValueSchema: z.ZodObject<z.objectUtil.
3048
3048
  }>;
3049
3049
  }>, "strip", z.ZodTypeAny, {
3050
3050
  id: string;
3051
- apy: string;
3052
3051
  token: {
3053
3052
  address: `0x${string}`;
3054
3053
  networkId: string;
@@ -3056,6 +3055,7 @@ declare const parsedStakingPositionWithUsdValueSchema: z.ZodObject<z.objectUtil.
3056
3055
  usdValue: string;
3057
3056
  };
3058
3057
  totalApy?: string | undefined;
3058
+ apy?: string | undefined;
3059
3059
  investmentId?: string | undefined;
3060
3060
  liquidityToken?: {
3061
3061
  address: `0x${string}`;
@@ -3063,7 +3063,6 @@ declare const parsedStakingPositionWithUsdValueSchema: z.ZodObject<z.objectUtil.
3063
3063
  } | undefined;
3064
3064
  }, {
3065
3065
  id: string;
3066
- apy: string;
3067
3066
  token: {
3068
3067
  address: string;
3069
3068
  networkId: string;
@@ -3071,6 +3070,7 @@ declare const parsedStakingPositionWithUsdValueSchema: z.ZodObject<z.objectUtil.
3071
3070
  usdValue: string;
3072
3071
  };
3073
3072
  totalApy?: string | undefined;
3073
+ apy?: string | undefined;
3074
3074
  investmentId?: string | undefined;
3075
3075
  liquidityToken?: {
3076
3076
  address: string;
@@ -3082,7 +3082,7 @@ export declare const parsedStakingPositionsWithUsdValueSchema: z.ZodObject<{
3082
3082
  positions: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
3083
3083
  id: z.ZodString;
3084
3084
  investmentId: z.ZodOptional<z.ZodString>;
3085
- apy: z.ZodString;
3085
+ apy: z.ZodOptional<z.ZodString>;
3086
3086
  totalApy: z.ZodOptional<z.ZodString>;
3087
3087
  token: z.ZodObject<z.objectUtil.extendShape<{
3088
3088
  address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
@@ -3129,7 +3129,6 @@ export declare const parsedStakingPositionsWithUsdValueSchema: z.ZodObject<{
3129
3129
  }>;
3130
3130
  }>, "strip", z.ZodTypeAny, {
3131
3131
  id: string;
3132
- apy: string;
3133
3132
  token: {
3134
3133
  address: `0x${string}`;
3135
3134
  networkId: string;
@@ -3137,6 +3136,7 @@ export declare const parsedStakingPositionsWithUsdValueSchema: z.ZodObject<{
3137
3136
  usdValue: string;
3138
3137
  };
3139
3138
  totalApy?: string | undefined;
3139
+ apy?: string | undefined;
3140
3140
  investmentId?: string | undefined;
3141
3141
  liquidityToken?: {
3142
3142
  address: `0x${string}`;
@@ -3144,7 +3144,6 @@ export declare const parsedStakingPositionsWithUsdValueSchema: z.ZodObject<{
3144
3144
  } | undefined;
3145
3145
  }, {
3146
3146
  id: string;
3147
- apy: string;
3148
3147
  token: {
3149
3148
  address: string;
3150
3149
  networkId: string;
@@ -3152,6 +3151,7 @@ export declare const parsedStakingPositionsWithUsdValueSchema: z.ZodObject<{
3152
3151
  usdValue: string;
3153
3152
  };
3154
3153
  totalApy?: string | undefined;
3154
+ apy?: string | undefined;
3155
3155
  investmentId?: string | undefined;
3156
3156
  liquidityToken?: {
3157
3157
  address: string;
@@ -3161,7 +3161,6 @@ export declare const parsedStakingPositionsWithUsdValueSchema: z.ZodObject<{
3161
3161
  }, "strip", z.ZodTypeAny, {
3162
3162
  positions: {
3163
3163
  id: string;
3164
- apy: string;
3165
3164
  token: {
3166
3165
  address: `0x${string}`;
3167
3166
  networkId: string;
@@ -3169,6 +3168,7 @@ export declare const parsedStakingPositionsWithUsdValueSchema: z.ZodObject<{
3169
3168
  usdValue: string;
3170
3169
  };
3171
3170
  totalApy?: string | undefined;
3171
+ apy?: string | undefined;
3172
3172
  investmentId?: string | undefined;
3173
3173
  liquidityToken?: {
3174
3174
  address: `0x${string}`;
@@ -3179,7 +3179,6 @@ export declare const parsedStakingPositionsWithUsdValueSchema: z.ZodObject<{
3179
3179
  }, {
3180
3180
  positions: {
3181
3181
  id: string;
3182
- apy: string;
3183
3182
  token: {
3184
3183
  address: string;
3185
3184
  networkId: string;
@@ -3187,6 +3186,7 @@ export declare const parsedStakingPositionsWithUsdValueSchema: z.ZodObject<{
3187
3186
  usdValue: string;
3188
3187
  };
3189
3188
  totalApy?: string | undefined;
3189
+ apy?: string | undefined;
3190
3190
  investmentId?: string | undefined;
3191
3191
  liquidityToken?: {
3192
3192
  address: string;
@@ -4347,7 +4347,7 @@ export declare const parsedPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z
4347
4347
  }>]>, z.ZodObject<{
4348
4348
  id: z.ZodString;
4349
4349
  investmentId: z.ZodOptional<z.ZodString>;
4350
- apy: z.ZodString;
4350
+ apy: z.ZodOptional<z.ZodString>;
4351
4351
  totalApy: z.ZodOptional<z.ZodString>;
4352
4352
  token: z.ZodObject<z.objectUtil.extendShape<{
4353
4353
  address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
@@ -4375,13 +4375,13 @@ export declare const parsedPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z
4375
4375
  }>>;
4376
4376
  }, "strip", z.ZodTypeAny, {
4377
4377
  id: string;
4378
- apy: string;
4379
4378
  token: {
4380
4379
  address: `0x${string}`;
4381
4380
  networkId: string;
4382
4381
  balance: string;
4383
4382
  };
4384
4383
  totalApy?: string | undefined;
4384
+ apy?: string | undefined;
4385
4385
  investmentId?: string | undefined;
4386
4386
  liquidityToken?: {
4387
4387
  address: `0x${string}`;
@@ -4389,13 +4389,13 @@ export declare const parsedPositionSchema: z.ZodUnion<[z.ZodUnion<[z.ZodUnion<[z
4389
4389
  } | undefined;
4390
4390
  }, {
4391
4391
  id: string;
4392
- apy: string;
4393
4392
  token: {
4394
4393
  address: string;
4395
4394
  networkId: string;
4396
4395
  balance: string;
4397
4396
  };
4398
4397
  totalApy?: string | undefined;
4398
+ apy?: string | undefined;
4399
4399
  investmentId?: string | undefined;
4400
4400
  liquidityToken?: {
4401
4401
  address: string;
@@ -5295,7 +5295,7 @@ export declare const parsedPositionWithUsdValueSchema: z.ZodUnion<[z.ZodUnion<[z
5295
5295
  }>]>, z.ZodObject<z.objectUtil.extendShape<{
5296
5296
  id: z.ZodString;
5297
5297
  investmentId: z.ZodOptional<z.ZodString>;
5298
- apy: z.ZodString;
5298
+ apy: z.ZodOptional<z.ZodString>;
5299
5299
  totalApy: z.ZodOptional<z.ZodString>;
5300
5300
  token: z.ZodObject<z.objectUtil.extendShape<{
5301
5301
  address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
@@ -5342,7 +5342,6 @@ export declare const parsedPositionWithUsdValueSchema: z.ZodUnion<[z.ZodUnion<[z
5342
5342
  }>;
5343
5343
  }>, "strip", z.ZodTypeAny, {
5344
5344
  id: string;
5345
- apy: string;
5346
5345
  token: {
5347
5346
  address: `0x${string}`;
5348
5347
  networkId: string;
@@ -5350,6 +5349,7 @@ export declare const parsedPositionWithUsdValueSchema: z.ZodUnion<[z.ZodUnion<[z
5350
5349
  usdValue: string;
5351
5350
  };
5352
5351
  totalApy?: string | undefined;
5352
+ apy?: string | undefined;
5353
5353
  investmentId?: string | undefined;
5354
5354
  liquidityToken?: {
5355
5355
  address: `0x${string}`;
@@ -5357,7 +5357,6 @@ export declare const parsedPositionWithUsdValueSchema: z.ZodUnion<[z.ZodUnion<[z
5357
5357
  } | undefined;
5358
5358
  }, {
5359
5359
  id: string;
5360
- apy: string;
5361
5360
  token: {
5362
5361
  address: string;
5363
5362
  networkId: string;
@@ -5365,6 +5364,7 @@ export declare const parsedPositionWithUsdValueSchema: z.ZodUnion<[z.ZodUnion<[z
5365
5364
  usdValue: string;
5366
5365
  };
5367
5366
  totalApy?: string | undefined;
5367
+ apy?: string | undefined;
5368
5368
  investmentId?: string | undefined;
5369
5369
  liquidityToken?: {
5370
5370
  address: string;
@@ -5931,7 +5931,7 @@ export declare const parsedProductSchema: z.ZodObject<{
5931
5931
  }>]>, z.ZodObject<{
5932
5932
  id: z.ZodString;
5933
5933
  investmentId: z.ZodOptional<z.ZodString>;
5934
- apy: z.ZodString;
5934
+ apy: z.ZodOptional<z.ZodString>;
5935
5935
  totalApy: z.ZodOptional<z.ZodString>;
5936
5936
  token: z.ZodObject<z.objectUtil.extendShape<{
5937
5937
  address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
@@ -5959,13 +5959,13 @@ export declare const parsedProductSchema: z.ZodObject<{
5959
5959
  }>>;
5960
5960
  }, "strip", z.ZodTypeAny, {
5961
5961
  id: string;
5962
- apy: string;
5963
5962
  token: {
5964
5963
  address: `0x${string}`;
5965
5964
  networkId: string;
5966
5965
  balance: string;
5967
5966
  };
5968
5967
  totalApy?: string | undefined;
5968
+ apy?: string | undefined;
5969
5969
  investmentId?: string | undefined;
5970
5970
  liquidityToken?: {
5971
5971
  address: `0x${string}`;
@@ -5973,13 +5973,13 @@ export declare const parsedProductSchema: z.ZodObject<{
5973
5973
  } | undefined;
5974
5974
  }, {
5975
5975
  id: string;
5976
- apy: string;
5977
5976
  token: {
5978
5977
  address: string;
5979
5978
  networkId: string;
5980
5979
  balance: string;
5981
5980
  };
5982
5981
  totalApy?: string | undefined;
5982
+ apy?: string | undefined;
5983
5983
  investmentId?: string | undefined;
5984
5984
  liquidityToken?: {
5985
5985
  address: string;
@@ -6089,13 +6089,13 @@ export declare const parsedProductSchema: z.ZodObject<{
6089
6089
  healthRatio?: string | undefined;
6090
6090
  } | {
6091
6091
  id: string;
6092
- apy: string;
6093
6092
  token: {
6094
6093
  address: `0x${string}`;
6095
6094
  networkId: string;
6096
6095
  balance: string;
6097
6096
  };
6098
6097
  totalApy?: string | undefined;
6098
+ apy?: string | undefined;
6099
6099
  investmentId?: string | undefined;
6100
6100
  liquidityToken?: {
6101
6101
  address: `0x${string}`;
@@ -6232,13 +6232,13 @@ export declare const parsedProductSchema: z.ZodObject<{
6232
6232
  healthRatio?: string | undefined;
6233
6233
  } | {
6234
6234
  id: string;
6235
- apy: string;
6236
6235
  token: {
6237
6236
  address: string;
6238
6237
  networkId: string;
6239
6238
  balance: string;
6240
6239
  };
6241
6240
  totalApy?: string | undefined;
6241
+ apy?: string | undefined;
6242
6242
  investmentId?: string | undefined;
6243
6243
  liquidityToken?: {
6244
6244
  address: string;
@@ -6845,7 +6845,7 @@ export declare const parsedProductWithUsdValueSchema: z.ZodObject<z.objectUtil.e
6845
6845
  }>]>, z.ZodObject<{
6846
6846
  id: z.ZodString;
6847
6847
  investmentId: z.ZodOptional<z.ZodString>;
6848
- apy: z.ZodString;
6848
+ apy: z.ZodOptional<z.ZodString>;
6849
6849
  totalApy: z.ZodOptional<z.ZodString>;
6850
6850
  token: z.ZodObject<z.objectUtil.extendShape<{
6851
6851
  address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
@@ -6873,13 +6873,13 @@ export declare const parsedProductWithUsdValueSchema: z.ZodObject<z.objectUtil.e
6873
6873
  }>>;
6874
6874
  }, "strip", z.ZodTypeAny, {
6875
6875
  id: string;
6876
- apy: string;
6877
6876
  token: {
6878
6877
  address: `0x${string}`;
6879
6878
  networkId: string;
6880
6879
  balance: string;
6881
6880
  };
6882
6881
  totalApy?: string | undefined;
6882
+ apy?: string | undefined;
6883
6883
  investmentId?: string | undefined;
6884
6884
  liquidityToken?: {
6885
6885
  address: `0x${string}`;
@@ -6887,13 +6887,13 @@ export declare const parsedProductWithUsdValueSchema: z.ZodObject<z.objectUtil.e
6887
6887
  } | undefined;
6888
6888
  }, {
6889
6889
  id: string;
6890
- apy: string;
6891
6890
  token: {
6892
6891
  address: string;
6893
6892
  networkId: string;
6894
6893
  balance: string;
6895
6894
  };
6896
6895
  totalApy?: string | undefined;
6896
+ apy?: string | undefined;
6897
6897
  investmentId?: string | undefined;
6898
6898
  liquidityToken?: {
6899
6899
  address: string;
@@ -7807,7 +7807,7 @@ export declare const parsedProductWithUsdValueSchema: z.ZodObject<z.objectUtil.e
7807
7807
  }>]>, z.ZodObject<z.objectUtil.extendShape<{
7808
7808
  id: z.ZodString;
7809
7809
  investmentId: z.ZodOptional<z.ZodString>;
7810
- apy: z.ZodString;
7810
+ apy: z.ZodOptional<z.ZodString>;
7811
7811
  totalApy: z.ZodOptional<z.ZodString>;
7812
7812
  token: z.ZodObject<z.objectUtil.extendShape<{
7813
7813
  address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
@@ -7854,7 +7854,6 @@ export declare const parsedProductWithUsdValueSchema: z.ZodObject<z.objectUtil.e
7854
7854
  }>;
7855
7855
  }>, "strip", z.ZodTypeAny, {
7856
7856
  id: string;
7857
- apy: string;
7858
7857
  token: {
7859
7858
  address: `0x${string}`;
7860
7859
  networkId: string;
@@ -7862,6 +7861,7 @@ export declare const parsedProductWithUsdValueSchema: z.ZodObject<z.objectUtil.e
7862
7861
  usdValue: string;
7863
7862
  };
7864
7863
  totalApy?: string | undefined;
7864
+ apy?: string | undefined;
7865
7865
  investmentId?: string | undefined;
7866
7866
  liquidityToken?: {
7867
7867
  address: `0x${string}`;
@@ -7869,7 +7869,6 @@ export declare const parsedProductWithUsdValueSchema: z.ZodObject<z.objectUtil.e
7869
7869
  } | undefined;
7870
7870
  }, {
7871
7871
  id: string;
7872
- apy: string;
7873
7872
  token: {
7874
7873
  address: string;
7875
7874
  networkId: string;
@@ -7877,6 +7876,7 @@ export declare const parsedProductWithUsdValueSchema: z.ZodObject<z.objectUtil.e
7877
7876
  usdValue: string;
7878
7877
  };
7879
7878
  totalApy?: string | undefined;
7879
+ apy?: string | undefined;
7880
7880
  investmentId?: string | undefined;
7881
7881
  liquidityToken?: {
7882
7882
  address: string;
@@ -7983,7 +7983,6 @@ export declare const parsedProductWithUsdValueSchema: z.ZodObject<z.objectUtil.e
7983
7983
  healthRatio?: string | undefined;
7984
7984
  } | {
7985
7985
  id: string;
7986
- apy: string;
7987
7986
  token: {
7988
7987
  address: `0x${string}`;
7989
7988
  networkId: string;
@@ -7991,6 +7990,7 @@ export declare const parsedProductWithUsdValueSchema: z.ZodObject<z.objectUtil.e
7991
7990
  usdValue: string;
7992
7991
  };
7993
7992
  totalApy?: string | undefined;
7993
+ apy?: string | undefined;
7994
7994
  investmentId?: string | undefined;
7995
7995
  liquidityToken?: {
7996
7996
  address: `0x${string}`;
@@ -8139,7 +8139,6 @@ export declare const parsedProductWithUsdValueSchema: z.ZodObject<z.objectUtil.e
8139
8139
  healthRatio?: string | undefined;
8140
8140
  } | {
8141
8141
  id: string;
8142
- apy: string;
8143
8142
  token: {
8144
8143
  address: string;
8145
8144
  networkId: string;
@@ -8147,6 +8146,7 @@ export declare const parsedProductWithUsdValueSchema: z.ZodObject<z.objectUtil.e
8147
8146
  usdValue: string;
8148
8147
  };
8149
8148
  totalApy?: string | undefined;
8149
+ apy?: string | undefined;
8150
8150
  investmentId?: string | undefined;
8151
8151
  liquidityToken?: {
8152
8152
  address: string;
@@ -8758,7 +8758,7 @@ export declare const parsedDefiDecompositionItemSchema: z.ZodObject<{
8758
8758
  }>]>, z.ZodObject<{
8759
8759
  id: z.ZodString;
8760
8760
  investmentId: z.ZodOptional<z.ZodString>;
8761
- apy: z.ZodString;
8761
+ apy: z.ZodOptional<z.ZodString>;
8762
8762
  totalApy: z.ZodOptional<z.ZodString>;
8763
8763
  token: z.ZodObject<z.objectUtil.extendShape<{
8764
8764
  address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
@@ -8786,13 +8786,13 @@ export declare const parsedDefiDecompositionItemSchema: z.ZodObject<{
8786
8786
  }>>;
8787
8787
  }, "strip", z.ZodTypeAny, {
8788
8788
  id: string;
8789
- apy: string;
8790
8789
  token: {
8791
8790
  address: `0x${string}`;
8792
8791
  networkId: string;
8793
8792
  balance: string;
8794
8793
  };
8795
8794
  totalApy?: string | undefined;
8795
+ apy?: string | undefined;
8796
8796
  investmentId?: string | undefined;
8797
8797
  liquidityToken?: {
8798
8798
  address: `0x${string}`;
@@ -8800,13 +8800,13 @@ export declare const parsedDefiDecompositionItemSchema: z.ZodObject<{
8800
8800
  } | undefined;
8801
8801
  }, {
8802
8802
  id: string;
8803
- apy: string;
8804
8803
  token: {
8805
8804
  address: string;
8806
8805
  networkId: string;
8807
8806
  balance: string;
8808
8807
  };
8809
8808
  totalApy?: string | undefined;
8809
+ apy?: string | undefined;
8810
8810
  investmentId?: string | undefined;
8811
8811
  liquidityToken?: {
8812
8812
  address: string;
@@ -8916,13 +8916,13 @@ export declare const parsedDefiDecompositionItemSchema: z.ZodObject<{
8916
8916
  healthRatio?: string | undefined;
8917
8917
  } | {
8918
8918
  id: string;
8919
- apy: string;
8920
8919
  token: {
8921
8920
  address: `0x${string}`;
8922
8921
  networkId: string;
8923
8922
  balance: string;
8924
8923
  };
8925
8924
  totalApy?: string | undefined;
8925
+ apy?: string | undefined;
8926
8926
  investmentId?: string | undefined;
8927
8927
  liquidityToken?: {
8928
8928
  address: `0x${string}`;
@@ -9059,13 +9059,13 @@ export declare const parsedDefiDecompositionItemSchema: z.ZodObject<{
9059
9059
  healthRatio?: string | undefined;
9060
9060
  } | {
9061
9061
  id: string;
9062
- apy: string;
9063
9062
  token: {
9064
9063
  address: string;
9065
9064
  networkId: string;
9066
9065
  balance: string;
9067
9066
  };
9068
9067
  totalApy?: string | undefined;
9068
+ apy?: string | undefined;
9069
9069
  investmentId?: string | undefined;
9070
9070
  liquidityToken?: {
9071
9071
  address: string;
@@ -9205,13 +9205,13 @@ export declare const parsedDefiDecompositionItemSchema: z.ZodObject<{
9205
9205
  healthRatio?: string | undefined;
9206
9206
  } | {
9207
9207
  id: string;
9208
- apy: string;
9209
9208
  token: {
9210
9209
  address: `0x${string}`;
9211
9210
  networkId: string;
9212
9211
  balance: string;
9213
9212
  };
9214
9213
  totalApy?: string | undefined;
9214
+ apy?: string | undefined;
9215
9215
  investmentId?: string | undefined;
9216
9216
  liquidityToken?: {
9217
9217
  address: `0x${string}`;
@@ -9351,13 +9351,13 @@ export declare const parsedDefiDecompositionItemSchema: z.ZodObject<{
9351
9351
  healthRatio?: string | undefined;
9352
9352
  } | {
9353
9353
  id: string;
9354
- apy: string;
9355
9354
  token: {
9356
9355
  address: string;
9357
9356
  networkId: string;
9358
9357
  balance: string;
9359
9358
  };
9360
9359
  totalApy?: string | undefined;
9360
+ apy?: string | undefined;
9361
9361
  investmentId?: string | undefined;
9362
9362
  liquidityToken?: {
9363
9363
  address: string;
@@ -9967,7 +9967,7 @@ export declare const parsedDefiDecompositionSchema: z.ZodArray<z.ZodObject<{
9967
9967
  }>]>, z.ZodObject<{
9968
9968
  id: z.ZodString;
9969
9969
  investmentId: z.ZodOptional<z.ZodString>;
9970
- apy: z.ZodString;
9970
+ apy: z.ZodOptional<z.ZodString>;
9971
9971
  totalApy: z.ZodOptional<z.ZodString>;
9972
9972
  token: z.ZodObject<z.objectUtil.extendShape<{
9973
9973
  address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
@@ -9995,13 +9995,13 @@ export declare const parsedDefiDecompositionSchema: z.ZodArray<z.ZodObject<{
9995
9995
  }>>;
9996
9996
  }, "strip", z.ZodTypeAny, {
9997
9997
  id: string;
9998
- apy: string;
9999
9998
  token: {
10000
9999
  address: `0x${string}`;
10001
10000
  networkId: string;
10002
10001
  balance: string;
10003
10002
  };
10004
10003
  totalApy?: string | undefined;
10004
+ apy?: string | undefined;
10005
10005
  investmentId?: string | undefined;
10006
10006
  liquidityToken?: {
10007
10007
  address: `0x${string}`;
@@ -10009,13 +10009,13 @@ export declare const parsedDefiDecompositionSchema: z.ZodArray<z.ZodObject<{
10009
10009
  } | undefined;
10010
10010
  }, {
10011
10011
  id: string;
10012
- apy: string;
10013
10012
  token: {
10014
10013
  address: string;
10015
10014
  networkId: string;
10016
10015
  balance: string;
10017
10016
  };
10018
10017
  totalApy?: string | undefined;
10018
+ apy?: string | undefined;
10019
10019
  investmentId?: string | undefined;
10020
10020
  liquidityToken?: {
10021
10021
  address: string;
@@ -10125,13 +10125,13 @@ export declare const parsedDefiDecompositionSchema: z.ZodArray<z.ZodObject<{
10125
10125
  healthRatio?: string | undefined;
10126
10126
  } | {
10127
10127
  id: string;
10128
- apy: string;
10129
10128
  token: {
10130
10129
  address: `0x${string}`;
10131
10130
  networkId: string;
10132
10131
  balance: string;
10133
10132
  };
10134
10133
  totalApy?: string | undefined;
10134
+ apy?: string | undefined;
10135
10135
  investmentId?: string | undefined;
10136
10136
  liquidityToken?: {
10137
10137
  address: `0x${string}`;
@@ -10268,13 +10268,13 @@ export declare const parsedDefiDecompositionSchema: z.ZodArray<z.ZodObject<{
10268
10268
  healthRatio?: string | undefined;
10269
10269
  } | {
10270
10270
  id: string;
10271
- apy: string;
10272
10271
  token: {
10273
10272
  address: string;
10274
10273
  networkId: string;
10275
10274
  balance: string;
10276
10275
  };
10277
10276
  totalApy?: string | undefined;
10277
+ apy?: string | undefined;
10278
10278
  investmentId?: string | undefined;
10279
10279
  liquidityToken?: {
10280
10280
  address: string;
@@ -10414,13 +10414,13 @@ export declare const parsedDefiDecompositionSchema: z.ZodArray<z.ZodObject<{
10414
10414
  healthRatio?: string | undefined;
10415
10415
  } | {
10416
10416
  id: string;
10417
- apy: string;
10418
10417
  token: {
10419
10418
  address: `0x${string}`;
10420
10419
  networkId: string;
10421
10420
  balance: string;
10422
10421
  };
10423
10422
  totalApy?: string | undefined;
10423
+ apy?: string | undefined;
10424
10424
  investmentId?: string | undefined;
10425
10425
  liquidityToken?: {
10426
10426
  address: `0x${string}`;
@@ -10560,13 +10560,13 @@ export declare const parsedDefiDecompositionSchema: z.ZodArray<z.ZodObject<{
10560
10560
  healthRatio?: string | undefined;
10561
10561
  } | {
10562
10562
  id: string;
10563
- apy: string;
10564
10563
  token: {
10565
10564
  address: string;
10566
10565
  networkId: string;
10567
10566
  balance: string;
10568
10567
  };
10569
10568
  totalApy?: string | undefined;
10569
+ apy?: string | undefined;
10570
10570
  investmentId?: string | undefined;
10571
10571
  liquidityToken?: {
10572
10572
  address: string;
@@ -11176,7 +11176,7 @@ export declare const parsedDefiDecompositionItemWithUsdValueSchema: z.ZodObject<
11176
11176
  }>]>, z.ZodObject<{
11177
11177
  id: z.ZodString;
11178
11178
  investmentId: z.ZodOptional<z.ZodString>;
11179
- apy: z.ZodString;
11179
+ apy: z.ZodOptional<z.ZodString>;
11180
11180
  totalApy: z.ZodOptional<z.ZodString>;
11181
11181
  token: z.ZodObject<z.objectUtil.extendShape<{
11182
11182
  address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
@@ -11204,13 +11204,13 @@ export declare const parsedDefiDecompositionItemWithUsdValueSchema: z.ZodObject<
11204
11204
  }>>;
11205
11205
  }, "strip", z.ZodTypeAny, {
11206
11206
  id: string;
11207
- apy: string;
11208
11207
  token: {
11209
11208
  address: `0x${string}`;
11210
11209
  networkId: string;
11211
11210
  balance: string;
11212
11211
  };
11213
11212
  totalApy?: string | undefined;
11213
+ apy?: string | undefined;
11214
11214
  investmentId?: string | undefined;
11215
11215
  liquidityToken?: {
11216
11216
  address: `0x${string}`;
@@ -11218,13 +11218,13 @@ export declare const parsedDefiDecompositionItemWithUsdValueSchema: z.ZodObject<
11218
11218
  } | undefined;
11219
11219
  }, {
11220
11220
  id: string;
11221
- apy: string;
11222
11221
  token: {
11223
11222
  address: string;
11224
11223
  networkId: string;
11225
11224
  balance: string;
11226
11225
  };
11227
11226
  totalApy?: string | undefined;
11227
+ apy?: string | undefined;
11228
11228
  investmentId?: string | undefined;
11229
11229
  liquidityToken?: {
11230
11230
  address: string;
@@ -11334,13 +11334,13 @@ export declare const parsedDefiDecompositionItemWithUsdValueSchema: z.ZodObject<
11334
11334
  healthRatio?: string | undefined;
11335
11335
  } | {
11336
11336
  id: string;
11337
- apy: string;
11338
11337
  token: {
11339
11338
  address: `0x${string}`;
11340
11339
  networkId: string;
11341
11340
  balance: string;
11342
11341
  };
11343
11342
  totalApy?: string | undefined;
11343
+ apy?: string | undefined;
11344
11344
  investmentId?: string | undefined;
11345
11345
  liquidityToken?: {
11346
11346
  address: `0x${string}`;
@@ -11477,13 +11477,13 @@ export declare const parsedDefiDecompositionItemWithUsdValueSchema: z.ZodObject<
11477
11477
  healthRatio?: string | undefined;
11478
11478
  } | {
11479
11479
  id: string;
11480
- apy: string;
11481
11480
  token: {
11482
11481
  address: string;
11483
11482
  networkId: string;
11484
11483
  balance: string;
11485
11484
  };
11486
11485
  totalApy?: string | undefined;
11486
+ apy?: string | undefined;
11487
11487
  investmentId?: string | undefined;
11488
11488
  liquidityToken?: {
11489
11489
  address: string;
@@ -12092,7 +12092,7 @@ export declare const parsedDefiDecompositionItemWithUsdValueSchema: z.ZodObject<
12092
12092
  }>]>, z.ZodObject<{
12093
12093
  id: z.ZodString;
12094
12094
  investmentId: z.ZodOptional<z.ZodString>;
12095
- apy: z.ZodString;
12095
+ apy: z.ZodOptional<z.ZodString>;
12096
12096
  totalApy: z.ZodOptional<z.ZodString>;
12097
12097
  token: z.ZodObject<z.objectUtil.extendShape<{
12098
12098
  address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
@@ -12120,13 +12120,13 @@ export declare const parsedDefiDecompositionItemWithUsdValueSchema: z.ZodObject<
12120
12120
  }>>;
12121
12121
  }, "strip", z.ZodTypeAny, {
12122
12122
  id: string;
12123
- apy: string;
12124
12123
  token: {
12125
12124
  address: `0x${string}`;
12126
12125
  networkId: string;
12127
12126
  balance: string;
12128
12127
  };
12129
12128
  totalApy?: string | undefined;
12129
+ apy?: string | undefined;
12130
12130
  investmentId?: string | undefined;
12131
12131
  liquidityToken?: {
12132
12132
  address: `0x${string}`;
@@ -12134,13 +12134,13 @@ export declare const parsedDefiDecompositionItemWithUsdValueSchema: z.ZodObject<
12134
12134
  } | undefined;
12135
12135
  }, {
12136
12136
  id: string;
12137
- apy: string;
12138
12137
  token: {
12139
12138
  address: string;
12140
12139
  networkId: string;
12141
12140
  balance: string;
12142
12141
  };
12143
12142
  totalApy?: string | undefined;
12143
+ apy?: string | undefined;
12144
12144
  investmentId?: string | undefined;
12145
12145
  liquidityToken?: {
12146
12146
  address: string;
@@ -13054,7 +13054,7 @@ export declare const parsedDefiDecompositionItemWithUsdValueSchema: z.ZodObject<
13054
13054
  }>]>, z.ZodObject<z.objectUtil.extendShape<{
13055
13055
  id: z.ZodString;
13056
13056
  investmentId: z.ZodOptional<z.ZodString>;
13057
- apy: z.ZodString;
13057
+ apy: z.ZodOptional<z.ZodString>;
13058
13058
  totalApy: z.ZodOptional<z.ZodString>;
13059
13059
  token: z.ZodObject<z.objectUtil.extendShape<{
13060
13060
  address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
@@ -13101,7 +13101,6 @@ export declare const parsedDefiDecompositionItemWithUsdValueSchema: z.ZodObject<
13101
13101
  }>;
13102
13102
  }>, "strip", z.ZodTypeAny, {
13103
13103
  id: string;
13104
- apy: string;
13105
13104
  token: {
13106
13105
  address: `0x${string}`;
13107
13106
  networkId: string;
@@ -13109,6 +13108,7 @@ export declare const parsedDefiDecompositionItemWithUsdValueSchema: z.ZodObject<
13109
13108
  usdValue: string;
13110
13109
  };
13111
13110
  totalApy?: string | undefined;
13111
+ apy?: string | undefined;
13112
13112
  investmentId?: string | undefined;
13113
13113
  liquidityToken?: {
13114
13114
  address: `0x${string}`;
@@ -13116,7 +13116,6 @@ export declare const parsedDefiDecompositionItemWithUsdValueSchema: z.ZodObject<
13116
13116
  } | undefined;
13117
13117
  }, {
13118
13118
  id: string;
13119
- apy: string;
13120
13119
  token: {
13121
13120
  address: string;
13122
13121
  networkId: string;
@@ -13124,6 +13123,7 @@ export declare const parsedDefiDecompositionItemWithUsdValueSchema: z.ZodObject<
13124
13123
  usdValue: string;
13125
13124
  };
13126
13125
  totalApy?: string | undefined;
13126
+ apy?: string | undefined;
13127
13127
  investmentId?: string | undefined;
13128
13128
  liquidityToken?: {
13129
13129
  address: string;
@@ -13230,7 +13230,6 @@ export declare const parsedDefiDecompositionItemWithUsdValueSchema: z.ZodObject<
13230
13230
  healthRatio?: string | undefined;
13231
13231
  } | {
13232
13232
  id: string;
13233
- apy: string;
13234
13233
  token: {
13235
13234
  address: `0x${string}`;
13236
13235
  networkId: string;
@@ -13238,6 +13237,7 @@ export declare const parsedDefiDecompositionItemWithUsdValueSchema: z.ZodObject<
13238
13237
  usdValue: string;
13239
13238
  };
13240
13239
  totalApy?: string | undefined;
13240
+ apy?: string | undefined;
13241
13241
  investmentId?: string | undefined;
13242
13242
  liquidityToken?: {
13243
13243
  address: `0x${string}`;
@@ -13386,7 +13386,6 @@ export declare const parsedDefiDecompositionItemWithUsdValueSchema: z.ZodObject<
13386
13386
  healthRatio?: string | undefined;
13387
13387
  } | {
13388
13388
  id: string;
13389
- apy: string;
13390
13389
  token: {
13391
13390
  address: string;
13392
13391
  networkId: string;
@@ -13394,6 +13393,7 @@ export declare const parsedDefiDecompositionItemWithUsdValueSchema: z.ZodObject<
13394
13393
  usdValue: string;
13395
13394
  };
13396
13395
  totalApy?: string | undefined;
13396
+ apy?: string | undefined;
13397
13397
  investmentId?: string | undefined;
13398
13398
  liquidityToken?: {
13399
13399
  address: string;
@@ -13546,7 +13546,6 @@ export declare const parsedDefiDecompositionItemWithUsdValueSchema: z.ZodObject<
13546
13546
  healthRatio?: string | undefined;
13547
13547
  } | {
13548
13548
  id: string;
13549
- apy: string;
13550
13549
  token: {
13551
13550
  address: `0x${string}`;
13552
13551
  networkId: string;
@@ -13554,6 +13553,7 @@ export declare const parsedDefiDecompositionItemWithUsdValueSchema: z.ZodObject<
13554
13553
  usdValue: string;
13555
13554
  };
13556
13555
  totalApy?: string | undefined;
13556
+ apy?: string | undefined;
13557
13557
  investmentId?: string | undefined;
13558
13558
  liquidityToken?: {
13559
13559
  address: `0x${string}`;
@@ -13706,7 +13706,6 @@ export declare const parsedDefiDecompositionItemWithUsdValueSchema: z.ZodObject<
13706
13706
  healthRatio?: string | undefined;
13707
13707
  } | {
13708
13708
  id: string;
13709
- apy: string;
13710
13709
  token: {
13711
13710
  address: string;
13712
13711
  networkId: string;
@@ -13714,6 +13713,7 @@ export declare const parsedDefiDecompositionItemWithUsdValueSchema: z.ZodObject<
13714
13713
  usdValue: string;
13715
13714
  };
13716
13715
  totalApy?: string | undefined;
13716
+ apy?: string | undefined;
13717
13717
  investmentId?: string | undefined;
13718
13718
  liquidityToken?: {
13719
13719
  address: string;
@@ -14327,7 +14327,7 @@ export declare const parsedDefiDecompositionWithUsdValueSchema: z.ZodArray<z.Zod
14327
14327
  }>]>, z.ZodObject<{
14328
14328
  id: z.ZodString;
14329
14329
  investmentId: z.ZodOptional<z.ZodString>;
14330
- apy: z.ZodString;
14330
+ apy: z.ZodOptional<z.ZodString>;
14331
14331
  totalApy: z.ZodOptional<z.ZodString>;
14332
14332
  token: z.ZodObject<z.objectUtil.extendShape<{
14333
14333
  address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
@@ -14355,13 +14355,13 @@ export declare const parsedDefiDecompositionWithUsdValueSchema: z.ZodArray<z.Zod
14355
14355
  }>>;
14356
14356
  }, "strip", z.ZodTypeAny, {
14357
14357
  id: string;
14358
- apy: string;
14359
14358
  token: {
14360
14359
  address: `0x${string}`;
14361
14360
  networkId: string;
14362
14361
  balance: string;
14363
14362
  };
14364
14363
  totalApy?: string | undefined;
14364
+ apy?: string | undefined;
14365
14365
  investmentId?: string | undefined;
14366
14366
  liquidityToken?: {
14367
14367
  address: `0x${string}`;
@@ -14369,13 +14369,13 @@ export declare const parsedDefiDecompositionWithUsdValueSchema: z.ZodArray<z.Zod
14369
14369
  } | undefined;
14370
14370
  }, {
14371
14371
  id: string;
14372
- apy: string;
14373
14372
  token: {
14374
14373
  address: string;
14375
14374
  networkId: string;
14376
14375
  balance: string;
14377
14376
  };
14378
14377
  totalApy?: string | undefined;
14378
+ apy?: string | undefined;
14379
14379
  investmentId?: string | undefined;
14380
14380
  liquidityToken?: {
14381
14381
  address: string;
@@ -14485,13 +14485,13 @@ export declare const parsedDefiDecompositionWithUsdValueSchema: z.ZodArray<z.Zod
14485
14485
  healthRatio?: string | undefined;
14486
14486
  } | {
14487
14487
  id: string;
14488
- apy: string;
14489
14488
  token: {
14490
14489
  address: `0x${string}`;
14491
14490
  networkId: string;
14492
14491
  balance: string;
14493
14492
  };
14494
14493
  totalApy?: string | undefined;
14494
+ apy?: string | undefined;
14495
14495
  investmentId?: string | undefined;
14496
14496
  liquidityToken?: {
14497
14497
  address: `0x${string}`;
@@ -14628,13 +14628,13 @@ export declare const parsedDefiDecompositionWithUsdValueSchema: z.ZodArray<z.Zod
14628
14628
  healthRatio?: string | undefined;
14629
14629
  } | {
14630
14630
  id: string;
14631
- apy: string;
14632
14631
  token: {
14633
14632
  address: string;
14634
14633
  networkId: string;
14635
14634
  balance: string;
14636
14635
  };
14637
14636
  totalApy?: string | undefined;
14637
+ apy?: string | undefined;
14638
14638
  investmentId?: string | undefined;
14639
14639
  liquidityToken?: {
14640
14640
  address: string;
@@ -15243,7 +15243,7 @@ export declare const parsedDefiDecompositionWithUsdValueSchema: z.ZodArray<z.Zod
15243
15243
  }>]>, z.ZodObject<{
15244
15244
  id: z.ZodString;
15245
15245
  investmentId: z.ZodOptional<z.ZodString>;
15246
- apy: z.ZodString;
15246
+ apy: z.ZodOptional<z.ZodString>;
15247
15247
  totalApy: z.ZodOptional<z.ZodString>;
15248
15248
  token: z.ZodObject<z.objectUtil.extendShape<{
15249
15249
  address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
@@ -15271,13 +15271,13 @@ export declare const parsedDefiDecompositionWithUsdValueSchema: z.ZodArray<z.Zod
15271
15271
  }>>;
15272
15272
  }, "strip", z.ZodTypeAny, {
15273
15273
  id: string;
15274
- apy: string;
15275
15274
  token: {
15276
15275
  address: `0x${string}`;
15277
15276
  networkId: string;
15278
15277
  balance: string;
15279
15278
  };
15280
15279
  totalApy?: string | undefined;
15280
+ apy?: string | undefined;
15281
15281
  investmentId?: string | undefined;
15282
15282
  liquidityToken?: {
15283
15283
  address: `0x${string}`;
@@ -15285,13 +15285,13 @@ export declare const parsedDefiDecompositionWithUsdValueSchema: z.ZodArray<z.Zod
15285
15285
  } | undefined;
15286
15286
  }, {
15287
15287
  id: string;
15288
- apy: string;
15289
15288
  token: {
15290
15289
  address: string;
15291
15290
  networkId: string;
15292
15291
  balance: string;
15293
15292
  };
15294
15293
  totalApy?: string | undefined;
15294
+ apy?: string | undefined;
15295
15295
  investmentId?: string | undefined;
15296
15296
  liquidityToken?: {
15297
15297
  address: string;
@@ -16205,7 +16205,7 @@ export declare const parsedDefiDecompositionWithUsdValueSchema: z.ZodArray<z.Zod
16205
16205
  }>]>, z.ZodObject<z.objectUtil.extendShape<{
16206
16206
  id: z.ZodString;
16207
16207
  investmentId: z.ZodOptional<z.ZodString>;
16208
- apy: z.ZodString;
16208
+ apy: z.ZodOptional<z.ZodString>;
16209
16209
  totalApy: z.ZodOptional<z.ZodString>;
16210
16210
  token: z.ZodObject<z.objectUtil.extendShape<{
16211
16211
  address: z.ZodEffects<z.ZodPipeline<z.ZodString, z.ZodEffects<z.ZodString, string, string>>, `0x${string}`, string>;
@@ -16252,7 +16252,6 @@ export declare const parsedDefiDecompositionWithUsdValueSchema: z.ZodArray<z.Zod
16252
16252
  }>;
16253
16253
  }>, "strip", z.ZodTypeAny, {
16254
16254
  id: string;
16255
- apy: string;
16256
16255
  token: {
16257
16256
  address: `0x${string}`;
16258
16257
  networkId: string;
@@ -16260,6 +16259,7 @@ export declare const parsedDefiDecompositionWithUsdValueSchema: z.ZodArray<z.Zod
16260
16259
  usdValue: string;
16261
16260
  };
16262
16261
  totalApy?: string | undefined;
16262
+ apy?: string | undefined;
16263
16263
  investmentId?: string | undefined;
16264
16264
  liquidityToken?: {
16265
16265
  address: `0x${string}`;
@@ -16267,7 +16267,6 @@ export declare const parsedDefiDecompositionWithUsdValueSchema: z.ZodArray<z.Zod
16267
16267
  } | undefined;
16268
16268
  }, {
16269
16269
  id: string;
16270
- apy: string;
16271
16270
  token: {
16272
16271
  address: string;
16273
16272
  networkId: string;
@@ -16275,6 +16274,7 @@ export declare const parsedDefiDecompositionWithUsdValueSchema: z.ZodArray<z.Zod
16275
16274
  usdValue: string;
16276
16275
  };
16277
16276
  totalApy?: string | undefined;
16277
+ apy?: string | undefined;
16278
16278
  investmentId?: string | undefined;
16279
16279
  liquidityToken?: {
16280
16280
  address: string;
@@ -16381,7 +16381,6 @@ export declare const parsedDefiDecompositionWithUsdValueSchema: z.ZodArray<z.Zod
16381
16381
  healthRatio?: string | undefined;
16382
16382
  } | {
16383
16383
  id: string;
16384
- apy: string;
16385
16384
  token: {
16386
16385
  address: `0x${string}`;
16387
16386
  networkId: string;
@@ -16389,6 +16388,7 @@ export declare const parsedDefiDecompositionWithUsdValueSchema: z.ZodArray<z.Zod
16389
16388
  usdValue: string;
16390
16389
  };
16391
16390
  totalApy?: string | undefined;
16391
+ apy?: string | undefined;
16392
16392
  investmentId?: string | undefined;
16393
16393
  liquidityToken?: {
16394
16394
  address: `0x${string}`;
@@ -16537,7 +16537,6 @@ export declare const parsedDefiDecompositionWithUsdValueSchema: z.ZodArray<z.Zod
16537
16537
  healthRatio?: string | undefined;
16538
16538
  } | {
16539
16539
  id: string;
16540
- apy: string;
16541
16540
  token: {
16542
16541
  address: string;
16543
16542
  networkId: string;
@@ -16545,6 +16544,7 @@ export declare const parsedDefiDecompositionWithUsdValueSchema: z.ZodArray<z.Zod
16545
16544
  usdValue: string;
16546
16545
  };
16547
16546
  totalApy?: string | undefined;
16547
+ apy?: string | undefined;
16548
16548
  investmentId?: string | undefined;
16549
16549
  liquidityToken?: {
16550
16550
  address: string;
@@ -16697,7 +16697,6 @@ export declare const parsedDefiDecompositionWithUsdValueSchema: z.ZodArray<z.Zod
16697
16697
  healthRatio?: string | undefined;
16698
16698
  } | {
16699
16699
  id: string;
16700
- apy: string;
16701
16700
  token: {
16702
16701
  address: `0x${string}`;
16703
16702
  networkId: string;
@@ -16705,6 +16704,7 @@ export declare const parsedDefiDecompositionWithUsdValueSchema: z.ZodArray<z.Zod
16705
16704
  usdValue: string;
16706
16705
  };
16707
16706
  totalApy?: string | undefined;
16707
+ apy?: string | undefined;
16708
16708
  investmentId?: string | undefined;
16709
16709
  liquidityToken?: {
16710
16710
  address: `0x${string}`;
@@ -16857,7 +16857,6 @@ export declare const parsedDefiDecompositionWithUsdValueSchema: z.ZodArray<z.Zod
16857
16857
  healthRatio?: string | undefined;
16858
16858
  } | {
16859
16859
  id: string;
16860
- apy: string;
16861
16860
  token: {
16862
16861
  address: string;
16863
16862
  networkId: string;
@@ -16865,6 +16864,7 @@ export declare const parsedDefiDecompositionWithUsdValueSchema: z.ZodArray<z.Zod
16865
16864
  usdValue: string;
16866
16865
  };
16867
16866
  totalApy?: string | undefined;
16867
+ apy?: string | undefined;
16868
16868
  investmentId?: string | undefined;
16869
16869
  liquidityToken?: {
16870
16870
  address: string;