- Fixed pagination bugs raised by @dlains - thank you.
Account.description
is not a required field- Added
Employee
&Vendor
Entity support via PR #23 & #21, thank you @minimul - Updates to
CustomerMemo
andPrivateNote
inSalesReceipt
, 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
BaseReference
instance. 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 = 2
The above will fail. The correct usage is now:
account = Quickbooks::Model::Account.new
account.parent_id = 2
The _id=
setter will automatically create an instance of the appropriate ParentRef
in this case.
- Sorry, I forgot what was in this release.
- Initial Release