-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #102 from XeroAPI/fix_identity_methods_http_handling
Fix 3 http client issues & built form OAS 2.8.0
- Loading branch information
Showing
458 changed files
with
1,163 additions
and
538 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
PATH | ||
remote: . | ||
specs: | ||
xero-ruby (2.4.1) | ||
faraday (~> 1.0.1, >= 1.0.1) | ||
json (~> 2.1, >= 2.1.0) | ||
|
||
GEM | ||
remote: https://rubygems.org/ | ||
specs: | ||
ast (2.4.1) | ||
byebug (11.1.3) | ||
coderay (1.1.3) | ||
diff-lcs (1.4.4) | ||
faraday (1.0.1) | ||
multipart-post (>= 1.2, < 3) | ||
jaro_winkler (1.5.4) | ||
json (2.4.1) | ||
method_source (1.0.0) | ||
multipart-post (2.1.1) | ||
parallel (1.20.1) | ||
parser (2.7.2.0) | ||
ast (~> 2.4.1) | ||
pry (0.13.1) | ||
coderay (~> 1.1) | ||
method_source (~> 1.0) | ||
pry-byebug (3.9.0) | ||
byebug (~> 11.0) | ||
pry (~> 0.13.0) | ||
psych (3.2.1) | ||
rainbow (3.0.0) | ||
rake (12.3.3) | ||
rspec (3.10.0) | ||
rspec-core (~> 3.10.0) | ||
rspec-expectations (~> 3.10.0) | ||
rspec-mocks (~> 3.10.0) | ||
rspec-core (3.10.0) | ||
rspec-support (~> 3.10.0) | ||
rspec-expectations (3.10.0) | ||
diff-lcs (>= 1.2.0, < 2.0) | ||
rspec-support (~> 3.10.0) | ||
rspec-mocks (3.10.0) | ||
diff-lcs (>= 1.2.0, < 2.0) | ||
rspec-support (~> 3.10.0) | ||
rspec-support (3.10.0) | ||
rubocop (0.66.0) | ||
jaro_winkler (~> 1.5.1) | ||
parallel (~> 1.10) | ||
parser (>= 2.5, != 2.5.1.1) | ||
psych (>= 3.1.0) | ||
rainbow (>= 2.2.2, < 4.0) | ||
ruby-progressbar (~> 1.7) | ||
unicode-display_width (>= 1.4.0, < 1.6) | ||
ruby-progressbar (1.10.1) | ||
unicode-display_width (1.5.0) | ||
|
||
PLATFORMS | ||
ruby | ||
|
||
DEPENDENCIES | ||
pry-byebug | ||
rake (~> 12.3.3) | ||
rspec (~> 3.6, >= 3.6.0) | ||
rubocop (~> 0.66.0) | ||
xero-ruby! | ||
|
||
BUNDLED WITH | ||
2.1.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# XeroRuby::Accounting::AddressForOrganisation | ||
|
||
## Properties | ||
|
||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**address_type** | **String** | define the type of address | [optional] | ||
**address_line1** | **String** | max length = 500 | [optional] | ||
**address_line2** | **String** | max length = 500 | [optional] | ||
**address_line3** | **String** | max length = 500 | [optional] | ||
**address_line4** | **String** | max length = 500 | [optional] | ||
**city** | **String** | max length = 255 | [optional] | ||
**region** | **String** | max length = 255 | [optional] | ||
**postal_code** | **String** | max length = 50 | [optional] | ||
**country** | **String** | max length = 50, [A-Z], [a-z] only | [optional] | ||
**attention_to** | **String** | max length = 255 | [optional] | ||
|
||
## Code Sample | ||
|
||
```ruby | ||
require 'XeroRuby::Accounting' | ||
|
||
instance = XeroRuby::Accounting::AddressForOrganisation.new(address_type: null, | ||
address_line1: null, | ||
address_line2: null, | ||
address_line3: null, | ||
address_line4: null, | ||
city: null, | ||
region: null, | ||
postal_code: null, | ||
country: null, | ||
attention_to: null) | ||
``` | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) | ||
The version of the OpenAPI document: 2.6.0 | ||
The version of the OpenAPI document: 2.8.0 | ||
Contact: [email protected] | ||
Generated by: https://openapi-generator.tech | ||
OpenAPI Generator version: 4.3.1 | ||
|
@@ -332,6 +332,7 @@ | |
require 'xero-ruby/models/accounting/action' | ||
require 'xero-ruby/models/accounting/actions' | ||
require 'xero-ruby/models/accounting/address' | ||
require 'xero-ruby/models/accounting/address_for_organisation' | ||
require 'xero-ruby/models/accounting/allocation' | ||
require 'xero-ruby/models/accounting/allocations' | ||
require 'xero-ruby/models/accounting/attachment' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) | ||
|
||
The version of the OpenAPI document: 2.6.0 | ||
The version of the OpenAPI document: 2.8.0 | ||
Contact: [email protected] | ||
Generated by: https://openapi-generator.tech | ||
OpenAPI Generator version: 4.3.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
#This is the Xero Assets API | ||
The version of the OpenAPI document: 2.6.0 | ||
The version of the OpenAPI document: 2.8.0 | ||
Contact: [email protected] | ||
Generated by: https://openapi-generator.tech | ||
OpenAPI Generator version: 4.3.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) | ||
The version of the OpenAPI document: 2.6.0 | ||
The version of the OpenAPI document: 2.8.0 | ||
Contact: [email protected] | ||
Generated by: https://openapi-generator.tech | ||
OpenAPI Generator version: 4.3.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
#This is the Xero Payroll API for orgs in Australia region. | ||
The version of the OpenAPI document: 2.6.0 | ||
The version of the OpenAPI document: 2.8.0 | ||
Contact: [email protected] | ||
Generated by: https://openapi-generator.tech | ||
OpenAPI Generator version: 4.3.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
#This is the Xero Payroll API for orgs in the NZ region. | ||
The version of the OpenAPI document: 2.6.0 | ||
The version of the OpenAPI document: 2.8.0 | ||
Contact: [email protected] | ||
Generated by: https://openapi-generator.tech | ||
OpenAPI Generator version: 4.3.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
#This is the Xero Payroll API for orgs in the UK region. | ||
The version of the OpenAPI document: 2.6.0 | ||
The version of the OpenAPI document: 2.8.0 | ||
Contact: [email protected] | ||
Generated by: https://openapi-generator.tech | ||
OpenAPI Generator version: 4.3.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
#This is the Xero Projects API | ||
The version of the OpenAPI document: 2.6.0 | ||
The version of the OpenAPI document: 2.8.0 | ||
Contact: [email protected] | ||
Generated by: https://openapi-generator.tech | ||
OpenAPI Generator version: 4.3.1 | ||
|
Oops, something went wrong.