type OrganizationQuotas = {
activeUsersMonthlyLimit?: number | null;
activeUsersMonthlyUsage: number;
allowedFeatures: ("loyalty" | "dpp" | "invest" | "agent-wallet")[];
allowedNetworks: (
| "EthereumAnvil"
| "BaseSepolia"
| "StarknetDevnet"
| "StarknetSepolia"
| "StarknetMainnet"
| "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;
updatedAt: string;
};