@hyperline/cli 0.1.0-build.1.5aae681 → 0.1.0-build.1.5acd99c
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.
- package/dist/bin/hyperline-main.js +15 -27
- package/dist/external-deps.json +0 -1
- package/package.json +1 -2
|
@@ -38323,24 +38323,6 @@ Examples:
|
|
|
38323
38323
|
queryParamKeys: ["invoicing_entity_id"]
|
|
38324
38324
|
});
|
|
38325
38325
|
});
|
|
38326
|
-
resource.command("get-ledger-client-provider").description(`Retrieve the redacted accounting provider connected to a ledger.`).requiredOption("--id <value>", `id parameter`).addHelpText("after", `
|
|
38327
|
-
Examples:
|
|
38328
|
-
hyperline accounting-ledgers get-ledger-client-provider --id <id>`).action(async (opts) => {
|
|
38329
|
-
const ctx = resource.parent?.opts()._ctx;
|
|
38330
|
-
if (!ctx) {
|
|
38331
|
-
process.stderr.write("Error: Not authenticated\n");
|
|
38332
|
-
process.exit(1);
|
|
38333
|
-
}
|
|
38334
|
-
const args = {};
|
|
38335
|
-
if (opts.id !== void 0)
|
|
38336
|
-
args.id = opts.id;
|
|
38337
|
-
await ctx.execute({
|
|
38338
|
-
method: "GET",
|
|
38339
|
-
path: "/v1/accounting/ledgers/{id}/client-provider",
|
|
38340
|
-
args,
|
|
38341
|
-
queryParamKeys: []
|
|
38342
|
-
});
|
|
38343
|
-
});
|
|
38344
38326
|
resource.command("create-ledger").description(`Create an accounting ledger for an invoicing entity.`).requiredOption("--invoicing-entity-id <value>", `Identifier of the invoicing entity that owns the ledger.`).requiredOption("--name <value>", `Display name of the ledger.`).requiredOption("--code <value>", `Optional accounting code of the ledger.`).requiredOption("--description <value>", `Optional description of the ledger.`).requiredOption("--type <value>", `Type of ledger.`).requiredOption("--currency <value>", `ISO 4217 currency used by the ledger.`).requiredOption("--entry-number-pattern <value>", `Entry numbering pattern containing \`{number}\`.`).requiredOption("--is-primary", `Whether this is the primary ledger for the invoicing entity.`).requiredOption("--is-inactive", `Whether the ledger is inactive.`).addHelpText("after", `
|
|
38345
38327
|
Examples:
|
|
38346
38328
|
hyperline accounting-ledgers create-ledger --invoicing-entity-id <invoicing_entity_id> --name <name> --code <code> --description <description> --type <type> --currency <currency> --entry-number-pattern <entry_number_pattern> --is-primary --is-inactive
|
|
@@ -42018,7 +42000,7 @@ Examples:
|
|
|
42018
42000
|
queryParamKeys: []
|
|
42019
42001
|
});
|
|
42020
42002
|
});
|
|
42021
|
-
resource.command("create-invoicing-entity").description(`Create a new invoicing entity with company details, address, and tax configuration. Used as the sender on invoices.`).option("--is-default", `Flag to indicate if this is the default invoicing entity. If true, it will switch the other existing invoicing entities to non-default.`).requiredOption("--name <value>", `The name of the invoicing entity.`).option("--trade-name <value>", `The trade name of the invoicing entity.`).option("--timezone <value>", `The timezone the invoicing entity operates in.`).option("--language <value>", `The default language of the invoicing entity.`).option("--registration-number <value>", `The registration number of the invoicing entity.`).option("--tax-id <value>", `The tax identification number of the invoicing entity.`).option("--billing-email <value>", `The billing email address for the invoicing entity.`).option("--address-line1 <value>", `The first line of the address for the invoicing entity.`).option("--address-line2 <value>", `The second line of the address for the invoicing entity.`).option("--zip-code <value>", `The postal code for the invoicing entity's address.`).option("--state <value>", `The state or province of the invoicing entity.`).option("--city <value>", `The city of the invoicing entity.`).requiredOption("--country <value>", `The country in which the invoicing entity is registered.`).requiredOption("--currency <value>", `The currency code that the invoicing entity operates in.`).requiredOption("--accounting-currency <value>", `The currency used for accounting purposes.`).option("--invoice-number-pattern <value>", `The pattern used for generating invoice numbers. Available dynamic elements: number {number} (mandatory), year {YYYY}, month {MM} and day {DD}.`).option("--credit-note-number-pattern <value>", `The pattern used for generating credit note numbers. Available dynamic elements: number {number} (mandatory), year {YYYY}, month {MM} and day {DD}.`).option("--document-number-pattern <value>", `The pattern used for generating document numbers. Available dynamic elements: number {number} (mandatory), year {YYYY}, month {MM} and day {DD}.`).option("--next-invoice-number <number>", `The next invoice number to be used.`).option("--next-credit-note-number <number>", `The next credit note number to be used.`).option("--next-document-number <number>", `The next document number to be used.`).option("--default-payment-delay <number>", `The default payment term in days.`).option("--invoice-grace-period-duration <number>", `The grace period duration in days.`).option("--invoice-payment-initiation-delay <number>", `The payment initiation delay in days for the invoices.`).option("--document-payment-initiation-delay <number>", `The payment initiation delay in days for the custom documents.`).option("--invoice-late-fees <value>", `The late fees applicable to the invoices.`).option("--invoice-footer <value>", `The footer text to be used in invoices.`).option("--document-footer <value>", `The footer text to be used in documents. If not specified, the invoice footer will be used.`).option("--quote-footer <value>", `The footer text to be used in quotes.`).option("--logo-url <value>", `URL of the logo to be used in invoices.`).option("--favicon-url <value>", `URL of the logo to be used as favicon.`).option("--brand-color <value>", `Brand color to be used in invoices (hexadecimal color code).`).option("--forced-customer-type <value>", `Forces all customers created under this invoicing entity to have this type. Set to null to allow users to choose.`).option("--credit-note-wallet-refund-enabled", `When enabled, credit note refunds default to the customer's wallet
|
|
42003
|
+
resource.command("create-invoicing-entity").description(`Create a new invoicing entity with company details, address, and tax configuration. Used as the sender on invoices.`).option("--is-default", `Flag to indicate if this is the default invoicing entity. If true, it will switch the other existing invoicing entities to non-default.`).requiredOption("--name <value>", `The name of the invoicing entity.`).option("--trade-name <value>", `The trade name of the invoicing entity.`).option("--timezone <value>", `The timezone the invoicing entity operates in.`).option("--language <value>", `The default language of the invoicing entity.`).option("--registration-number <value>", `The registration number of the invoicing entity.`).option("--tax-id <value>", `The tax identification number of the invoicing entity.`).option("--billing-email <value>", `The billing email address for the invoicing entity.`).option("--address-line1 <value>", `The first line of the address for the invoicing entity.`).option("--address-line2 <value>", `The second line of the address for the invoicing entity.`).option("--zip-code <value>", `The postal code for the invoicing entity's address.`).option("--state <value>", `The state or province of the invoicing entity.`).option("--city <value>", `The city of the invoicing entity.`).requiredOption("--country <value>", `The country in which the invoicing entity is registered.`).requiredOption("--currency <value>", `The currency code that the invoicing entity operates in.`).requiredOption("--accounting-currency <value>", `The currency used for accounting purposes.`).option("--invoice-number-pattern <value>", `The pattern used for generating invoice numbers. Available dynamic elements: number {number} (mandatory), year {YYYY}, month {MM} and day {DD}.`).option("--credit-note-number-pattern <value>", `The pattern used for generating credit note numbers. Available dynamic elements: number {number} (mandatory), year {YYYY}, month {MM} and day {DD}.`).option("--document-number-pattern <value>", `The pattern used for generating document numbers. Available dynamic elements: number {number} (mandatory), year {YYYY}, month {MM} and day {DD}.`).option("--next-invoice-number <number>", `The next invoice number to be used.`).option("--next-credit-note-number <number>", `The next credit note number to be used.`).option("--next-document-number <number>", `The next document number to be used.`).option("--default-payment-delay <number>", `The default payment term in days.`).option("--invoice-grace-period-duration <number>", `The grace period duration in days.`).option("--invoice-payment-initiation-delay <number>", `The payment initiation delay in days for the invoices.`).option("--document-payment-initiation-delay <number>", `The payment initiation delay in days for the custom documents.`).option("--invoice-late-fees <value>", `The late fees applicable to the invoices.`).option("--invoice-footer <value>", `The footer text to be used in invoices.`).option("--document-footer <value>", `The footer text to be used in documents. If not specified, the invoice footer will be used.`).option("--quote-footer <value>", `The footer text to be used in quotes.`).option("--logo-url <value>", `URL of the logo to be used in invoices.`).option("--favicon-url <value>", `URL of the logo to be used as favicon.`).option("--brand-color <value>", `Brand color to be used in invoices (hexadecimal color code).`).option("--forced-customer-type <value>", `Forces all customers created under this invoicing entity to have this type. Set to null to allow users to choose.`).option("--credit-note-wallet-refund-enabled", `When enabled and no \`refund_method\` is specified, credit note refunds default to the customer's wallet, including credit notes generated by subscription updates, cancellations, and transitions. An explicit \`refund_method\` always wins. Requires wallets to be enabled at the workspace level.`).option("--standalone-credit-note-creation-enabled", `Whether credit notes without an original invoice can be created under this invoicing entity.`).addHelpText("after", `
|
|
42022
42004
|
Examples:
|
|
42023
42005
|
hyperline invoicing-entities create-invoicing-entity --name <name> --country <country> --currency <currency> --accounting-currency <accounting_currency>
|
|
42024
42006
|
hyperline invoicing-entities create-invoicing-entity --name <name> --country <country> --currency <currency> --accounting-currency <accounting_currency> --is-default --trade-name <trade_name>
|
|
@@ -42108,7 +42090,7 @@ Examples:
|
|
|
42108
42090
|
queryParamKeys: []
|
|
42109
42091
|
});
|
|
42110
42092
|
});
|
|
42111
|
-
resource.command("update-invoicing-entity").description(`Update an existing invoicing entity's details (address, tax ID, branding, etc.).`).requiredOption("--id <value>", `id parameter`).option("--name <value>", `The name of the invoicing entity.`).option("--registration-number <value>", `The registration number of the invoicing entity.`).option("--tax-id <value>", `The tax identification number of the invoicing entity.`).option("--billing-email <value>", `The billing email address for the invoicing entity.`).option("--timezone <value>", `The timezone the invoicing entity operates in.`).option("--language <value>", `The default language of the invoicing entity.`).option("--is-default", `Flag to indicate if this is the default invoicing entity. If true, it will switch the other existing invoicing entities to non-default.`).option("--address-line1 <value>", `The first line of the address for the invoicing entity.`).option("--address-line2 <value>", `The second line of the address for the invoicing entity.`).option("--zip-code <value>", `The postal code for the invoicing entity's address.`).option("--state <value>", `The state or province of the invoicing entity.`).option("--city <value>", `The city of the invoicing entity.`).option("--country <value>", `The country in which the invoicing entity is registered.`).option("--currency <value>", `The currency code that the invoicing entity operates in.`).option("--accounting-currency <value>", `The currency used for accounting purposes.`).option("--invoice-number-pattern <value>", `The pattern used for generating invoice numbers. Available dynamic elements: number {number} (mandatory), year {YYYY}, month {MM} and day {DD}.`).option("--credit-note-number-pattern <value>", `The pattern used for generating credit note numbers. Available dynamic elements: number {number} (mandatory), year {YYYY}, month {MM} and day {DD}.`).option("--document-number-pattern <value>", `The pattern used for generating document numbers. Available dynamic elements: number {number} (mandatory), year {YYYY}, month {MM} and day {DD}.`).option("--default-payment-delay <number>", `The default payment term in days.`).option("--invoice-grace-period-duration <number>", `The grace period duration in days.`).option("--invoice-payment-initiation-delay <number>", `The payment initiation delay in days for the invoices.`).option("--document-payment-initiation-delay <number>", `The payment initiation delay in days for the custom documents.`).option("--invoice-late-fees <value>", `The late fees applicable to the invoices.`).option("--invoice-footer <value>", `The footer text to be used in invoices.`).option("--document-footer <value>", `The footer text to be used in documents. If not specified, the invoice footer will be used.`).option("--logo-url <value>", `URL of the logo to be used in invoices.`).option("--favicon-url <value>", `URL of the logo to be used as favicon.`).option("--brand-color <value>", `Brand color to be used in invoices (hexadecimal color code).`).option("--forced-customer-type <value>", `Forces all customers created under this invoicing entity to have this type. Set to null to allow users to choose.`).option("--credit-note-wallet-refund-enabled", `When enabled, credit note refunds default to the customer's wallet
|
|
42093
|
+
resource.command("update-invoicing-entity").description(`Update an existing invoicing entity's details (address, tax ID, branding, etc.).`).requiredOption("--id <value>", `id parameter`).option("--name <value>", `The name of the invoicing entity.`).option("--registration-number <value>", `The registration number of the invoicing entity.`).option("--tax-id <value>", `The tax identification number of the invoicing entity.`).option("--billing-email <value>", `The billing email address for the invoicing entity.`).option("--timezone <value>", `The timezone the invoicing entity operates in.`).option("--language <value>", `The default language of the invoicing entity.`).option("--is-default", `Flag to indicate if this is the default invoicing entity. If true, it will switch the other existing invoicing entities to non-default.`).option("--address-line1 <value>", `The first line of the address for the invoicing entity.`).option("--address-line2 <value>", `The second line of the address for the invoicing entity.`).option("--zip-code <value>", `The postal code for the invoicing entity's address.`).option("--state <value>", `The state or province of the invoicing entity.`).option("--city <value>", `The city of the invoicing entity.`).option("--country <value>", `The country in which the invoicing entity is registered.`).option("--currency <value>", `The currency code that the invoicing entity operates in.`).option("--accounting-currency <value>", `The currency used for accounting purposes.`).option("--invoice-number-pattern <value>", `The pattern used for generating invoice numbers. Available dynamic elements: number {number} (mandatory), year {YYYY}, month {MM} and day {DD}.`).option("--credit-note-number-pattern <value>", `The pattern used for generating credit note numbers. Available dynamic elements: number {number} (mandatory), year {YYYY}, month {MM} and day {DD}.`).option("--document-number-pattern <value>", `The pattern used for generating document numbers. Available dynamic elements: number {number} (mandatory), year {YYYY}, month {MM} and day {DD}.`).option("--default-payment-delay <number>", `The default payment term in days.`).option("--invoice-grace-period-duration <number>", `The grace period duration in days.`).option("--invoice-payment-initiation-delay <number>", `The payment initiation delay in days for the invoices.`).option("--document-payment-initiation-delay <number>", `The payment initiation delay in days for the custom documents.`).option("--invoice-late-fees <value>", `The late fees applicable to the invoices.`).option("--invoice-footer <value>", `The footer text to be used in invoices.`).option("--document-footer <value>", `The footer text to be used in documents. If not specified, the invoice footer will be used.`).option("--logo-url <value>", `URL of the logo to be used in invoices.`).option("--favicon-url <value>", `URL of the logo to be used as favicon.`).option("--brand-color <value>", `Brand color to be used in invoices (hexadecimal color code).`).option("--forced-customer-type <value>", `Forces all customers created under this invoicing entity to have this type. Set to null to allow users to choose.`).option("--credit-note-wallet-refund-enabled", `When enabled and no \`refund_method\` is specified, credit note refunds default to the customer's wallet, including credit notes generated by subscription updates, cancellations, and transitions. An explicit \`refund_method\` always wins. Requires wallets to be enabled at the workspace level.`).option("--standalone-credit-note-creation-enabled", `Whether credit notes without an original invoice can be created under this invoicing entity.`).addHelpText("after", `
|
|
42112
42094
|
Examples:
|
|
42113
42095
|
hyperline invoicing-entities update-invoicing-entity --id <id>
|
|
42114
42096
|
hyperline invoicing-entities update-invoicing-entity --id <id> --name <name> --registration-number <registration_number>
|
|
@@ -44878,7 +44860,7 @@ Examples:
|
|
|
44878
44860
|
queryParamKeys: []
|
|
44879
44861
|
});
|
|
44880
44862
|
});
|
|
44881
|
-
resource.command("load").description(`Add free credits, apply unallocated funds from an existing payment transaction, or record a new paid transaction.`).requiredOption("--id <value>", `id parameter`).option("--type <value>", `Wallet load type. Use \`paid\` to apply an existing payment transaction or record a new one, 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("--transaction-id <value>", `Existing payment transaction ID whose unallocated amount will be loaded onto the wallet.`).option("--date <value>", `Date of the new offline payment transaction recorded for the wallet load. UTC date time string in the [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.`).option("--bank-account-id <value>", `Bank account ID to use when recording a new paid wallet load by bank transfer.`).option("--reference <value>", `Reference stored on the new payment transaction for a paid wallet load.`).addHelpText("after", `
|
|
44863
|
+
resource.command("load").description(`Add free credits, load selected line items from a paid invoice, apply unallocated funds from an existing payment transaction, or record a new paid transaction.`).requiredOption("--id <value>", `id parameter`).option("--type <value>", `Wallet load type. Use \`paid\` to load paid invoice line items, apply an existing payment transaction, or record a new one, 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("--transaction-id <value>", `Existing payment transaction ID whose unallocated amount will be loaded onto the wallet.`).option("--invoice-id <value>", `Paid invoice ID whose selected line items will be loaded onto the wallet.`).option("--invoice-line-item-ids <json>", `IDs of paid invoice line items whose combined amount will be loaded onto the wallet.`).option("--date <value>", `Date of the new offline payment transaction recorded for the wallet load. UTC date time string in the [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format.`).option("--bank-account-id <value>", `Bank account ID to use when recording a new paid wallet load by bank transfer.`).option("--reference <value>", `Reference stored on the new payment transaction for a paid wallet load.`).addHelpText("after", `
|
|
44882
44864
|
Examples:
|
|
44883
44865
|
hyperline wallets load --id <id>
|
|
44884
44866
|
hyperline wallets load --id <id> --type <type> --amount <amount>
|
|
@@ -44899,6 +44881,8 @@ Examples:
|
|
|
44899
44881
|
args.document_status = opts.documentStatus;
|
|
44900
44882
|
if (opts.transactionId !== void 0)
|
|
44901
44883
|
args.transaction_id = opts.transactionId;
|
|
44884
|
+
if (opts.invoiceId !== void 0)
|
|
44885
|
+
args.invoice_id = opts.invoiceId;
|
|
44902
44886
|
if (opts.date !== void 0)
|
|
44903
44887
|
args.date = opts.date;
|
|
44904
44888
|
if (opts.bankAccountId !== void 0)
|
|
@@ -44907,6 +44891,8 @@ Examples:
|
|
|
44907
44891
|
args.reference = opts.reference;
|
|
44908
44892
|
if (opts.amount !== void 0)
|
|
44909
44893
|
args.amount = Number(opts.amount);
|
|
44894
|
+
if (opts.invoiceLineItemIds !== void 0)
|
|
44895
|
+
args.invoice_line_item_ids = JSON.parse(opts.invoiceLineItemIds);
|
|
44910
44896
|
await ctx.execute({
|
|
44911
44897
|
method: "POST",
|
|
44912
44898
|
path: "/v1/wallets/{id}/load",
|
|
@@ -61156,6 +61142,7 @@ var de = {
|
|
|
61156
61142
|
"invoices.prorata.paymentForItemFullPeriod": "Zahlung f\xFCr",
|
|
61157
61143
|
"invoices.prorata.refundForItem": "Anteilig erstatteter Betrag f\xFCr",
|
|
61158
61144
|
"invoices.prorata.refundForItemFullPeriod": "Erstattung f\xFCr",
|
|
61145
|
+
"wallets.expiredBalanceInvoiceLineName": "{{walletName}} \u2013 abgelaufenes Guthaben",
|
|
61159
61146
|
"subscriptions.closingChargeName": "Abschlussgeb\xFChr f\xFCr das Abonnement",
|
|
61160
61147
|
"subscriptions.correction": "Vorperiodische Anpassung",
|
|
61161
61148
|
"subscriptions.updates.addCoupon": "Gutschein hinzuf\xFCgen {{couponName}}",
|
|
@@ -61187,6 +61174,7 @@ var en = {
|
|
|
61187
61174
|
"invoices.prorata.paymentForItemFullPeriod": "Payment for",
|
|
61188
61175
|
"invoices.prorata.refundForItem": "Prorated refund for",
|
|
61189
61176
|
"invoices.prorata.refundForItemFullPeriod": "Refund for",
|
|
61177
|
+
"wallets.expiredBalanceInvoiceLineName": "{{walletName}} \u2013 expired balance",
|
|
61190
61178
|
"subscriptions.closingChargeName": "Closing fee for subscription",
|
|
61191
61179
|
"subscriptions.correction": "Adjustment previous period",
|
|
61192
61180
|
"subscriptions.updates.addCoupon": "Add coupon {{couponName}}",
|
|
@@ -61246,6 +61234,7 @@ var es = {
|
|
|
61246
61234
|
"invoices.prorata.paymentForItemFullPeriod": "Pago por",
|
|
61247
61235
|
"invoices.prorata.refundForItem": "Reembolso prorrateado por",
|
|
61248
61236
|
"invoices.prorata.refundForItemFullPeriod": "Reembolso por",
|
|
61237
|
+
"wallets.expiredBalanceInvoiceLineName": "{{walletName}} \u2013 saldo caducado",
|
|
61249
61238
|
"subscriptions.closingChargeName": "Cargo por cierre de suscripci\xF3n",
|
|
61250
61239
|
"subscriptions.correction": "Ajuste del periodo anterior",
|
|
61251
61240
|
"subscriptions.updates.addCoupon": "A\xF1adir cup\xF3n {{couponName}}",
|
|
@@ -61291,6 +61280,7 @@ var fr = {
|
|
|
61291
61280
|
"invoices.prorata.paymentForItemFullPeriod": "Paiement pour",
|
|
61292
61281
|
"invoices.prorata.refundForItem": "Remboursement au prorata pour",
|
|
61293
61282
|
"invoices.prorata.refundForItemFullPeriod": "Remboursement pour",
|
|
61283
|
+
"wallets.expiredBalanceInvoiceLineName": "{{walletName}} \u2013 solde expir\xE9",
|
|
61294
61284
|
"subscriptions.closingChargeName": "Frais de cl\xF4ture pour abonnement",
|
|
61295
61285
|
"subscriptions.correction": "Ajustement p\xE9riode pr\xE9c\xE9dente",
|
|
61296
61286
|
"subscriptions.updates.addCoupon": "Ajout du coupon {{couponName}}",
|
|
@@ -61336,6 +61326,7 @@ var it = {
|
|
|
61336
61326
|
"invoices.prorata.paymentForItemFullPeriod": "Pagamento per",
|
|
61337
61327
|
"invoices.prorata.refundForItem": "Rimborso proporzionale per",
|
|
61338
61328
|
"invoices.prorata.refundForItemFullPeriod": "Rimborso per",
|
|
61329
|
+
"wallets.expiredBalanceInvoiceLineName": "{{walletName}} \u2013 saldo scaduto",
|
|
61339
61330
|
"subscriptions.closingChargeName": "Costo di chiusura per abbonamento",
|
|
61340
61331
|
"subscriptions.correction": "Correzione periodo precedente",
|
|
61341
61332
|
"subscriptions.updates.addCoupon": "Aggiungi coupon {{couponName}}",
|
|
@@ -61381,6 +61372,7 @@ var nl = {
|
|
|
61381
61372
|
"invoices.prorata.paymentForItemFullPeriod": "Betaling voor",
|
|
61382
61373
|
"invoices.prorata.refundForItem": "Gedeeltelijke terugbetaling voor",
|
|
61383
61374
|
"invoices.prorata.refundForItemFullPeriod": "Terugbetaling voor",
|
|
61375
|
+
"wallets.expiredBalanceInvoiceLineName": "{{walletName}} \u2013 verlopen saldo",
|
|
61384
61376
|
"subscriptions.closingChargeName": "Afsluitkosten voor abonnement",
|
|
61385
61377
|
"subscriptions.correction": "Aanpassing vorige periode",
|
|
61386
61378
|
"subscriptions.updates.addCoupon": "Coupon toevoegen {{couponName}}",
|
|
@@ -61426,6 +61418,7 @@ var pl = {
|
|
|
61426
61418
|
"invoices.prorata.paymentForItemFullPeriod": "P\u0142atno\u015B\u0107 za",
|
|
61427
61419
|
"invoices.prorata.refundForItem": "Zwrot proporcjonalny za",
|
|
61428
61420
|
"invoices.prorata.refundForItemFullPeriod": "Zwrot za",
|
|
61421
|
+
"wallets.expiredBalanceInvoiceLineName": "{{walletName}} \u2013 wygas\u0142e saldo",
|
|
61429
61422
|
"subscriptions.closingChargeName": "Op\u0142ata za zamkni\u0119cie subskrypcji",
|
|
61430
61423
|
"subscriptions.correction": "Korekta poprzedniego okresu",
|
|
61431
61424
|
"subscriptions.updates.addCoupon": "Dodaj kupon {{couponName}}",
|
|
@@ -61471,6 +61464,7 @@ var pt = {
|
|
|
61471
61464
|
"invoices.prorata.paymentForItemFullPeriod": "Pagamento por",
|
|
61472
61465
|
"invoices.prorata.refundForItem": "Reembolso proporcional por",
|
|
61473
61466
|
"invoices.prorata.refundForItemFullPeriod": "Reembolso por",
|
|
61467
|
+
"wallets.expiredBalanceInvoiceLineName": "{{walletName}} \u2013 saldo expirado",
|
|
61474
61468
|
"subscriptions.closingChargeName": "Taxa de encerramento da assinatura",
|
|
61475
61469
|
"subscriptions.correction": "Ajuste do per\xEDodo anterior",
|
|
61476
61470
|
"subscriptions.updates.addCoupon": "Adicionar cupom {{couponName}}",
|
|
@@ -64422,12 +64416,6 @@ var defaultToolOutputSchema = {
|
|
|
64422
64416
|
result: external_exports.unknown()
|
|
64423
64417
|
};
|
|
64424
64418
|
|
|
64425
|
-
// ../hyperline-mcp/build/session/sessionKey.js
|
|
64426
|
-
import { createHmac } from "node:crypto";
|
|
64427
|
-
|
|
64428
|
-
// ../hyperline-mcp/build/session/sessionManager.js
|
|
64429
|
-
import { LRUCache } from "lru-cache";
|
|
64430
|
-
|
|
64431
64419
|
// build/output.js
|
|
64432
64420
|
function formatOutput({ data, format: format2 }) {
|
|
64433
64421
|
if (format2 === "json") {
|
package/dist/external-deps.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hyperline/cli",
|
|
3
|
-
"version": "0.1.0-build.1.
|
|
3
|
+
"version": "0.1.0-build.1.5acd99c",
|
|
4
4
|
"description": "Agent-first CLI for Hyperline API",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -37,7 +37,6 @@
|
|
|
37
37
|
"helmet": "6.2.0",
|
|
38
38
|
"i18next": "22.5.1",
|
|
39
39
|
"json-prune": "1.1.0",
|
|
40
|
-
"lru-cache": "11.0.2",
|
|
41
40
|
"multer": "1.4.5-lts.1",
|
|
42
41
|
"rate-limiter-flexible": "11.0.0",
|
|
43
42
|
"stacktrace-parser": "0.1.10",
|