@hyperline/cli 0.1.0-build.1.a8639ad → 0.1.0-build.1.ab1f856
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -30121,7 +30121,7 @@ Quote status.
|
|
|
30121
30121
|
- \`draft\`: The quote is a draft.
|
|
30122
30122
|
- \`approved\`: The quote is approved and ready to be sent to the customer.
|
|
30123
30123
|
- \`pending_signature\`: The quote is awaiting the customer's signature.
|
|
30124
|
-
`).option("--owner-email <value>", `Email address of the Hyperline user acting as the quote owner. If not specified, the Hyperline account owner will be assigned.`).requiredOption("--customer-id <value>", `ID of the customer.`).option("--invoicing-entity-id <value>", `ID of the invoicing entity attached to the quote.`).option("--comments <value>", `Custom comments displayed on the quote.`).option("--terms <value>", `Custom quotation terms.`).option("--amount <number>", `Estimated contract value. If not specified, automatically computed from the subscription configuration.`).option("--collect-payment-details <value>", `Collect customer payment method mandate during signature flow or not.`).option("--collect-custom-property-ids <value>", `IDs of the customer custom properties required to be filled during the signature flow.`).option("--require-tax-id <value>", `Require the customer to provide a tax ID during the signature flow.`).option("--display-quote-value <value>", `Display the total quote value on the quote.`).option("--display-taxes <value>", `Display tax breakdown on the quote.`).option("--display-price-tiers <value>", `Controls which price tiers are displayed on the quote.
|
|
30124
|
+
`).option("--owner-email <value>", `Email address of the Hyperline user acting as the quote owner. If not specified, the Hyperline account owner will be assigned.`).requiredOption("--customer-id <value>", `ID of the customer.`).option("--invoicing-entity-id <value>", `ID of the invoicing entity attached to the quote.`).option("--comments <value>", `Custom comments displayed on the quote.`).option("--terms <value>", `Custom quotation terms.`).option("--amount <number>", `Estimated contract value. If not specified, automatically computed from the subscription configuration.`).option("--collect-payment-details <value>", `Collect customer payment method mandate during signature flow or not.`).option("--collect-custom-property-ids <value>", `IDs of the customer custom properties required to be filled during the signature flow.`).option("--require-tax-id <value>", `Require the customer to provide a tax ID during the signature flow.`).option("--display-quote-value <value>", `Display the total quote value on the quote.`).option("--display-quote-value-with-tax <value>", `Display the total quote value including tax on the quote. Only applies to \`one_off\` quotes.`).option("--display-taxes <value>", `Display tax breakdown on the quote.`).option("--display-price-tiers <value>", `Controls which price tiers are displayed on the quote.
|
|
30125
30125
|
|
|
30126
30126
|
- \`all\`: Display all pricing tiers.
|
|
30127
30127
|
- \`matching\`: Only display the tiers used to compute the price based on quantity.
|
|
@@ -30157,6 +30157,8 @@ Examples:
|
|
|
30157
30157
|
args.require_tax_id = opts.requireTaxId;
|
|
30158
30158
|
if (opts.displayQuoteValue !== void 0)
|
|
30159
30159
|
args.display_quote_value = opts.displayQuoteValue;
|
|
30160
|
+
if (opts.displayQuoteValueWithTax !== void 0)
|
|
30161
|
+
args.display_quote_value_with_tax = opts.displayQuoteValueWithTax;
|
|
30160
30162
|
if (opts.displayTaxes !== void 0)
|
|
30161
30163
|
args.display_taxes = opts.displayTaxes;
|
|
30162
30164
|
if (opts.displayPriceTiers !== void 0)
|