Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

type TKey = { cu_spent_today: number; key: Required<DataKey>; public_keys: Required<JwtsPublicKey>[]; }; interface DataKey { api_key?: string; cors_origins?: string[]; /** @example 100 */ cu_day_limit?: number; fallback_enabled?: boolean; fallback_providers?: string[]; ip_whitelist?: string[]; jwt_enabled?: boolean; key_id?: string; methods_blacklist?: string[]; mev_enabled?: boolean; mev_fallback?: boolean; mev_providers?: string[]; /** @example "test" */ name?: string; owner_id?: string; providers?: string[]; rate_limit?: number; status?: boolean; /** @example "2022-09-16T12:15:30.331Z" */ updated_at?: string; } #43

Open
OKE66 opened this issue Nov 30, 2024 · 1 comment

Comments

@OKE66
Copy link

OKE66 commented Nov 30, 2024

No description provided.

@OKE66
Copy link
Author

OKE66 commented Nov 30, 2024

type TKey = {
cu_spent_today: number;
key: Required;
public_keys: Required[];
};

interface DataKey {
api_key?: string;
cors_origins?: string[];
/** @example 100 /
cu_day_limit?: number;
fallback_enabled?: boolean;
fallback_providers?: string[];
ip_whitelist?: string[];
jwt_enabled?: boolean;
key_id?: string;
methods_blacklist?: string[];
mev_enabled?: boolean;
mev_fallback?: boolean;
mev_providers?: string[];
/
* @example "test" /
name?: string;
owner_id?: string;
providers?: string[];
rate_limit?: number;
status?: boolean;
/
* @example "2022-09-16T12:15:30.331Z" */
updated_at?: string;
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant