@activepieces/piece-quickbooks 0.1.4 → 0.1.5

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.
Files changed (66) hide show
  1. package/package.json +11 -22
  2. package/src/actions/create-expense.d.ts +1 -0
  3. package/src/actions/create-expense.d.ts.map +1 -0
  4. package/src/actions/create-expense.js +9 -4
  5. package/src/actions/create-expense.js.map +1 -1
  6. package/src/actions/create-invoice.d.ts +1 -0
  7. package/src/actions/create-invoice.d.ts.map +1 -0
  8. package/src/actions/create-invoice.js +8 -3
  9. package/src/actions/create-invoice.js.map +1 -1
  10. package/src/actions/find-customer.d.ts +1 -0
  11. package/src/actions/find-customer.d.ts.map +1 -0
  12. package/src/actions/find-customer.js +7 -2
  13. package/src/actions/find-customer.js.map +1 -1
  14. package/src/actions/find-invoice.d.ts +1 -0
  15. package/src/actions/find-invoice.d.ts.map +1 -0
  16. package/src/actions/find-invoice.js +7 -2
  17. package/src/actions/find-invoice.js.map +1 -1
  18. package/src/actions/find-payment.d.ts +1 -0
  19. package/src/actions/find-payment.d.ts.map +1 -0
  20. package/src/actions/find-payment.js +7 -2
  21. package/src/actions/find-payment.js.map +1 -1
  22. package/src/i18n/de.json +84 -0
  23. package/src/i18n/es.json +84 -0
  24. package/src/i18n/fr.json +84 -0
  25. package/src/i18n/ja.json +84 -0
  26. package/src/i18n/nl.json +84 -0
  27. package/src/i18n/pt.json +84 -0
  28. package/src/i18n/ru.json +77 -0
  29. package/src/i18n/translation.json +84 -0
  30. package/src/i18n/vi.json +77 -0
  31. package/src/i18n/zh.json +84 -0
  32. package/src/index.d.ts +1 -1
  33. package/src/index.d.ts.map +1 -0
  34. package/src/index.js +4 -16
  35. package/src/index.js.map +1 -1
  36. package/src/lib/auth.d.ts +2 -0
  37. package/src/lib/auth.d.ts.map +1 -0
  38. package/src/lib/auth.js +18 -0
  39. package/src/lib/auth.js.map +1 -0
  40. package/src/lib/common.d.ts +1 -0
  41. package/src/lib/common.d.ts.map +1 -0
  42. package/src/lib/common.js.map +1 -1
  43. package/src/lib/types.d.ts +1 -0
  44. package/src/lib/types.d.ts.map +1 -0
  45. package/src/lib/types.js.map +1 -1
  46. package/src/triggers/new-customer.d.ts +1 -0
  47. package/src/triggers/new-customer.d.ts.map +1 -0
  48. package/src/triggers/new-customer.js +5 -2
  49. package/src/triggers/new-customer.js.map +1 -1
  50. package/src/triggers/new-deposit.d.ts +1 -0
  51. package/src/triggers/new-deposit.d.ts.map +1 -0
  52. package/src/triggers/new-deposit.js +5 -2
  53. package/src/triggers/new-deposit.js.map +1 -1
  54. package/src/triggers/new-expense.d.ts +1 -0
  55. package/src/triggers/new-expense.d.ts.map +1 -0
  56. package/src/triggers/new-expense.js +5 -2
  57. package/src/triggers/new-expense.js.map +1 -1
  58. package/src/triggers/new-invoice.d.ts +1 -0
  59. package/src/triggers/new-invoice.d.ts.map +1 -0
  60. package/src/triggers/new-invoice.js +5 -2
  61. package/src/triggers/new-invoice.js.map +1 -1
  62. package/src/triggers/new-transfer.d.ts +1 -0
  63. package/src/triggers/new-transfer.d.ts.map +1 -0
  64. package/src/triggers/new-transfer.js +5 -2
  65. package/src/triggers/new-transfer.js.map +1 -1
  66. package/README.md +0 -7
@@ -0,0 +1,84 @@
1
+ {
2
+ "Company ID": "会社ID",
3
+ "You can find Company ID under **settings->Additional Info**.": "会社IDは **settings->Additional Info** で確認できます。",
4
+ "Find Invoice": "請求書を検索",
5
+ "Find Customer": "顧客検索",
6
+ "Find Payment": "支払いを検索",
7
+ "Create Invoice": "請求書を作成",
8
+ "Create Expense": "支出を作成",
9
+ "Custom API Call": "カスタムAPI通話",
10
+ "Search for an invoice by its number in QuickBooks.": "QuickBooksの番号で請求書を検索します。",
11
+ "Search for a customer by display name in QuickBooks.": "QuickBooksのディスプレイ名で顧客を検索します。",
12
+ "Finds an existing payment in QuickBooks.": "QuickBooksの既存の支払いを検索します。",
13
+ "Creates an invoice in QuickBooks.": "QuickBooksで請求書を作成します。",
14
+ "Creates an expense transaction (purchase) in QuickBooks.": "QuickBooksで経費取引(購入)を作成します。",
15
+ "Make a custom API call to a specific endpoint": "特定のエンドポイントへのカスタム API コールを実行します。",
16
+ "Invoice Number": "請求書番号",
17
+ "Customer Name": "顧客名",
18
+ "Customer ID": "顧客 ID",
19
+ "Customer": "顧客",
20
+ "Line Items": "行の項目",
21
+ "Email Status": "Email Status",
22
+ "Billing Email Address": "請求先メールアドレス",
23
+ "Due Date": "締切日",
24
+ "Transaction Date": "取引日",
25
+ "Private Note (Memo)": "プライベートメモ(メモ)",
26
+ "Customer Memo (Statement Memo)": "Customer Memo (Statement Memo)",
27
+ "Bank/Credit Card Account": "銀行/クレジットカードアカウント",
28
+ "Payment Type": "支払いタイプ",
29
+ "Payee (Vendor)": "Payee (Vendor)",
30
+ "Payment Date": "支払日",
31
+ "Memo (Private Note)": "メモ (プライベートノート)",
32
+ "Method": "方法",
33
+ "Headers": "ヘッダー",
34
+ "Query Parameters": "クエリパラメータ",
35
+ "Body Type": "ボディタイプ",
36
+ "Body": "本文",
37
+ "Response is Binary ?": "応答はバイナリですか?",
38
+ "No Error on Failure": "失敗時にエラーはありません",
39
+ "Timeout (in seconds)": "タイムアウト(秒)",
40
+ "Follow redirects": "リダイレクトをフォローする",
41
+ "The document number (DocNumber) of the invoice to search for.": "検索する請求書のドキュメント番号 (DocNumber)",
42
+ "The display name of the customer to search for.": "検索する顧客の表示名",
43
+ "The ID of the customer to find payments for.": "支払いを見つけるための顧客ID。",
44
+ "Line items for the invoice": "請求書の行項目",
45
+ "Specify whether the invoice should be emailed after creation.": "作成後に請求書を電子メールで送信するかどうかを指定します。",
46
+ "Email address to send the invoice to. Required if Email Status is \"Needs To Be Sent\". Overrides customer default.": "請求書を送信するメールアドレスです。メールステータスが「送信済み」の場合に必要です。顧客のデフォルトを上書きします。",
47
+ "The date when the payment for the invoice is due. If not provided, default term from customer or company is used.": "請求書の支払い期限の日付。指定されていない場合は、顧客または会社からのデフォルトの期間が使用されます。",
48
+ "Optional reference number for the invoice. If not provided, QuickBooks assigns the next sequential number.": "請求書のオプションの参照番号。指定されていない場合、QuickBooksは次の連続番号を割り当てます。",
49
+ "The date entered on the transaction. Defaults to the current date if not specified.": "The date entered on the transaction. Defaults to the current date if not specified.",
50
+ "Note to self. Does not appear on the invoice sent to the customer.": "顧客に送信された請求書には表示されません。",
51
+ "Memo to be displayed on the invoice sent to the customer (appears on statement).": "顧客に送信された請求書にメモを表示します (ステートメントに表示されます)。",
52
+ "The account from which the expense was paid.": "費用が支払われた口座。",
53
+ "Optional - The vendor the expense was paid to.": "オプション - 費用が支払われたベンダー。",
54
+ "The date the expense occurred.": "費用が発生した日付。",
55
+ "Details of the expense (e.g., categories or items purchased). At least one line is required.": "費用の詳細(例:カテゴリまたは商品の購入)。少なくとも1行以上が必要です。",
56
+ "Internal note about the expense.": "費用についての内部メモ。",
57
+ "Authorization headers are injected automatically from your connection.": "認証ヘッダは接続から自動的に注入されます。",
58
+ "Enable for files like PDFs, images, etc.": "PDF、画像などのファイルを有効にする",
59
+ "Not Set (Default - No Email)": "設定されていません (デフォルト - メールはありません)",
60
+ "Needs To Be Sent": "送信が必要",
61
+ "Cash": "現金",
62
+ "Check": "チェック",
63
+ "Credit Card": "クレジットカード",
64
+ "GET": "取得",
65
+ "POST": "POST",
66
+ "PATCH": "PATCH",
67
+ "PUT": "PUT",
68
+ "DELETE": "削除",
69
+ "HEAD": "頭",
70
+ "None": "なし",
71
+ "JSON": "JSON",
72
+ "Form Data": "フォームデータ",
73
+ "Raw": "Raw",
74
+ "New Invoice": "新しい請求書",
75
+ "New Expense (Purchase)": "新しい支出(購入)",
76
+ "New Customer": "新規顧客",
77
+ "New Deposit": "新規デポジット数",
78
+ "New Transfer": "新しい送金",
79
+ "Triggers when an invoice is created .": "請求書が作成されたときにトリガーされます。",
80
+ "Triggers when an Expense (Purchase) is created.": "経費(Purchase)が作成されたときにトリガーします。",
81
+ "Triggers when a new customer is created.": "新しい顧客が作成されたときにトリガーします.",
82
+ "Triggers when a Deposit is created.": "デポジットが作成されたときにトリガーします。",
83
+ "Triggers when a Transfer is created.": "転送が作成されたときにトリガーします。"
84
+ }
@@ -0,0 +1,84 @@
1
+ {
2
+ "Company ID": "Bedrijf ID",
3
+ "You can find Company ID under **settings->Additional Info**.": "U kunt het Bedrijfs-ID vinden onder **instellingen>Aanvullende informatie**.",
4
+ "Find Invoice": "Factuur zoeken",
5
+ "Find Customer": "Klant zoeken",
6
+ "Find Payment": "Betaling zoeken",
7
+ "Create Invoice": "Factuur aanmaken",
8
+ "Create Expense": "Kosten aanmaken",
9
+ "Custom API Call": "Custom API Call",
10
+ "Search for an invoice by its number in QuickBooks.": "Zoek naar een factuur volgens het nummer in QuickBooks.",
11
+ "Search for a customer by display name in QuickBooks.": "Zoek naar een klant op weergave naam in QuickBooks.",
12
+ "Finds an existing payment in QuickBooks.": "Vindt een bestaande betaling in QuickBooks.",
13
+ "Creates an invoice in QuickBooks.": "Maakt een factuur in QuickBooks.",
14
+ "Creates an expense transaction (purchase) in QuickBooks.": "Maakt een uitgave transactie aan (aankoop) in QuickBooks.",
15
+ "Make a custom API call to a specific endpoint": "Maak een aangepaste API call naar een specifiek eindpunt",
16
+ "Invoice Number": "Factuur Nummer",
17
+ "Customer Name": "Klant naam",
18
+ "Customer ID": "Klant ID",
19
+ "Customer": "Klant",
20
+ "Line Items": "Posities regel",
21
+ "Email Status": "Email Status",
22
+ "Billing Email Address": "E-mailadres voor facturering",
23
+ "Due Date": "Inleverdatum",
24
+ "Transaction Date": "Transactie datum",
25
+ "Private Note (Memo)": "Privénotitie (Notitie)",
26
+ "Customer Memo (Statement Memo)": "Klant Memo (declaratie memo)",
27
+ "Bank/Credit Card Account": "Bank/creditcard rekening",
28
+ "Payment Type": "Betalings Type",
29
+ "Payee (Vendor)": "Payee (Vendor)",
30
+ "Payment Date": "Datum betaling",
31
+ "Memo (Private Note)": "Memo (Private Notitie)",
32
+ "Method": "Methode",
33
+ "Headers": "Kopteksten",
34
+ "Query Parameters": "Query parameters",
35
+ "Body Type": "Type lichaam",
36
+ "Body": "Lichaam",
37
+ "Response is Binary ?": "Antwoord is binair?",
38
+ "No Error on Failure": "Geen fout bij fout",
39
+ "Timeout (in seconds)": "Time-out (in seconden)",
40
+ "Follow redirects": "Volg omleidingen",
41
+ "The document number (DocNumber) of the invoice to search for.": "Het documentnummer (DocNumber) van de te zoeken factuur",
42
+ "The display name of the customer to search for.": "De weergavenaam van de klant om naar te zoeken",
43
+ "The ID of the customer to find payments for.": "Het ID van de klant om betalingen voor te vinden.",
44
+ "Line items for the invoice": "Posities voor de factuur",
45
+ "Specify whether the invoice should be emailed after creation.": "Specificeer of de factuur gemaild moet worden na creatie.",
46
+ "Email address to send the invoice to. Required if Email Status is \"Needs To Be Sent\". Overrides customer default.": "E-mailadres om de factuur naar te verzenden. Vereist als E-mail Status is \"Moet worden verzonden\". Overschrijft de klant standaard.",
47
+ "The date when the payment for the invoice is due. If not provided, default term from customer or company is used.": "De datum waarop de betaling voor de factuur is gedaan. Indien niet opgegeven, wordt de standaard termijn van klant of bedrijf gebruikt.",
48
+ "Optional reference number for the invoice. If not provided, QuickBooks assigns the next sequential number.": "Optionele referentienummer voor de factuur. Indien niet opgegeven, QuickBooks wijst het volgende opeenvolgende aantal toe.",
49
+ "The date entered on the transaction. Defaults to the current date if not specified.": "De datum die is ingevoerd op de transactie. Standaard de huidige datum als deze niet is opgegeven.",
50
+ "Note to self. Does not appear on the invoice sent to the customer.": "Opmerking voor zichzelf. Wordt niet weergegeven op de factuur die naar de klant is verzonden.",
51
+ "Memo to be displayed on the invoice sent to the customer (appears on statement).": "Notitie om te worden getoond op de naar de klant verzonden factuur (verschijnt op de verklaring).",
52
+ "The account from which the expense was paid.": "De rekening waarvan de uitgave is betaald.",
53
+ "Optional - The vendor the expense was paid to.": "Optioneel - De verkoper waar de uitgave betaald werd.",
54
+ "The date the expense occurred.": "De datum waarop de uitgave heeft plaatsgevonden.",
55
+ "Details of the expense (e.g., categories or items purchased). At least one line is required.": "Details van de uitgave (bv. categorieën of items gekocht). Ten minste één regel is vereist.",
56
+ "Internal note about the expense.": "Interne notitie over de kosten.",
57
+ "Authorization headers are injected automatically from your connection.": "Autorisatie headers worden automatisch geïnjecteerd vanuit uw verbinding.",
58
+ "Enable for files like PDFs, images, etc.": "Inschakelen voor bestanden zoals PDF's, afbeeldingen etc.",
59
+ "Not Set (Default - No Email)": "Niet ingesteld (standaard - Geen E-mail)",
60
+ "Needs To Be Sent": "Moet verzonden worden",
61
+ "Cash": "Contant",
62
+ "Check": "Controleer",
63
+ "Credit Card": "Creditcard",
64
+ "GET": "KRIJG",
65
+ "POST": "POSTE",
66
+ "PATCH": "BEKIJK",
67
+ "PUT": "PUT",
68
+ "DELETE": "VERWIJDEREN",
69
+ "HEAD": "HOOFD",
70
+ "None": "geen",
71
+ "JSON": "JSON",
72
+ "Form Data": "Formulieren gegevens",
73
+ "Raw": "Onbewerkte",
74
+ "New Invoice": "Nieuwe factuur",
75
+ "New Expense (Purchase)": "Nieuwe kosten (Purchase)",
76
+ "New Customer": "Nieuwe klant",
77
+ "New Deposit": "Nieuwe storting",
78
+ "New Transfer": "Nieuwe overschrijving",
79
+ "Triggers when an invoice is created .": "Triggert wanneer een factuur is aangemaakt.",
80
+ "Triggers when an Expense (Purchase) is created.": "Triggert wanneer een uitgave (Purchase) is aangemaakt.",
81
+ "Triggers when a new customer is created.": "Triggert wanneer een nieuwe klant wordt aangemaakt.",
82
+ "Triggers when a Deposit is created.": "Triggert wanneer een storting is aangemaakt.",
83
+ "Triggers when a Transfer is created.": "Triggert wanneer een Transfer is aangemaakt."
84
+ }
@@ -0,0 +1,84 @@
1
+ {
2
+ "Company ID": "ID da Empresa",
3
+ "You can find Company ID under **settings->Additional Info**.": "Você pode encontrar o ID da empresa em **configurações->Informações adicionais**.",
4
+ "Find Invoice": "Encontrar fatura",
5
+ "Find Customer": "Encontrar o cliente",
6
+ "Find Payment": "Encontrar pagamento",
7
+ "Create Invoice": "Criar fatura",
8
+ "Create Expense": "Criar Despesa",
9
+ "Custom API Call": "Chamada de API personalizada",
10
+ "Search for an invoice by its number in QuickBooks.": "Pesquisar uma fatura por seu número no QuickBooks.",
11
+ "Search for a customer by display name in QuickBooks.": "Procure um cliente por nome de exibição no QuickBooks.",
12
+ "Finds an existing payment in QuickBooks.": "Encontrar um pagamento existente no QuickBooks.",
13
+ "Creates an invoice in QuickBooks.": "Cria uma fatura em QuickBooks.",
14
+ "Creates an expense transaction (purchase) in QuickBooks.": "Cria uma transação de despesa (compra) no QuickBooks.",
15
+ "Make a custom API call to a specific endpoint": "Faça uma chamada de API personalizada para um ponto de extremidade específico",
16
+ "Invoice Number": "Número da fatura",
17
+ "Customer Name": "Nome do cliente",
18
+ "Customer ID": "ID do cliente",
19
+ "Customer": "Cliente",
20
+ "Line Items": "Itens da linha",
21
+ "Email Status": "Email Status",
22
+ "Billing Email Address": "Endereço de Cobrança",
23
+ "Due Date": "Data de vencimento",
24
+ "Transaction Date": "Data da transação",
25
+ "Private Note (Memo)": "Nota Privada (Memo)",
26
+ "Customer Memo (Statement Memo)": "Memorando do cliente (declaração emo)",
27
+ "Bank/Credit Card Account": "Conta Banco/Cartão de Crédito",
28
+ "Payment Type": "Tipo de Pagamento",
29
+ "Payee (Vendor)": "Payee (Vendor)",
30
+ "Payment Date": "Data do pagamento",
31
+ "Memo (Private Note)": "Memo (Nota Privada)",
32
+ "Method": "Método",
33
+ "Headers": "Cabeçalhos",
34
+ "Query Parameters": "Parâmetros da consulta",
35
+ "Body Type": "Tipo de Corpo",
36
+ "Body": "Conteúdo",
37
+ "Response is Binary ?": "A resposta é binária ?",
38
+ "No Error on Failure": "Nenhum erro no Failure",
39
+ "Timeout (in seconds)": "Tempo limite (em segundos)",
40
+ "Follow redirects": "Seguir redirecionamentos",
41
+ "The document number (DocNumber) of the invoice to search for.": "O número do documento (DocNumber) da fatura a ser pesquisada.",
42
+ "The display name of the customer to search for.": "O nome de exibição do cliente a procurar",
43
+ "The ID of the customer to find payments for.": "O ID do cliente para encontrar os pagamentos.",
44
+ "Line items for the invoice": "Itens de linha para a fatura",
45
+ "Specify whether the invoice should be emailed after creation.": "Especifique se a fatura deve ser enviada por e-mail após a criação.",
46
+ "Email address to send the invoice to. Required if Email Status is \"Needs To Be Sent\". Overrides customer default.": "Endereço de e-mail para enviar a fatura. Obrigatório se o status do e-mail for \"Precisa ser enviado\". Substitui o padrão do cliente.",
47
+ "The date when the payment for the invoice is due. If not provided, default term from customer or company is used.": "A data de vencimento do pagamento da fatura. Se não for fornecido, será usado o termo padrão do cliente ou da empresa.",
48
+ "Optional reference number for the invoice. If not provided, QuickBooks assigns the next sequential number.": "Número de referência opcional para a fatura. Se não fornecido, QuickBooks atribui o próximo número sequencial.",
49
+ "The date entered on the transaction. Defaults to the current date if not specified.": "A data inserida na transação. O padrão é a data atual se não for especificado.",
50
+ "Note to self. Does not appear on the invoice sent to the customer.": "Nota para si mesmo. Não aparece na fatura enviada ao cliente.",
51
+ "Memo to be displayed on the invoice sent to the customer (appears on statement).": "O memorando a ser exibido na fatura enviada ao cliente (aparece na declaração).",
52
+ "The account from which the expense was paid.": "A conta a partir da qual a despesa foi paga.",
53
+ "Optional - The vendor the expense was paid to.": "Opcional - O fornecedor para o qual a despesa foi paga.",
54
+ "The date the expense occurred.": "A data em que ocorreu a despesa.",
55
+ "Details of the expense (e.g., categories or items purchased). At least one line is required.": "Detalhes da despesa (por exemplo, categorias ou itens comprados). Pelo menos uma linha é necessária.",
56
+ "Internal note about the expense.": "Nota interna sobre a despesa.",
57
+ "Authorization headers are injected automatically from your connection.": "Os cabeçalhos de autorização são inseridos automaticamente a partir da sua conexão.",
58
+ "Enable for files like PDFs, images, etc.": "Habilitar para arquivos como PDFs, imagens, etc.",
59
+ "Not Set (Default - No Email)": "Não definido (padrão - Sem e-mail)",
60
+ "Needs To Be Sent": "Precisa ser enviado",
61
+ "Cash": "Dinheiro",
62
+ "Check": "Verificar",
63
+ "Credit Card": "Cartão de Crédito",
64
+ "GET": "OBTER",
65
+ "POST": "POSTAR",
66
+ "PATCH": "COMPRAR",
67
+ "PUT": "COLOCAR",
68
+ "DELETE": "EXCLUIR",
69
+ "HEAD": "CABEÇA",
70
+ "None": "Nenhuma",
71
+ "JSON": "JSON",
72
+ "Form Data": "Dados de Formulário",
73
+ "Raw": "RAW",
74
+ "New Invoice": "Nova fatura",
75
+ "New Expense (Purchase)": "Nova Despesa (Purchase)",
76
+ "New Customer": "Novo Cliente",
77
+ "New Deposit": "Novo Depósito",
78
+ "New Transfer": "Nova Transferência",
79
+ "Triggers when an invoice is created .": "Aciona quando uma fatura é criada.",
80
+ "Triggers when an Expense (Purchase) is created.": "Aciona quando uma despesa (Purchase) é criada.",
81
+ "Triggers when a new customer is created.": "Dispara quando um novo cliente é criado.",
82
+ "Triggers when a Deposit is created.": "Dispara quando um depósito é criado.",
83
+ "Triggers when a Transfer is created.": "Dispara quando uma transferência é criada."
84
+ }
@@ -0,0 +1,77 @@
1
+ {
2
+ "Quickbooks Online": "С quickbooks онлайн",
3
+ "Company ID": "ID Компании",
4
+ "You can find Company ID under **settings->Additional Info**.": "Вы можете найти ID компании в разделе **settings->Дополнительная информация**.",
5
+ "Find Invoice": "Найти счет",
6
+ "Find Customer": "Найти клиента",
7
+ "Find Payment": "Найти платеж",
8
+ "Create Invoice": "Создать счет",
9
+ "Create Expense": "Создать расход",
10
+ "Custom API Call": "Пользовательский вызов API",
11
+ "Search for an invoice by its number in QuickBooks.": "Поиск счета по его количеству в quickbooks",
12
+ "Search for a customer by display name in QuickBooks.": "Поиск клиента по имени в quickbooks",
13
+ "Finds an existing payment in QuickBooks.": "Находит существующий платеж в quickbooks",
14
+ "Creates an invoice in QuickBooks.": "Создает счет в quickbooks",
15
+ "Creates an expense transaction (purchase) in QuickBooks.": "Создает транзакцию расходов (покупки) в quickbooks .",
16
+ "Make a custom API call to a specific endpoint": "Сделать пользовательский API вызов к определенной конечной точке",
17
+ "Invoice Number": "Номер счёта",
18
+ "Customer Name": "Имя клиента",
19
+ "Customer ID": "ID клиента",
20
+ "Customer": "Покупатель",
21
+ "Line Items": "Позиции",
22
+ "Email Status": "Email Status",
23
+ "Billing Email Address": "Адрес электронной почты для выставления счетов",
24
+ "Due Date": "Срок сдачи",
25
+ "Transaction Date": "Дата транзакции",
26
+ "Private Note (Memo)": "Приватная заметка (Memo)",
27
+ "Customer Memo (Statement Memo)": "Запоминание о клиенте (Statement Memo)",
28
+ "Bank/Credit Card Account": "Банковский/кредитный счет",
29
+ "Payment Type": "Тип платежа",
30
+ "Payee (Vendor)": "Payee (Vendor)",
31
+ "Payment Date": "Дата оплаты",
32
+ "Memo (Private Note)": "Заметка (личная заметка)",
33
+ "Method": "Метод",
34
+ "Headers": "Заголовки",
35
+ "Query Parameters": "Параметры запроса",
36
+ "Body": "Тело",
37
+ "No Error on Failure": "Нет ошибок при ошибке",
38
+ "Timeout (in seconds)": "Таймаут (в секундах)",
39
+ "The document number (DocNumber) of the invoice to search for.": "Номер документа (DocNumber) счета-фактуры для поиска.",
40
+ "The display name of the customer to search for.": "Отображаемое имя клиента для поиска.",
41
+ "The ID of the customer to find payments for.": "ID клиента для поиска платежей.",
42
+ "Line items for the invoice": "Позиции для счета-фактуры",
43
+ "Specify whether the invoice should be emailed after creation.": "Укажите, должен ли счет быть отправлен по электронной почте после создания.",
44
+ "Email address to send the invoice to. Required if Email Status is \"Needs To Be Sent\". Overrides customer default.": "Адрес эл. почты для отправки счета. Обязательно, если статус эл. почты \"Должен быть отправлен\". Переопределяет клиента по умолчанию.",
45
+ "The date when the payment for the invoice is due. If not provided, default term from customer or company is used.": "Дата, когда причитается оплата за счет. Если не указано, используется срок по умолчанию от клиента или компании.",
46
+ "Optional reference number for the invoice. If not provided, QuickBooks assigns the next sequential number.": "Необязательный номер счёта. Если он не указан, QuickBooks назначает следующий порядковый номер.",
47
+ "The date entered on the transaction. Defaults to the current date if not specified.": "Дата введенная в транзакции. По умолчанию текущая дата, если не указана.",
48
+ "Note to self. Does not appear on the invoice sent to the customer.": "Примечание для себя. Не появляется в счете, отправленном клиенту.",
49
+ "Memo to be displayed on the invoice sent to the customer (appears on statement).": "Примечание, отображаемое в счете, отправленном клиенту (отображается в выписке).",
50
+ "The account from which the expense was paid.": "Счет, с которого были оплачены расходы.",
51
+ "Optional - The vendor the expense was paid to.": "Необязательный - Продавец был оплачен.",
52
+ "The date the expense occurred.": "Дата совершения расхода.",
53
+ "Details of the expense (e.g., categories or items purchased). At least one line is required.": "Детали расходов (например, категории или товары). Требуется хотя бы одна строка.",
54
+ "Internal note about the expense.": "Внутренняя заметка о расходе.",
55
+ "Authorization headers are injected automatically from your connection.": "Заголовки авторизации включаются автоматически из вашего соединения.",
56
+ "Not Set (Default - No Email)": "Не установлено (по умолчанию - нет Email)",
57
+ "Needs To Be Sent": "Нужно отправить",
58
+ "Cash": "Наличные",
59
+ "Check": "Проверить",
60
+ "Credit Card": "Кредитная карта",
61
+ "GET": "ПОЛУЧИТЬ",
62
+ "POST": "ПОСТ",
63
+ "PATCH": "ПАТЧ",
64
+ "PUT": "ПОКУПИТЬ",
65
+ "DELETE": "УДАЛИТЬ",
66
+ "HEAD": "HEAD",
67
+ "New Invoice": "Новый счет",
68
+ "New Expense (Purchase)": "Новые расходы (покупки)",
69
+ "New Customer": "Новый клиент",
70
+ "New Deposit": "Новый депозит",
71
+ "New Transfer": "Новый перевод",
72
+ "Triggers when an invoice is created .": "Включает при создании счета-фактуры .",
73
+ "Triggers when an Expense (Purchase) is created.": "Триггеры при оплате (покупке).",
74
+ "Triggers when a new customer is created.": "Триггеры при создании нового клиента.",
75
+ "Triggers when a Deposit is created.": "Триггеры при внесении депозита.",
76
+ "Triggers when a Transfer is created.": "Триггеры при создании перевода."
77
+ }
@@ -0,0 +1,84 @@
1
+ {
2
+ "Company ID": "Company ID",
3
+ "You can find Company ID under **settings->Additional Info**.": "You can find Company ID under **settings->Additional Info**.",
4
+ "Find Invoice": "Find Invoice",
5
+ "Find Customer": "Find Customer",
6
+ "Find Payment": "Find Payment",
7
+ "Create Invoice": "Create Invoice",
8
+ "Create Expense": "Create Expense",
9
+ "Custom API Call": "Custom API Call",
10
+ "Search for an invoice by its number in QuickBooks.": "Search for an invoice by its number in QuickBooks.",
11
+ "Search for a customer by display name in QuickBooks.": "Search for a customer by display name in QuickBooks.",
12
+ "Finds an existing payment in QuickBooks.": "Finds an existing payment in QuickBooks.",
13
+ "Creates an invoice in QuickBooks.": "Creates an invoice in QuickBooks.",
14
+ "Creates an expense transaction (purchase) in QuickBooks.": "Creates an expense transaction (purchase) in QuickBooks.",
15
+ "Make a custom API call to a specific endpoint": "Make a custom API call to a specific endpoint",
16
+ "Invoice Number": "Invoice Number",
17
+ "Customer Name": "Customer Name",
18
+ "Customer ID": "Customer ID",
19
+ "Customer": "Customer",
20
+ "Line Items": "Line Items",
21
+ "Email Status": "Email Status",
22
+ "Billing Email Address": "Billing Email Address",
23
+ "Due Date": "Due Date",
24
+ "Transaction Date": "Transaction Date",
25
+ "Private Note (Memo)": "Private Note (Memo)",
26
+ "Customer Memo (Statement Memo)": "Customer Memo (Statement Memo)",
27
+ "Bank/Credit Card Account": "Bank/Credit Card Account",
28
+ "Payment Type": "Payment Type",
29
+ "Payee (Vendor)": "Payee (Vendor)",
30
+ "Payment Date": "Payment Date",
31
+ "Memo (Private Note)": "Memo (Private Note)",
32
+ "Method": "Method",
33
+ "Headers": "Headers",
34
+ "Query Parameters": "Query Parameters",
35
+ "Body Type": "Body Type",
36
+ "Body": "Body",
37
+ "Response is Binary ?": "Response is Binary ?",
38
+ "No Error on Failure": "No Error on Failure",
39
+ "Timeout (in seconds)": "Timeout (in seconds)",
40
+ "Follow redirects": "Follow redirects",
41
+ "The document number (DocNumber) of the invoice to search for.": "The document number (DocNumber) of the invoice to search for.",
42
+ "The display name of the customer to search for.": "The display name of the customer to search for.",
43
+ "The ID of the customer to find payments for.": "The ID of the customer to find payments for.",
44
+ "Line items for the invoice": "Line items for the invoice",
45
+ "Specify whether the invoice should be emailed after creation.": "Specify whether the invoice should be emailed after creation.",
46
+ "Email address to send the invoice to. Required if Email Status is \"Needs To Be Sent\". Overrides customer default.": "Email address to send the invoice to. Required if Email Status is \"Needs To Be Sent\". Overrides customer default.",
47
+ "The date when the payment for the invoice is due. If not provided, default term from customer or company is used.": "The date when the payment for the invoice is due. If not provided, default term from customer or company is used.",
48
+ "Optional reference number for the invoice. If not provided, QuickBooks assigns the next sequential number.": "Optional reference number for the invoice. If not provided, QuickBooks assigns the next sequential number.",
49
+ "The date entered on the transaction. Defaults to the current date if not specified.": "The date entered on the transaction. Defaults to the current date if not specified.",
50
+ "Note to self. Does not appear on the invoice sent to the customer.": "Note to self. Does not appear on the invoice sent to the customer.",
51
+ "Memo to be displayed on the invoice sent to the customer (appears on statement).": "Memo to be displayed on the invoice sent to the customer (appears on statement).",
52
+ "The account from which the expense was paid.": "The account from which the expense was paid.",
53
+ "Optional - The vendor the expense was paid to.": "Optional - The vendor the expense was paid to.",
54
+ "The date the expense occurred.": "The date the expense occurred.",
55
+ "Details of the expense (e.g., categories or items purchased). At least one line is required.": "Details of the expense (e.g., categories or items purchased). At least one line is required.",
56
+ "Internal note about the expense.": "Internal note about the expense.",
57
+ "Authorization headers are injected automatically from your connection.": "Authorization headers are injected automatically from your connection.",
58
+ "Enable for files like PDFs, images, etc.": "Enable for files like PDFs, images, etc.",
59
+ "Not Set (Default - No Email)": "Not Set (Default - No Email)",
60
+ "Needs To Be Sent": "Needs To Be Sent",
61
+ "Cash": "Cash",
62
+ "Check": "Check",
63
+ "Credit Card": "Credit Card",
64
+ "GET": "GET",
65
+ "POST": "POST",
66
+ "PATCH": "PATCH",
67
+ "PUT": "PUT",
68
+ "DELETE": "DELETE",
69
+ "HEAD": "HEAD",
70
+ "None": "None",
71
+ "JSON": "JSON",
72
+ "Form Data": "Form Data",
73
+ "Raw": "Raw",
74
+ "New Invoice": "New Invoice",
75
+ "New Expense (Purchase)": "New Expense (Purchase)",
76
+ "New Customer": "New Customer",
77
+ "New Deposit": "New Deposit",
78
+ "New Transfer": "New Transfer",
79
+ "Triggers when an invoice is created .": "Triggers when an invoice is created .",
80
+ "Triggers when an Expense (Purchase) is created.": "Triggers when an Expense (Purchase) is created.",
81
+ "Triggers when a new customer is created.": "Triggers when a new customer is created.",
82
+ "Triggers when a Deposit is created.": "Triggers when a Deposit is created.",
83
+ "Triggers when a Transfer is created.": "Triggers when a Transfer is created."
84
+ }
@@ -0,0 +1,77 @@
1
+ {
2
+ "Quickbooks Online": "Quickbooks Online",
3
+ "Company ID": "Company ID",
4
+ "You can find Company ID under **settings->Additional Info**.": "You can find Company ID under **settings->Additional Info**.",
5
+ "Find Invoice": "Find Invoice",
6
+ "Find Customer": "Find Customer",
7
+ "Find Payment": "Find Payment",
8
+ "Create Invoice": "Create Invoice",
9
+ "Create Expense": "Create Expense",
10
+ "Custom API Call": "Custom API Call",
11
+ "Search for an invoice by its number in QuickBooks.": "Search for an invoice by its number in QuickBooks.",
12
+ "Search for a customer by display name in QuickBooks.": "Search for a customer by display name in QuickBooks.",
13
+ "Finds an existing payment in QuickBooks.": "Finds an existing payment in QuickBooks.",
14
+ "Creates an invoice in QuickBooks.": "Creates an invoice in QuickBooks.",
15
+ "Creates an expense transaction (purchase) in QuickBooks.": "Creates an expense transaction (purchase) in QuickBooks.",
16
+ "Make a custom API call to a specific endpoint": "Make a custom API call to a specific endpoint",
17
+ "Invoice Number": "Invoice Number",
18
+ "Customer Name": "Customer Name",
19
+ "Customer ID": "Customer ID",
20
+ "Customer": "Customer",
21
+ "Line Items": "Line Items",
22
+ "Email Status": "Email Status",
23
+ "Billing Email Address": "Billing Email Address",
24
+ "Due Date": "Due Date",
25
+ "Transaction Date": "Transaction Date",
26
+ "Private Note (Memo)": "Private Note (Memo)",
27
+ "Customer Memo (Statement Memo)": "Customer Memo (Statement Memo)",
28
+ "Bank/Credit Card Account": "Bank/Credit Card Account",
29
+ "Payment Type": "Payment Type",
30
+ "Payee (Vendor)": "Payee (Vendor)",
31
+ "Payment Date": "Payment Date",
32
+ "Memo (Private Note)": "Memo (Private Note)",
33
+ "Method": "Method",
34
+ "Headers": "Headers",
35
+ "Query Parameters": "Query Parameters",
36
+ "Body": "Body",
37
+ "No Error on Failure": "No Error on Failure",
38
+ "Timeout (in seconds)": "Timeout (in seconds)",
39
+ "The document number (DocNumber) of the invoice to search for.": "The document number (DocNumber) of the invoice to search for.",
40
+ "The display name of the customer to search for.": "The display name of the customer to search for.",
41
+ "The ID of the customer to find payments for.": "The ID of the customer to find payments for.",
42
+ "Line items for the invoice": "Line items for the invoice",
43
+ "Specify whether the invoice should be emailed after creation.": "Specify whether the invoice should be emailed after creation.",
44
+ "Email address to send the invoice to. Required if Email Status is \"Needs To Be Sent\". Overrides customer default.": "Email address to send the invoice to. Required if Email Status is \"Needs To Be Sent\". Overrides customer default.",
45
+ "The date when the payment for the invoice is due. If not provided, default term from customer or company is used.": "The date when the payment for the invoice is due. If not provided, default term from customer or company is used.",
46
+ "Optional reference number for the invoice. If not provided, QuickBooks assigns the next sequential number.": "Optional reference number for the invoice. If not provided, QuickBooks assigns the next sequential number.",
47
+ "The date entered on the transaction. Defaults to the current date if not specified.": "The date entered on the transaction. Defaults to the current date if not specified.",
48
+ "Note to self. Does not appear on the invoice sent to the customer.": "Note to self. Does not appear on the invoice sent to the customer.",
49
+ "Memo to be displayed on the invoice sent to the customer (appears on statement).": "Memo to be displayed on the invoice sent to the customer (appears on statement).",
50
+ "The account from which the expense was paid.": "The account from which the expense was paid.",
51
+ "Optional - The vendor the expense was paid to.": "Optional - The vendor the expense was paid to.",
52
+ "The date the expense occurred.": "The date the expense occurred.",
53
+ "Details of the expense (e.g., categories or items purchased). At least one line is required.": "Details of the expense (e.g., categories or items purchased). At least one line is required.",
54
+ "Internal note about the expense.": "Internal note about the expense.",
55
+ "Authorization headers are injected automatically from your connection.": "Authorization headers are injected automatically from your connection.",
56
+ "Not Set (Default - No Email)": "Not Set (Default - No Email)",
57
+ "Needs To Be Sent": "Needs To Be Sent",
58
+ "Cash": "Cash",
59
+ "Check": "Check",
60
+ "Credit Card": "Credit Card",
61
+ "GET": "GET",
62
+ "POST": "POST",
63
+ "PATCH": "PATCH",
64
+ "PUT": "PUT",
65
+ "DELETE": "DELETE",
66
+ "HEAD": "HEAD",
67
+ "New Invoice": "New Invoice",
68
+ "New Expense (Purchase)": "New Expense (Purchase)",
69
+ "New Customer": "New Customer",
70
+ "New Deposit": "New Deposit",
71
+ "New Transfer": "New Transfer",
72
+ "Triggers when an invoice is created .": "Triggers when an invoice is created .",
73
+ "Triggers when an Expense (Purchase) is created.": "Triggers when an Expense (Purchase) is created.",
74
+ "Triggers when a new customer is created.": "Triggers when a new customer is created.",
75
+ "Triggers when a Deposit is created.": "Triggers when a Deposit is created.",
76
+ "Triggers when a Transfer is created.": "Triggers when a Transfer is created."
77
+ }
@@ -0,0 +1,84 @@
1
+ {
2
+ "Company ID": "Company ID",
3
+ "You can find Company ID under **settings->Additional Info**.": "You can find Company ID under **settings->Additional Info**.",
4
+ "Find Invoice": "Find Invoice",
5
+ "Find Customer": "Find Customer",
6
+ "Find Payment": "Find Payment",
7
+ "Create Invoice": "Create Invoice",
8
+ "Create Expense": "Create Expense",
9
+ "Custom API Call": "自定义 API 呼叫",
10
+ "Search for an invoice by its number in QuickBooks.": "Search for an invoice by its number in QuickBooks.",
11
+ "Search for a customer by display name in QuickBooks.": "Search for a customer by display name in QuickBooks.",
12
+ "Finds an existing payment in QuickBooks.": "Finds an existing payment in QuickBooks.",
13
+ "Creates an invoice in QuickBooks.": "Creates an invoice in QuickBooks.",
14
+ "Creates an expense transaction (purchase) in QuickBooks.": "Creates an expense transaction (purchase) in QuickBooks.",
15
+ "Make a custom API call to a specific endpoint": "将一个自定义 API 调用到一个特定的终点",
16
+ "Invoice Number": "Invoice Number",
17
+ "Customer Name": "Customer Name",
18
+ "Customer ID": "Customer ID",
19
+ "Customer": "Customer",
20
+ "Line Items": "Line Items",
21
+ "Email Status": "Email Status",
22
+ "Billing Email Address": "Billing Email Address",
23
+ "Due Date": "Due Date",
24
+ "Transaction Date": "Transaction Date",
25
+ "Private Note (Memo)": "Private Note (Memo)",
26
+ "Customer Memo (Statement Memo)": "Customer Memo (Statement Memo)",
27
+ "Bank/Credit Card Account": "Bank/Credit Card Account",
28
+ "Payment Type": "Payment Type",
29
+ "Payee (Vendor)": "Payee (Vendor)",
30
+ "Payment Date": "Payment Date",
31
+ "Memo (Private Note)": "Memo (Private Note)",
32
+ "Method": "方法",
33
+ "Headers": "信头",
34
+ "Query Parameters": "查询参数",
35
+ "Body Type": "Body Type",
36
+ "Body": "正文内容",
37
+ "Response is Binary ?": "Response is Binary ?",
38
+ "No Error on Failure": "失败时没有错误",
39
+ "Timeout (in seconds)": "超时(秒)",
40
+ "Follow redirects": "Follow redirects",
41
+ "The document number (DocNumber) of the invoice to search for.": "The document number (DocNumber) of the invoice to search for.",
42
+ "The display name of the customer to search for.": "The display name of the customer to search for.",
43
+ "The ID of the customer to find payments for.": "The ID of the customer to find payments for.",
44
+ "Line items for the invoice": "Line items for the invoice",
45
+ "Specify whether the invoice should be emailed after creation.": "Specify whether the invoice should be emailed after creation.",
46
+ "Email address to send the invoice to. Required if Email Status is \"Needs To Be Sent\". Overrides customer default.": "Email address to send the invoice to. Required if Email Status is \"Needs To Be Sent\". Overrides customer default.",
47
+ "The date when the payment for the invoice is due. If not provided, default term from customer or company is used.": "The date when the payment for the invoice is due. If not provided, default term from customer or company is used.",
48
+ "Optional reference number for the invoice. If not provided, QuickBooks assigns the next sequential number.": "Optional reference number for the invoice. If not provided, QuickBooks assigns the next sequential number.",
49
+ "The date entered on the transaction. Defaults to the current date if not specified.": "The date entered on the transaction. Defaults to the current date if not specified.",
50
+ "Note to self. Does not appear on the invoice sent to the customer.": "Note to self. Does not appear on the invoice sent to the customer.",
51
+ "Memo to be displayed on the invoice sent to the customer (appears on statement).": "Memo to be displayed on the invoice sent to the customer (appears on statement).",
52
+ "The account from which the expense was paid.": "The account from which the expense was paid.",
53
+ "Optional - The vendor the expense was paid to.": "Optional - The vendor the expense was paid to.",
54
+ "The date the expense occurred.": "The date the expense occurred.",
55
+ "Details of the expense (e.g., categories or items purchased). At least one line is required.": "Details of the expense (e.g., categories or items purchased). At least one line is required.",
56
+ "Internal note about the expense.": "Internal note about the expense.",
57
+ "Authorization headers are injected automatically from your connection.": "授权头自动从您的连接中注入。",
58
+ "Enable for files like PDFs, images, etc.": "Enable for files like PDFs, images, etc.",
59
+ "Not Set (Default - No Email)": "Not Set (Default - No Email)",
60
+ "Needs To Be Sent": "Needs To Be Sent",
61
+ "Cash": "Cash",
62
+ "Check": "Check",
63
+ "Credit Card": "Credit Card",
64
+ "GET": "获取",
65
+ "POST": "帖子",
66
+ "PATCH": "PATCH",
67
+ "PUT": "弹出",
68
+ "DELETE": "删除",
69
+ "HEAD": "黑色",
70
+ "None": "无",
71
+ "JSON": "JSON",
72
+ "Form Data": "表单数据",
73
+ "Raw": "原始文件",
74
+ "New Invoice": "New Invoice",
75
+ "New Expense (Purchase)": "New Expense (Purchase)",
76
+ "New Customer": "New Customer",
77
+ "New Deposit": "New Deposit",
78
+ "New Transfer": "New Transfer",
79
+ "Triggers when an invoice is created .": "Triggers when an invoice is created .",
80
+ "Triggers when an Expense (Purchase) is created.": "Triggers when an Expense (Purchase) is created.",
81
+ "Triggers when a new customer is created.": "Triggers when a new customer is created.",
82
+ "Triggers when a Deposit is created.": "Triggers when a Deposit is created.",
83
+ "Triggers when a Transfer is created.": "Triggers when a Transfer is created."
84
+ }
package/src/index.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const quickbooksAuth: import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>;
2
1
  export declare const quickbooks: import("@activepieces/pieces-framework").Piece<import("@activepieces/pieces-framework").OAuth2Property<import("@activepieces/pieces-framework").OAuth2Props>>;
2
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAeA,eAAO,MAAM,UAAU,+JAsCrB,CAAC"}