xero-ruby 3.9.0 → 3.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/xero-ruby/api/accounting_api.rb +403 -0
- data/lib/xero-ruby/api/project_api.rb +263 -0
- data/lib/xero-ruby/models/accounting/batch_payment_delete.rb +244 -0
- data/lib/xero-ruby/models/accounting/batch_payment_delete_by_url_param.rb +229 -0
- data/lib/xero-ruby/models/accounting/organisation.rb +3 -2
- data/lib/xero-ruby/models/accounting/repeating_invoice.rb +53 -5
- data/lib/xero-ruby/models/accounting/tax_rate.rb +3 -2
- data/lib/xero-ruby/models/accounting/tax_type.rb +1 -0
- data/lib/xero-ruby/models/payroll_au/earnings_type.rb +2 -0
- data/lib/xero-ruby/models/payroll_au/employee.rb +1 -1
- data/lib/xero-ruby/models/payroll_au/leave_category_code.rb +46 -0
- data/lib/xero-ruby/models/payroll_au/leave_type.rb +24 -4
- data/lib/xero-ruby/models/payroll_au/tax_declaration.rb +11 -1
- data/lib/xero-ruby/models/projects/task.rb +6 -6
- data/lib/xero-ruby/models/projects/task_create_or_update.rb +1 -1
- data/lib/xero-ruby/version.rb +2 -2
- data/lib/xero-ruby.rb +3 -0
- metadata +9 -6
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: xero-ruby
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.12.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Xero API Team
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-
|
11
|
+
date: 2022-08-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: faraday
|
@@ -131,6 +131,8 @@ files:
|
|
131
131
|
- lib/xero-ruby/models/accounting/bank_transfer.rb
|
132
132
|
- lib/xero-ruby/models/accounting/bank_transfers.rb
|
133
133
|
- lib/xero-ruby/models/accounting/batch_payment.rb
|
134
|
+
- lib/xero-ruby/models/accounting/batch_payment_delete.rb
|
135
|
+
- lib/xero-ruby/models/accounting/batch_payment_delete_by_url_param.rb
|
134
136
|
- lib/xero-ruby/models/accounting/batch_payment_details.rb
|
135
137
|
- lib/xero-ruby/models/accounting/batch_payments.rb
|
136
138
|
- lib/xero-ruby/models/accounting/bill.rb
|
@@ -348,6 +350,7 @@ files:
|
|
348
350
|
- lib/xero-ruby/models/payroll_au/leave_application.rb
|
349
351
|
- lib/xero-ruby/models/payroll_au/leave_applications.rb
|
350
352
|
- lib/xero-ruby/models/payroll_au/leave_balance.rb
|
353
|
+
- lib/xero-ruby/models/payroll_au/leave_category_code.rb
|
351
354
|
- lib/xero-ruby/models/payroll_au/leave_earnings_line.rb
|
352
355
|
- lib/xero-ruby/models/payroll_au/leave_line.rb
|
353
356
|
- lib/xero-ruby/models/payroll_au/leave_line_calculation_type.rb
|
@@ -1092,7 +1095,7 @@ homepage: https://developer.xero.com
|
|
1092
1095
|
licenses:
|
1093
1096
|
- Unlicense
|
1094
1097
|
metadata: {}
|
1095
|
-
post_install_message:
|
1098
|
+
post_install_message:
|
1096
1099
|
rdoc_options: []
|
1097
1100
|
require_paths:
|
1098
1101
|
- lib
|
@@ -1107,8 +1110,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1107
1110
|
- !ruby/object:Gem::Version
|
1108
1111
|
version: '0'
|
1109
1112
|
requirements: []
|
1110
|
-
rubygems_version: 3.
|
1111
|
-
signing_key:
|
1113
|
+
rubygems_version: 3.1.6
|
1114
|
+
signing_key:
|
1112
1115
|
specification_version: 4
|
1113
1116
|
summary: Xero Accounting API Ruby Gem
|
1114
1117
|
test_files:
|