avalara_sdk 2.4.7 → 2.4.26
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/Gemfile.lock +1 -1
- data/README.md +19 -44
- data/avalara_sdk.gemspec +1 -1
- data/docs/AgeVerificationApi.md +18 -9
- data/docs/ShippingVerificationApi.md +72 -36
- data/lib/avalara_sdk/api/age_verification_api.rb +2 -2
- data/lib/avalara_sdk/api/shipping_verification_api.rb +2 -2
- data/lib/avalara_sdk/models/age_verify_failure_code.rb +1 -1
- data/lib/avalara_sdk/models/age_verify_request.rb +1 -1
- data/lib/avalara_sdk/models/age_verify_request_address.rb +1 -1
- data/lib/avalara_sdk/models/age_verify_result.rb +1 -1
- data/lib/avalara_sdk/models/error_details.rb +1 -1
- data/lib/avalara_sdk/models/error_details_error.rb +1 -1
- data/lib/avalara_sdk/models/error_details_error_details.rb +1 -1
- data/lib/avalara_sdk/models/shipping_verify_result.rb +1 -1
- data/lib/avalara_sdk/models/shipping_verify_result_lines.rb +1 -1
- data/lib/avalara_sdk/version.rb +2 -2
- data/lib/avalara_sdk.rb +1 -1
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/byebug-11.1.3/gem_make.out +2 -2
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/ffi-1.15.5/gem_make.out +2 -2
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/jaro_winkler-1.5.4/gem_make.out +2 -2
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/psych-4.0.3/gem_make.out +2 -2
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/stringio-3.0.1/gem_make.out +2 -2
- data/vendor/bundle/ruby/2.6.0/extensions/x86_64-linux/2.6.0/stringio-3.0.1/mkmf.log +1 -1
- data/vendor/bundle/ruby/2.6.0/gems/byebug-11.1.3/ext/byebug/Makefile +2 -2
- data/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c/Makefile +3 -3
- data/vendor/bundle/ruby/2.6.0/gems/jaro_winkler-1.5.4/ext/jaro_winkler/Makefile +3 -3
- data/vendor/bundle/ruby/2.6.0/gems/psych-4.0.3/ext/psych/Makefile +3 -3
- data/vendor/bundle/ruby/2.6.0/gems/stringio-3.0.1/ext/stringio/Makefile +2 -2
- metadata +8 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 65fb5acf7ea5b9aba5899e1faea39625fbab49415e00426a765d15b29de9f04f
|
|
4
|
+
data.tar.gz: 7e702ee02378070d6007d9b711d836789efe85f1a0a560d879eb17e1ff6f709f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e10820b1fd08007de1d6bab20f3ad9f1239398b8d5c65b3feadca531dcbd9f52df545e0e46d0454324514344fecee589a363c5c714e0381db56f0f700ca45980
|
|
7
|
+
data.tar.gz: d475ac0ad777c4c5675b9fb351dd039898c49b7659fd1c8389e01d0d30641a59ce07b0140e0abd90b2d71d0b46132383e8050601aec5ba95af24e44654a80ad1
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
|
@@ -7,48 +7,12 @@ API for evaluating transactions against direct-to-consumer Beverage Alcohol ship
|
|
|
7
7
|
This API is currently in beta.
|
|
8
8
|
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
- API version: 3.1.0
|
|
13
|
-
- Package version: 2.4.7
|
|
14
|
-
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
|
10
|
+
- Package version: 2.4.26
|
|
15
11
|
|
|
16
12
|
## Installation
|
|
17
13
|
|
|
18
|
-
### Build a gem
|
|
19
|
-
|
|
20
|
-
To build the Ruby code into a gem:
|
|
21
|
-
|
|
22
|
-
```shell
|
|
23
|
-
gem build avalara_sdk.gemspec
|
|
24
|
-
```
|
|
25
|
-
|
|
26
|
-
Then either install the gem locally:
|
|
27
|
-
|
|
28
|
-
```shell
|
|
29
|
-
gem install ./avalara_sdk-2.4.7.gem
|
|
30
|
-
```
|
|
31
|
-
|
|
32
|
-
(for development, run `gem install --dev ./avalara_sdk-2.4.7.gem` to install the development dependencies)
|
|
33
|
-
|
|
34
|
-
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
|
35
|
-
|
|
36
|
-
Finally add this to the Gemfile:
|
|
37
|
-
|
|
38
|
-
gem 'avalara_sdk', '~> 2.4.7'
|
|
39
|
-
|
|
40
|
-
### Install from Git
|
|
41
|
-
|
|
42
|
-
If the Ruby gem is hosted at a git repository: https://github.com/GIT_USER_ID/GIT_REPO_ID, then add the following in the Gemfile:
|
|
43
|
-
|
|
44
|
-
gem 'avalara_sdk', :git => 'https://github.com/GIT_USER_ID/GIT_REPO_ID.git'
|
|
45
|
-
|
|
46
|
-
### Include the Ruby code directly
|
|
47
|
-
|
|
48
|
-
Include the Ruby code directly using `-I` as follows:
|
|
49
|
-
|
|
50
14
|
```shell
|
|
51
|
-
|
|
15
|
+
gem install avalara_sdk
|
|
52
16
|
```
|
|
53
17
|
|
|
54
18
|
## Getting Started
|
|
@@ -61,17 +25,28 @@ require 'avalara_sdk'
|
|
|
61
25
|
|
|
62
26
|
# Setup authorization
|
|
63
27
|
AvalaraSdk.configure do |config|
|
|
64
|
-
# Configure HTTP basic authorization: BasicAuth
|
|
65
28
|
config.username = 'YOUR_USERNAME'
|
|
66
29
|
config.password = 'YOUR_PASSWORD'
|
|
30
|
+
config.environment='sandbox'
|
|
31
|
+
config.verify_ssl=false
|
|
32
|
+
config.app_name='testApp'
|
|
33
|
+
config.app_version='1.2.3'
|
|
34
|
+
config.machine_name='testMachine'
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
config.username = 'YOUR_USERNAME'
|
|
38
|
+
config.password = 'YOUR_PASSWORD'
|
|
39
|
+
config.environment='sandbox'
|
|
40
|
+
config.verify_ssl=false
|
|
41
|
+
config.app_name='testApp'
|
|
42
|
+
config.app_version='1.2.3'
|
|
43
|
+
config.machine_name='testMachine'
|
|
67
44
|
|
|
68
|
-
# Configure API key authorization: Bearer
|
|
69
|
-
config.api_key['Bearer'] = 'YOUR API KEY'
|
|
70
|
-
# Uncomment the following line to set a prefix for the API key, e.g. 'Bearer' (defaults to nil)
|
|
71
|
-
# config.api_key_prefix['Bearer'] = 'Bearer'
|
|
72
45
|
end
|
|
73
46
|
|
|
74
|
-
|
|
47
|
+
api_client = AvalaraSdk::ApiClient.new config
|
|
48
|
+
api_instance = AvalaraSdk::AgeVerificationApi.new api_client
|
|
49
|
+
|
|
75
50
|
age_verify_request = AvalaraSdk::AgeVerifyRequest.new # AgeVerifyRequest | Information about the individual whose age is being verified.
|
|
76
51
|
opts = {
|
|
77
52
|
simulated_failure_code: AvalaraSdk::AgeVerifyFailureCode::NOT_FOUND # AgeVerifyFailureCode | (Optional) The failure code included in the simulated response of the endpoint. Note that this endpoint is only available in Sandbox for testing purposes.
|
data/avalara_sdk.gemspec
CHANGED
data/docs/AgeVerificationApi.md
CHANGED
|
@@ -22,17 +22,26 @@ require 'time'
|
|
|
22
22
|
require 'avalara_sdk'
|
|
23
23
|
# setup authorization
|
|
24
24
|
AvalaraSdk.configure do |config|
|
|
25
|
-
|
|
26
|
-
config.
|
|
27
|
-
config.
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
config.
|
|
31
|
-
|
|
32
|
-
|
|
25
|
+
config.username = 'YOUR_USERNAME'
|
|
26
|
+
config.password = 'YOUR_PASSWORD'
|
|
27
|
+
config.environment='sandbox'
|
|
28
|
+
config.verify_ssl=false
|
|
29
|
+
config.app_name='testApp'
|
|
30
|
+
config.app_version='1.2.3'
|
|
31
|
+
config.machine_name='testMachine'
|
|
32
|
+
|
|
33
|
+
config.username = 'YOUR_USERNAME'
|
|
34
|
+
config.password = 'YOUR_PASSWORD'
|
|
35
|
+
config.environment='sandbox'
|
|
36
|
+
config.verify_ssl=false
|
|
37
|
+
config.app_name='testApp'
|
|
38
|
+
config.app_version='1.2.3'
|
|
39
|
+
config.machine_name='testMachine'
|
|
33
40
|
end
|
|
34
41
|
|
|
35
|
-
|
|
42
|
+
api_client = AvalaraSdk::ApiClient.new config
|
|
43
|
+
api_instance = AvalaraSdk::AgeVerificationApi.new api_client
|
|
44
|
+
|
|
36
45
|
age_verify_request = AvalaraSdk::AgeVerifyRequest.new # AgeVerifyRequest | Information about the individual whose age is being verified.
|
|
37
46
|
opts = {
|
|
38
47
|
simulated_failure_code: AvalaraSdk::AgeVerifyFailureCode::NOT_FOUND # AgeVerifyFailureCode | (Optional) The failure code included in the simulated response of the endpoint. Note that this endpoint is only available in Sandbox for testing purposes.
|
|
@@ -23,17 +23,26 @@ require 'time'
|
|
|
23
23
|
require 'avalara_sdk'
|
|
24
24
|
# setup authorization
|
|
25
25
|
AvalaraSdk.configure do |config|
|
|
26
|
-
|
|
27
|
-
config.
|
|
28
|
-
config.
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
config.
|
|
32
|
-
|
|
33
|
-
|
|
26
|
+
config.username = 'YOUR_USERNAME'
|
|
27
|
+
config.password = 'YOUR_PASSWORD'
|
|
28
|
+
config.environment='sandbox'
|
|
29
|
+
config.verify_ssl=false
|
|
30
|
+
config.app_name='testApp'
|
|
31
|
+
config.app_version='1.2.3'
|
|
32
|
+
config.machine_name='testMachine'
|
|
33
|
+
|
|
34
|
+
config.username = 'YOUR_USERNAME'
|
|
35
|
+
config.password = 'YOUR_PASSWORD'
|
|
36
|
+
config.environment='sandbox'
|
|
37
|
+
config.verify_ssl=false
|
|
38
|
+
config.app_name='testApp'
|
|
39
|
+
config.app_version='1.2.3'
|
|
40
|
+
config.machine_name='testMachine'
|
|
34
41
|
end
|
|
35
42
|
|
|
36
|
-
|
|
43
|
+
api_client = AvalaraSdk::ApiClient.new config
|
|
44
|
+
api_instance = AvalaraSdk::ShippingVerificationApi.new api_client
|
|
45
|
+
|
|
37
46
|
company_code = 'company_code_example' # String | The company code of the company that recorded the transaction
|
|
38
47
|
transaction_code = 'transaction_code_example' # String | The transaction code to retrieve
|
|
39
48
|
opts = {
|
|
@@ -101,17 +110,26 @@ require 'time'
|
|
|
101
110
|
require 'avalara_sdk'
|
|
102
111
|
# setup authorization
|
|
103
112
|
AvalaraSdk.configure do |config|
|
|
104
|
-
|
|
105
|
-
config.
|
|
106
|
-
config.
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
config.
|
|
110
|
-
|
|
111
|
-
|
|
113
|
+
config.username = 'YOUR_USERNAME'
|
|
114
|
+
config.password = 'YOUR_PASSWORD'
|
|
115
|
+
config.environment='sandbox'
|
|
116
|
+
config.verify_ssl=false
|
|
117
|
+
config.app_name='testApp'
|
|
118
|
+
config.app_version='1.2.3'
|
|
119
|
+
config.machine_name='testMachine'
|
|
120
|
+
|
|
121
|
+
config.username = 'YOUR_USERNAME'
|
|
122
|
+
config.password = 'YOUR_PASSWORD'
|
|
123
|
+
config.environment='sandbox'
|
|
124
|
+
config.verify_ssl=false
|
|
125
|
+
config.app_name='testApp'
|
|
126
|
+
config.app_version='1.2.3'
|
|
127
|
+
config.machine_name='testMachine'
|
|
112
128
|
end
|
|
113
129
|
|
|
114
|
-
|
|
130
|
+
api_client = AvalaraSdk::ApiClient.new config
|
|
131
|
+
api_instance = AvalaraSdk::ShippingVerificationApi.new api_client
|
|
132
|
+
|
|
115
133
|
company_code = 'company_code_example' # String | The company code of the company that recorded the transaction
|
|
116
134
|
transaction_code = 'transaction_code_example' # String | The transaction code to retrieve
|
|
117
135
|
opts = {
|
|
@@ -179,17 +197,26 @@ require 'time'
|
|
|
179
197
|
require 'avalara_sdk'
|
|
180
198
|
# setup authorization
|
|
181
199
|
AvalaraSdk.configure do |config|
|
|
182
|
-
|
|
183
|
-
config.
|
|
184
|
-
config.
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
config.
|
|
188
|
-
|
|
189
|
-
|
|
200
|
+
config.username = 'YOUR_USERNAME'
|
|
201
|
+
config.password = 'YOUR_PASSWORD'
|
|
202
|
+
config.environment='sandbox'
|
|
203
|
+
config.verify_ssl=false
|
|
204
|
+
config.app_name='testApp'
|
|
205
|
+
config.app_version='1.2.3'
|
|
206
|
+
config.machine_name='testMachine'
|
|
207
|
+
|
|
208
|
+
config.username = 'YOUR_USERNAME'
|
|
209
|
+
config.password = 'YOUR_PASSWORD'
|
|
210
|
+
config.environment='sandbox'
|
|
211
|
+
config.verify_ssl=false
|
|
212
|
+
config.app_name='testApp'
|
|
213
|
+
config.app_version='1.2.3'
|
|
214
|
+
config.machine_name='testMachine'
|
|
190
215
|
end
|
|
191
216
|
|
|
192
|
-
|
|
217
|
+
api_client = AvalaraSdk::ApiClient.new config
|
|
218
|
+
api_instance = AvalaraSdk::ShippingVerificationApi.new api_client
|
|
219
|
+
|
|
193
220
|
company_code = 'company_code_example' # String | The company code of the company that recorded the transaction
|
|
194
221
|
transaction_code = 'transaction_code_example' # String | The transaction code to retrieve
|
|
195
222
|
opts = {
|
|
@@ -260,17 +287,26 @@ require 'time'
|
|
|
260
287
|
require 'avalara_sdk'
|
|
261
288
|
# setup authorization
|
|
262
289
|
AvalaraSdk.configure do |config|
|
|
263
|
-
|
|
264
|
-
config.
|
|
265
|
-
config.
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
config.
|
|
269
|
-
|
|
270
|
-
|
|
290
|
+
config.username = 'YOUR_USERNAME'
|
|
291
|
+
config.password = 'YOUR_PASSWORD'
|
|
292
|
+
config.environment='sandbox'
|
|
293
|
+
config.verify_ssl=false
|
|
294
|
+
config.app_name='testApp'
|
|
295
|
+
config.app_version='1.2.3'
|
|
296
|
+
config.machine_name='testMachine'
|
|
297
|
+
|
|
298
|
+
config.username = 'YOUR_USERNAME'
|
|
299
|
+
config.password = 'YOUR_PASSWORD'
|
|
300
|
+
config.environment='sandbox'
|
|
301
|
+
config.verify_ssl=false
|
|
302
|
+
config.app_name='testApp'
|
|
303
|
+
config.app_version='1.2.3'
|
|
304
|
+
config.machine_name='testMachine'
|
|
271
305
|
end
|
|
272
306
|
|
|
273
|
-
|
|
307
|
+
api_client = AvalaraSdk::ApiClient.new config
|
|
308
|
+
api_instance = AvalaraSdk::ShippingVerificationApi.new api_client
|
|
309
|
+
|
|
274
310
|
company_code = 'company_code_example' # String | The company code of the company that recorded the transaction
|
|
275
311
|
transaction_code = 'transaction_code_example' # String | The transaction code to retrieve
|
|
276
312
|
opts = {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#API for evaluating transactions against direct-to-consumer Beverage Alcohol shipping regulations. This API is currently in beta.
|
|
5
5
|
|
|
6
|
-
SDK Version : 2.4.
|
|
6
|
+
SDK Version : 2.4.26
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
=end
|
|
@@ -18,7 +18,7 @@ module AvalaraSdk
|
|
|
18
18
|
if (api_client.nil?)
|
|
19
19
|
fail ArgumentError,'api_client is nil'
|
|
20
20
|
end
|
|
21
|
-
api_client.set_sdk_version("2.4.
|
|
21
|
+
api_client.set_sdk_version("2.4.26")
|
|
22
22
|
@api_client = api_client
|
|
23
23
|
end
|
|
24
24
|
# Determines whether an individual meets or exceeds the minimum legal drinking age.
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
#API for evaluating transactions against direct-to-consumer Beverage Alcohol shipping regulations. This API is currently in beta.
|
|
5
5
|
|
|
6
|
-
SDK Version : 2.4.
|
|
6
|
+
SDK Version : 2.4.26
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
=end
|
|
@@ -18,7 +18,7 @@ module AvalaraSdk
|
|
|
18
18
|
if (api_client.nil?)
|
|
19
19
|
fail ArgumentError,'api_client is nil'
|
|
20
20
|
end
|
|
21
|
-
api_client.set_sdk_version("2.4.
|
|
21
|
+
api_client.set_sdk_version("2.4.26")
|
|
22
22
|
@api_client = api_client
|
|
23
23
|
end
|
|
24
24
|
# Removes the transaction from consideration when evaluating regulations that span multiple transactions.
|
data/lib/avalara_sdk/version.rb
CHANGED
|
@@ -3,11 +3,11 @@
|
|
|
3
3
|
|
|
4
4
|
#API for evaluating transactions against direct-to-consumer Beverage Alcohol shipping regulations. This API is currently in beta.
|
|
5
5
|
|
|
6
|
-
SDK Version : 2.4.
|
|
6
|
+
SDK Version : 2.4.26
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
=end
|
|
10
10
|
|
|
11
11
|
module AvalaraSdk
|
|
12
|
-
VERSION = '2.4.
|
|
12
|
+
VERSION = '2.4.26'
|
|
13
13
|
end
|
data/lib/avalara_sdk.rb
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
current directory: /home/runner/work/AvaTax-REST-V3-Ruby-SDK/AvaTax-REST-V3-Ruby-SDK/vendor/bundle/ruby/2.6.0/gems/byebug-11.1.3/ext/byebug
|
|
2
|
-
/opt/hostedtoolcache/Ruby/2.6.9/x64/bin/ruby -I /opt/hostedtoolcache/Ruby/2.6.9/x64/lib/ruby/2.6.0 -r ./
|
|
2
|
+
/opt/hostedtoolcache/Ruby/2.6.9/x64/bin/ruby -I /opt/hostedtoolcache/Ruby/2.6.9/x64/lib/ruby/2.6.0 -r ./siteconf20220228-1545-hy5e67.rb extconf.rb
|
|
3
3
|
creating Makefile
|
|
4
4
|
|
|
5
5
|
current directory: /home/runner/work/AvaTax-REST-V3-Ruby-SDK/AvaTax-REST-V3-Ruby-SDK/vendor/bundle/ruby/2.6.0/gems/byebug-11.1.3/ext/byebug
|
|
@@ -16,4 +16,4 @@ linking shared-object byebug/byebug.so
|
|
|
16
16
|
|
|
17
17
|
current directory: /home/runner/work/AvaTax-REST-V3-Ruby-SDK/AvaTax-REST-V3-Ruby-SDK/vendor/bundle/ruby/2.6.0/gems/byebug-11.1.3/ext/byebug
|
|
18
18
|
make "DESTDIR=" install
|
|
19
|
-
/usr/bin/install -c -m 0755 byebug.so ./.gem.
|
|
19
|
+
/usr/bin/install -c -m 0755 byebug.so ./.gem.20220228-1545-p3kz8s/byebug
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
current directory: /home/runner/work/AvaTax-REST-V3-Ruby-SDK/AvaTax-REST-V3-Ruby-SDK/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c
|
|
2
|
-
/opt/hostedtoolcache/Ruby/2.6.9/x64/bin/ruby -I /opt/hostedtoolcache/Ruby/2.6.9/x64/lib/ruby/2.6.0 -r ./
|
|
2
|
+
/opt/hostedtoolcache/Ruby/2.6.9/x64/bin/ruby -I /opt/hostedtoolcache/Ruby/2.6.9/x64/lib/ruby/2.6.0 -r ./siteconf20220228-1545-ju5z18.rb extconf.rb
|
|
3
3
|
checking for ffi_prep_closure_loc() in -lffi... yes
|
|
4
4
|
checking for ffi_prep_cif_var()... yes
|
|
5
5
|
checking for ffi_raw_call()... yes
|
|
@@ -40,4 +40,4 @@ linking shared-object ffi_c.so
|
|
|
40
40
|
|
|
41
41
|
current directory: /home/runner/work/AvaTax-REST-V3-Ruby-SDK/AvaTax-REST-V3-Ruby-SDK/vendor/bundle/ruby/2.6.0/gems/ffi-1.15.5/ext/ffi_c
|
|
42
42
|
make "DESTDIR=" install
|
|
43
|
-
/usr/bin/install -c -m 0755 ffi_c.so ./.gem.
|
|
43
|
+
/usr/bin/install -c -m 0755 ffi_c.so ./.gem.20220228-1545-sb0z9o
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
current directory: /home/runner/work/AvaTax-REST-V3-Ruby-SDK/AvaTax-REST-V3-Ruby-SDK/vendor/bundle/ruby/2.6.0/gems/jaro_winkler-1.5.4/ext/jaro_winkler
|
|
2
|
-
/opt/hostedtoolcache/Ruby/2.6.9/x64/bin/ruby -I /opt/hostedtoolcache/Ruby/2.6.9/x64/lib/ruby/2.6.0 -r ./
|
|
2
|
+
/opt/hostedtoolcache/Ruby/2.6.9/x64/bin/ruby -I /opt/hostedtoolcache/Ruby/2.6.9/x64/lib/ruby/2.6.0 -r ./siteconf20220228-1545-10vbmw5.rb extconf.rb
|
|
3
3
|
creating Makefile
|
|
4
4
|
|
|
5
5
|
current directory: /home/runner/work/AvaTax-REST-V3-Ruby-SDK/AvaTax-REST-V3-Ruby-SDK/vendor/bundle/ruby/2.6.0/gems/jaro_winkler-1.5.4/ext/jaro_winkler
|
|
@@ -80,4 +80,4 @@ linking shared-object jaro_winkler/jaro_winkler_ext.so
|
|
|
80
80
|
|
|
81
81
|
current directory: /home/runner/work/AvaTax-REST-V3-Ruby-SDK/AvaTax-REST-V3-Ruby-SDK/vendor/bundle/ruby/2.6.0/gems/jaro_winkler-1.5.4/ext/jaro_winkler
|
|
82
82
|
make "DESTDIR=" install
|
|
83
|
-
/usr/bin/install -c -m 0755 jaro_winkler_ext.so ./.gem.
|
|
83
|
+
/usr/bin/install -c -m 0755 jaro_winkler_ext.so ./.gem.20220228-1545-w9gft3/jaro_winkler
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
current directory: /home/runner/work/AvaTax-REST-V3-Ruby-SDK/AvaTax-REST-V3-Ruby-SDK/vendor/bundle/ruby/2.6.0/gems/psych-4.0.3/ext/psych
|
|
2
|
-
/opt/hostedtoolcache/Ruby/2.6.9/x64/bin/ruby -I /opt/hostedtoolcache/Ruby/2.6.9/x64/lib/ruby/2.6.0 -r ./
|
|
2
|
+
/opt/hostedtoolcache/Ruby/2.6.9/x64/bin/ruby -I /opt/hostedtoolcache/Ruby/2.6.9/x64/lib/ruby/2.6.0 -r ./siteconf20220228-1545-1oguabn.rb extconf.rb
|
|
3
3
|
checking for yaml.h... no
|
|
4
4
|
checking for _WIN32... no
|
|
5
5
|
checking for dlfcn.h... yes
|
|
@@ -38,4 +38,4 @@ linking shared-object psych.so
|
|
|
38
38
|
|
|
39
39
|
current directory: /home/runner/work/AvaTax-REST-V3-Ruby-SDK/AvaTax-REST-V3-Ruby-SDK/vendor/bundle/ruby/2.6.0/gems/psych-4.0.3/ext/psych
|
|
40
40
|
make "DESTDIR=" install
|
|
41
|
-
/usr/bin/install -c -m 0755 psych.so ./.gem.
|
|
41
|
+
/usr/bin/install -c -m 0755 psych.so ./.gem.20220228-1545-6ezvfs
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
current directory: /home/runner/work/AvaTax-REST-V3-Ruby-SDK/AvaTax-REST-V3-Ruby-SDK/vendor/bundle/ruby/2.6.0/gems/stringio-3.0.1/ext/stringio
|
|
2
|
-
/opt/hostedtoolcache/Ruby/2.6.9/x64/bin/ruby -I /opt/hostedtoolcache/Ruby/2.6.9/x64/lib/ruby/2.6.0 -r ./
|
|
2
|
+
/opt/hostedtoolcache/Ruby/2.6.9/x64/bin/ruby -I /opt/hostedtoolcache/Ruby/2.6.9/x64/lib/ruby/2.6.0 -r ./siteconf20220228-1545-1h27qld.rb extconf.rb
|
|
3
3
|
checking for rb_io_extract_modeenc() in ruby/io.h... no
|
|
4
4
|
creating Makefile
|
|
5
5
|
|
|
@@ -13,4 +13,4 @@ linking shared-object stringio.so
|
|
|
13
13
|
|
|
14
14
|
current directory: /home/runner/work/AvaTax-REST-V3-Ruby-SDK/AvaTax-REST-V3-Ruby-SDK/vendor/bundle/ruby/2.6.0/gems/stringio-3.0.1/ext/stringio
|
|
15
15
|
make "DESTDIR=" install
|
|
16
|
-
/usr/bin/install -c -m 0755 stringio.so ./.gem.
|
|
16
|
+
/usr/bin/install -c -m 0755 stringio.so ./.gem.20220228-1545-1q975sh
|
|
@@ -42,7 +42,7 @@ checked program was:
|
|
|
42
42
|
/* end */
|
|
43
43
|
|
|
44
44
|
"gcc -o conftest -I/opt/hostedtoolcache/Ruby/2.6.9/x64/include/ruby-2.6.0/x86_64-linux -I/opt/hostedtoolcache/Ruby/2.6.9/x64/include/ruby-2.6.0/ruby/backward -I/opt/hostedtoolcache/Ruby/2.6.9/x64/include/ruby-2.6.0 -I. -I/opt/hostedtoolcache/Ruby/2.6.9/x64/include -DENABLE_PATH_CHECK=0 -O3 -ggdb3 -Wall -Wextra -Wdeclaration-after-statement -Wdeprecated-declarations -Wduplicated-cond -Wimplicit-function-declaration -Wimplicit-int -Wmisleading-indentation -Wpointer-arith -Wrestrict -Wwrite-strings -Wimplicit-fallthrough=0 -Wmissing-noreturn -Wno-cast-function-type -Wno-constant-logical-operand -Wno-long-long -Wno-missing-field-initializers -Wno-overlength-strings -Wno-packed-bitfield-compat -Wno-parentheses-equality -Wno-self-assign -Wno-tautological-compare -Wno-unused-parameter -Wno-unused-value -Wsuggest-attribute=format -Wsuggest-attribute=noreturn -Wunused-variable -fPIC conftest.c -L. -L/opt/hostedtoolcache/Ruby/2.6.9/x64/lib -Wl,-rpath,/opt/hostedtoolcache/Ruby/2.6.9/x64/lib -L. -L/opt/hostedtoolcache/Ruby/2.6.9/x64/lib -fstack-protector-strong -rdynamic -Wl,-export-dynamic -Wl,-rpath,/opt/hostedtoolcache/Ruby/2.6.9/x64/lib -L/opt/hostedtoolcache/Ruby/2.6.9/x64/lib -lruby -lm -lc"
|
|
45
|
-
/usr/bin/ld: /tmp/
|
|
45
|
+
/usr/bin/ld: /tmp/cc4Bxjij.o: in function `t':
|
|
46
46
|
/home/runner/work/AvaTax-REST-V3-Ruby-SDK/AvaTax-REST-V3-Ruby-SDK/vendor/bundle/ruby/2.6.0/gems/stringio-3.0.1/ext/stringio/conftest.c:17: undefined reference to `rb_io_extract_modeenc'
|
|
47
47
|
collect2: error: ld returned 1 exit status
|
|
48
48
|
checked program was:
|
|
@@ -31,8 +31,8 @@ rubyhdrdir = $(includedir)/$(RUBY_VERSION_NAME)
|
|
|
31
31
|
vendorarchdir = $(vendorlibdir)/$(sitearch)
|
|
32
32
|
vendorlibdir = $(vendordir)/$(ruby_version)
|
|
33
33
|
vendordir = $(rubylibprefix)/vendor_ruby
|
|
34
|
-
sitearchdir = $(DESTDIR)./.gem.
|
|
35
|
-
sitelibdir = $(DESTDIR)./.gem.
|
|
34
|
+
sitearchdir = $(DESTDIR)./.gem.20220228-1545-p3kz8s
|
|
35
|
+
sitelibdir = $(DESTDIR)./.gem.20220228-1545-p3kz8s
|
|
36
36
|
sitedir = $(rubylibprefix)/site_ruby
|
|
37
37
|
rubyarchdir = $(rubylibdir)/$(arch)
|
|
38
38
|
rubylibdir = $(rubylibprefix)/$(ruby_version)
|
|
@@ -31,8 +31,8 @@ rubyhdrdir = $(includedir)/$(RUBY_VERSION_NAME)
|
|
|
31
31
|
vendorarchdir = $(vendorlibdir)/$(sitearch)
|
|
32
32
|
vendorlibdir = $(vendordir)/$(ruby_version)
|
|
33
33
|
vendordir = $(rubylibprefix)/vendor_ruby
|
|
34
|
-
sitearchdir = $(DESTDIR)./.gem.
|
|
35
|
-
sitelibdir = $(DESTDIR)./.gem.
|
|
34
|
+
sitearchdir = $(DESTDIR)./.gem.20220228-1545-sb0z9o
|
|
35
|
+
sitelibdir = $(DESTDIR)./.gem.20220228-1545-sb0z9o
|
|
36
36
|
sitedir = $(rubylibprefix)/site_ruby
|
|
37
37
|
rubyarchdir = $(rubylibdir)/$(arch)
|
|
38
38
|
rubylibdir = $(rubylibprefix)/$(ruby_version)
|
|
@@ -141,7 +141,7 @@ LIBS = $(LIBRUBYARG_SHARED) -lffi -lffi -lm -lc
|
|
|
141
141
|
ORIG_SRCS = AbstractMemory.c ArrayType.c Buffer.c Call.c ClosurePool.c DynamicLibrary.c Function.c FunctionInfo.c LastError.c LongDouble.c MappedType.c MemoryPointer.c MethodHandle.c Platform.c Pointer.c Struct.c StructByValue.c StructLayout.c Thread.c Type.c Types.c Variadic.c ffi.c
|
|
142
142
|
SRCS = $(ORIG_SRCS)
|
|
143
143
|
OBJS = AbstractMemory.o ArrayType.o Buffer.o Call.o ClosurePool.o DynamicLibrary.o Function.o FunctionInfo.o LastError.o LongDouble.o MappedType.o MemoryPointer.o MethodHandle.o Platform.o Pointer.o Struct.o StructByValue.o StructLayout.o Thread.o Type.o Types.o Variadic.o ffi.o
|
|
144
|
-
HDRS = $(srcdir)/
|
|
144
|
+
HDRS = $(srcdir)/Call.h $(srcdir)/Struct.h $(srcdir)/Thread.h $(srcdir)/Platform.h $(srcdir)/Types.h $(srcdir)/Pointer.h $(srcdir)/rbffi.h $(srcdir)/MethodHandle.h $(srcdir)/StructByValue.h $(srcdir)/ClosurePool.h $(srcdir)/compat.h $(srcdir)/ArrayType.h $(srcdir)/rbffi_endian.h $(srcdir)/AbstractMemory.h $(srcdir)/LongDouble.h $(srcdir)/MappedType.h $(srcdir)/MemoryPointer.h $(srcdir)/Type.h $(srcdir)/Function.h $(srcdir)/extconf.h $(srcdir)/DynamicLibrary.h $(srcdir)/LastError.h
|
|
145
145
|
LOCAL_HDRS =
|
|
146
146
|
TARGET = ffi_c
|
|
147
147
|
TARGET_NAME = ffi_c
|
|
@@ -31,8 +31,8 @@ rubyhdrdir = $(includedir)/$(RUBY_VERSION_NAME)
|
|
|
31
31
|
vendorarchdir = $(vendorlibdir)/$(sitearch)
|
|
32
32
|
vendorlibdir = $(vendordir)/$(ruby_version)
|
|
33
33
|
vendordir = $(rubylibprefix)/vendor_ruby
|
|
34
|
-
sitearchdir = $(DESTDIR)./.gem.
|
|
35
|
-
sitelibdir = $(DESTDIR)./.gem.
|
|
34
|
+
sitearchdir = $(DESTDIR)./.gem.20220228-1545-w9gft3
|
|
35
|
+
sitelibdir = $(DESTDIR)./.gem.20220228-1545-w9gft3
|
|
36
36
|
sitedir = $(rubylibprefix)/site_ruby
|
|
37
37
|
rubyarchdir = $(rubylibdir)/$(arch)
|
|
38
38
|
rubylibdir = $(rubylibprefix)/$(ruby_version)
|
|
@@ -141,7 +141,7 @@ LIBS = $(LIBRUBYARG_SHARED) -lm -lc
|
|
|
141
141
|
ORIG_SRCS = adj_matrix.c codepoints.c jaro.c jaro_winkler.c
|
|
142
142
|
SRCS = $(ORIG_SRCS)
|
|
143
143
|
OBJS = adj_matrix.o codepoints.o jaro.o jaro_winkler.o
|
|
144
|
-
HDRS = $(srcdir)/
|
|
144
|
+
HDRS = $(srcdir)/adj_matrix.h $(srcdir)/jaro.h $(srcdir)/codepoints.h
|
|
145
145
|
LOCAL_HDRS =
|
|
146
146
|
TARGET = jaro_winkler_ext
|
|
147
147
|
TARGET_NAME = jaro_winkler_ext
|
|
@@ -31,8 +31,8 @@ rubyhdrdir = $(includedir)/$(RUBY_VERSION_NAME)
|
|
|
31
31
|
vendorarchdir = $(vendorlibdir)/$(sitearch)
|
|
32
32
|
vendorlibdir = $(vendordir)/$(ruby_version)
|
|
33
33
|
vendordir = $(rubylibprefix)/vendor_ruby
|
|
34
|
-
sitearchdir = $(DESTDIR)./.gem.
|
|
35
|
-
sitelibdir = $(DESTDIR)./.gem.
|
|
34
|
+
sitearchdir = $(DESTDIR)./.gem.20220228-1545-6ezvfs
|
|
35
|
+
sitelibdir = $(DESTDIR)./.gem.20220228-1545-6ezvfs
|
|
36
36
|
sitedir = $(rubylibprefix)/site_ruby
|
|
37
37
|
rubyarchdir = $(rubylibdir)/$(arch)
|
|
38
38
|
rubylibdir = $(rubylibprefix)/$(ruby_version)
|
|
@@ -141,7 +141,7 @@ LIBS = $(LIBRUBYARG_SHARED) -lm -lc
|
|
|
141
141
|
ORIG_SRCS = psych.c psych_emitter.c psych_parser.c psych_to_ruby.c psych_yaml_tree.c
|
|
142
142
|
SRCS = $(ORIG_SRCS) api.c dumper.c emitter.c loader.c parser.c psych.c psych_emitter.c psych_parser.c psych_to_ruby.c psych_yaml_tree.c reader.c scanner.c writer.c
|
|
143
143
|
OBJS = api.o dumper.o emitter.o loader.o parser.o psych.o psych_emitter.o psych_parser.o psych_to_ruby.o psych_yaml_tree.o reader.o scanner.o writer.o
|
|
144
|
-
HDRS = $(srcdir)/psych_parser.h $(srcdir)/psych_to_ruby.h $(srcdir)/
|
|
144
|
+
HDRS = $(srcdir)/psych_parser.h $(srcdir)/psych_to_ruby.h $(srcdir)/psych_emitter.h $(srcdir)/psych.h $(srcdir)/psych_yaml_tree.h
|
|
145
145
|
LOCAL_HDRS =
|
|
146
146
|
TARGET = psych
|
|
147
147
|
TARGET_NAME = psych
|
|
@@ -31,8 +31,8 @@ rubyhdrdir = $(includedir)/$(RUBY_VERSION_NAME)
|
|
|
31
31
|
vendorarchdir = $(vendorlibdir)/$(sitearch)
|
|
32
32
|
vendorlibdir = $(vendordir)/$(ruby_version)
|
|
33
33
|
vendordir = $(rubylibprefix)/vendor_ruby
|
|
34
|
-
sitearchdir = $(DESTDIR)./.gem.
|
|
35
|
-
sitelibdir = $(DESTDIR)./.gem.
|
|
34
|
+
sitearchdir = $(DESTDIR)./.gem.20220228-1545-1q975sh
|
|
35
|
+
sitelibdir = $(DESTDIR)./.gem.20220228-1545-1q975sh
|
|
36
36
|
sitedir = $(rubylibprefix)/site_ruby
|
|
37
37
|
rubyarchdir = $(rubylibdir)/$(arch)
|
|
38
38
|
rubylibdir = $(rubylibprefix)/$(ruby_version)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: avalara_sdk
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.4.
|
|
4
|
+
version: 2.4.26
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- OpenAPI-Generator
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-02-
|
|
11
|
+
date: 2022-02-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: typhoeus
|
|
@@ -2646,13 +2646,13 @@ test_files:
|
|
|
2646
2646
|
- spec/api_client_spec.rb
|
|
2647
2647
|
- spec/configuration_spec.rb
|
|
2648
2648
|
- spec/integration/integration_test_spec.rb
|
|
2649
|
-
- spec/models/age_verify_request_address_spec.rb
|
|
2650
|
-
- spec/models/error_details_spec.rb
|
|
2651
|
-
- spec/models/error_details_error_spec.rb
|
|
2652
2649
|
- spec/models/error_details_error_details_spec.rb
|
|
2653
|
-
- spec/models/age_verify_result_spec.rb
|
|
2654
|
-
- spec/models/shipping_verify_result_spec.rb
|
|
2655
|
-
- spec/models/age_verify_request_spec.rb
|
|
2656
2650
|
- spec/models/shipping_verify_result_lines_spec.rb
|
|
2657
2651
|
- spec/models/age_verify_failure_code_spec.rb
|
|
2652
|
+
- spec/models/error_details_spec.rb
|
|
2653
|
+
- spec/models/age_verify_request_spec.rb
|
|
2654
|
+
- spec/models/age_verify_request_address_spec.rb
|
|
2655
|
+
- spec/models/age_verify_result_spec.rb
|
|
2656
|
+
- spec/models/error_details_error_spec.rb
|
|
2657
|
+
- spec/models/shipping_verify_result_spec.rb
|
|
2658
2658
|
- spec/spec_helper.rb
|