paypal-sdk-merchant 1.106.2 → 1.112.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: 2d11b78af8737610720839f1160e860739e6c80e
4
- data.tar.gz: 23c4134d0776a07a486d720203f14d94626da409
3
+ metadata.gz: 1d045db280079f705702afc59dba5e7477e2bd88
4
+ data.tar.gz: f49e56bf1b18a32b3bcdf9bb717e3d2872da2dc5
5
5
  SHA512:
6
- metadata.gz: dfdf501beb45afd45423373758af33b7c2bab0d5903f3cc449d52731d4259a3788d56aedaf07b7d092f538d528d221fb26e41fbb15f12d46534df86997b9728e
7
- data.tar.gz: 1dfb9f165aef28f2c1aa7738ab3c566575db012a8e134b23116ae993ee0a18392b5b4b5c7074d3f03a2effc96b85e5939027595b1c86ffc1a17188aac83da337
6
+ metadata.gz: 97906eaf1ef3af0ea2d53f91b8602b6f0c624e6ff3171d17112932bc359544bf842feda40d8db18922edfd6a3a68087ef7a87e9b061a3570838ef99383f97b01
7
+ data.tar.gz: 06ddc1aec84572fbfb1fbdf2cf23f7a09ece81ab556fa8df026ec3edab3f128da381c9d16a5337afe20b6e1eff948e23d31c81df4d29ffe9fe1a128514ae9f83
@@ -606,7 +606,7 @@ module PayPal::SDK
606
606
 
607
607
  # Category of payment like international shipping
608
608
  class PaymentCategoryType < EnumType
609
- self.options = { 'INTERNATIONALSHIPPING' => 'InternationalShipping' }
609
+ self.options = { 'INTERNATIONALSHIPPING' => 'InternationalShipping', 'LOCALDELIVERY' => 'LocalDelivery' }
610
610
  end
611
611
 
612
612
 
@@ -1063,6 +1063,8 @@ module PayPal::SDK
1063
1063
  def self.load_members
1064
1064
  # Information that is used to indentify the Buyer. This is used for auto authorization. Mandatory if Authorization is requested.
1065
1065
  object_of :IdentificationInfo, IdentificationInfoType, :namespace => :ebl
1066
+ # Correlation id related to risk process done for the device. Max length is 36 Chars.
1067
+ object_of :RiskSessionCorrelationID, String, :namespace => :ebl
1066
1068
  end
1067
1069
  end
1068
1070
 
@@ -1243,6 +1245,10 @@ module PayPal::SDK
1243
1245
  array_of :PaymentDetails, PaymentDetailsType, :namespace => :ebl
1244
1246
  # Flag to indicate if previously set promoCode shall be overriden. Value 1 indicates overriding.
1245
1247
  object_of :PromoOverrideFlag, String, :namespace => :ebl
1248
+ # Optional merchant specified flag which indicates whether to use the payment details information provided in SetExpressCheckoutDetails or in DoExpressCheckoutPayment.
1249
+ # Possible values are true, false, 1, 0. If this is set to true or 1, the payment details information would be used from what was passed in SetExpressCheckoutDetails.
1250
+ # Any change in the paymentdetails passed in DoExpressCheckoutPayment will be ignored if this field is set to true.
1251
+ object_of :UseSessionPaymentDetails, String, :namespace => :ebl
1246
1252
  # Promotional financing code for item. Overrides any previous PromoCode setting.
1247
1253
  object_of :PromoCode, String, :namespace => :ebl
1248
1254
  # Contains data for enhanced data like Airline Itinerary Data.
@@ -1269,6 +1275,8 @@ module PayPal::SDK
1269
1275
  object_of :ButtonSource, String, :namespace => :ebl
1270
1276
  # Merchant specified flag which indicates whether to create billing agreement as part of DoEC or not. Optional
1271
1277
  object_of :SkipBACreation, Boolean, :namespace => :ebl
1278
+ # Merchant specified flag which indicates to use payment details from session if available. Optional
1279
+ object_of :UseSessionPaymentDetails, String, :namespace => :ebl
1272
1280
  # Optional element that defines relationship between buckets
1273
1281
  array_of :CoupledBuckets, CoupledBucketsType, :namespace => :ebl
1274
1282
  end
@@ -1307,6 +1315,8 @@ module PayPal::SDK
1307
1315
  object_of :PaymentInfo, PaymentInfoType, :namespace => :ebl
1308
1316
  # Return msgsubid back to merchant
1309
1317
  object_of :MsgSubID, String, :namespace => :ebl
1318
+ # Partner funding source id corresponding to the FS used in authorization.
1319
+ object_of :PartnerFundingSourceID, String, :namespace => :ebl
1310
1320
  end
1311
1321
  end
1312
1322
 
@@ -1702,8 +1712,10 @@ module PayPal::SDK
1702
1712
  # InstrumentDetailsType Promotional Instrument Information.
1703
1713
  class InstrumentDetailsType < DataType
1704
1714
  def self.load_members
1705
- # This field holds the category of the instrument only when it is promotional. Return value 1 represents BML.
1715
+ # This field holds the category of the instrument only when it is promotional. Return value 1 represents BML, 2 reprasents PLCC/Cobranded.
1706
1716
  object_of :InstrumentCategory, String, :namespace => :ebl
1717
+ # This field holds the InstrumentID issued by external party corresponding to the funding source used in payment.
1718
+ object_of :InstrumentID, String, :namespace => :ebl
1707
1719
  end
1708
1720
  end
1709
1721
 
@@ -5,7 +5,7 @@ module PayPal::SDK
5
5
  module Merchant
6
6
 
7
7
  # Service Version
8
- SERVICE_VERSION = "106.0"
8
+ SERVICE_VERSION = "112.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.106.2"
4
+ VERSION = "1.112.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.106.2
4
+ version: 1.112.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-03-07 00:00:00.000000000 Z
11
+ date: 2014-03-27 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
- - Gemfile
37
- - README.md
38
- - Rakefile
39
- - lib/paypal-sdk-merchant.rb
40
- - lib/paypal-sdk/merchant.rb
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
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
- - 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
47
+ - lib/paypal-sdk/merchant.rb
48
+ - lib/paypal-sdk-merchant.rb
49
+ - Rakefile
50
+ - README.md
51
+ - Gemfile
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.2.1
72
+ rubygems_version: 2.0.3
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: PayPal Merchant SDK
@@ -79,4 +79,3 @@ test_files:
79
79
  - spec/merchant_samples_spec.rb
80
80
  - spec/merchant_spec.rb
81
81
  - spec/spec_helper.rb
82
- has_rdoc: