File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed
Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -795,6 +795,7 @@ model verified_client_allowance {
795795 retrievalFrequency String ? @default (" " ) @db.VarChar
796796 isDataPublic String ? @default (" " ) @db.VarChar
797797 providerList Json @default (" []" )
798+ dcSource String ? @db.VarChar
798799}
799800
800801model verified_client_allowance_signer {
Original file line number Diff line number Diff line change 11export interface DataCapStatsVerifiedClientsResponse {
22 count : string ;
3- data : DataCapStatsVerifiedClientData [ ] ;
3+ data : DataCapStatsVerifiedClientData [ ] ; // two entries for client using metaallocators
4+ virtualAllocators ?: DataCapStatsVerifiedClientVirtualAllocators [ ] ; // for metaallocators only
45 totalRemainingDatacap : string ;
56 clientsWithActiveDeals : string ;
67 countOfClientsWhoHaveDcAndDeals : string ;
78 numberOfClients : string ;
89}
910
11+ export interface DataCapStatsVerifiedClientVirtualAllocators {
12+ addressId : string ;
13+ address : string ;
14+ addressEth : string ;
15+ name : string ;
16+ }
17+
1018export interface DataCapStatsVerifiedClientData {
1119 id : number ;
1220 addressId : string ;
You can’t perform that action at this time.
0 commit comments