@merkl/api 1.6.0 → 1.6.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.
@@ -668,7 +668,7 @@ export declare abstract class CampaignService {
668
668
  };
669
669
  payload: string;
670
670
  };
671
- campaign: EngineCampaign<CampaignType> | undefined;
671
+ campaign: EngineCampaign<CampaignType.INVALID> | EngineCampaign<CampaignType>;
672
672
  opportunity: ({
673
673
  chainId: number;
674
674
  type: string;
@@ -889,8 +889,8 @@ export declare abstract class CampaignService {
889
889
  lastCampaignCreatedAt: Date;
890
890
  manualOverrides: import("@package/databases").OpportunityManualOverride[];
891
891
  liveCampaigns: number;
892
- }) | undefined;
893
- tvl: ({
892
+ });
893
+ tvl: {
894
894
  breakdowns: ({
895
895
  identifier: string;
896
896
  type: import("@package/databases").TvlType;
@@ -898,7 +898,7 @@ export declare abstract class CampaignService {
898
898
  } & {})[];
899
899
  timestamp: bigint;
900
900
  total: number;
901
- } & {}) | undefined;
901
+ } & {};
902
902
  fee: string;
903
903
  }[];
904
904
  }>;