Skip to content

Commit

Permalink
Added new entites
Browse files Browse the repository at this point in the history
  • Loading branch information
mkiran committed Jul 16, 2024
1 parent 2d1f218 commit 3f22297
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,9 @@ private JsonResourceTypeLocator() {
put("FixedAsset", FixedAsset.class);
put("InventorySite", InventorySite.class);
put("Invoice", Invoice.class);
put("InventoryAdjustment", InventoryAdjustment.class);
put("Item", Item.class);
put("ItemAdjustmentLineDetail", ItemAdjustmentLineDetail.class);
put("JobType", JobType.class);
put("JournalCode", JournalCode.class);
put("JournalEntry", JournalEntry.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,9 @@ public static List<Object> getWhitelistedEntities() {
entityList.add(FixedAsset.class);
entityList.add(InventorySite.class);
entityList.add(Invoice.class);
entityList.add(InventoryAdjustment.class);
entityList.add(Item.class);
entityList.add(ItemAdjustmentLineDetail.class);
entityList.add(JobType.class);
entityList.add(JournalCode.class);
entityList.add(JournalEntry.class);
Expand Down Expand Up @@ -258,6 +260,7 @@ public static List<Object> getWhitelistedEntities() {
entityList.add(VendorCredit.class);
entityList.add(VendorType.class);
entityList.add(RecurringScheduleInfo.class);

}
return entityList;
}
Expand Down

0 comments on commit 3f22297

Please sign in to comment.