@wildcatfi/wildcat-sdk 2.0.58 → 2.0.60

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.
@@ -59,6 +59,10 @@ export type Scalars = {
59
59
  output: any;
60
60
  };
61
61
  };
62
+ export declare enum SubgraphAggregation_Interval {
63
+ Day = "day",
64
+ Hour = "hour"
65
+ }
62
66
  export type SubgraphApproval = {
63
67
  __typename?: "Approval";
64
68
  blockNumber: Scalars["Int"]["output"];
@@ -4334,7 +4338,8 @@ export type SubgraphQuery = {
4334
4338
  ownershipHandoverRequesteds: SubgraphOwnershipHandoverRequested[];
4335
4339
  ownershipTransferred?: Maybe<SubgraphOwnershipTransferred>;
4336
4340
  ownershipTransferreds: SubgraphOwnershipTransferred[];
4337
- parameterConstraints: SubgraphParameterConstraints[];
4341
+ parameterConstraints?: Maybe<SubgraphParameterConstraints>;
4342
+ parameterConstraints_collection: SubgraphParameterConstraints[];
4338
4343
  registeredBorrower?: Maybe<SubgraphRegisteredBorrower>;
4339
4344
  registeredBorrowers: SubgraphRegisteredBorrower[];
4340
4345
  reserveRatioBipsUpdated?: Maybe<SubgraphReserveRatioBipsUpdated>;
@@ -4685,7 +4690,8 @@ export type SubgraphQueryOwnershipTransferredsArgs = {
4685
4690
  subgraphError?: Subgraph_SubgraphErrorPolicy_;
4686
4691
  where?: InputMaybe<SubgraphOwnershipTransferred_Filter>;
4687
4692
  };
4688
- export type SubgraphQueryParameterConstraintsArgs = {
4693
+ export type SubgraphQueryParameterConstraintsArgs = SubgraphQueryApprovalArgs;
4694
+ export type SubgraphQueryParameterConstraints_CollectionArgs = {
4689
4695
  block?: InputMaybe<SubgraphBlock_Height>;
4690
4696
  first?: InputMaybe<Scalars["Int"]["input"]>;
4691
4697
  orderBy?: InputMaybe<SubgraphParameterConstraints_OrderBy>;
@@ -5463,7 +5469,8 @@ export type SubgraphSubscription = {
5463
5469
  ownershipHandoverRequesteds: SubgraphOwnershipHandoverRequested[];
5464
5470
  ownershipTransferred?: Maybe<SubgraphOwnershipTransferred>;
5465
5471
  ownershipTransferreds: SubgraphOwnershipTransferred[];
5466
- parameterConstraints: SubgraphParameterConstraints[];
5472
+ parameterConstraints?: Maybe<SubgraphParameterConstraints>;
5473
+ parameterConstraints_collection: SubgraphParameterConstraints[];
5467
5474
  registeredBorrower?: Maybe<SubgraphRegisteredBorrower>;
5468
5475
  registeredBorrowers: SubgraphRegisteredBorrower[];
5469
5476
  reserveRatioBipsUpdated?: Maybe<SubgraphReserveRatioBipsUpdated>;
@@ -5560,7 +5567,8 @@ export type SubgraphSubscriptionOwnershipHandoverRequestedArgs = SubgraphQueryAp
5560
5567
  export type SubgraphSubscriptionOwnershipHandoverRequestedsArgs = SubgraphQueryOwnershipHandoverRequestedsArgs;
5561
5568
  export type SubgraphSubscriptionOwnershipTransferredArgs = SubgraphQueryApprovalArgs;
5562
5569
  export type SubgraphSubscriptionOwnershipTransferredsArgs = SubgraphQueryOwnershipTransferredsArgs;
5563
- export type SubgraphSubscriptionParameterConstraintsArgs = SubgraphQueryParameterConstraintsArgs;
5570
+ export type SubgraphSubscriptionParameterConstraintsArgs = SubgraphQueryApprovalArgs;
5571
+ export type SubgraphSubscriptionParameterConstraints_CollectionArgs = SubgraphQueryParameterConstraints_CollectionArgs;
5564
5572
  export type SubgraphSubscriptionRegisteredBorrowerArgs = SubgraphQueryApprovalArgs;
5565
5573
  export type SubgraphSubscriptionRegisteredBorrowersArgs = SubgraphQueryRegisteredBorrowersArgs;
5566
5574
  export type SubgraphSubscriptionReserveRatioBipsUpdatedArgs = SubgraphQueryApprovalArgs;
@@ -7655,6 +7663,10 @@ export type SubgraphDepositDataFragment = {
7655
7663
  blockNumber: number;
7656
7664
  blockTimestamp: number;
7657
7665
  transactionHash: string;
7666
+ account: {
7667
+ __typename?: "LenderAccount";
7668
+ address: string;
7669
+ };
7658
7670
  };
7659
7671
  export type SubgraphMarketDataFragment = {
7660
7672
  __typename?: "Market";