diff --git a/Cargo.lock b/Cargo.lock index 0e648836..b65e19a5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -717,7 +717,7 @@ checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6" [[package]] name = "sentry_protos" -version = "0.60.0" +version = "0.61.0" dependencies = [ "prost", "prost-types", diff --git a/proto/sentry_protos/billing/v1/common/v1/line_item_details.proto b/proto/sentry_protos/billing/v1/common/v1/line_item_details.proto index 210d2392..01085676 100644 --- a/proto/sentry_protos/billing/v1/common/v1/line_item_details.proto +++ b/proto/sentry_protos/billing/v1/common/v1/line_item_details.proto @@ -42,4 +42,7 @@ message LineItemDetails { // The invoice line item type strings for this line item. InvoiceMetadataTags invoice_data = 8; + + // Invoice line item order. Lower values print first, unset last. + int32 display_order = 9; } diff --git a/rust/src/sentry_protos.billing.v1.common.v1.rs b/rust/src/sentry_protos.billing.v1.common.v1.rs index ebaa7be8..2a4a93f9 100644 --- a/rust/src/sentry_protos.billing.v1.common.v1.rs +++ b/rust/src/sentry_protos.billing.v1.common.v1.rs @@ -259,6 +259,9 @@ pub struct LineItemDetails { /// The invoice line item type strings for this line item. #[prost(message, optional, tag = "8")] pub invoice_data: ::core::option::Option, + /// Invoice line item order. Lower values print first, unset last. + #[prost(int32, tag = "9")] + pub display_order: i32, } /// Stripe-specific payment information for an organization. #[derive(Clone, PartialEq, Eq, Hash, ::prost::Message)]