Skip to content

Commit

Permalink
Add missing transaction_lines fields
Browse files Browse the repository at this point in the history
  • Loading branch information
hsyyid committed Jan 2, 2025
1 parent d0fa449 commit d13ee04
Show file tree
Hide file tree
Showing 2 changed files with 59 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "tap-netsuite-rest"
version = "0.2.1"
version = "0.2.2"
description = "`tap-netsuite-rest` is a Singer tap for NetSuite, built with the Meltano SDK for Singer Taps."
authors = ["hotglue"]
keywords = [
Expand Down
58 changes: 58 additions & 0 deletions tap_netsuite_rest/streams.py
Original file line number Diff line number Diff line change
Expand Up @@ -711,6 +711,64 @@ class TransactionLinesStream(TransactionRootStream):
th.Property("memo", th.StringType),
th.Property("quantity", th.NumberType),
th.Property("quantitybilled", th.NumberType),
th.Property("cleared", th.BooleanType),
th.Property("closedate", th.DateTimeType),
th.Property("commitmentfirm", th.BooleanType),
th.Property("costestimatetype", th.StringType),
th.Property("debitforeignamount", th.NumberType),
th.Property("department", th.StringType),
th.Property("donotdisplayline", th.BooleanType),
th.Property("eliminate", th.BooleanType),
th.Property("expenseaccount", th.StringType),
th.Property("fxamountlinked", th.NumberType),
th.Property("hasfulfillableitems", th.BooleanType),
th.Property("invsoebundle", th.BooleanType),
th.Property("isbillable", th.BooleanType),
th.Property("isclosed", th.BooleanType),
th.Property("iscogs", th.BooleanType),
th.Property("iscustomglline", th.BooleanType),
th.Property("isfullyshipped", th.BooleanType),
th.Property("isfxvariance", th.BooleanType),
th.Property("isinventoryaffecting", th.BooleanType),
th.Property("isrevrectransaction", th.BooleanType),
th.Property("deferrevrec", th.BooleanType),
th.Property("revrecschedule", th.StringType),
th.Property("revcommittingtransaction", th.StringType),
th.Property("kitcomponent", th.BooleanType),
th.Property("location", th.StringType),
th.Property("mainline", th.BooleanType),
th.Property("matchbilltoreceipt", th.BooleanType),
th.Property("needsrevenueelement", th.BooleanType),
th.Property("netamount", th.NumberType),
th.Property("oldcommitmentfirm", th.BooleanType),
th.Property("processedbyrevcommit", th.BooleanType),
th.Property("quantityrejected", th.NumberType),
th.Property("quantityshiprecv", th.NumberType),
th.Property("subsidiary", th.StringType),
th.Property("taxline", th.BooleanType),
th.Property("transactiondiscount", th.BooleanType),
th.Property("uniquekey", th.IntegerType),
th.Property("item", th.StringType),
th.Property("itemtype", th.StringType),
th.Property("isallocation", th.BooleanType),
th.Property("price", th.StringType),
th.Property("transactionlinetype", th.StringType),
th.Property("acknowledgefulfillinstruction", th.BooleanType),
th.Property("actualshipdate", th.DateTimeType),
th.Property("quantityallocated", th.NumberType),
th.Property("quantitydemandallocated", th.NumberType),
th.Property("allocationalert", th.StringType),
th.Property("vsoeprice", th.NumberType),
th.Property("vsoesopgroup", th.StringType),
th.Property("amortizationenddate", th.DateTimeType),
th.Property("amortizationsched", th.StringType),
th.Property("amortizstartdate", th.DateTimeType),
th.Property("assembly", th.StringType),
th.Property("assemblycomponent", th.BooleanType),
th.Property("assemblyunits", th.StringType),
th.Property("quantitybackordered", th.NumberType),
th.Property("isbillable", th.BooleanType),
th.Property("billingschedule", th.StringType),
]

def get_selected_properties(self):
Expand Down

0 comments on commit d13ee04

Please sign in to comment.