type OrganizationQuotas = {
activeUsersMonthlyLimit?: number | null;
activeUsersMonthlyUsage: number;
agentWalletLimit?: number | null;
agentWalletUsage: number;
allowedFeatures: ("loyalty" | "dpp" | "invest" | "agent-wallet" | "trust" | "onramp")[];
allowedNetworks: (
| "EthereumAnvil"
| "BaseSepolia"
| "BaseMainnet"
| "XdcApothem"
| "XdcMainnet"
| "StellarQuickstart"
| "StellarTestnet"
| "StellarMainnet")[];
allowOverage: boolean;
applicationLimit?: number | null;
applicationUsage: number;
chargebee: {
customerId: string | null;
subscriptionId: string | null;
};
createdAt: string;
dppMonthlyLimit?: number | null;
dppMonthlyUsage: number;
id: string;
pilotFeatures: ("loyalty" | "dpp" | "invest" | "agent-wallet" | "trust" | "onramp")[];
trustAuditLimit?: number | null;
trustProductLimit?: number | null;
trustProductUsage: number;
updatedAt: string;
};