- Fixed pagination bugs raised by @dlains - thank you.
Account.descriptionis not a required field- Added
Employee&VendorEntity support via PR #23 & #21, thank you @minimul - Updates to
CustomerMemoandPrivateNoteinSalesReceipt, via PR #22, thank you @seanxiesx
- Added CompanyInfo model/service - thank you Sean Xie
- All reference types, e.g. Account#parent_ref are implemented via a first-class
BaseReferenceinstance. Note: This is a backwards-incompatible change and any existing usages of setting a reference type directly, e.g.
account = Quickbooks::Model::Account.new
account.parent_ref = 2The above will fail. The correct usage is now:
account = Quickbooks::Model::Account.new
account.parent_id = 2The _id= setter will automatically create an instance of the appropriate ParentRef in this case.
- Sorry, I forgot what was in this release.
- Initial Release