@hyperline/cli 0.1.0-build.1.af7811b → 0.1.0-build.1.b02fd71

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.
@@ -38752,7 +38752,11 @@ Customer type.
38752
38752
  - \`corporate\`: The customer is a business entity.
38753
38753
  - \`person\`: The customer is a natural person.
38754
38754
  - \`automatically_created\`: The customer was automatically imported (e.g. from a data loader). This value cannot be used when creating/editing.
38755
- `).option("--currency <value>", `Currency code. See [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217#List_of_ISO_4217_currency_codes).`).option("--is-government-affiliated", `Indicates if the customer is affiliated with a government entity.`).option("--tax-ids <value>", `Customer tax IDs.`).option("--tax-rate-custom <number>", `Customer custom tax rate. If not defined, the rate will be automatically determined based on the customer's country, your country, and applicable legal requirements.`).option("--registration-number <value>", `Customer registration number.`).option("--external-id <value>", `ID of the customer in your system. This helps matching your customer with the one on Hyperline.`).option("--invoicing-entity-id <value>", `ID of the invoicing entity this customer will be attached to.`).option("--billing-address <value>", `Customer billing address.`).option("--shipping-address <value>", `Customer shipping address.`).option("--billing-email <value>", `Email to which all communications will be sent.`).option("--invoice-emails <value>", `Emails to which invoices will be sent (e.g. payer, finance team, accounting firm). If not defined, invoices will be sent to the \`billing_email\`; otherwise, they won't be sent to the \`billing_email\`.`).option("--language <value>", `Language used for invoices, emails, and hosted pages.`).option("--timezone <value>", `Customer timezone.`).option("--available-payment-methods <value>", `List of payment methods you allow your customer to pay with. You customer will be able to select one of them in their portal page and those will be the default options when creating a checkout session.`).option("--payment-method-type <value>", `Default payment method type used to pay subscriptions and one-off invoices.`).option("--bank-account <value>", `Custom bank account for the customer. If not defined and customer paying by bank transfer, the bank accounts configured in your account settings will be used.`).option("--custom-payment-delay <number>", `Custom payment terms in days. If not defined, the default one defined on the related invoicing entity will be used.`).option("--custom-payment-initiation-delay <number>", `Custom initiation delay in days before triggering payment. If not defined, the default one defined on the related invoicing entity will be used.`).option("--organisation-id <value>", `Parent organization ID to which the client is attached.`).option("--organisation-invoicing <value>", `
38755
+ `).option("--currency <value>", `Currency code. See [ISO 4217](https://en.wikipedia.org/wiki/ISO_4217#List_of_ISO_4217_currency_codes).`).option("--is-government-affiliated", `Indicates if the customer is affiliated with a government entity.`).option("--tax-ids <value>", `Customer tax IDs.`).option("--tax-rate-custom <number>", `Customer custom tax rate. If not defined, the rate will be automatically determined based on the customer's country, your country, and applicable legal requirements.`).option("--taxability <value>", `Customer taxability.
38756
+
38757
+ - \`taxable\`: Taxes are automatically determined for the customer.
38758
+ - \`exempt\`: The customer is exempt from tax.
38759
+ `).option("--registration-number <value>", `Customer registration number.`).option("--external-id <value>", `ID of the customer in your system. This helps matching your customer with the one on Hyperline.`).option("--invoicing-entity-id <value>", `ID of the invoicing entity this customer will be attached to.`).option("--billing-address <value>", `Customer billing address.`).option("--shipping-address <value>", `Customer shipping address.`).option("--billing-email <value>", `Email to which all communications will be sent.`).option("--invoice-emails <value>", `Emails to which invoices will be sent (e.g. payer, finance team, accounting firm). If not defined, invoices will be sent to the \`billing_email\`; otherwise, they won't be sent to the \`billing_email\`.`).option("--language <value>", `Language used for invoices, emails, and hosted pages.`).option("--timezone <value>", `Customer timezone.`).option("--available-payment-methods <value>", `List of payment methods you allow your customer to pay with. You customer will be able to select one of them in their portal page and those will be the default options when creating a checkout session.`).option("--payment-method-type <value>", `Default payment method type used to pay subscriptions and one-off invoices.`).option("--bank-account <value>", `Custom bank account for the customer. If not defined and customer paying by bank transfer, the bank accounts configured in your account settings will be used.`).option("--custom-payment-delay <number>", `Custom payment terms in days. If not defined, the default one defined on the related invoicing entity will be used.`).option("--custom-payment-initiation-delay <number>", `Custom initiation delay in days before triggering payment. If not defined, the default one defined on the related invoicing entity will be used.`).option("--organisation-id <value>", `Parent organization ID to which the client is attached.`).option("--organisation-invoicing <value>", `
38756
38760
  How customer invoices are issued from the parent organisation.
38757
38761
 
38758
38762
  - \`none\`: Invoices will keep being issued from this customer.
@@ -38777,6 +38781,8 @@ Examples:
38777
38781
  args.currency = opts.currency;
38778
38782
  if (opts.taxIds !== void 0)
38779
38783
  args.tax_ids = opts.taxIds;
38784
+ if (opts.taxability !== void 0)
38785
+ args.taxability = opts.taxability;
38780
38786
  if (opts.registrationNumber !== void 0)
38781
38787
  args.registration_number = opts.registrationNumber;
38782
38788
  if (opts.externalId !== void 0)
@@ -38871,7 +38877,11 @@ Customer type.
38871
38877
  - \`corporate\`: The customer is a business entity.
38872
38878
  - \`person\`: The customer is a natural person.
38873
38879
  - \`automatically_created\`: The customer was automatically imported (e.g. from a data loader). This value cannot be used when creating/editing.
38874
- `).option("--currency <value>", `Customer currency. Can only be changed if the customer doesn't have existing invoices, a wallet or a payment method saved.`).option("--tax-ids <value>", `Customer tax IDs.`).option("--tax-rate-custom <number>", `Customer custom tax rate. If not defined, the rate will be automatically determined based on the customer's country, your country, and applicable legal requirements.`).option("--registration-number <value>", `Customer registration number.`).option("--is-government-affiliated", `Indicates if the customer is affiliated with a government entity.`).option("--external-id <value>", `ID of the customer in your system. This helps matching your customer with the one on Hyperline.`).option("--invoicing-entity-id <value>", `ID of the invoicing entity this customer will be attached to.`).option("--billing-address <value>", `Customer billing address.`).option("--shipping-address <value>", `Customer shipping address.`).option("--billing-email <value>", `Email to which all communications will be sent.`).option("--invoice-emails <value>", `Emails to which invoices will be sent (e.g. payer, finance team, accounting firm). If not defined, invoices will be sent to the \`billing_email\`; otherwise, they won't be sent to the \`billing_email\`.`).option("--language <value>", `Language used for invoices, emails, and hosted pages.`).option("--timezone <value>", `Customer timezone.`).option("--available-payment-methods <value>", `List of payment methods you allow your customer to pay with. You customer will be able to select one of them in their portal page and those will be the default options when creating a checkout session.`).option("--payment-method-type <value>", `Default payment method type used to pay subscriptions and one-off invoices.`).option("--payment-method-id <value>", `ID of the default payment method of the customer. Only applies to card and direct debit.`).option("--bank-account <value>", `Custom bank account for the customer. If not defined and customer paying by bank transfer, the bank accounts configured in your account settings will be used.`).option("--custom-payment-delay <number>", `Custom payment terms in days. If not defined, the default one defined on the related invoicing entity will be used.`).option("--custom-payment-initiation-delay <number>", `Custom initiation delay in days before triggering payment. If not defined, the default one defined on the related invoicing entity will be used.`).option("--organisation-id <value>", `Parent organization ID to which the client is attached.`).option("--organisation-invoicing <value>", `
38880
+ `).option("--currency <value>", `Customer currency. Can only be changed if the customer doesn't have existing invoices, a wallet or a payment method saved.`).option("--tax-ids <value>", `Customer tax IDs.`).option("--tax-rate-custom <number>", `Customer custom tax rate. If not defined, the rate will be automatically determined based on the customer's country, your country, and applicable legal requirements.`).option("--taxability <value>", `Customer taxability.
38881
+
38882
+ - \`taxable\`: Taxes are automatically determined for the customer.
38883
+ - \`exempt\`: The customer is exempt from tax.
38884
+ `).option("--registration-number <value>", `Customer registration number.`).option("--is-government-affiliated", `Indicates if the customer is affiliated with a government entity.`).option("--external-id <value>", `ID of the customer in your system. This helps matching your customer with the one on Hyperline.`).option("--invoicing-entity-id <value>", `ID of the invoicing entity this customer will be attached to.`).option("--billing-address <value>", `Customer billing address.`).option("--shipping-address <value>", `Customer shipping address.`).option("--billing-email <value>", `Email to which all communications will be sent.`).option("--invoice-emails <value>", `Emails to which invoices will be sent (e.g. payer, finance team, accounting firm). If not defined, invoices will be sent to the \`billing_email\`; otherwise, they won't be sent to the \`billing_email\`.`).option("--language <value>", `Language used for invoices, emails, and hosted pages.`).option("--timezone <value>", `Customer timezone.`).option("--available-payment-methods <value>", `List of payment methods you allow your customer to pay with. You customer will be able to select one of them in their portal page and those will be the default options when creating a checkout session.`).option("--payment-method-type <value>", `Default payment method type used to pay subscriptions and one-off invoices.`).option("--payment-method-id <value>", `ID of the default payment method of the customer. Only applies to card and direct debit.`).option("--bank-account <value>", `Custom bank account for the customer. If not defined and customer paying by bank transfer, the bank accounts configured in your account settings will be used.`).option("--custom-payment-delay <number>", `Custom payment terms in days. If not defined, the default one defined on the related invoicing entity will be used.`).option("--custom-payment-initiation-delay <number>", `Custom initiation delay in days before triggering payment. If not defined, the default one defined on the related invoicing entity will be used.`).option("--organisation-id <value>", `Parent organization ID to which the client is attached.`).option("--organisation-invoicing <value>", `
38875
38885
  How customer invoices are issued from the parent organisation.
38876
38886
 
38877
38887
  - \`none\`: Invoices will keep being issued from this customer.
@@ -38898,6 +38908,8 @@ Examples:
38898
38908
  args.currency = opts.currency;
38899
38909
  if (opts.taxIds !== void 0)
38900
38910
  args.tax_ids = opts.taxIds;
38911
+ if (opts.taxability !== void 0)
38912
+ args.taxability = opts.taxability;
38901
38913
  if (opts.registrationNumber !== void 0)
38902
38914
  args.registration_number = opts.registrationNumber;
38903
38915
  if (opts.externalId !== void 0)
@@ -42846,7 +42858,7 @@ Examples:
42846
42858
  ]
42847
42859
  });
42848
42860
  });
42849
- resource.command("create-subscription-transition").description(`Create a transition from one subscription to another, configured from a subscription, plan, or template. Can be applied immediately or scheduled.`).requiredOption("--source-subscription-id <value>", `The ID of the subscription to transition from`).option("--name <value>", `An optional name for the transition`).option("--calculation-method <value>", `The calculation method to use for the transition. 'do_not_charge' will not generate any transition invoice. 'pro_rata' will generate a prorated invoice for the remaining period.`).option("--billing-cycle-transition-method <value>", `The billing cycle transition method to use. 'keep_current_billing_cycle' will keep the current billing cycle dates if possible. 'align_to_new_billing_cycle' will align the billing cycle to the transition date.`).requiredOption("--application-schedule <value>", `Whether the transition should be applied 'immediately' or 'scheduled' for a specific date. Past dates within the current billing period are supported and will be applied immediately.`).option("--transition-date <value>", `The date at which the transition should occur. Only applicable if the application schedule is 'scheduled'. Can be a past date within the current billing period. UTC date time string in the [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.`).requiredOption("--target-subscription <value>", `The configuration of the subscription to transition to`).addHelpText("after", `
42861
+ resource.command("create-subscription-transition").description(`Create a transition from one subscription to another, configured from a subscription, plan, or template. Can be applied immediately or scheduled.`).requiredOption("--source-subscription-id <value>", `The ID of the subscription to transition from`).option("--name <value>", `An optional name for the transition`).option("--calculation-method <value>", `The calculation method to use for the transition. 'do_not_charge' will not generate any transition invoice. 'pro_rata' will generate a prorated invoice for the remaining period. 'refund_and_reinvoice' (only available with application_schedule 'last_renewal') issues a credit note for what was invoiced for the current period and a separate invoice for the new configuration.`).option("--billing-cycle-transition-method <value>", `The billing cycle transition method to use. 'keep_current_billing_cycle' will keep the current billing cycle dates if possible. 'align_to_new_billing_cycle' will align the billing cycle to the transition date.`).requiredOption("--application-schedule <value>", `When the transition should be applied: 'immediately', 'scheduled' for a specific date, or 'last_renewal' to apply it retroactively to the start of the current billing period (refunding what was already invoiced for that period and re-charging the new configuration). Past dates within the current billing period are supported and will be applied immediately.`).option("--transition-date <value>", `The date at which the transition should occur. Only applicable if the application schedule is 'scheduled'. Can be a past date within the current billing period. UTC date time string in the [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.`).requiredOption("--target-subscription <value>", `The configuration of the subscription to transition to`).addHelpText("after", `
42850
42862
  Examples:
42851
42863
  hyperline subscriptions-transitions create-subscription-transition --source-subscription-id <source_subscription_id> --application-schedule <application_schedule> --target-subscription <target_subscription>
42852
42864
  hyperline subscriptions-transitions create-subscription-transition --source-subscription-id <source_subscription_id> --application-schedule <application_schedule> --target-subscription <target_subscription> --name <name> --calculation-method <calculation_method>
@@ -43244,10 +43256,10 @@ Examples:
43244
43256
  queryParamKeys: []
43245
43257
  });
43246
43258
  });
43247
- resource.command("load").description(`Add credits to a wallet by charging the customer's payment method. The customer must have an active payment method.`).requiredOption("--id <value>", `id parameter`).option("--amount <number>", `Amount to be loaded onto the wallet. A corresponding invoice to pay will be generated. Expressed in currency's smallest unit.`).option("--amount-free <number>", `Amount free/offered to be loaded onto the wallet. No invoice is generated. Expressed in currency's smallest unit.`).option("--document-status <value>", `Indicates the status of the document (credit note in case of free top-up or invoice)`).addHelpText("after", `
43259
+ resource.command("load").description(`Add paid credits by charging the customer's payment method, or add free credits by issuing a credit note.`).requiredOption("--id <value>", `id parameter`).option("--type <value>", `Wallet load type. Use \`paid\` to collect payment from the customer's payment method, or \`free\` to grant credits without collecting payment.`).option("--amount <number>", `Amount to be loaded onto the wallet as free credits. A corresponding credit note will be generated and no payment is collected. Expressed in currency's smallest unit.`).option("--comment <value>", `Internal comment stored on the wallet transaction for context.`).option("--document-status <value>", `Indicates the status of the generated credit note for free top-ups.`).option("--bank-account-id <value>", `Bank account ID to use when recording a paid wallet load by bank transfer.`).option("--reference <value>", `Reference stored on the generated payment document for a paid wallet load.`).addHelpText("after", `
43248
43260
  Examples:
43249
43261
  hyperline wallets load --id <id>
43250
- hyperline wallets load --id <id> --amount <amount> --amount-free <amount_free>
43262
+ hyperline wallets load --id <id> --type <type> --amount <amount>
43251
43263
  hyperline wallets load --id <id> --output json`).action(async (opts) => {
43252
43264
  const ctx = resource.parent?.opts()._ctx;
43253
43265
  if (!ctx) {
@@ -43257,12 +43269,18 @@ Examples:
43257
43269
  const args = {};
43258
43270
  if (opts.id !== void 0)
43259
43271
  args.id = opts.id;
43272
+ if (opts.type !== void 0)
43273
+ args.type = opts.type;
43274
+ if (opts.comment !== void 0)
43275
+ args.comment = opts.comment;
43260
43276
  if (opts.documentStatus !== void 0)
43261
43277
  args.document_status = opts.documentStatus;
43278
+ if (opts.bankAccountId !== void 0)
43279
+ args.bank_account_id = opts.bankAccountId;
43280
+ if (opts.reference !== void 0)
43281
+ args.reference = opts.reference;
43262
43282
  if (opts.amount !== void 0)
43263
43283
  args.amount = Number(opts.amount);
43264
- if (opts.amountFree !== void 0)
43265
- args.amount_free = Number(opts.amountFree);
43266
43284
  await ctx.execute({
43267
43285
  method: "POST",
43268
43286
  path: "/v1/wallets/{id}/load",
@@ -62100,7 +62118,9 @@ var de = {
62100
62118
  "invoices.outstandingProduct.descriptionPeriod": "Unbezahlter Betrag der Rechnung{{invoiceNumber}} vom {{periodStart}} bis {{periodEnd}}",
62101
62119
  "invoices.outstandingProduct.name": "Offener Saldo",
62102
62120
  "invoices.prorata.paymentForItem": "Anteilig berechneter Betrag f\xFCr",
62121
+ "invoices.prorata.paymentForItemFullPeriod": "Zahlung f\xFCr",
62103
62122
  "invoices.prorata.refundForItem": "Anteilig erstatteter Betrag f\xFCr",
62123
+ "invoices.prorata.refundForItemFullPeriod": "Erstattung f\xFCr",
62104
62124
  "subscriptions.closingChargeName": "Abschlussgeb\xFChr f\xFCr das Abonnement",
62105
62125
  "subscriptions.correction": "Vorperiodische Anpassung",
62106
62126
  "subscriptions.updates.addCoupon": "Gutschein hinzuf\xFCgen {{couponName}}",
@@ -62129,7 +62149,9 @@ var en = {
62129
62149
  "invoices.outstandingProduct.descriptionPeriod": "Unpaid amount from the invoice{{invoiceNumber}} from {{periodStart}} to {{periodEnd}}",
62130
62150
  "invoices.outstandingProduct.name": "Outstanding balance",
62131
62151
  "invoices.prorata.paymentForItem": "Prorated payment for",
62152
+ "invoices.prorata.paymentForItemFullPeriod": "Payment for",
62132
62153
  "invoices.prorata.refundForItem": "Prorated refund for",
62154
+ "invoices.prorata.refundForItemFullPeriod": "Refund for",
62133
62155
  "subscriptions.closingChargeName": "Closing fee for subscription",
62134
62156
  "subscriptions.correction": "Adjustment previous period",
62135
62157
  "subscriptions.updates.addCoupon": "Add coupon {{couponName}}",
@@ -62182,7 +62204,9 @@ var es = {
62182
62204
  "invoices.outstandingProduct.descriptionPeriod": "Monto pendiente de la factura{{invoiceNumber}} del {{periodStart}} al {{periodEnd}}",
62183
62205
  "invoices.outstandingProduct.name": "Saldo pendiente",
62184
62206
  "invoices.prorata.paymentForItem": "Pago prorrateado por",
62207
+ "invoices.prorata.paymentForItemFullPeriod": "Pago por",
62185
62208
  "invoices.prorata.refundForItem": "Reembolso prorrateado por",
62209
+ "invoices.prorata.refundForItemFullPeriod": "Reembolso por",
62186
62210
  "subscriptions.closingChargeName": "Cargo por cierre de suscripci\xF3n",
62187
62211
  "subscriptions.correction": "Ajuste del periodo anterior",
62188
62212
  "subscriptions.updates.addCoupon": "A\xF1adir cup\xF3n {{couponName}}",
@@ -62223,7 +62247,9 @@ var fr = {
62223
62247
  "invoices.outstandingProduct.descriptionPeriod": "Montant impay\xE9 de la facture{{invoiceNumber}} du {{periodStart}} au {{periodEnd}}",
62224
62248
  "invoices.outstandingProduct.name": "Solde impay\xE9",
62225
62249
  "invoices.prorata.paymentForItem": "Paiement au prorata pour",
62250
+ "invoices.prorata.paymentForItemFullPeriod": "Paiement pour",
62226
62251
  "invoices.prorata.refundForItem": "Remboursement au prorata pour",
62252
+ "invoices.prorata.refundForItemFullPeriod": "Remboursement pour",
62227
62253
  "subscriptions.closingChargeName": "Frais de cl\xF4ture pour abonnement",
62228
62254
  "subscriptions.correction": "Ajustement p\xE9riode pr\xE9c\xE9dente",
62229
62255
  "subscriptions.updates.addCoupon": "Ajout du coupon {{couponName}}",
@@ -62264,7 +62290,9 @@ var it = {
62264
62290
  "invoices.outstandingProduct.descriptionPeriod": "Importo insoluto della fattura{{invoiceNumber}} dal {{periodStart}} al {{periodEnd}}",
62265
62291
  "invoices.outstandingProduct.name": "Saldo insoluto",
62266
62292
  "invoices.prorata.paymentForItem": "Pagamento proporzionale per",
62293
+ "invoices.prorata.paymentForItemFullPeriod": "Pagamento per",
62267
62294
  "invoices.prorata.refundForItem": "Rimborso proporzionale per",
62295
+ "invoices.prorata.refundForItemFullPeriod": "Rimborso per",
62268
62296
  "subscriptions.closingChargeName": "Costo di chiusura per abbonamento",
62269
62297
  "subscriptions.correction": "Correzione periodo precedente",
62270
62298
  "subscriptions.updates.addCoupon": "Aggiungi coupon {{couponName}}",
@@ -62305,7 +62333,9 @@ var nl = {
62305
62333
  "invoices.outstandingProduct.descriptionPeriod": "Onbetaald bedrag van de factuur{{invoiceNumber}} van {{periodStart}} tot {{periodEnd}}",
62306
62334
  "invoices.outstandingProduct.name": "Openstaand saldo",
62307
62335
  "invoices.prorata.paymentForItem": "Gedeeltelijke betaling voor",
62336
+ "invoices.prorata.paymentForItemFullPeriod": "Betaling voor",
62308
62337
  "invoices.prorata.refundForItem": "Gedeeltelijke terugbetaling voor",
62338
+ "invoices.prorata.refundForItemFullPeriod": "Terugbetaling voor",
62309
62339
  "subscriptions.closingChargeName": "Afsluitkosten voor abonnement",
62310
62340
  "subscriptions.correction": "Aanpassing vorige periode",
62311
62341
  "subscriptions.updates.addCoupon": "Coupon toevoegen {{couponName}}",
@@ -62346,7 +62376,9 @@ var pl = {
62346
62376
  "invoices.outstandingProduct.descriptionPeriod": "Nieop\u0142acona kwota z faktury{{invoiceNumber}} od {{periodStart}} do {{periodEnd}}",
62347
62377
  "invoices.outstandingProduct.name": "Niezap\u0142acone saldo",
62348
62378
  "invoices.prorata.paymentForItem": "P\u0142atno\u015B\u0107 proporcjonalna za",
62379
+ "invoices.prorata.paymentForItemFullPeriod": "P\u0142atno\u015B\u0107 za",
62349
62380
  "invoices.prorata.refundForItem": "Zwrot proporcjonalny za",
62381
+ "invoices.prorata.refundForItemFullPeriod": "Zwrot za",
62350
62382
  "subscriptions.closingChargeName": "Op\u0142ata za zamkni\u0119cie subskrypcji",
62351
62383
  "subscriptions.correction": "Korekta poprzedniego okresu",
62352
62384
  "subscriptions.updates.addCoupon": "Dodaj kupon {{couponName}}",
@@ -62387,7 +62419,9 @@ var pt = {
62387
62419
  "invoices.outstandingProduct.descriptionPeriod": "Valor em aberto da fatura{{invoiceNumber}} de {{periodStart}} a {{periodEnd}}",
62388
62420
  "invoices.outstandingProduct.name": "Saldo em aberto",
62389
62421
  "invoices.prorata.paymentForItem": "Pagamento proporcional por",
62422
+ "invoices.prorata.paymentForItemFullPeriod": "Pagamento por",
62390
62423
  "invoices.prorata.refundForItem": "Reembolso proporcional por",
62424
+ "invoices.prorata.refundForItemFullPeriod": "Reembolso por",
62391
62425
  "subscriptions.closingChargeName": "Taxa de encerramento da assinatura",
62392
62426
  "subscriptions.correction": "Ajuste do per\xEDodo anterior",
62393
62427
  "subscriptions.updates.addCoupon": "Adicionar cupom {{couponName}}",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hyperline/cli",
3
- "version": "0.1.0-build.1.af7811b",
3
+ "version": "0.1.0-build.1.b02fd71",
4
4
  "description": "Agent-first CLI for Hyperline API",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",