Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -77,4 +77,7 @@ message PackageConfig {

// Whether the package can be chosen in the self-serve checkout flow.
bool user_selectable = 11;

// Whether the package has pay-as-you-go (PAYG) modes.
bool has_payg_modes = 12;
}
3 changes: 3 additions & 0 deletions rust/src/sentry_protos.billing.v1.services.package.v1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,9 @@ pub struct PackageConfig {
/// Whether the package can be chosen in the self-serve checkout flow.
#[prost(bool, tag = "11")]
pub user_selectable: bool,
/// Whether the package has pay-as-you-go (PAYG) modes.
#[prost(bool, tag = "12")]
pub has_payg_modes: bool,
}
#[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]
pub struct GetPackageRequest {
Expand Down
Loading