
This PR adds a new `billing_preferences` table. Right now there is a single preference: the maximum monthly spend for LLM usage. Release Notes: - N/A --------- Co-authored-by: Richard <richard@zed.dev>
44 lines
1.1 KiB
Rust
44 lines
1.1 KiB
Rust
pub mod access_token;
|
|
pub mod billing_customer;
|
|
pub mod billing_preference;
|
|
pub mod billing_subscription;
|
|
pub mod buffer;
|
|
pub mod buffer_operation;
|
|
pub mod buffer_snapshot;
|
|
pub mod channel;
|
|
pub mod channel_buffer_collaborator;
|
|
pub mod channel_chat_participant;
|
|
pub mod channel_member;
|
|
pub mod channel_message;
|
|
pub mod channel_message_mention;
|
|
pub mod contact;
|
|
pub mod contributor;
|
|
pub mod dev_server;
|
|
pub mod dev_server_project;
|
|
pub mod embedding;
|
|
pub mod extension;
|
|
pub mod extension_version;
|
|
pub mod feature_flag;
|
|
pub mod follower;
|
|
pub mod hosted_project;
|
|
pub mod language_server;
|
|
pub mod notification;
|
|
pub mod notification_kind;
|
|
pub mod observed_buffer_edits;
|
|
pub mod observed_channel_messages;
|
|
pub mod processed_stripe_event;
|
|
pub mod project;
|
|
pub mod project_collaborator;
|
|
pub mod rate_buckets;
|
|
pub mod room;
|
|
pub mod room_participant;
|
|
pub mod server;
|
|
pub mod signup;
|
|
pub mod user;
|
|
pub mod user_feature;
|
|
pub mod worktree;
|
|
pub mod worktree_diagnostic_summary;
|
|
pub mod worktree_entry;
|
|
pub mod worktree_repository;
|
|
pub mod worktree_repository_statuses;
|
|
pub mod worktree_settings_file;
|