paypal-sdk-invoice 1.101.0 → 1.103.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 +6 -14
- data/lib/paypal-sdk/invoice/data_types.rb +4 -0
- data/lib/paypal-sdk/invoice/services.rb +1 -1
- data/lib/paypal-sdk/invoice/version.rb +1 -1
- metadata +12 -12
checksums.yaml
CHANGED
|
@@ -1,15 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
metadata.gz: !binary |-
|
|
9
|
-
NGQ4YTM1YWIwZmEwOWQyMTM4OTQ1NjM2NGNkZTViNmU5ZWRlMDQwMGRmODBi
|
|
10
|
-
NjQ5NmRlOWIxMWRkOTJkMGJmYzg3MmMzNGIwNDI0NjkwMmM3ODI2NjgzZTlk
|
|
11
|
-
ZWNmYWZmZjU5NTA2OTVjNWE0NjQwMzUyNGFlZGRiM2QxNzM0YmQ=
|
|
12
|
-
data.tar.gz: !binary |-
|
|
13
|
-
NGJmZGZmMDI1OTM4OGJlNTg2OTA4OTcxZjRkYzNmYWMxOTNmNzVjOTU3NzI4
|
|
14
|
-
Zjk0MWZhOGRkOTAxZWQ0NDNiNDBlNzhiZmZmYzNkNTNkZGMwNzlhMTA2ZjJi
|
|
15
|
-
MDQ2ZGI1NTVjMjBiYTNiZTg4YTE4NGNmNDI2YjdjMDNmNmQwZmM=
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 5225b5100840e6297ec533b845534ddc9124112c
|
|
4
|
+
data.tar.gz: 69d1d616ebb69f9d21978326d80b036c4d865ec0
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 7026bcde865ba665051ad1eba813bf222d93e8474b75aa2b3553d3a11f3e9b50a611a269aa1647e112d899b5739f277b2e0a24e83223b32fe6efc8ff5973df62
|
|
7
|
+
data.tar.gz: 8fab11887be964aedd73cb26155b8fbd51442c4a67bb9a6d42647317ce534ce32f2502c3656b03c46937ee7998e39365ec289c26cad6dcfac57075ed83ae8552
|
|
@@ -184,6 +184,8 @@ module PayPal::SDK
|
|
|
184
184
|
object_of :fax, String
|
|
185
185
|
# Website used by the company.
|
|
186
186
|
object_of :website, String
|
|
187
|
+
# Tax ID of the merchant.
|
|
188
|
+
object_of :taxId, String
|
|
187
189
|
# Custom value to be displayed in the contact information details.
|
|
188
190
|
object_of :customValue, String
|
|
189
191
|
# Street address of the company.
|
|
@@ -251,6 +253,8 @@ module PayPal::SDK
|
|
|
251
253
|
object_of :discountPercent, Float
|
|
252
254
|
# A discount amount applied to the invoice, if any. If DiscountPercent is provided, DiscountAmount is ignored.
|
|
253
255
|
object_of :discountAmount, Float
|
|
256
|
+
# If true, indicates tax included in item amount. If present, this setting will supersede the merchant’s default setting.
|
|
257
|
+
object_of :taxInclusive, Boolean
|
|
254
258
|
# General terms for the invoice.
|
|
255
259
|
object_of :terms, String
|
|
256
260
|
# Note to the payer company.
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: paypal-sdk-invoice
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.103.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- PayPal
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2013-
|
|
11
|
+
date: 2013-06-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: paypal-sdk-core
|
|
@@ -32,16 +32,16 @@ executables: []
|
|
|
32
32
|
extensions: []
|
|
33
33
|
extra_rdoc_files: []
|
|
34
34
|
files:
|
|
35
|
+
- spec/config/cert_key.pem
|
|
36
|
+
- spec/config/paypal.yml
|
|
35
37
|
- spec/invoice_spec.rb
|
|
36
38
|
- spec/spec_helper.rb
|
|
37
|
-
- spec/config/paypal.yml
|
|
38
|
-
- spec/config/cert_key.pem
|
|
39
|
-
- lib/paypal-sdk-invoice.rb
|
|
40
|
-
- lib/paypal-sdk/invoice/services.rb
|
|
41
39
|
- lib/paypal-sdk/invoice/api.rb
|
|
42
|
-
- lib/paypal-sdk/invoice/version.rb
|
|
43
40
|
- lib/paypal-sdk/invoice/data_types.rb
|
|
41
|
+
- lib/paypal-sdk/invoice/services.rb
|
|
42
|
+
- lib/paypal-sdk/invoice/version.rb
|
|
44
43
|
- lib/paypal-sdk/invoice.rb
|
|
44
|
+
- lib/paypal-sdk-invoice.rb
|
|
45
45
|
- Rakefile
|
|
46
46
|
- README.md
|
|
47
47
|
- Gemfile
|
|
@@ -54,22 +54,22 @@ require_paths:
|
|
|
54
54
|
- lib
|
|
55
55
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
56
56
|
requirements:
|
|
57
|
-
- -
|
|
57
|
+
- - '>='
|
|
58
58
|
- !ruby/object:Gem::Version
|
|
59
59
|
version: '0'
|
|
60
60
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
61
61
|
requirements:
|
|
62
|
-
- -
|
|
62
|
+
- - '>='
|
|
63
63
|
- !ruby/object:Gem::Version
|
|
64
64
|
version: '0'
|
|
65
65
|
requirements: []
|
|
66
66
|
rubyforge_project:
|
|
67
|
-
rubygems_version: 2.0.
|
|
67
|
+
rubygems_version: 2.0.3
|
|
68
68
|
signing_key:
|
|
69
69
|
specification_version: 4
|
|
70
70
|
summary: PayPal Invoice SDK
|
|
71
71
|
test_files:
|
|
72
|
+
- spec/config/cert_key.pem
|
|
73
|
+
- spec/config/paypal.yml
|
|
72
74
|
- spec/invoice_spec.rb
|
|
73
75
|
- spec/spec_helper.rb
|
|
74
|
-
- spec/config/paypal.yml
|
|
75
|
-
- spec/config/cert_key.pem
|