authorizenet 1.8.3 → 1.8.4
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/lib/authorize_net/api/api_transaction.rb +2 -0
- data/lib/authorize_net/api/schema.rb +207 -136
- data/lib/authorize_net/api/transaction.rb +15 -0
- data/lib/authorize_net/fields.rb +1 -1
- data/lib/authorize_net/reporting/response.rb +10 -0
- data/lib/authorize_net/reporting/returned_item.rb +2 -2
- metadata +9 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5085eaf76fabde2b2f386d5a571a0e419e64a748
|
4
|
+
data.tar.gz: 8773dc185f661d5149aa5e7e812bbfe6ecd790af
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1cad1ce0df1d6c4ba608db9edf8f22b8f2f30e3db63209b3a41f34941e60ec35baccd8ebb1ce1a8e24f75b1f130a9d56365eb008766752a66c87336a76aa674f
|
7
|
+
data.tar.gz: 622e1e4f768b3ed094199510224aec607512a63d2f7bafd0a6de6f1c9c1fbb7c07c93e201333451147ad689cfca8b6d988835bfacd361bacfd82378b0d012275
|
@@ -5,6 +5,8 @@ module AuthorizeNet::API
|
|
5
5
|
API_CREATE_TRANSACTION = "createTransactionRequest"
|
6
6
|
API_CREATE_CUSTOMER_PROFILE_FROM_TRANSACTION = "createCustomerProfileFromTransactionRequest"
|
7
7
|
API_DELETE_CUSTOMER_PROFILE = "deleteCustomerProfileRequest"
|
8
|
+
API_DECRYPT_PAYMENT_DATA = "decryptPaymentDataRequest"
|
9
|
+
API_AUTHENTICATE_TEST_REQUEST = "authenticateTestRequest"
|
8
10
|
end
|
9
11
|
|
10
12
|
def initialize(api_login_id, api_transaction_key, options = {})
|
@@ -185,6 +185,7 @@ module AuthorizeNet::API
|
|
185
185
|
# country - SOAP::SOAPString
|
186
186
|
# phoneNumber - SOAP::SOAPString
|
187
187
|
# faxNumber - SOAP::SOAPString
|
188
|
+
# email - SOAP::SOAPString
|
188
189
|
# customerAddressId - (any)
|
189
190
|
class CustomerAddressExType
|
190
191
|
include ROXML
|
@@ -198,9 +199,10 @@ module AuthorizeNet::API
|
|
198
199
|
xml_accessor :country
|
199
200
|
xml_accessor :phoneNumber
|
200
201
|
xml_accessor :faxNumber
|
202
|
+
xml_accessor :email
|
201
203
|
xml_accessor :customerAddressId
|
202
204
|
|
203
|
-
|
205
|
+
def initialize(firstName = nil, lastName = nil, company = nil, address = nil, city = nil, state = nil, zip = nil, country = nil, phoneNumber = nil, faxNumber = nil, email = nil, customerAddressId = nil)
|
204
206
|
@firstName = firstName
|
205
207
|
@lastName = lastName
|
206
208
|
@company = company
|
@@ -211,6 +213,7 @@ module AuthorizeNet::API
|
|
211
213
|
@country = country
|
212
214
|
@phoneNumber = phoneNumber
|
213
215
|
@faxNumber = faxNumber
|
216
|
+
@email = email
|
214
217
|
@customerAddressId = customerAddressId
|
215
218
|
end
|
216
219
|
end
|
@@ -258,37 +261,37 @@ module AuthorizeNet::API
|
|
258
261
|
# {AnetApi/xml/v1/schema/AnetApiSchema.xsd}creditCardSimpleType
|
259
262
|
# cardNumber - SOAP::SOAPString
|
260
263
|
# expirationDate - SOAP::SOAPString
|
261
|
-
# paymentToken - SOAP::SOAPBoolean
|
262
264
|
class CreditCardSimpleType
|
263
265
|
include ROXML
|
264
266
|
xml_accessor :cardNumber
|
265
267
|
xml_accessor :expirationDate
|
266
|
-
xml_accessor :paymentToken
|
267
268
|
|
268
|
-
def initialize(cardNumber = nil, expirationDate = nil
|
269
|
+
def initialize(cardNumber = nil, expirationDate = nil)
|
269
270
|
@cardNumber = cardNumber
|
270
271
|
@expirationDate = expirationDate
|
271
|
-
@paymentToken = paymentToken
|
272
272
|
end
|
273
273
|
end
|
274
274
|
|
275
275
|
# {AnetApi/xml/v1/schema/AnetApiSchema.xsd}creditCardType
|
276
276
|
# cardNumber - SOAP::SOAPString
|
277
277
|
# expirationDate - SOAP::SOAPString
|
278
|
-
# paymentToken - SOAP::SOAPBoolean
|
279
278
|
# cardCode - (any)
|
279
|
+
# isPaymentToken - SOAP::SOAPBoolean
|
280
|
+
# cryptogram - SOAP::SOAPString
|
280
281
|
class CreditCardType
|
281
282
|
include ROXML
|
282
283
|
xml_accessor :cardNumber
|
283
284
|
xml_accessor :expirationDate
|
284
|
-
xml_accessor :paymentToken
|
285
285
|
xml_accessor :cardCode
|
286
|
+
xml_accessor :isPaymentToken
|
287
|
+
xml_accessor :cryptogram
|
286
288
|
|
287
|
-
def initialize(cardNumber = nil, expirationDate = nil,
|
289
|
+
def initialize(cardNumber = nil, expirationDate = nil, cardCode = nil, isPaymentToken = nil, cryptogram = nil)
|
288
290
|
@cardNumber = cardNumber
|
289
291
|
@expirationDate = expirationDate
|
290
|
-
@paymentToken = paymentToken
|
291
292
|
@cardCode = cardCode
|
293
|
+
@isPaymentToken = isPaymentToken
|
294
|
+
@cryptogram = cryptogram
|
292
295
|
end
|
293
296
|
end
|
294
297
|
|
@@ -310,16 +313,19 @@ module AuthorizeNet::API
|
|
310
313
|
# cardNumber - SOAP::SOAPString
|
311
314
|
# expirationDate - SOAP::SOAPString
|
312
315
|
# cardType - SOAP::SOAPString
|
316
|
+
# cardArt - CardArt
|
313
317
|
class CreditCardMaskedType
|
314
318
|
include ROXML
|
315
319
|
xml_accessor :cardNumber
|
316
320
|
xml_accessor :expirationDate
|
317
321
|
xml_accessor :cardType
|
322
|
+
xml_accessor :cardArt
|
318
323
|
|
319
324
|
def initialize(cardNumber = nil, expirationDate = nil, cardType = nil)
|
320
325
|
@cardNumber = cardNumber
|
321
326
|
@expirationDate = expirationDate
|
322
327
|
@cardType = cardType
|
328
|
+
@cardArt = cardArt
|
323
329
|
end
|
324
330
|
end
|
325
331
|
|
@@ -395,31 +401,34 @@ module AuthorizeNet::API
|
|
395
401
|
# {AnetApi/xml/v1/schema/AnetApiSchema.xsd}opaqueDataType
|
396
402
|
# dataDescriptor - SOAP::SOAPString
|
397
403
|
# dataValue - SOAP::SOAPString
|
404
|
+
# dataKey - SOAP::SOAPString
|
398
405
|
class OpaqueDataType
|
399
406
|
include ROXML
|
400
407
|
xml_accessor :dataDescriptor
|
401
408
|
xml_accessor :dataValue
|
409
|
+
xml_accessor :dataKey
|
402
410
|
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
411
|
+
def initialize(dataDescriptor = nil, dataValue = nil, dataKey = nil)
|
412
|
+
@dataDescriptor = dataDescriptor
|
413
|
+
@dataValue = dataValue
|
414
|
+
@dataKey = dataKey
|
407
415
|
end
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
416
|
+
end
|
417
|
+
|
418
|
+
# {AnetApi/xml/v1/schema/AnetApiSchema.xsd}paymentSimpleType
|
419
|
+
# creditCard - CreditCardSimpleType
|
420
|
+
# bankAccount - BankAccountType
|
421
|
+
class PaymentSimpleType
|
422
|
+
include ROXML
|
423
|
+
xml_accessor :creditCard
|
424
|
+
xml_accessor :bankAccount
|
425
|
+
|
426
|
+
def initialize(creditCard = nil, bankAccount = nil)
|
427
|
+
@creditCard = creditCard
|
428
|
+
@bankAccount = bankAccount
|
421
429
|
end
|
422
|
-
|
430
|
+
end
|
431
|
+
|
423
432
|
# {AnetApi/xml/v1/schema/AnetApiSchema.xsd}OperationType
|
424
433
|
class OperationType < ::String
|
425
434
|
DECRYPT = OperationType.new("DECRYPT")
|
@@ -443,8 +452,8 @@ module AuthorizeNet::API
|
|
443
452
|
# data - SOAP::SOAPString
|
444
453
|
class Mode
|
445
454
|
include ROXML
|
446
|
-
xml_accessor :
|
447
|
-
xml_accessor :
|
455
|
+
xml_accessor :PIN
|
456
|
+
xml_accessor :Data
|
448
457
|
|
449
458
|
def initialize(pIN = nil, data = nil)
|
450
459
|
@pIN = pIN
|
@@ -457,7 +466,7 @@ module AuthorizeNet::API
|
|
457
466
|
# description - SOAP::SOAPString
|
458
467
|
class DeviceInfo
|
459
468
|
include ROXML
|
460
|
-
xml_accessor :
|
469
|
+
xml_accessor :Description
|
461
470
|
|
462
471
|
def initialize(description = nil)
|
463
472
|
@description = description
|
@@ -469,17 +478,17 @@ module AuthorizeNet::API
|
|
469
478
|
# value - SOAP::SOAPString
|
470
479
|
class EncryptedData
|
471
480
|
include ROXML
|
472
|
-
xml_accessor :
|
481
|
+
xml_accessor :Value
|
473
482
|
|
474
483
|
def initialize(value = nil)
|
475
484
|
@value = value
|
476
485
|
end
|
477
486
|
end
|
478
487
|
|
479
|
-
xml_accessor :
|
480
|
-
xml_accessor :
|
481
|
-
xml_accessor :
|
482
|
-
xml_accessor :
|
488
|
+
xml_accessor :Operation
|
489
|
+
xml_accessor :Mode, :as => Mode
|
490
|
+
xml_accessor :DeviceInfo, :as => DeviceInfo
|
491
|
+
xml_accessor :EncryptedData, :as => EncryptedData
|
483
492
|
|
484
493
|
def initialize(operation = nil, mode = nil, deviceInfo = nil, encryptedData = nil)
|
485
494
|
@operation = operation
|
@@ -489,7 +498,7 @@ module AuthorizeNet::API
|
|
489
498
|
end
|
490
499
|
end
|
491
500
|
|
492
|
-
xml_accessor :
|
501
|
+
xml_accessor :DUKPT, :as => DUKPT
|
493
502
|
|
494
503
|
def initialize(dUKPT = nil)
|
495
504
|
@dUKPT = dUKPT
|
@@ -515,9 +524,9 @@ module AuthorizeNet::API
|
|
515
524
|
# scheme - KeyManagementScheme
|
516
525
|
class KeyValue
|
517
526
|
include ROXML
|
518
|
-
xml_accessor :
|
519
|
-
xml_accessor :
|
520
|
-
xml_accessor :
|
527
|
+
xml_accessor :Encoding
|
528
|
+
xml_accessor :EncryptionAlgorithm
|
529
|
+
xml_accessor :Scheme, :as => KeyManagementScheme
|
521
530
|
|
522
531
|
def initialize(encoding = nil, encryptionAlgorithm = nil, scheme = nil)
|
523
532
|
@encoding = encoding
|
@@ -530,7 +539,7 @@ module AuthorizeNet::API
|
|
530
539
|
# value - KeyValue
|
531
540
|
class KeyBlock
|
532
541
|
include ROXML
|
533
|
-
xml_accessor :
|
542
|
+
xml_accessor :Value, :as => KeyValue
|
534
543
|
|
535
544
|
def initialize(value = nil)
|
536
545
|
@value = value
|
@@ -541,7 +550,7 @@ module AuthorizeNet::API
|
|
541
550
|
# formOfPayment - KeyBlock
|
542
551
|
class EncryptedTrackDataType
|
543
552
|
include ROXML
|
544
|
-
xml_accessor :
|
553
|
+
xml_accessor :FormOfPayment, :as => KeyBlock
|
545
554
|
|
546
555
|
def initialize(formOfPayment = nil)
|
547
556
|
@formOfPayment = formOfPayment
|
@@ -735,16 +744,22 @@ module AuthorizeNet::API
|
|
735
744
|
# hashValue - SOAP::SOAPString
|
736
745
|
# sequence - SOAP::SOAPString
|
737
746
|
# timestamp - SOAP::SOAPString
|
747
|
+
# currencyCode - SOAP::SOAPString
|
748
|
+
# amount - SOAP::SOAPString
|
738
749
|
class FingerPrintType
|
739
750
|
include ROXML
|
740
751
|
xml_accessor :hashValue
|
741
752
|
xml_accessor :sequence
|
742
753
|
xml_accessor :timestamp
|
743
|
-
|
744
|
-
|
754
|
+
xml_accessor :currencyCode
|
755
|
+
xml_accessor :amount
|
756
|
+
|
757
|
+
def initialize(hashValue = nil, sequence = nil, timestamp = nil, currencyCode = nil, amount = nil)
|
745
758
|
@hashValue = hashValue
|
746
759
|
@sequence = sequence
|
747
760
|
@timestamp = timestamp
|
761
|
+
@currencyCode = currencyCode
|
762
|
+
@amount = amount
|
748
763
|
end
|
749
764
|
end
|
750
765
|
|
@@ -777,6 +792,65 @@ module AuthorizeNet::API
|
|
777
792
|
end
|
778
793
|
end
|
779
794
|
|
795
|
+
# {AnetApi/xml/v1/schema/AnetApiSchema.xsd}cardArt
|
796
|
+
# cardBrand - SOAP::SOAPString
|
797
|
+
# cardImageHeight - SOAP::SOAPString
|
798
|
+
# cardImageUrl - SOAP::SOAPString
|
799
|
+
# cardImageWidth - SOAP::SOAPString
|
800
|
+
# cardType - SOAP::SOAPString
|
801
|
+
class CardArt
|
802
|
+
include ROXML
|
803
|
+
xml_accessor :cardBrand
|
804
|
+
xml_accessor :cardImageHeight
|
805
|
+
xml_accessor :cardImageUrl
|
806
|
+
xml_accessor :cardImageWidth
|
807
|
+
xml_accessor :cardType
|
808
|
+
|
809
|
+
def initialize(cardBrand = nil, cardImageHeight = nil, cardImageUrl = nil, cardImageWidth = nil, cardType = nil)
|
810
|
+
@cardBrand = cardBrand
|
811
|
+
@cardImageHeight = cardImageHeight
|
812
|
+
@cardImageUrl = cardImageUrl
|
813
|
+
@cardImageWidth = cardImageWidth
|
814
|
+
@cardType = cardType
|
815
|
+
end
|
816
|
+
end
|
817
|
+
# {AnetApi/xml/v1/schema/AnetApiSchema.xsd}paymentDetails
|
818
|
+
# currency - SOAP::SOAPString
|
819
|
+
# promoCode - SOAP::SOAPString
|
820
|
+
# misc - SOAP::SOAPString
|
821
|
+
# giftWrap - SOAP::SOAPString
|
822
|
+
# discount - SOAP::SOAPString
|
823
|
+
# tax - SOAP::SOAPString
|
824
|
+
# shippingHandling - SOAP::SOAPString
|
825
|
+
# subTotal - SOAP::SOAPString
|
826
|
+
# orderID - SOAP::SOAPString
|
827
|
+
# amount - SOAP::SOAPString
|
828
|
+
class PaymentDetails
|
829
|
+
include ROXML
|
830
|
+
xml_accessor :currency
|
831
|
+
xml_accessor :promoCode
|
832
|
+
xml_accessor :misc
|
833
|
+
xml_accessor :giftWrap
|
834
|
+
xml_accessor :discount
|
835
|
+
xml_accessor :tax
|
836
|
+
xml_accessor :shippingHandling
|
837
|
+
xml_accessor :subTotal
|
838
|
+
xml_accessor :orderID
|
839
|
+
xml_accessor :amount
|
840
|
+
|
841
|
+
def initialize(currency = nil, promoCode = nil, misc = nil, giftWrap = nil, discount = nil, tax = nil, shippingHandling = nil, subTotal = nil, orderID = nil, amount = nil)
|
842
|
+
@currency = currency
|
843
|
+
@promoCode = promoCode
|
844
|
+
@misc = misc
|
845
|
+
@giftWrap = giftWrap
|
846
|
+
@discount = discount
|
847
|
+
@tax = tax
|
848
|
+
@shippingHandling = shippingHandling
|
849
|
+
@subTotal = subTotal
|
850
|
+
@orderID = orderID
|
851
|
+
@amount = amount
|
852
|
+
end
|
853
|
+
end
|
780
854
|
# {AnetApi/xml/v1/schema/AnetApiSchema.xsd}paymentScheduleType
|
781
855
|
# interval - PaymentScheduleType::Interval
|
782
856
|
# startDate - SOAP::SOAPDate
|
@@ -885,26 +959,7 @@ module AuthorizeNet::API
|
|
885
959
|
end
|
886
960
|
end
|
887
961
|
|
888
|
-
|
889
|
-
# amount - SOAP::SOAPDecimal
|
890
|
-
# currencyCode - SOAP::SOAPString
|
891
|
-
# sequence - SOAP::SOAPString
|
892
|
-
# timestamp - SOAP::SOAPString
|
893
|
-
class FingerPrintSupportInformationType
|
894
|
-
include ROXML
|
895
|
-
xml_accessor :amount
|
896
|
-
xml_accessor :currencyCode
|
897
|
-
xml_accessor :sequence
|
898
|
-
xml_accessor :timestamp
|
899
|
-
|
900
|
-
def initialize(amount = nil, currencyCode = nil, sequence = nil, timestamp = nil)
|
901
|
-
@amount = amount
|
902
|
-
@currencyCode = currencyCode
|
903
|
-
@sequence = sequence
|
904
|
-
@timestamp = timestamp
|
905
|
-
end
|
906
|
-
end
|
907
|
-
|
962
|
+
|
908
963
|
# {AnetApi/xml/v1/schema/AnetApiSchema.xsd}settingType
|
909
964
|
# settingName - SOAP::SOAPString
|
910
965
|
# settingValue - SOAP::SOAPString
|
@@ -2120,7 +2175,7 @@ module AuthorizeNet::API
|
|
2120
2175
|
class ANetApiResponse
|
2121
2176
|
include ROXML
|
2122
2177
|
xml_accessor :refId
|
2123
|
-
xml_accessor :messages
|
2178
|
+
xml_accessor :messages, :as => MessagesType
|
2124
2179
|
xml_accessor :sessionToken
|
2125
2180
|
|
2126
2181
|
def initialize(refId = nil, messages = nil, sessionToken = nil)
|
@@ -2459,6 +2514,8 @@ module AuthorizeNet::API
|
|
2459
2514
|
EmailCustomer = SettingNameEnum.new("emailCustomer")
|
2460
2515
|
FooterEmailReceipt = SettingNameEnum.new("footerEmailReceipt")
|
2461
2516
|
HeaderEmailReceipt = SettingNameEnum.new("headerEmailReceipt")
|
2517
|
+
HostedProfileBillingAddressRequired = SettingNameEnum.new("hostedProfileBillingAddressRequired")
|
2518
|
+
HostedProfileCardCodeRequired = SettingNameEnum.new("hostedProfileCardCodeRequired")
|
2462
2519
|
HostedProfileHeadingBgColor = SettingNameEnum.new("hostedProfileHeadingBgColor")
|
2463
2520
|
HostedProfileIFrameCommunicatorUrl = SettingNameEnum.new("hostedProfileIFrameCommunicatorUrl")
|
2464
2521
|
HostedProfilePageBorderVisible = SettingNameEnum.new("hostedProfilePageBorderVisible")
|
@@ -2509,7 +2566,7 @@ module AuthorizeNet::API
|
|
2509
2566
|
class IsAliveResponse
|
2510
2567
|
include ROXML
|
2511
2568
|
xml_accessor :refId
|
2512
|
-
xml_accessor :messages
|
2569
|
+
xml_accessor :messages, :as => MessagesType
|
2513
2570
|
xml_accessor :sessionToken
|
2514
2571
|
|
2515
2572
|
def initialize(refId = nil, messages = nil, sessionToken = nil)
|
@@ -2540,7 +2597,7 @@ module AuthorizeNet::API
|
|
2540
2597
|
class AuthenticateTestResponse
|
2541
2598
|
include ROXML
|
2542
2599
|
xml_accessor :refId
|
2543
|
-
xml_accessor :messages
|
2600
|
+
xml_accessor :messages, :as => MessagesType
|
2544
2601
|
xml_accessor :sessionToken
|
2545
2602
|
|
2546
2603
|
def initialize(refId = nil, messages = nil, sessionToken = nil)
|
@@ -2575,7 +2632,7 @@ module AuthorizeNet::API
|
|
2575
2632
|
class ARBCreateSubscriptionResponse
|
2576
2633
|
include ROXML
|
2577
2634
|
xml_accessor :refId
|
2578
|
-
xml_accessor :messages
|
2635
|
+
xml_accessor :messages, :as => MessagesType
|
2579
2636
|
xml_accessor :sessionToken
|
2580
2637
|
xml_accessor :subscriptionId
|
2581
2638
|
|
@@ -2614,7 +2671,7 @@ module AuthorizeNet::API
|
|
2614
2671
|
class ARBUpdateSubscriptionResponse
|
2615
2672
|
include ROXML
|
2616
2673
|
xml_accessor :refId
|
2617
|
-
xml_accessor :messages
|
2674
|
+
xml_accessor :messages, :as => MessagesType
|
2618
2675
|
xml_accessor :sessionToken
|
2619
2676
|
|
2620
2677
|
def initialize(refId = nil, messages = nil, sessionToken = nil)
|
@@ -2648,7 +2705,7 @@ module AuthorizeNet::API
|
|
2648
2705
|
class ARBCancelSubscriptionResponse
|
2649
2706
|
include ROXML
|
2650
2707
|
xml_accessor :refId
|
2651
|
-
xml_accessor :messages
|
2708
|
+
xml_accessor :messages, :as => MessagesType
|
2652
2709
|
xml_accessor :sessionToken
|
2653
2710
|
|
2654
2711
|
def initialize(refId = nil, messages = nil, sessionToken = nil)
|
@@ -2683,7 +2740,7 @@ module AuthorizeNet::API
|
|
2683
2740
|
class ARBGetSubscriptionStatusResponse
|
2684
2741
|
include ROXML
|
2685
2742
|
xml_accessor :refId
|
2686
|
-
xml_accessor :messages
|
2743
|
+
xml_accessor :messages, :as => MessagesType
|
2687
2744
|
xml_accessor :sessionToken
|
2688
2745
|
xml_accessor :status
|
2689
2746
|
|
@@ -2726,7 +2783,7 @@ module AuthorizeNet::API
|
|
2726
2783
|
class CreateCustomerProfileResponse
|
2727
2784
|
include ROXML
|
2728
2785
|
xml_accessor :refId
|
2729
|
-
xml_accessor :messages
|
2786
|
+
xml_accessor :messages, :as => MessagesType
|
2730
2787
|
xml_accessor :sessionToken
|
2731
2788
|
xml_accessor :customerProfileId
|
2732
2789
|
xml_accessor :customerPaymentProfileIdList
|
@@ -2776,7 +2833,7 @@ module AuthorizeNet::API
|
|
2776
2833
|
class CreateCustomerPaymentProfileResponse
|
2777
2834
|
include ROXML
|
2778
2835
|
xml_accessor :refId
|
2779
|
-
xml_accessor :messages
|
2836
|
+
xml_accessor :messages, :as => MessagesType
|
2780
2837
|
xml_accessor :sessionToken
|
2781
2838
|
xml_accessor :customerPaymentProfileId
|
2782
2839
|
xml_accessor :validationDirectResponse
|
@@ -2818,7 +2875,7 @@ module AuthorizeNet::API
|
|
2818
2875
|
class CreateCustomerShippingAddressResponse
|
2819
2876
|
include ROXML
|
2820
2877
|
xml_accessor :refId
|
2821
|
-
xml_accessor :messages
|
2878
|
+
xml_accessor :messages, :as => MessagesType
|
2822
2879
|
xml_accessor :sessionToken
|
2823
2880
|
xml_accessor :customerAddressId
|
2824
2881
|
|
@@ -2872,7 +2929,7 @@ module AuthorizeNet::API
|
|
2872
2929
|
class GetCustomerProfileResponse
|
2873
2930
|
include ROXML
|
2874
2931
|
xml_accessor :refId
|
2875
|
-
xml_accessor :messages
|
2932
|
+
xml_accessor :messages, :as => MessagesType
|
2876
2933
|
xml_accessor :sessionToken
|
2877
2934
|
xml_accessor :profile
|
2878
2935
|
|
@@ -2912,7 +2969,7 @@ module AuthorizeNet::API
|
|
2912
2969
|
class GetCustomerPaymentProfileResponse
|
2913
2970
|
include ROXML
|
2914
2971
|
xml_accessor :refId
|
2915
|
-
xml_accessor :messages
|
2972
|
+
xml_accessor :messages, :as => MessagesType
|
2916
2973
|
xml_accessor :sessionToken
|
2917
2974
|
xml_accessor :paymentProfile
|
2918
2975
|
|
@@ -2952,7 +3009,7 @@ module AuthorizeNet::API
|
|
2952
3009
|
class GetCustomerShippingAddressResponse
|
2953
3010
|
include ROXML
|
2954
3011
|
xml_accessor :refId
|
2955
|
-
xml_accessor :messages
|
3012
|
+
xml_accessor :messages, :as => MessagesType
|
2956
3013
|
xml_accessor :sessionToken
|
2957
3014
|
xml_accessor :address
|
2958
3015
|
|
@@ -2988,7 +3045,7 @@ module AuthorizeNet::API
|
|
2988
3045
|
class UpdateCustomerProfileResponse
|
2989
3046
|
include ROXML
|
2990
3047
|
xml_accessor :refId
|
2991
|
-
xml_accessor :messages
|
3048
|
+
xml_accessor :messages, :as => MessagesType
|
2992
3049
|
xml_accessor :sessionToken
|
2993
3050
|
|
2994
3051
|
def initialize(refId = nil, messages = nil, sessionToken = nil)
|
@@ -3029,7 +3086,7 @@ module AuthorizeNet::API
|
|
3029
3086
|
class UpdateCustomerPaymentProfileResponse
|
3030
3087
|
include ROXML
|
3031
3088
|
xml_accessor :refId
|
3032
|
-
xml_accessor :messages
|
3089
|
+
xml_accessor :messages, :as => MessagesType
|
3033
3090
|
xml_accessor :sessionToken
|
3034
3091
|
xml_accessor :validationDirectResponse
|
3035
3092
|
|
@@ -3068,7 +3125,7 @@ module AuthorizeNet::API
|
|
3068
3125
|
class UpdateCustomerShippingAddressResponse
|
3069
3126
|
include ROXML
|
3070
3127
|
xml_accessor :refId
|
3071
|
-
xml_accessor :messages
|
3128
|
+
xml_accessor :messages, :as => MessagesType
|
3072
3129
|
xml_accessor :sessionToken
|
3073
3130
|
|
3074
3131
|
def initialize(refId = nil, messages = nil, sessionToken = nil)
|
@@ -3139,7 +3196,7 @@ module AuthorizeNet::API
|
|
3139
3196
|
class DeleteCustomerPaymentProfileResponse
|
3140
3197
|
include ROXML
|
3141
3198
|
xml_accessor :refId
|
3142
|
-
xml_accessor :messages
|
3199
|
+
xml_accessor :messages, :as => MessagesType
|
3143
3200
|
xml_accessor :sessionToken
|
3144
3201
|
|
3145
3202
|
def initialize(refId = nil, messages = nil, sessionToken = nil)
|
@@ -3176,7 +3233,7 @@ module AuthorizeNet::API
|
|
3176
3233
|
class DeleteCustomerShippingAddressResponse
|
3177
3234
|
include ROXML
|
3178
3235
|
xml_accessor :refId
|
3179
|
-
xml_accessor :messages
|
3236
|
+
xml_accessor :messages, :as => MessagesType
|
3180
3237
|
xml_accessor :sessionToken
|
3181
3238
|
|
3182
3239
|
def initialize(refId = nil, messages = nil, sessionToken = nil)
|
@@ -3215,7 +3272,7 @@ module AuthorizeNet::API
|
|
3215
3272
|
class CreateCustomerProfileTransactionResponse
|
3216
3273
|
include ROXML
|
3217
3274
|
xml_accessor :refId
|
3218
|
-
xml_accessor :messages
|
3275
|
+
xml_accessor :messages, :as => MessagesType
|
3219
3276
|
xml_accessor :sessionToken
|
3220
3277
|
xml_accessor :transactionResponse
|
3221
3278
|
xml_accessor :directResponse
|
@@ -3266,7 +3323,7 @@ module AuthorizeNet::API
|
|
3266
3323
|
class ValidateCustomerPaymentProfileResponse
|
3267
3324
|
include ROXML
|
3268
3325
|
xml_accessor :refId
|
3269
|
-
xml_accessor :messages
|
3326
|
+
xml_accessor :messages, :as => MessagesType
|
3270
3327
|
xml_accessor :sessionToken
|
3271
3328
|
xml_accessor :directResponse
|
3272
3329
|
|
@@ -3300,7 +3357,7 @@ module AuthorizeNet::API
|
|
3300
3357
|
class GetCustomerProfileIdsResponse
|
3301
3358
|
include ROXML
|
3302
3359
|
xml_accessor :refId
|
3303
|
-
xml_accessor :messages
|
3360
|
+
xml_accessor :messages, :as => MessagesType
|
3304
3361
|
xml_accessor :sessionToken
|
3305
3362
|
xml_accessor :ids
|
3306
3363
|
|
@@ -3339,7 +3396,7 @@ module AuthorizeNet::API
|
|
3339
3396
|
class UpdateSplitTenderGroupResponse
|
3340
3397
|
include ROXML
|
3341
3398
|
xml_accessor :refId
|
3342
|
-
xml_accessor :messages
|
3399
|
+
xml_accessor :messages, :as => MessagesType
|
3343
3400
|
xml_accessor :sessionToken
|
3344
3401
|
|
3345
3402
|
def initialize(refId = nil, messages = nil, sessionToken = nil)
|
@@ -3374,7 +3431,7 @@ module AuthorizeNet::API
|
|
3374
3431
|
class GetTransactionDetailsResponse
|
3375
3432
|
include ROXML
|
3376
3433
|
xml_accessor :refId
|
3377
|
-
xml_accessor :messages
|
3434
|
+
xml_accessor :messages, :as => MessagesType
|
3378
3435
|
xml_accessor :sessionToken
|
3379
3436
|
xml_accessor :transaction
|
3380
3437
|
|
@@ -3386,45 +3443,7 @@ module AuthorizeNet::API
|
|
3386
3443
|
end
|
3387
3444
|
end
|
3388
3445
|
|
3389
|
-
|
3390
|
-
# merchantAuthentication - MerchantAuthenticationType
|
3391
|
-
# refId - SOAP::SOAPString
|
3392
|
-
# supportInformation - FingerPrintSupportInformationType
|
3393
|
-
class CreateFingerPrintRequest
|
3394
|
-
include ROXML
|
3395
|
-
xml_accessor :merchantAuthentication
|
3396
|
-
xml_accessor :refId
|
3397
|
-
xml_accessor :supportInformation
|
3398
|
-
|
3399
|
-
def initialize(merchantAuthentication = nil, refId = nil, supportInformation = nil)
|
3400
|
-
@merchantAuthentication = merchantAuthentication
|
3401
|
-
@refId = refId
|
3402
|
-
@supportInformation = supportInformation
|
3403
|
-
end
|
3404
|
-
end
|
3405
|
-
|
3406
|
-
# {AnetApi/xml/v1/schema/AnetApiSchema.xsd}createFingerPrintResponse
|
3407
|
-
# refId - SOAP::SOAPString
|
3408
|
-
# messages - MessagesType
|
3409
|
-
# sessionToken - SOAP::SOAPString
|
3410
|
-
# fingerPrint - FingerPrintType
|
3411
|
-
# supportInformation - FingerPrintSupportInformationType
|
3412
|
-
class CreateFingerPrintResponse
|
3413
|
-
include ROXML
|
3414
|
-
xml_accessor :refId
|
3415
|
-
xml_accessor :messages
|
3416
|
-
xml_accessor :sessionToken
|
3417
|
-
xml_accessor :fingerPrint
|
3418
|
-
xml_accessor :supportInformation
|
3419
|
-
|
3420
|
-
def initialize(refId = nil, messages = nil, sessionToken = nil, fingerPrint = nil, supportInformation = nil)
|
3421
|
-
@refId = refId
|
3422
|
-
@messages = messages
|
3423
|
-
@sessionToken = sessionToken
|
3424
|
-
@fingerPrint = fingerPrint
|
3425
|
-
@supportInformation = supportInformation
|
3426
|
-
end
|
3427
|
-
end
|
3446
|
+
|
3428
3447
|
|
3429
3448
|
# {AnetApi/xml/v1/schema/AnetApiSchema.xsd}getBatchStatisticsRequest
|
3430
3449
|
# merchantAuthentication - MerchantAuthenticationType
|
@@ -3451,7 +3470,7 @@ module AuthorizeNet::API
|
|
3451
3470
|
class GetBatchStatisticsResponse
|
3452
3471
|
include ROXML
|
3453
3472
|
xml_accessor :refId
|
3454
|
-
xml_accessor :messages
|
3473
|
+
xml_accessor :messages, :as => MessagesType
|
3455
3474
|
xml_accessor :sessionToken
|
3456
3475
|
xml_accessor :batch
|
3457
3476
|
|
@@ -3494,7 +3513,7 @@ module AuthorizeNet::API
|
|
3494
3513
|
class GetSettledBatchListResponse
|
3495
3514
|
include ROXML
|
3496
3515
|
xml_accessor :refId
|
3497
|
-
xml_accessor :messages
|
3516
|
+
xml_accessor :messages, :as => MessagesType
|
3498
3517
|
xml_accessor :sessionToken
|
3499
3518
|
xml_accessor :batchList
|
3500
3519
|
|
@@ -3531,7 +3550,7 @@ module AuthorizeNet::API
|
|
3531
3550
|
class GetTransactionListResponse
|
3532
3551
|
include ROXML
|
3533
3552
|
xml_accessor :refId
|
3534
|
-
xml_accessor :messages
|
3553
|
+
xml_accessor :messages, :as => MessagesType
|
3535
3554
|
xml_accessor :sessionToken
|
3536
3555
|
xml_accessor :transactions
|
3537
3556
|
|
@@ -3571,7 +3590,7 @@ module AuthorizeNet::API
|
|
3571
3590
|
class GetHostedProfilePageResponse
|
3572
3591
|
include ROXML
|
3573
3592
|
xml_accessor :refId
|
3574
|
-
xml_accessor :messages
|
3593
|
+
xml_accessor :messages, :as => MessagesType
|
3575
3594
|
xml_accessor :sessionToken
|
3576
3595
|
xml_accessor :token
|
3577
3596
|
|
@@ -3605,7 +3624,7 @@ module AuthorizeNet::API
|
|
3605
3624
|
class GetUnsettledTransactionListResponse
|
3606
3625
|
include ROXML
|
3607
3626
|
xml_accessor :refId
|
3608
|
-
xml_accessor :messages
|
3627
|
+
xml_accessor :messages, :as => MessagesType
|
3609
3628
|
xml_accessor :sessionToken
|
3610
3629
|
xml_accessor :transactions
|
3611
3630
|
|
@@ -3641,7 +3660,7 @@ module AuthorizeNet::API
|
|
3641
3660
|
class MobileDeviceRegistrationResponse
|
3642
3661
|
include ROXML
|
3643
3662
|
xml_accessor :refId
|
3644
|
-
xml_accessor :messages
|
3663
|
+
xml_accessor :messages, :as => MessagesType
|
3645
3664
|
xml_accessor :sessionToken
|
3646
3665
|
|
3647
3666
|
def initialize(refId = nil, messages = nil, sessionToken = nil)
|
@@ -3675,7 +3694,7 @@ module AuthorizeNet::API
|
|
3675
3694
|
class MobileDeviceLoginResponse
|
3676
3695
|
include ROXML
|
3677
3696
|
xml_accessor :refId
|
3678
|
-
xml_accessor :messages
|
3697
|
+
xml_accessor :messages, :as => MessagesType
|
3679
3698
|
xml_accessor :sessionToken
|
3680
3699
|
xml_accessor :merchantContact
|
3681
3700
|
xml_accessor :userPermissions
|
@@ -3712,7 +3731,7 @@ module AuthorizeNet::API
|
|
3712
3731
|
class LogoutResponse
|
3713
3732
|
include ROXML
|
3714
3733
|
xml_accessor :refId
|
3715
|
-
xml_accessor :messages
|
3734
|
+
xml_accessor :messages, :as => MessagesType
|
3716
3735
|
xml_accessor :sessionToken
|
3717
3736
|
|
3718
3737
|
def initialize(refId = nil, messages = nil, sessionToken = nil)
|
@@ -3752,7 +3771,7 @@ module AuthorizeNet::API
|
|
3752
3771
|
class SendCustomerTransactionReceiptResponse
|
3753
3772
|
include ROXML
|
3754
3773
|
xml_accessor :refId
|
3755
|
-
xml_accessor :messages
|
3774
|
+
xml_accessor :messages, :as => MessagesType
|
3756
3775
|
xml_accessor :sessionToken
|
3757
3776
|
|
3758
3777
|
def initialize(refId = nil, messages = nil, sessionToken = nil)
|
@@ -3794,7 +3813,7 @@ module AuthorizeNet::API
|
|
3794
3813
|
class ARBGetSubscriptionListResponse
|
3795
3814
|
include ROXML
|
3796
3815
|
xml_accessor :refId
|
3797
|
-
xml_accessor :messages
|
3816
|
+
xml_accessor :messages, :as => MessagesType
|
3798
3817
|
xml_accessor :sessionToken
|
3799
3818
|
xml_accessor :totalNumInResultSet
|
3800
3819
|
xml_accessor :subscriptionDetails
|
@@ -3807,6 +3826,55 @@ module AuthorizeNet::API
|
|
3807
3826
|
@subscriptionDetails = subscriptionDetails
|
3808
3827
|
end
|
3809
3828
|
end
|
3829
|
+
|
3830
|
+
# {AnetApi/xml/v1/schema/AnetApiSchema.xsd}decryptPaymentDataRequest
|
3831
|
+
# merchantAuthentication - MerchantAuthenticationType
|
3832
|
+
# refId - SOAP::SOAPString
|
3833
|
+
# opaqueData - OpaqueDataType
|
3834
|
+
# callId - SOAP::SOAPString
|
3835
|
+
class DecryptPaymentDataRequest
|
3836
|
+
include ROXML
|
3837
|
+
xml_accessor :merchantAuthentication
|
3838
|
+
xml_accessor :refId
|
3839
|
+
xml_accessor :opaqueData, :as => OpaqueDataType
|
3840
|
+
xml_accessor :callId
|
3841
|
+
|
3842
|
+
def initialize(merchantAuthentication = nil, refId = nil, opaqueData = nil, callId = nil)
|
3843
|
+
@merchantAuthentication = merchantAuthentication
|
3844
|
+
@refId = refId
|
3845
|
+
@opaqueData = opaqueData
|
3846
|
+
@callId = callId
|
3847
|
+
end
|
3848
|
+
end
|
3849
|
+
|
3850
|
+
# {AnetApi/xml/v1/schema/AnetApiSchema.xsd}decryptPaymentDataResponse
|
3851
|
+
# refId - SOAP::SOAPString
|
3852
|
+
# messages - MessagesType
|
3853
|
+
# sessionToken - SOAP::SOAPString
|
3854
|
+
# shippingInfo - CustomerAddressType
|
3855
|
+
# billingInfo - CustomerAddressType
|
3856
|
+
# cardInfo - CreditCardMaskedType
|
3857
|
+
# paymentDetails - PaymentDetails
|
3858
|
+
class DecryptPaymentDataResponse
|
3859
|
+
include ROXML
|
3860
|
+
xml_accessor :refId
|
3861
|
+
xml_accessor :messages, :as => MessagesType
|
3862
|
+
xml_accessor :sessionToken
|
3863
|
+
xml_accessor :shippingInfo, :as => CustomerAddressType
|
3864
|
+
xml_accessor :billingInfo, :as => CustomerAddressType
|
3865
|
+
xml_accessor :cardInfo, :as => CreditCardMaskedType
|
3866
|
+
xml_accessor :paymentDetails, :as => PaymentDetails
|
3867
|
+
|
3868
|
+
def initialize(refId = nil, messages = nil, sessionToken = nil, shippingInfo = nil, billingInfo = nil, cardInfo = nil, paymentDetails = nil)
|
3869
|
+
@refId = refId
|
3870
|
+
@messages = messages
|
3871
|
+
@sessionToken = sessionToken
|
3872
|
+
@shippingInfo = shippingInfo
|
3873
|
+
@billingInfo = billingInfo
|
3874
|
+
@cardInfo = cardInfo
|
3875
|
+
@paymentDetails = paymentDetails
|
3876
|
+
end
|
3877
|
+
end
|
3810
3878
|
|
3811
3879
|
# {AnetApi/xml/v1/schema/AnetApiSchema.xsd}EnumCollection
|
3812
3880
|
# customerProfileSummaryType - CustomerProfileSummaryType
|
@@ -3853,6 +3921,7 @@ module AuthorizeNet::API
|
|
3853
3921
|
# payment - PaymentType
|
3854
3922
|
# profile - CustomerProfilePaymentType
|
3855
3923
|
# solution - SolutionType
|
3924
|
+
# callId - SOAP::SOAPString
|
3856
3925
|
# authCode - SOAP::SOAPString
|
3857
3926
|
# refTransId - SOAP::SOAPString
|
3858
3927
|
# splitTenderId - SOAP::SOAPString
|
@@ -3879,6 +3948,7 @@ module AuthorizeNet::API
|
|
3879
3948
|
xml_accessor :payment, :as => PaymentType
|
3880
3949
|
xml_accessor :profile, :as => CustomerProfilePaymentType
|
3881
3950
|
xml_accessor :solution, :as => SolutionType
|
3951
|
+
xml_accessor :callId
|
3882
3952
|
xml_accessor :authCode
|
3883
3953
|
xml_accessor :refTransId
|
3884
3954
|
xml_accessor :splitTenderId
|
@@ -3898,13 +3968,14 @@ module AuthorizeNet::API
|
|
3898
3968
|
xml_accessor :transactionSettings, :as => Settings
|
3899
3969
|
xml_accessor :userFields, :as => UserFields
|
3900
3970
|
|
3901
|
-
def initialize(transactionType = nil, amount = nil, currencyCode = nil, payment = nil, profile = nil, solution = nil, authCode = nil, refTransId = nil, splitTenderId = nil, order = nil, lineItems = nil, tax = nil, duty = nil, shipping = nil, taxExempt = nil, poNumber = nil, customer = nil, billTo = nil, shipTo = nil, customerIP = nil, cardholderAuthentication = nil, retail = nil, transactionSettings = nil, userFields = nil)
|
3971
|
+
def initialize(transactionType = nil, amount = nil, currencyCode = nil, payment = nil, profile = nil, solution = nil, callId = nil, authCode = nil, refTransId = nil, splitTenderId = nil, order = nil, lineItems = nil, tax = nil, duty = nil, shipping = nil, taxExempt = nil, poNumber = nil, customer = nil, billTo = nil, shipTo = nil, customerIP = nil, cardholderAuthentication = nil, retail = nil, transactionSettings = nil, userFields = nil)
|
3902
3972
|
@transactionType = transactionType
|
3903
3973
|
@amount = amount
|
3904
3974
|
@currencyCode = currencyCode
|
3905
3975
|
@payment = payment
|
3906
3976
|
@profile = profile
|
3907
3977
|
@solution = solution
|
3978
|
+
@callId = callId
|
3908
3979
|
@authCode = authCode
|
3909
3980
|
@refTransId = refTransId
|
3910
3981
|
@splitTenderId = splitTenderId
|
@@ -30,5 +30,20 @@ module AuthorizeNet::API
|
|
30
30
|
def delete_customer_profile(request)
|
31
31
|
make_request(request,DeleteCustomerProfileResponse,Type::API_DELETE_CUSTOMER_PROFILE)
|
32
32
|
end
|
33
|
+
|
34
|
+
# This request enables you to decrypt a payment data blob.
|
35
|
+
#
|
36
|
+
# See spec/api_spec.rb for usage examples
|
37
|
+
def decrypt_payment_data(request)
|
38
|
+
make_request(request,DecryptPaymentDataResponse,Type::API_DECRYPT_PAYMENT_DATA)
|
39
|
+
end
|
40
|
+
|
41
|
+
# This request enables confirm authentication values
|
42
|
+
#
|
43
|
+
# See spec/api_spec.rb for usage examples
|
44
|
+
def authenticate_test_request(request)
|
45
|
+
make_request(request,AuthenticateTestResponse,Type::API_AUTHENTICATE_TEST_REQUEST)
|
46
|
+
end
|
47
|
+
|
33
48
|
end
|
34
49
|
end
|
data/lib/authorize_net/fields.rb
CHANGED
@@ -390,7 +390,7 @@ module AuthorizeNet
|
|
390
390
|
{:bankRoutingNumberMasked => :bank_aba_code_masked},
|
391
391
|
{:bankAccountNumberMasked => :bank_acct_num_masked},
|
392
392
|
{:order => [
|
393
|
-
{:invoiceNumber => :
|
393
|
+
{:invoiceNumber => :invoice_num},
|
394
394
|
{:description => :description},
|
395
395
|
{:purchaseOrderNumber => :po_num}
|
396
396
|
]},
|
@@ -52,6 +52,16 @@ module AuthorizeNet::Reporting
|
|
52
52
|
unless invoice_number.nil?
|
53
53
|
transaction.order = AuthorizeNet::Order.new(:invoice_num => invoice_number)
|
54
54
|
end
|
55
|
+
subscription = child.at_css('subscription')
|
56
|
+
unless subscription.nil?
|
57
|
+
subscription_id = node_content_unless_nil(child.at_css('subscription').at_css('id'))
|
58
|
+
transaction.subscription_id = subscription_id unless subscription_id.nil?
|
59
|
+
|
60
|
+
pay_num = node_content_unless_nil(child.at_css('subscription').at_css('payNum'))
|
61
|
+
transaction.subscription_paynum = pay_num unless pay_num.nil?
|
62
|
+
end
|
63
|
+
|
64
|
+
|
55
65
|
transactions <<= transaction
|
56
66
|
end
|
57
67
|
end
|
@@ -25,7 +25,7 @@ module AuthorizeNet::Reporting
|
|
25
25
|
if id.kind_of?(AuthorizeNet::Reporting::ReturnedItem)
|
26
26
|
returned_item = id
|
27
27
|
else
|
28
|
-
returned_item = AuthorizeNet::Reporting::ReturnedItem.new({:return_item_id => id, :return_item_date_utc => date_utc, :
|
28
|
+
returned_item = AuthorizeNet::Reporting::ReturnedItem.new({:return_item_id => id, :return_item_date_utc => date_utc, :return_item_date_local => date_local, :return_item_code => code, :line_item_description => description})
|
29
29
|
end
|
30
30
|
@returned_items = @returned_items.to_a << returned_item
|
31
31
|
end
|
@@ -43,4 +43,4 @@ module AuthorizeNet::Reporting
|
|
43
43
|
hash
|
44
44
|
end
|
45
45
|
end
|
46
|
-
end
|
46
|
+
end
|
metadata
CHANGED
@@ -1,35 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: authorizenet
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.8.
|
4
|
+
version: 1.8.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Authorize.Net
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2015-06-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: nokogiri
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.6'
|
17
20
|
- - ">="
|
18
21
|
- !ruby/object:Gem::Version
|
19
22
|
version: 1.6.4
|
20
|
-
- - "<"
|
21
|
-
- !ruby/object:Gem::Version
|
22
|
-
version: 1.6.5
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
26
26
|
requirements:
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '1.6'
|
27
30
|
- - ">="
|
28
31
|
- !ruby/object:Gem::Version
|
29
32
|
version: 1.6.4
|
30
|
-
- - "<"
|
31
|
-
- !ruby/object:Gem::Version
|
32
|
-
version: 1.6.5
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: roxml
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -174,7 +174,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
174
174
|
version: 1.3.6
|
175
175
|
requirements: []
|
176
176
|
rubyforge_project:
|
177
|
-
rubygems_version: 2.
|
177
|
+
rubygems_version: 2.2.2
|
178
178
|
signing_key:
|
179
179
|
specification_version: 4
|
180
180
|
summary: Authorize.Net Payments SDK
|