paypal-sdk-merchant 1.114.0 → 1.115.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 970fe947d04bc1790c62d2edb63df88dabc09031
4
- data.tar.gz: cdbec9dcaf2c1b419206553e214df2c8c050e36a
3
+ metadata.gz: 77d0fa5be8d30539c943194703ed665063973687
4
+ data.tar.gz: a3d09fc4f52cf5562fea4a815118f91bb9879bfa
5
5
  SHA512:
6
- metadata.gz: 758754e68ca0e2d366d734a581c2a821612c569b006cfae683373a17fd90324ecb9f686c2103d0035cb350b69a12ec21576c2a1f85de06872efafeb2cb88ebd6
7
- data.tar.gz: 169190f4df086b69080bae442bdd34780d33f46d2b16432bd5836cc44e5026e6b8c1d5074a9a59fb0dcb57ccaec41742cd20db7dfc55784cfee07fbaeac39410
6
+ metadata.gz: 86b01c56a7ceeb525a166c7c372cb4275a097da301090bee70e85ed2581479642a9f98fd2d840f70cae706b80bed079e9076f1246539171289fb483574bf5db2
7
+ data.tar.gz: b97f5fbb81c4d6e4a07c7adbfaaae77af5445b97705739d02f8afdfd3eeee2d27ffdb178ff551fe595696aa1d815e955dfad458411ea5272dfdd8aff374917d4
@@ -606,7 +606,14 @@ module PayPal::SDK
606
606
 
607
607
  # Category of payment like international shipping
608
608
  class PaymentCategoryType < EnumType
609
- self.options = { 'INTERNATIONALSHIPPING' => 'InternationalShipping', 'LOCALDELIVERY' => 'LocalDelivery' }
609
+ self.options = { 'INTERNATIONALSHIPPING' => 'InternationalShipping', 'LOCALDELIVERY' => 'LocalDelivery', 'BOPIS' => 'BOPIS', 'PUDO' => 'PUDO' }
610
+ end
611
+
612
+
613
+
614
+ # Location Type
615
+ class LocationType < EnumType
616
+ self.options = { 'CONSUMER' => 'Consumer', 'STORE' => 'Store', 'PICKUPDROPOFF' => 'PickupDropoff' }
610
617
  end
611
618
 
612
619
 
@@ -1346,6 +1353,10 @@ module PayPal::SDK
1346
1353
  # Your customer session identification token. PayPal records this optional session identification token as an additional means to detect possible fraud. Optional Character length and limitations: 64 single-byte numeric characters
1347
1354
  object_of :MerchantSessionId, String, :namespace => :ebl
1348
1355
  object_of :ReturnFMFDetails, Boolean, :namespace => :ebl
1356
+ # Use this optional parameter to pass in your business name and other data describing the transaction. Optional This information is usually displayed in the account holder's statement. Example: RedCross Haiti, RedCross Uganda, Realtor.com dues, Realtor.com list fee Length 25 characters. Alphanumeric characters and dash(-), dot(.), asterisk(*), space( ) On the customer's statement, an asterisk is used to separate the DBA name and product name. The asterisk delimiter can appear in position 4, 8, or 13.
1357
+ object_of :SoftDescriptor, String, :namespace => :ebl
1358
+ # Use this optional parameter to pass information about how consumer should contact the merchant. Optional This information is usually displayed in the account holder's statement. For Ecom trx: phone, email or URL is allowed For Retail trx: only the actual city is allowed For details on allowed characters in Soft Descriptor City refer to the API documentation.
1359
+ object_of :SoftDescriptorCity, String, :namespace => :ebl
1349
1360
  end
1350
1361
  end
1351
1362
 
@@ -1834,6 +1845,10 @@ module PayPal::SDK
1834
1845
  object_of :OfferDetails, OfferDetailsType, :namespace => :ebl
1835
1846
  # This field indicates whether the credit card number used for this transaction is in a particular bin range registered with PayPal by the merchant. This filed is optional and will be present if merchant has a registered bin range. The value of this field will be "true" if merchant has a registered bin range and the credit card used in the transaction is within the registered bin range. The value of this field will be false if merchant has a registered bin range and credit card used in the transaction outside registered bin range or the transaction is not done using a credit card.
1836
1847
  object_of :BinEligibility, String, :namespace => :ebl
1848
+ # This information holds business name and other data describing the transaction. This information is usually displayed in the CC account holder's statement.
1849
+ object_of :SoftDescriptor, String, :namespace => :ebl
1850
+ # CC Information about how consumer should contact the merchant. This information is usually displayed in the CC account holder's statement.
1851
+ object_of :SoftDescriptorCity, String, :namespace => :ebl
1837
1852
  end
1838
1853
  end
1839
1854
 
@@ -2065,6 +2080,7 @@ module PayPal::SDK
2065
2080
  object_of :FulfillmentReferenceNumber, String, :namespace => :ebl
2066
2081
  object_of :FulfillmentAddress, AddressType, :namespace => :ebl
2067
2082
  object_of :PaymentCategoryType, PaymentCategoryType, :namespace => :ebl
2083
+ object_of :LocationType, LocationType, :namespace => :ebl
2068
2084
  object_of :ShippingMethod, ShippingServiceCodeType, :namespace => :ebl
2069
2085
  # Date and time (in GMT in the format yyyy-MM-ddTHH:mm:ssZ) at which address was changed by the user.
2070
2086
  object_of :ProfileAddressChangeDate, DateTime, :namespace => :ebl
@@ -2102,6 +2118,8 @@ module PayPal::SDK
2102
2118
  object_of :Recurring, RecurringFlagType, :namespace => :ebl
2103
2119
  # Indicates the purpose of this payment like Refund
2104
2120
  object_of :PaymentReason, PaymentReasonType, :namespace => :ebl
2121
+ # Location ID Specified by merchant Optional Character length and limitations: 50 single-byte alphanumeric characters
2122
+ object_of :LocationID, String, :namespace => :ebl
2105
2123
  # For instance single use coupons should not be returned in future CheckIn calls once they are redeemed.
2106
2124
  array_of :RedeemedOffers, DiscountInfoType, :namespace => :ebl
2107
2125
  # Total loyalty points for a given id accumulated by the consumre so far.
@@ -2748,6 +2766,10 @@ module PayPal::SDK
2748
2766
  object_of :ScheduleDetails, ScheduleDetailsType, :namespace => :ebl, :required => true
2749
2767
  # Information about the Item Details.
2750
2768
  array_of :PaymentDetailsItem, PaymentDetailsItemType, :namespace => :ebl
2769
+ # Use this optional parameter to pass in your business name and other data describing the transaction. Optional This information is usually displayed in the CC account holder's statement. Example: RedCross Haiti, RedCross Uganda, Realtor.com dues, Realtor.com list fee Length 25 characters. Alphanumeric characters and dash(-), dot(.), asterisk(*), space( ) On the customer's statement, an asterisk is used to separate the DBA name and product name. The asterisk delimiter can appear in position 4, 8, or 13.
2770
+ object_of :SoftDescriptor, String, :namespace => :ebl
2771
+ # Use this optional parameter to pass information about how consumer should contact the merchant. Optional This information is usually displayed in the CC account holder's statement. For Ecom trx: phone, email or URL is allowed For Retail trx: only the actual city is allowed For details on allowed characters in Soft Descriptor City refer to the API documentation.
2772
+ object_of :SoftDescriptorCity, String, :namespace => :ebl
2751
2773
  end
2752
2774
  end
2753
2775
 
@@ -2791,6 +2813,10 @@ module PayPal::SDK
2791
2813
  object_of :AggregateAmount, BasicAmountType, :namespace => :ebl
2792
2814
  object_of :AggregateOptionalAmount, BasicAmountType, :namespace => :ebl
2793
2815
  object_of :FinalPaymentDueDate, DateTime, :namespace => :ebl
2816
+ # Use this optional parameter to pass in your business name and other data describing the transaction. Optional This information is usually displayed in the account holder's statement. Example: RedCross Haiti, RedCross Uganda, Realtor.com dues, Realtor.com list fee Length 25 characters. Alphanumeric characters and dash(-), dot(.), asterisk(*), space( ) On the customer's statement, an asterisk is used to separate the DBA name and product name. The asterisk delimiter can appear in position 4, 8, or 13.
2817
+ object_of :SoftDescriptor, String, :namespace => :ebl
2818
+ # Use this optional parameter to pass information about how consumer should contact the merchant. Optional This information is usually displayed in the account holder's statement. For Ecom trx: phone, email or URL is allowed For Retail trx: only the actual city is allowed For details on allowed characters in Soft Descriptor City refer to the API documentation.
2819
+ object_of :SoftDescriptorCity, String, :namespace => :ebl
2794
2820
  end
2795
2821
  end
2796
2822
 
@@ -5,7 +5,7 @@ module PayPal::SDK
5
5
  module Merchant
6
6
 
7
7
  # Service Version
8
- SERVICE_VERSION = "114.0"
8
+ SERVICE_VERSION = "115.0"
9
9
  # Service Name
10
10
  SERVICE_NAME = "PayPalAPIInterfaceService"
11
11
 
@@ -1,7 +1,7 @@
1
1
  module PayPal
2
2
  module SDK
3
3
  module Merchant
4
- VERSION = "1.114.0"
4
+ VERSION = "1.115.0"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,27 +1,27 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: paypal-sdk-merchant
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.114.0
4
+ version: 1.115.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - PayPal
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-05-14 00:00:00.000000000 Z
11
+ date: 2014-06-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: paypal-sdk-core
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - ~>
17
+ - - "~>"
18
18
  - !ruby/object:Gem::Version
19
19
  version: 0.2.7
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - ~>
24
+ - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: 0.2.7
27
27
  description: The PayPal Merchant SDK provides Ruby APIs for processing payments, recurring
@@ -33,22 +33,22 @@ executables: []
33
33
  extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
- - spec/config/cert_key.pem
37
- - spec/config/paypal.yml
38
- - spec/merchant_samples_spec.rb
39
- - spec/merchant_spec.rb
40
- - spec/spec_helper.rb
36
+ - Gemfile
37
+ - README.md
38
+ - Rakefile
39
+ - lib/paypal-sdk-merchant.rb
40
+ - lib/paypal-sdk/merchant.rb
41
41
  - lib/paypal-sdk/merchant/api.rb
42
42
  - lib/paypal-sdk/merchant/data_types.rb
43
43
  - lib/paypal-sdk/merchant/data_types_with_bugfix.rb
44
44
  - lib/paypal-sdk/merchant/services.rb
45
45
  - lib/paypal-sdk/merchant/urls.rb
46
46
  - lib/paypal-sdk/merchant/version.rb
47
- - lib/paypal-sdk/merchant.rb
48
- - lib/paypal-sdk-merchant.rb
49
- - Rakefile
50
- - README.md
51
- - Gemfile
47
+ - spec/config/cert_key.pem
48
+ - spec/config/paypal.yml
49
+ - spec/merchant_samples_spec.rb
50
+ - spec/merchant_spec.rb
51
+ - spec/spec_helper.rb
52
52
  homepage: https://developer.paypal.com
53
53
  licenses:
54
54
  - PayPal SDK License
@@ -59,17 +59,17 @@ require_paths:
59
59
  - lib
60
60
  required_ruby_version: !ruby/object:Gem::Requirement
61
61
  requirements:
62
- - - '>='
62
+ - - ">="
63
63
  - !ruby/object:Gem::Version
64
64
  version: '0'
65
65
  required_rubygems_version: !ruby/object:Gem::Requirement
66
66
  requirements:
67
- - - '>='
67
+ - - ">="
68
68
  - !ruby/object:Gem::Version
69
69
  version: '0'
70
70
  requirements: []
71
71
  rubyforge_project:
72
- rubygems_version: 2.0.3
72
+ rubygems_version: 2.2.2
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: PayPal Merchant SDK