Skip to content

Commit

Permalink
add locations stream (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
keyn4 authored Mar 22, 2024
1 parent 420fc1d commit ccf2a8b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/tap_intacct/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@
'invoice_items': ["RECORDNO"],
'adjustment_items': ["RECORDNO"],
'departments': ["DEPARTMENTID"],
"audit_history": ["ID"]
'audit_history': ["ID"],
'locations': ["RECORDNO"],
}

# List of available objects with their internal object-reference/endpoint name.
Expand All @@ -56,7 +57,8 @@
"invoice_items": "ARINVOICEITEM",
"adjustment_items": "ARADJUSTMENTITEM",
"departments": "DEPARTMENT",
"audit_history": "AUDITHISTORY"
"audit_history": "AUDITHISTORY",
"locations": "LOCATION"
}

REP_KEYS = {
Expand Down

0 comments on commit ccf2a8b

Please sign in to comment.