Version Notes
FIXED: class 'SnsMessageValidator' not found issue when accessing IPN endpoint
Download this release
Release Info
Developer | creativestyle GmbH |
Extension | Creativestyle_AmazonPayments |
Version | 1.2.6.1 |
Comparing to | |
See all releases |
Code changes from version 1.2.6 to 1.2.6.1
- app/code/community/Creativestyle/AmazonPayments/Helper/Debug.php +7 -2
- app/code/community/Creativestyle/AmazonPayments/Model/Autoload.php +75 -0
- app/code/community/Creativestyle/AmazonPayments/Model/Observer.php +9 -0
- app/code/community/Creativestyle/AmazonPayments/etc/config.xml +19 -1
- package.xml +5 -7
app/code/community/Creativestyle/AmazonPayments/Helper/Debug.php
CHANGED
@@ -50,10 +50,10 @@ class Creativestyle_AmazonPayments_Helper_Debug extends Mage_Core_Helper_Abstrac
|
|
50 |
'amazonpayments/general/sandbox' => array($this, '_convertToBool'),
|
51 |
'amazonpayments/general/sandbox_toolbox' => array($this, '_convertToBool'),
|
52 |
'amazonpayments/general/ipn_active' => array($this, '_convertToBool'),
|
53 |
-
'amazonpayments/
|
54 |
'amazonpayments/email/order_confirmation' => array($this, '_convertToBool'),
|
|
|
55 |
'amazonpayments/developer/log_active' => array($this, '_convertToBool'),
|
56 |
-
'amazonpayments/developer/log_availability' => array($this, '_convertToBool')
|
57 |
);
|
58 |
}
|
59 |
|
@@ -207,6 +207,7 @@ class Creativestyle_AmazonPayments_Helper_Debug extends Mage_Core_Helper_Abstrac
|
|
207 |
'Pay with Amazon SDK library version' => OffAmazonPaymentsService_Client::APPLICATION_LIBRARY_VERSION,
|
208 |
'Magento version' => trim(Mage::getVersion() . ' ' . $this->_getMagentoEdition()),
|
209 |
'PHP version' => PHP_VERSION,
|
|
|
210 |
'Current timestamp' => $this->_getCurrentTimestamp() . ' <em><' . Mage::getSingleton('core/date')->date("Y-m-d H:i:s", $this->_getCurrentTimestamp()) . '></em>'
|
211 |
);
|
212 |
}
|
@@ -384,12 +385,16 @@ class Creativestyle_AmazonPayments_Helper_Debug extends Mage_Core_Helper_Abstrac
|
|
384 |
public function getDebugData($debugArea = null) {
|
385 |
if (null === $this->_debugData) {
|
386 |
$this->_debugData = array(
|
|
|
387 |
'general' => $this->_getGeneralDebugData(),
|
388 |
'stores' => $this->_getStoreData(),
|
389 |
'amazon_account' => $this->_getConfigData('amazonpayments/account'),
|
390 |
'amazon_general' => $this->_getConfigData('amazonpayments/general'),
|
|
|
391 |
'amazon_email' => $this->_getConfigData('amazonpayments/email'),
|
392 |
'amazon_design' => $this->_getConfigData('amazonpayments/design'),
|
|
|
|
|
393 |
'amazon_developer' => $this->_getConfigData('amazonpayments/developer'),
|
394 |
'magento_general' => $this->_getMagentoGeneralData(),
|
395 |
'cronjobs' => $this->_getCronjobsData(),
|
50 |
'amazonpayments/general/sandbox' => array($this, '_convertToBool'),
|
51 |
'amazonpayments/general/sandbox_toolbox' => array($this, '_convertToBool'),
|
52 |
'amazonpayments/general/ipn_active' => array($this, '_convertToBool'),
|
53 |
+
'amazonpayments/login/active' => array($this, '_convertToBool'),
|
54 |
'amazonpayments/email/order_confirmation' => array($this, '_convertToBool'),
|
55 |
+
'amazonpayments/design/responsive' => array($this, '_convertToBool'),
|
56 |
'amazonpayments/developer/log_active' => array($this, '_convertToBool'),
|
|
|
57 |
);
|
58 |
}
|
59 |
|
207 |
'Pay with Amazon SDK library version' => OffAmazonPaymentsService_Client::APPLICATION_LIBRARY_VERSION,
|
208 |
'Magento version' => trim(Mage::getVersion() . ' ' . $this->_getMagentoEdition()),
|
209 |
'PHP version' => PHP_VERSION,
|
210 |
+
'Magento Compiler enabled' => defined('COMPILER_INCLUDE_PATH'),
|
211 |
'Current timestamp' => $this->_getCurrentTimestamp() . ' <em><' . Mage::getSingleton('core/date')->date("Y-m-d H:i:s", $this->_getCurrentTimestamp()) . '></em>'
|
212 |
);
|
213 |
}
|
385 |
public function getDebugData($debugArea = null) {
|
386 |
if (null === $this->_debugData) {
|
387 |
$this->_debugData = array(
|
388 |
+
'type' => 'APA',
|
389 |
'general' => $this->_getGeneralDebugData(),
|
390 |
'stores' => $this->_getStoreData(),
|
391 |
'amazon_account' => $this->_getConfigData('amazonpayments/account'),
|
392 |
'amazon_general' => $this->_getConfigData('amazonpayments/general'),
|
393 |
+
'amazon_login' => $this->_getConfigData('amazonpayments/login'),
|
394 |
'amazon_email' => $this->_getConfigData('amazonpayments/email'),
|
395 |
'amazon_design' => $this->_getConfigData('amazonpayments/design'),
|
396 |
+
'amazon_design_login' => $this->_getConfigData('amazonpayments/design_login'),
|
397 |
+
'amazon_design_pay' => $this->_getConfigData('amazonpayments/design_pay'),
|
398 |
'amazon_developer' => $this->_getConfigData('amazonpayments/developer'),
|
399 |
'magento_general' => $this->_getMagentoGeneralData(),
|
400 |
'cronjobs' => $this->_getCronjobsData(),
|
app/code/community/Creativestyle/AmazonPayments/Model/Autoload.php
ADDED
@@ -0,0 +1,75 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* This file is part of the official Amazon Payments Advanced extension
|
5 |
+
* for Magento (c) creativestyle GmbH <amazon@creativestyle.de>
|
6 |
+
* All rights reserved
|
7 |
+
*
|
8 |
+
* Reuse or modification of this source code is not allowed
|
9 |
+
* without written permission from creativestyle GmbH
|
10 |
+
*
|
11 |
+
* @category Creativestyle
|
12 |
+
* @package Creativestyle_AmazonPayments
|
13 |
+
* @copyright Copyright (c) 2014 creativestyle GmbH
|
14 |
+
* @author Marek Zabrowarny / creativestyle GmbH <amazon@creativestyle.de>
|
15 |
+
*/
|
16 |
+
class Creativestyle_AmazonPayments_Model_Autoload {
|
17 |
+
|
18 |
+
const SCOPE_FILE_PREFIX = '__';
|
19 |
+
|
20 |
+
static protected $_instance;
|
21 |
+
|
22 |
+
protected $_isIncludePathDefined= null;
|
23 |
+
|
24 |
+
/**
|
25 |
+
* Class constructor
|
26 |
+
*/
|
27 |
+
public function __construct()
|
28 |
+
{
|
29 |
+
$this->_isIncludePathDefined = defined('COMPILER_INCLUDE_PATH');
|
30 |
+
}
|
31 |
+
|
32 |
+
/**
|
33 |
+
* Singleton pattern implementation
|
34 |
+
*
|
35 |
+
* @return Varien_Autoload
|
36 |
+
*/
|
37 |
+
static public function instance()
|
38 |
+
{
|
39 |
+
if (!self::$_instance) {
|
40 |
+
self::$_instance = new Creativestyle_AmazonPayments_Model_Autoload();
|
41 |
+
}
|
42 |
+
return self::$_instance;
|
43 |
+
}
|
44 |
+
|
45 |
+
/**
|
46 |
+
* Register SPL autoload function
|
47 |
+
*/
|
48 |
+
static public function register()
|
49 |
+
{
|
50 |
+
spl_autoload_register(array(self::instance(), 'autoload'));
|
51 |
+
}
|
52 |
+
|
53 |
+
/**
|
54 |
+
* Load class source code
|
55 |
+
*
|
56 |
+
* @param string $class
|
57 |
+
*/
|
58 |
+
public function autoload($class)
|
59 |
+
{
|
60 |
+
if (in_array($class, array('Certificate', 'Message',
|
61 |
+
'SnsMessageParser', 'VerifySignature', 'IpnNotificationParser',
|
62 |
+
'OpenSslVerifySignature', 'SnsMessageValidator',
|
63 |
+
'XmlNotificationParser'
|
64 |
+
))) {
|
65 |
+
$classArray = array('OffAmazonPaymentsNotifications', 'Impl', $class . '.php');
|
66 |
+
if ($this->_isIncludePathDefined) {
|
67 |
+
$classFile = COMPILER_INCLUDE_PATH . DIRECTORY_SEPARATOR . implode('_', $classArray);
|
68 |
+
} else {
|
69 |
+
$classFile = implode(DIRECTORY_SEPARATOR, $classArray);
|
70 |
+
}
|
71 |
+
return include $classFile;
|
72 |
+
}
|
73 |
+
}
|
74 |
+
|
75 |
+
}
|
app/code/community/Creativestyle/AmazonPayments/Model/Observer.php
CHANGED
@@ -18,6 +18,7 @@ class Creativestyle_AmazonPayments_Model_Observer {
|
|
18 |
const DATA_POLL_TRANSACTION_LIMIT = 36;
|
19 |
const DATA_POLL_SLEEP_BETWEEN_TIME = 300000;
|
20 |
|
|
|
21 |
|
22 |
|
23 |
// **********************************************************************
|
@@ -110,6 +111,14 @@ class Creativestyle_AmazonPayments_Model_Observer {
|
|
110 |
// **********************************************************************
|
111 |
// Event observers
|
112 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
113 |
/**
|
114 |
* Inject Authorize button to the admin order view page
|
115 |
*
|
18 |
const DATA_POLL_TRANSACTION_LIMIT = 36;
|
19 |
const DATA_POLL_SLEEP_BETWEEN_TIME = 300000;
|
20 |
|
21 |
+
static private $_autoloadAdded = false;
|
22 |
|
23 |
|
24 |
// **********************************************************************
|
111 |
// **********************************************************************
|
112 |
// Event observers
|
113 |
|
114 |
+
public function addAmazonAutoloader($observer) {
|
115 |
+
if (!self::$_autoloadAdded) {
|
116 |
+
Creativestyle_AmazonPayments_Model_Autoload::register();
|
117 |
+
self::$_autoloadAdded = true;
|
118 |
+
}
|
119 |
+
return $this;
|
120 |
+
}
|
121 |
+
|
122 |
/**
|
123 |
* Inject Authorize button to the admin order view page
|
124 |
*
|
app/code/community/Creativestyle/AmazonPayments/etc/config.xml
CHANGED
@@ -17,7 +17,7 @@
|
|
17 |
<config>
|
18 |
<modules>
|
19 |
<Creativestyle_AmazonPayments>
|
20 |
-
<version>1.2.6</version>
|
21 |
</Creativestyle_AmazonPayments>
|
22 |
</modules>
|
23 |
<global>
|
@@ -103,6 +103,24 @@
|
|
103 |
</amazonpayments_advanced_observer>
|
104 |
</observers>
|
105 |
</sales_order_payment_transaction_save_after>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
106 |
</events>
|
107 |
<payment>
|
108 |
<groups>
|
17 |
<config>
|
18 |
<modules>
|
19 |
<Creativestyle_AmazonPayments>
|
20 |
+
<version>1.2.6.1</version>
|
21 |
</Creativestyle_AmazonPayments>
|
22 |
</modules>
|
23 |
<global>
|
103 |
</amazonpayments_advanced_observer>
|
104 |
</observers>
|
105 |
</sales_order_payment_transaction_save_after>
|
106 |
+
<resource_get_tablename>
|
107 |
+
<observers>
|
108 |
+
<amazonpayments_advanced_observer>
|
109 |
+
<type>singleton</type>
|
110 |
+
<class>Creativestyle_AmazonPayments_Model_Observer</class>
|
111 |
+
<method>addAmazonAutoloader</method>
|
112 |
+
</amazonpayments_advanced_observer>
|
113 |
+
</observers>
|
114 |
+
</resource_get_tablename>
|
115 |
+
<add_spl_autoloader>
|
116 |
+
<observers>
|
117 |
+
<amazonpayments_advanced_observer>
|
118 |
+
<type>singleton</type>
|
119 |
+
<class>Creativestyle_AmazonPayments_Model_Observer</class>
|
120 |
+
<method>addAmazonAutoloader</method>
|
121 |
+
</amazonpayments_advanced_observer>
|
122 |
+
</observers>
|
123 |
+
</add_spl_autoloader>
|
124 |
</events>
|
125 |
<payment>
|
126 |
<groups>
|
package.xml
CHANGED
@@ -1,20 +1,18 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Creativestyle_AmazonPayments</name>
|
4 |
-
<version>1.2.6</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://creativecommons.org/licenses/by-nd/4.0/">Creative Commons Attribution-NoDerivatives 4.0 International</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Integration of your Magento shop with Login and Pay with Amazon service</summary>
|
10 |
<description>This extension provides an official integration of your Magento store with Login and Pay with Amazon service. It helps your customers shop quickly, safely and securely. Your customers can pay on your website without re-entering their payment and address details. All Amazon transactions are protected by Amazon's A-to-z Guarantee.</description>
|
11 |
-
<notes>
|
12 |
-
FIXED: accesing settings page issue in Magento lower than 1.7.0.1
|
13 |
-
FIXED: Magento compiler compatibility issue</notes>
|
14 |
<authors><author><name>creativestyle GmbH</name><user>creativestyle</user><email>amazon@creativestyle.de</email></author></authors>
|
15 |
-
<date>2014-10-
|
16 |
-
<time>
|
17 |
-
<contents><target name="magecommunity"><dir name="Creativestyle"><dir name="AmazonPayments"><dir name="Block"><file name="Abstract.php" hash="a8879b92a7537e5c443f3488a22787fe"/><dir name="Adminhtml"><file name="CredentialsValidator.php" hash="bb62c178c7bba1dd30fa16f22394ec85"/><dir name="Debug"><dir name="Section"><file name="Table.php" hash="f6947e99e982164a220e3d82fa0f988f"/></dir><file name="Section.php" hash="a249d2fedeaa5e485e40ffaeeb0335c6"/></dir><file name="Debug.php" hash="cc798f2987cc0dffc755a88988b74912"/><file name="Info.php" hash="be764b1856eccc2b3070a1ea4cfe57f7"/><file name="IpnUrl.php" hash="dc185fbffc8851d0031769e9a623ddda"/><dir name="Log"><file name="Abstract.php" hash="02887066c2d6973141dff769b385d8fa"/><dir name="Api"><file name="Grid.php" hash="8d072ba9ce4be99222c03a26680d51eb"/><file name="View.php" hash="eb30544643fa9571a454a763111d0113"/></dir><file name="Api.php" hash="5ea0736c83de5feb01df0a3ec4db4d80"/><dir name="Exception"><file name="Grid.php" hash="3c3decb0a90638d5e2b1617426ec9437"/><file name="View.php" hash="cae17d2a2d5716e8dde1c6662397131e"/></dir><file name="Exception.php" hash="c35dafcaf89ca709394341394862f4cf"/><dir name="Ipn"><file name="Grid.php" hash="74bb51ab562b09d42bd9ced6d6609ae1"/><file name="View.php" hash="6ab63414642658e95258a73a143e6955"/></dir><file name="Ipn.php" hash="a2225b081ccb354bfe94b4a646b0d521"/><dir name="View"><file name="Abstract.php" hash="0a4c977a1f89622148bdc6acc037fc1f"/></dir></dir><dir name="Renderer"><file name="Timestamp.php" hash="190325613c20e2cf97adc28950658e99"/></dir><dir name="Sales"><file name="Order.php" hash="45a5ee919501a2bf26160d38dafccd44"/></dir></dir><dir name="Button"><file name="Js.php" hash="16b7b49b8c16da0a783104acc3a2b7d2"/></dir><dir name="Checkout"><file name="Abstract.php" hash="db5cf0b3d9dd37ad4552987b9df5e09c"/><file name="Js.php" hash="afaf494ccbd59a780c4d5079abf68bdd"/><file name="Notice.php" hash="3bd2869322fac80a80436f8e2daa8d70"/><file name="SandboxToolbox.php" hash="047b1bfde3f5469195b9a7ccfee3f16d"/></dir><file name="Checkout.php" hash="2f5dfbc18879c9a9c6d4dc84ac54eb9e"/><file name="Head.php" hash="3a0e8a708cff9b769b68dcd48dbac274"/><dir name="Login"><file name="Abstract.php" hash="b84dfbbe66bbee39a547d33e856b4a8d"/><dir name="Account"><file name="Confirm.php" hash="ae8123a65a717a0046aaf1d9dc21f878"/><file name="Update.php" hash="8fdadae9294b17fbb0989f8d0e2016a4"/></dir><file name="Button.php" hash="bad55de20f480d53a15ddedd551ff6dd"/><file name="Head.php" hash="8e2f097d5c170aba4c1f11973463181a"/><file name="Logout.php" hash="79701fe73b6ad3e32b5f75367dd8bcd0"/></dir><dir name="Onepage"><file name="Button.php" hash="b122db0163e8580f42679f13a3a45726"/></dir><dir name="Pay"><file name="Abstract.php" hash="2e96e1d4a1a0e2c74cee40a46a75241c"/><file name="Button.php" hash="b76cbc47c91b88ceb9fc1fde609fa2dc"/></dir><dir name="Payment"><file name="Info.php" hash="c6285a5688834b456765317d3471bf2a"/></dir></dir><file name="Exception.php" hash="ca655a29842b38dd2ebf438208a6c70c"/><dir name="Helper"><file name="Data.php" hash="07d5ae485061f4edf314899291f11e28"/><file name="Debug.php" hash="7e99e99d3f73c9c0199e409f83220157"/></dir><dir name="Model"><dir name="Api"><file name="Abstract.php" hash="1814fcd0d61599f15d808d9c2990ebe4"/><file name="Advanced.php" hash="f07d08dc5ca8fa80d2684a7726496a6e"/><file name="Ipn.php" hash="7796776a38fe90b9805cbd88094a773d"/><file name="Login.php" hash="1d3ed64e3d7e10128780bf07fb334867"/></dir><file name="Checkout.php" hash="5aabd463b8e45f9390a7719d7c730c8d"/><file name="Config.php" hash="5ea50ded4beaf93e5e1fe1aad282ec5e"/><dir name="Log"><file name="Collection.php" hash="13d71847c4e164af18636a3fe5bf975b"/></dir><file name="Logger.php" hash="0821a7d8ddeea993fe3ad9495ef6f9d9"/><dir name="Lookup"><file name="Abstract.php" hash="443bbef12f4e7c896e54cf0b7463e04e"/><dir name="Design"><dir name="Button"><dir name="Color"><file name="LoginPay.php" hash="e9a469e82c7805782cf7694c4d50af7a"/></dir><file name="Color.php" hash="81a33471dfefb27897f7b1ff19749671"/><dir name="Size"><file name="LoginPay.php" hash="6cdf3d3633617994783a38f30add86fe"/></dir><file name="Size.php" hash="7c73a97a0fa3f4c6a73b838c0594ad5c"/><dir name="Type"><file name="Login.php" hash="44e852189b0305bbe4cc38848316d4e6"/><file name="Pay.php" hash="5e6f65d1e355ed265787b28b12c6e7a6"/></dir></dir></dir><file name="Frequency.php" hash="5115fb39b48781e5e97f9b62414a72cc"/><file name="IpnActive.php" hash="b73000f5bfc1e26b80911e125e9eec46"/><file name="PaymentAction.php" hash="6d0c15996ec3caf112d88e07ea703bb4"/><file name="Region.php" hash="8f5cc8ab970aa165e16085368b320f89"/></dir><file name="Manager.php" hash="3deaebb7cc0d613c63470d866d7aafb7"/><file name="Observer.php" hash="6f550935cc3dd943a26c37bf245f50c0"/><dir name="Payment"><file name="Abstract.php" hash="5667d8b7b4eae1f3b29e8fc6c043b9ce"/><dir name="Advanced"><file name="Abstract.php" hash="5f6d0e84f0cb051d0515aa5c3241be74"/><file name="Sandbox.php" hash="a1509cd32ad92e6e6d3a8f348be1d3bb"/></dir><file name="Advanced.php" hash="72006ba9aaa96486f6d7505814ffaf54"/></dir><dir name="Service"><file name="Login.php" hash="3ba988940839a636e6b42070db99e41e"/><file name="Quote.php" hash="3f83d1e1b1c6e19e0e23cb1a8c8b41f5"/></dir><file name="Simulator.php" hash="be19c4b71f46f3251455c497aeb407f6"/><dir name="System"><dir name="Config"><dir name="Backend"><dir name="DataPolling"><file name="Cron.php" hash="c3d3009775702bee14da3695f0d41f68"/></dir></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="DebugController.php" hash="28e0ddedf23912140158d100339bdbe8"/><file name="DocumentationController.php" hash="4e214386e032b2e513dda5a26344fd87"/><dir name="Log"><file name="ApiController.php" hash="e0a9181f57223d3ba722982572c1d003"/><file name="ExceptionController.php" hash="5daaa04ec6479396edfb1f62910f4ad3"/><file name="IpnController.php" hash="f00870c68a6b18d460c59d0b76d4a67d"/></dir><file name="OrderController.php" hash="1293b8aa3851f09b7559306e37a6a6ea"/><file name="SystemController.php" hash="52c60fa39dba8582b4ca81c2f065dbc5"/></dir><dir name="Advanced"><file name="CheckoutController.php" hash="4b0f052d67439041bf68a6b7229ee59a"/><file name="IpnController.php" hash="0d8a52a891d493870dd1081f9a407170"/><file name="LoginController.php" hash="d636ea6b2e3033615d877a87f37abfb2"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="2dc1b70997469f8f0cd6a80eff845842"/><file name="config.xml" hash="7c20385c47e830029c804263dd1a5ebe"/><file name="system.xml" hash="d8004b1e1d07523825f81a5282999623"/></dir><dir name="sql"><dir name="amazonpayments_setup"><file name="mysql4-install-1.0.0.php" hash="d4681b9a39905cc9e9dcc660688dea85"/><file name="mysql4-upgrade-1.1.6-1.2.0.php" hash="27f8e108bac4268d3c17e812b413dbbc"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="amazonpayments.xml" hash="4bc12228bba39bd925ed129d7cf64258"/></dir><dir name="template"><dir name="creativestyle"><dir name="amazonpayments"><dir name="advanced"><file name="documentation.phtml" hash="af3ae6ebce4712dd8fb972bef508ca55"/><dir name="log"><dir name="api"><file name="view.phtml" hash="92e2a91aa6f25e20fe8e89bad751e8cf"/></dir><dir name="exception"><file name="view.phtml" hash="c5d01f6de86e47d4da5dfabd60b1b382"/></dir><file name="js.phtml" hash="eb1d2098440a0bac2a6f5b959afa3693"/><dir name="notification"><file name="view.phtml" hash="31d893106f7c7c7f94f05d5cafa36440"/></dir></dir></dir><dir name="debug"><dir name="section"><file name="table.phtml" hash="f4bb8e35b3608cf0639407a3461c3717"/></dir><file name="section.phtml" hash="1472da0e9f07b5583a02e327483d4d75"/></dir><file name="debug.phtml" hash="9748d4fe92986f36ad47ae5b61fc4883"/><file name="info.phtml" hash="8f58e70d3d5974c60d182450b424e521"/><file name="init.phtml" hash="ba9d53045077e63b4e6c25c6b7bb685c"/><dir name="payment"><file name="info.phtml" hash="200af8569ab7792e7f16c5f4a93c6897"/><dir name="pdf"><file name="info.phtml" hash="1fb213f3fcc3aeecaa6305c07cff3b73"/></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="amazonpayments.xml" hash="97aa4f974470707e890c72454b468c0d"/></dir><dir name="template"><dir name="creativestyle"><dir name="amazonpayments"><dir name="button"><file name="js.phtml" hash="ff2502a96e1edfe14c2777efb738ef21"/><file name="tooltip.phtml" hash="6e430b0cba211ae63f69df86d943f9ee"/></dir><dir name="checkout"><file name="capture_notice.phtml" hash="f9c75cd05a596d0a16c55f0169b4ee6c"/><file name="js.phtml" hash="d9ca7b6c98e1521b2f7be308261596a2"/><dir name="review"><file name="button.phtml" hash="1312572385c9ff653d283bb0c3f47b1b"/></dir><file name="sandbox_toolbox.phtml" hash="ff639266f99827e3ec3a9e8305bd7eb7"/><file name="shipping_method.phtml" hash="8a8c97b4eb2a7c8cfc8248bd499b95eb"/></dir><file name="checkout.phtml" hash="083f3118e3e9665eda2851b285c7815d"/><file name="head.phtml" hash="271adf18a0fa0da90dce2d0f5c6ef4d7"/><dir name="login"><dir name="button"><file name="account_login.phtml" hash="0ce9b9d891af3f6c5b1c83a17d311e6b"/></dir><file name="button.phtml" hash="b5d66280337ecc895ae9a2bc48c469e4"/><dir name="form"><file name="account_confirm.phtml" hash="cff4c9f656b2e790bd65723d4e2042b9"/><file name="account_update.phtml" hash="64fdc50df3b3c49384d5d50a1da82d4d"/></dir><file name="head.phtml" hash="dfe0af795b7075a22cf2b0865e94df61"/><file name="logout.phtml" hash="066465552b22eb23867e641fba7f7f96"/></dir><dir name="onepage"><file name="button.phtml" hash="95e053ca57f36df23180af93b77a6557"/></dir><dir name="pay"><file name="button.phtml" hash="dfcccab45794c81d2d3ca52f709019d4"/></dir><dir name="payment"><file name="info.phtml" hash="3631896707e596d9675f526a7d021617"/><dir name="pdf"><file name="info.phtml" hash="69549bf3340c19d62f42a556f13e8a1e"/></dir></dir></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Creativestyle_AmazonPayments.xml" hash="3d30f68b24829494a2a66164eba0e5f7"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Creativestyle_AmazonPayments.csv" hash="f2bae0bb7e9c61e2692b6f9e9d698f61"/><dir name="template"><dir name="email"><file name="amazon_payments_failed.html" hash="ad694ba24051f779698d483bc32d9b75"/></dir></dir></dir><dir name="en_GB"><file name="Creativestyle_AmazonPayments.csv" hash="97121388fa441b1779504845ea98c159"/><dir name="template"><dir name="email"><file name="amazon_payments_failed.html" hash="1a933579acb1fbb3d78ae47ca990521b"/></dir></dir></dir><dir name="de_DE"><file name="Creativestyle_AmazonPayments.csv" hash="5c61c08241a8ce7dcd891e2fe0f16606"/><dir name="template"><dir name="email"><file name="amazon_payments_failed.html" hash="4879ccbfbea101548700da52b058bd0b"/></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="creativestyle"><file name="apa_checkout.min.js" hash="ac6c62c9dcefeeb0d342b7c9cf481de5"/><file name="apa_sandbox_toolbox.min.js" hash="43db69188712b5b4665b586fc70f39de"/><dir name="vendors"><file name="prism.js" hash="c700de3d980f7ef1e056dc5400acfd44"/></dir></dir></dir></target><target name="magelib"><dir name="OffAmazonPayments"><file name="Model.php" hash="e3a28207e23b6721fe6365e43599f118"/></dir><dir name="OffAmazonPaymentsNotifications"><file name="Client.php" hash="1dec75c9bc526f12e55fc71014c68e0b"/><dir name="Impl"><file name="Certificate.php" hash="e0998510c161b545184442f86f223be6"/><file name="IpnNotificationParser.php" hash="f64aafc6a51f8d7103498ec2e2573d9a"/><file name="Message.php" hash="d619a69bb302c088788da1f8f5719dbf"/><file name="OpenSslVerifySignature.php" hash="4af11b596876b58416bad4a1dd4ced72"/><file name="SnsMessageParser.php" hash="d758f092216419d91497a044fa771553"/><file name="SnsMessageValidator.php" hash="8aae89c1e2fa20b04b0a2d5f77ac68c7"/><file name="VerifySignature.php" hash="b18edb328fbe91c1c7b0aa8afe2904d0"/><file name="XmlNotificationParser.php" hash="725375499131ed3a4822cd92934113b4"/></dir><file name="Interface.php" hash="effe919508aab0c2aa1e585d2783c4e6"/><file name="InvalidCertificateException.php" hash="41bd42da2146c9c6263ddabefd9bfa62"/><file name="InvalidMessageException.php" hash="2edda9cd6cc0c059846c4858cedfcd66"/><dir name="Model"><file name="AuthorizationDetails.php" hash="6156de0995394ffc98b68fd84b136e3b"/><file name="AuthorizationNotification.php" hash="8e16a899a86fb00227ba2c5c4ad959c2"/><file name="BillingAgreement.php" hash="9da534b752fa0f415a020290a74abec3"/><file name="BillingAgreementLimits.php" hash="9c9b5baf17601c48355dcb07858090ef"/><file name="BillingAgreementNotification.php" hash="61aead8581ede00a174f384a11250b43"/><file name="BillingAgreementStatus.php" hash="6742b7532befc0abbb53cb0fbec9b43a"/><file name="CaptureDetails.php" hash="325f72a9c552a7b2f5f32391a0e0bafd"/><file name="CaptureNotification.php" hash="43b56cb3bea3c0f50f5f4b1a2b80e582"/><file name="IdList.php" hash="94c58bd555c5f4b49ec4c7156913957c"/><file name="IpnNotificationMetadata.php" hash="8c9e9affd803a359d966bcadc4f82579"/><file name="MerchantRegistrationDetails.php" hash="d4de7689d8e216567abd710dde7ef4ed"/><file name="NotificationImpl.php" hash="b8cd375f86b58e3afb8459753315afe0"/><file name="NotificationMetadataImpl.php" hash="d115d664275afe97b64c5994a05b81b6"/><file name="OrderItemCategories.php" hash="e5799dea7ee1ba6b09dc0511c0209b95"/><file name="OrderReference.php" hash="31b4d7b1c704a3610616b807d979c974"/><file name="OrderReferenceNotification.php" hash="4cdf1834e8ac28907b9783bea5a091e9"/><file name="OrderReferenceStatus.php" hash="a834fd68d60220a43cdeb73676ff14cf"/><file name="OrderTotal.php" hash="a29ae92dde221fc5fc62890829642c93"/><file name="Price.php" hash="14a21d4e21e85876880f0dac5efd9800"/><file name="ProviderCreditDetails.php" hash="d355185842eb0816de151fb535b14edc"/><file name="ProviderCreditNotification.php" hash="21e2ec363636e5dc1817852ce3c80a38"/><file name="ProviderCreditReversalDetails.php" hash="a789bbf3c7074bc800053967e64286c7"/><file name="ProviderCreditReversalNotification.php" hash="4b915017f53aa074aec91764ee353009"/><file name="ProviderCreditReversalSummary.php" hash="1f9cd50005ade77d793a15e029b3cf69"/><file name="ProviderCreditReversalSummaryList.php" hash="6d3a3913ea433fa54ac34197825354ff"/><file name="ProviderCreditSummary.php" hash="4403e12b73867b58021655df3fcf6720"/><file name="ProviderCreditSummaryList.php" hash="8a5a83e94ce75fc3992f98525d47765d"/><file name="RefundDetails.php" hash="bafddf5e7ebb0e41d0d4b0f3f46fc01b"/><file name="RefundNotification.php" hash="665c33d7489219e983ac5dae9059c679"/><file name="SellerBillingAgreementAttributes.php" hash="9a14fbde36b33da97339a756246ad2a7"/><file name="SellerOrderAttributes.php" hash="35bb678c57904c333ea6aae5ac520ced"/><file name="SnsNotificationMetadata.php" hash="3f8afa5a4ed51cf738bb1e721bdf1556"/><file name="SolutionProviderMerchantNotification.php" hash="3921eca9a0d7b9cd02772205f0918bdd"/><file name="SolutionProviderOption.php" hash="df8fbbb1ad2fef1796e3b42a9a417a64"/><file name="SolutionProviderOptions.php" hash="8f5f0e7415bb9dfc5dfafaab236d91df"/><file name="Status.php" hash="8753243136d6ff0ca3089c8cc975f5ab"/></dir><file name="Notification.php" hash="edaf311309c64b67a4fd82ccb86393a3"/><file name="NotificationMetadata.php" hash="9ffe2779593da053e82587dbb61da7d1"/></dir><dir name="OffAmazonPaymentsService"><file name="Client.php" hash="aef6bf4604b2cc27d02534483b58de64"/><file name="Environments.php" hash="d84e7322b3394033b427f91be0a0abdb"/><file name="Exception.php" hash="dd85e54cfa5783c7ef7b1f93ca3995b2"/><file name="Interface.php" hash="b0d2b9acda872f079afe324a95579ec8"/><file name="MerchantValues.php" hash="0350a9ad9ddc2b1382a79f012c54e1b8"/><dir name="Model"><file name="Address.php" hash="78a9e512c29f2a8fa9d70985b9e6a742"/><file name="AuthorizationDetails.php" hash="8a84c0aad90b2cbe77f136b93b83925f"/><file name="AuthorizeOnBillingAgreementRequest.php" hash="bea0b83b59acf306a489e9ece548864b"/><file name="AuthorizeOnBillingAgreementResponse.php" hash="bc807f536bfeff6b863213a0132c25ba"/><file name="AuthorizeOnBillingAgreementResult.php" hash="a0cc9be92ae7b7313f8902d4cc98b43f"/><file name="AuthorizeRequest.php" hash="9404796ad770d7408b19f02bc63f3f66"/><file name="AuthorizeResponse.php" hash="67efb0d9fe244eb5a0c106aed777fa6e"/><file name="AuthorizeResult.php" hash="fa06502055d3b45695844610b8bd1c82"/><file name="BillingAddress.php" hash="3921b0b2e0b365454cf8b997165c482f"/><file name="BillingAgreementAttributes.php" hash="e0bbaedf3aee7f1067888d4e9375af59"/><file name="BillingAgreementDetails.php" hash="1b658fc00f87e3f0f021ccfb2f99eefe"/><file name="BillingAgreementLimits.php" hash="dab6ab8f66490ba29a70875653c8e5d9"/><file name="BillingAgreementStatus.php" hash="0ac0344859384092d6d9e8da39a74faf"/><file name="Buyer.php" hash="39f8a6582bc2b01028b05b8d836d3c36"/><file name="CancelOrderReferenceRequest.php" hash="9cc5898b590a2af3b49cd80fa57f814c"/><file name="CancelOrderReferenceResponse.php" hash="0183f41e2b61be4a0b5d467fb790bbb1"/><file name="CancelOrderReferenceResult.php" hash="959a306b37f78385125a99e16b90efcc"/><file name="CaptureDetails.php" hash="abd0aae54d5c5203b2a4ebd9fa6e22d6"/><file name="CaptureRequest.php" hash="fd583e404c6a912ea731f640cb25b5bd"/><file name="CaptureResponse.php" hash="748c7d744436a31f0c167171b6ea4859"/><file name="CaptureResult.php" hash="01e50ce098b5baa49b6e99a1d214b4d0"/><file name="CloseAuthorizationRequest.php" hash="bd2ad1d641a62ff8e9567c28d29d380b"/><file name="CloseAuthorizationResponse.php" hash="5d9d0482f6b7499672965a1059c86309"/><file name="CloseAuthorizationResult.php" hash="551b53340039ec26e2a5b88d978c3487"/><file name="CloseBillingAgreementRequest.php" hash="272cd013fb1c479014ef906e8acb2451"/><file name="CloseBillingAgreementResponse.php" hash="0dcbf7315b300dc5a69258461af26b2c"/><file name="CloseBillingAgreementResult.php" hash="cdb1e83edeb9235e0628e156ca93735d"/><file name="CloseOrderReferenceRequest.php" hash="51a0e90cde8ef7218c9661e665ae0e01"/><file name="CloseOrderReferenceResponse.php" hash="9093e5b5ac5a2e722974298fc6ac293a"/><file name="CloseOrderReferenceResult.php" hash="6c40de823b51817ba5a32d21534098d5"/><file name="ConfirmBillingAgreementRequest.php" hash="ca96eb4f3fc93a6c91049c928a8e97aa"/><file name="ConfirmBillingAgreementResponse.php" hash="a600b340a156a191be8596264e27ff4c"/><file name="ConfirmBillingAgreementResult.php" hash="775de65034edcefb8ab778aabb2e5a82"/><file name="ConfirmOrderReferenceRequest.php" hash="bf5faea5f65cc807e231975560b0264a"/><file name="ConfirmOrderReferenceResponse.php" hash="4ef74b3dc826aff2337c3266d0a30207"/><file name="Constraint.php" hash="303c1db25b181407d8fa7f8b62bc5f05"/><file name="Constraints.php" hash="9da0f4b7e66576b84c4fd6da3704925b"/><file name="CreateOrderReferenceForIdRequest.php" hash="06ea9fb90b1985c7958c7dfefb4a2513"/><file name="CreateOrderReferenceForIdResponse.php" hash="68f6e42176bc5bcd1b5a3690be80418f"/><file name="CreateOrderReferenceForIdResult.php" hash="50600fe328e4c802334d0b12308875ca"/><file name="Destination.php" hash="e87ccf1a85981d7bf8b8c6f72d8731b2"/><file name="Error.php" hash="d21a6c88ec26f46363ccca239f5d3baf"/><file name="ErrorResponse.php" hash="8e351f2f1a5d3f6ffdadea8699ff3b30"/><file name="GetAuthorizationDetailsRequest.php" hash="6a1d43c9245813c57d3be6de557f768d"/><file name="GetAuthorizationDetailsResponse.php" hash="f9272df733a3ab5b556eb4d9032cc1a3"/><file name="GetAuthorizationDetailsResult.php" hash="270d0ebb53cf595593a72ba29ca3d1f0"/><file name="GetBillingAgreementDetailsRequest.php" hash="df8a926714ede6042091da422e04f181"/><file name="GetBillingAgreementDetailsResponse.php" hash="aba22538c8fef15e54edcbbe460dc9ef"/><file name="GetBillingAgreementDetailsResult.php" hash="1775046ceeefcf7ac86b5d737f6c0224"/><file name="GetCaptureDetailsRequest.php" hash="fba43cb1613fceda4f3e1ea282ed89ba"/><file name="GetCaptureDetailsResponse.php" hash="52f0408b003801a2f8364f60a726d1ea"/><file name="GetCaptureDetailsResult.php" hash="8866ba5fcafc8dcb03c43f0a99741f24"/><file name="GetOrderReferenceDetailsRequest.php" hash="a97dba48604325ddbda732f264928858"/><file name="GetOrderReferenceDetailsResponse.php" hash="c0ac35c5f5bc1396ed0798b38f8909b2"/><file name="GetOrderReferenceDetailsResult.php" hash="9a4ecf515761d6ab032d717c0b54a7db"/><file name="GetProviderCreditDetailsRequest.php" hash="1b613acafc8f66e0385379705bcf664c"/><file name="GetProviderCreditDetailsResponse.php" hash="9fcdbd8af985e96579c93378259c5e4a"/><file name="GetProviderCreditDetailsResult.php" hash="3a660d2ad0f6528e16f554987caf9a51"/><file name="GetProviderCreditReversalDetailsRequest.php" hash="592caa40f517ed1cfc66dd9a12e9bac3"/><file name="GetProviderCreditReversalDetailsResponse.php" hash="85d1fb8584f14d443cf7e4956c3dd03f"/><file name="GetProviderCreditReversalDetailsResult.php" hash="06effa515f870d1bd5fff7bc62a1d752"/><file name="GetRefundDetailsRequest.php" hash="e1d0e53d2a153174acf2200eb138c757"/><file name="GetRefundDetailsResponse.php" hash="1e7459d7dd500d0b249c7bea7308f2e7"/><file name="GetRefundDetailsResult.php" hash="543794de2b9d16c857b223dba01aecd4"/><file name="IdList.php" hash="b4268f542c7ba2104e163320ed612d22"/><file name="OrderItemCategories.php" hash="e73be59d18bbf97ac320687c1de50cb8"/><file name="OrderReferenceAttributes.php" hash="5a64aebf99a35f0c777e284f7070a86c"/><file name="OrderReferenceDetails.php" hash="1d9c76fb5f25760a9789dd18ba8d21b5"/><file name="OrderReferenceStatus.php" hash="d89ea6c6b42ac75c3183b8cfcb2fadef"/><file name="OrderTotal.php" hash="60d3ea9eb79100262158c20fbff7721b"/><file name="ParentDetails.php" hash="10956c527c367057d9f5517977a41c02"/><file name="Price.php" hash="09d7333f6c421432b8d5d965eae3995e"/><file name="ProviderCredit.php" hash="331663826ea8f444d5b0c05c59d69874"/><file name="ProviderCreditDetails.php" hash="0b916937d2397ad51d0dc1b0cf86777b"/><file name="ProviderCreditList.php" hash="3467cfe1dc096d07c33e2fadb3cb90d1"/><file name="ProviderCreditReversal.php" hash="b965141481deddd3b8e1c48a68d8c292"/><file name="ProviderCreditReversalDetails.php" hash="aaf5a41e7d6aba6758b5c24de2affe4d"/><file name="ProviderCreditReversalList.php" hash="47ff9cee9313ea98b23cec3257fdd704"/><file name="ProviderCreditReversalSummary.php" hash="decb86a0305f061206625dea1c8aacdb"/><file name="ProviderCreditReversalSummaryList.php" hash="4948d8e2034b7e60fc7157d7be149ea1"/><file name="ProviderCreditSummary.php" hash="06f9ad261e09b3709107d074604a1227"/><file name="ProviderCreditSummaryList.php" hash="28652df460f09e5d907d0c07f98b1b8f"/><file name="RefundDetails.php" hash="540392d28b43eb46f662dbb51f531b64"/><file name="RefundRequest.php" hash="0e712334612fde71d0cb9ddeb821707e"/><file name="RefundResponse.php" hash="43bf08dd68a46d5e8373bd760a3ee0e8"/><file name="RefundResult.php" hash="06df0a0180ed989d6576bc068b74f4bb"/><file name="ResponseHeaderMetadata.php" hash="d8024e3bf444e8a843a6f2f6a2f836ca"/><file name="ResponseMetadata.php" hash="40aa6720f5b801d3e5bdcadc3d496b69"/><file name="ReverseProviderCreditRequest.php" hash="51af6c8b7e31efd4fffafd83994fbc63"/><file name="ReverseProviderCreditResponse.php" hash="3a959a1b22156ddb81e2eed9e02a0da4"/><file name="ReverseProviderCreditResult.php" hash="6dc02bb8141e136a55d28034add4b101"/><file name="SellerBillingAgreementAttributes.php" hash="f46d36c1a55029d1423de6a7f554213f"/><file name="SellerOrderAttributes.php" hash="dfaca734d7b44dc4e38f5ebdcc14d7ef"/><file name="SetBillingAgreementDetailsRequest.php" hash="aa7c723f7f395ef59aded053413a30f0"/><file name="SetBillingAgreementDetailsResponse.php" hash="500823f0d779523ca912470d642f1cee"/><file name="SetBillingAgreementDetailsResult.php" hash="560eb1b417702c6170554b01bbd1666f"/><file name="SetOrderReferenceDetailsRequest.php" hash="01a63c649eafca4294e769d67dd5a176"/><file name="SetOrderReferenceDetailsResponse.php" hash="c88e8abc4e1ee3651e078691da8ea5c7"/><file name="SetOrderReferenceDetailsResult.php" hash="0bc28f81b9a000c14aa41866e53b256e"/><file name="Status.php" hash="0860d27faee2e1438c035fe769423935"/><file name="ValidateBillingAgreementRequest.php" hash="8919fcbfe049f8e655c5a3a649583c00"/><file name="ValidateBillingAgreementResponse.php" hash="7e34a36ef8e4970709308839a5f26a70"/><file name="ValidateBillingAgreementResult.php" hash="e111bac483f675c2f49aa51b3b727419"/></dir><file name="Model.php" hash="dd252b058b5736649cdec6038f825616"/><file name="RegionSpecificProperties.php" hash="5b1fa0f3a863c6f05adfd4e2abf61351"/><file name="Regions.php" hash="a544d12c6321899770c039426e063cce"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="creativestyle"><dir name="css"><file name="amazonpayments.css" hash="a1f07a48b8de6d1fa9391a4eed2f12be"/><file name="amazonpayments-highlight.css" hash="f6daf03c989ac56ad436300b5520f0df"/></dir><dir name="images"><file name="amazon-payments-advanced-creativestyle-logo.png" hash="bb507d0085dab135ac313b8068515620"/><file name="amazon-payments-advanced-creativestyle-header-logo.png" hash="1f17fc7a61f8aaf929000d1d87f7d943"/><file name="amazon-payments-advanced-creativestyle-header-logo-white.png" hash="4ce4ba0d8d210a26caa380217804e200"/><file name="amazon-payments-advanced-header.png" hash="60f587870fbdb1242368c8c3b553bd8c"/><file name="amazon-payments-advanced-section.png" hash="8bc620f345eb46c920c51875d4cfad7c"/><file name="logo_a-glyph_16.png" hash="44a3f5f0013cab34d26653eb48b989fc"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="creativestyle"><dir name="css"><file name="amazonpayments.css" hash="98669e803a468cc7e01d481ce1647a0e"/><file name="amazonpayments-widgets.css" hash="35704192aaeb204e407e8b853c118d16"/><file name="amazonpayments-responsive-widgets.css" hash="ffca5cdc8a4e0585946c78258044c471"/></dir><dir name="images"><file name="amazon-loading-large.gif" hash="5f6d83bf2b69ab73c7e48ec9b66d54db"/><file name="logo_a-glyph_1x.png" hash="5d44ca86985afbb2a47b9265053a456e"/></dir></dir></dir></dir><dir name="rwd"><dir name="default"><dir name="creativestyle"><dir name="css"><file name="amazonpayments-responsive-widgets.css" hash="389d23ee96bb5305f7ba5b616d930846"/></dir></dir></dir></dir></dir></target></contents>
|
18 |
<compatible/>
|
19 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><extension><name>dom</name><min/><max/></extension><extension><name>curl</name><min/><max/></extension></required></dependencies>
|
20 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Creativestyle_AmazonPayments</name>
|
4 |
+
<version>1.2.6.1</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="http://creativecommons.org/licenses/by-nd/4.0/">Creative Commons Attribution-NoDerivatives 4.0 International</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Integration of your Magento shop with Login and Pay with Amazon service</summary>
|
10 |
<description>This extension provides an official integration of your Magento store with Login and Pay with Amazon service. It helps your customers shop quickly, safely and securely. Your customers can pay on your website without re-entering their payment and address details. All Amazon transactions are protected by Amazon's A-to-z Guarantee.</description>
|
11 |
+
<notes>FIXED: class 'SnsMessageValidator' not found issue when accessing IPN endpoint</notes>
|
|
|
|
|
12 |
<authors><author><name>creativestyle GmbH</name><user>creativestyle</user><email>amazon@creativestyle.de</email></author></authors>
|
13 |
+
<date>2014-10-31</date>
|
14 |
+
<time>17:57:40</time>
|
15 |
+
<contents><target name="magecommunity"><dir name="Creativestyle"><dir name="AmazonPayments"><dir name="Block"><file name="Abstract.php" hash="a8879b92a7537e5c443f3488a22787fe"/><dir name="Adminhtml"><file name="CredentialsValidator.php" hash="bb62c178c7bba1dd30fa16f22394ec85"/><dir name="Debug"><dir name="Section"><file name="Table.php" hash="f6947e99e982164a220e3d82fa0f988f"/></dir><file name="Section.php" hash="a249d2fedeaa5e485e40ffaeeb0335c6"/></dir><file name="Debug.php" hash="cc798f2987cc0dffc755a88988b74912"/><file name="Info.php" hash="be764b1856eccc2b3070a1ea4cfe57f7"/><file name="IpnUrl.php" hash="dc185fbffc8851d0031769e9a623ddda"/><dir name="Log"><file name="Abstract.php" hash="02887066c2d6973141dff769b385d8fa"/><dir name="Api"><file name="Grid.php" hash="8d072ba9ce4be99222c03a26680d51eb"/><file name="View.php" hash="eb30544643fa9571a454a763111d0113"/></dir><file name="Api.php" hash="5ea0736c83de5feb01df0a3ec4db4d80"/><dir name="Exception"><file name="Grid.php" hash="3c3decb0a90638d5e2b1617426ec9437"/><file name="View.php" hash="cae17d2a2d5716e8dde1c6662397131e"/></dir><file name="Exception.php" hash="c35dafcaf89ca709394341394862f4cf"/><dir name="Ipn"><file name="Grid.php" hash="74bb51ab562b09d42bd9ced6d6609ae1"/><file name="View.php" hash="6ab63414642658e95258a73a143e6955"/></dir><file name="Ipn.php" hash="a2225b081ccb354bfe94b4a646b0d521"/><dir name="View"><file name="Abstract.php" hash="0a4c977a1f89622148bdc6acc037fc1f"/></dir></dir><dir name="Renderer"><file name="Timestamp.php" hash="190325613c20e2cf97adc28950658e99"/></dir><dir name="Sales"><file name="Order.php" hash="45a5ee919501a2bf26160d38dafccd44"/></dir></dir><dir name="Button"><file name="Js.php" hash="16b7b49b8c16da0a783104acc3a2b7d2"/></dir><dir name="Checkout"><file name="Abstract.php" hash="db5cf0b3d9dd37ad4552987b9df5e09c"/><file name="Js.php" hash="afaf494ccbd59a780c4d5079abf68bdd"/><file name="Notice.php" hash="3bd2869322fac80a80436f8e2daa8d70"/><file name="SandboxToolbox.php" hash="047b1bfde3f5469195b9a7ccfee3f16d"/></dir><file name="Checkout.php" hash="2f5dfbc18879c9a9c6d4dc84ac54eb9e"/><file name="Head.php" hash="3a0e8a708cff9b769b68dcd48dbac274"/><dir name="Login"><file name="Abstract.php" hash="b84dfbbe66bbee39a547d33e856b4a8d"/><dir name="Account"><file name="Confirm.php" hash="ae8123a65a717a0046aaf1d9dc21f878"/><file name="Update.php" hash="8fdadae9294b17fbb0989f8d0e2016a4"/></dir><file name="Button.php" hash="bad55de20f480d53a15ddedd551ff6dd"/><file name="Head.php" hash="8e2f097d5c170aba4c1f11973463181a"/><file name="Logout.php" hash="79701fe73b6ad3e32b5f75367dd8bcd0"/></dir><dir name="Onepage"><file name="Button.php" hash="b122db0163e8580f42679f13a3a45726"/></dir><dir name="Pay"><file name="Abstract.php" hash="2e96e1d4a1a0e2c74cee40a46a75241c"/><file name="Button.php" hash="b76cbc47c91b88ceb9fc1fde609fa2dc"/></dir><dir name="Payment"><file name="Info.php" hash="c6285a5688834b456765317d3471bf2a"/></dir></dir><file name="Exception.php" hash="ca655a29842b38dd2ebf438208a6c70c"/><dir name="Helper"><file name="Data.php" hash="07d5ae485061f4edf314899291f11e28"/><file name="Debug.php" hash="782ae864f43f5bb85b439cf1a4c35334"/></dir><dir name="Model"><dir name="Api"><file name="Abstract.php" hash="1814fcd0d61599f15d808d9c2990ebe4"/><file name="Advanced.php" hash="f07d08dc5ca8fa80d2684a7726496a6e"/><file name="Ipn.php" hash="7796776a38fe90b9805cbd88094a773d"/><file name="Login.php" hash="1d3ed64e3d7e10128780bf07fb334867"/></dir><file name="Autoload.php" hash="711d2fbb148f4c82aceff14b7576560b"/><file name="Checkout.php" hash="5aabd463b8e45f9390a7719d7c730c8d"/><file name="Config.php" hash="5ea50ded4beaf93e5e1fe1aad282ec5e"/><dir name="Log"><file name="Collection.php" hash="13d71847c4e164af18636a3fe5bf975b"/></dir><file name="Logger.php" hash="0821a7d8ddeea993fe3ad9495ef6f9d9"/><dir name="Lookup"><file name="Abstract.php" hash="443bbef12f4e7c896e54cf0b7463e04e"/><dir name="Design"><dir name="Button"><dir name="Color"><file name="LoginPay.php" hash="e9a469e82c7805782cf7694c4d50af7a"/></dir><file name="Color.php" hash="81a33471dfefb27897f7b1ff19749671"/><dir name="Size"><file name="LoginPay.php" hash="6cdf3d3633617994783a38f30add86fe"/></dir><file name="Size.php" hash="7c73a97a0fa3f4c6a73b838c0594ad5c"/><dir name="Type"><file name="Login.php" hash="44e852189b0305bbe4cc38848316d4e6"/><file name="Pay.php" hash="5e6f65d1e355ed265787b28b12c6e7a6"/></dir></dir></dir><file name="Frequency.php" hash="5115fb39b48781e5e97f9b62414a72cc"/><file name="IpnActive.php" hash="b73000f5bfc1e26b80911e125e9eec46"/><file name="PaymentAction.php" hash="6d0c15996ec3caf112d88e07ea703bb4"/><file name="Region.php" hash="8f5cc8ab970aa165e16085368b320f89"/></dir><file name="Manager.php" hash="3deaebb7cc0d613c63470d866d7aafb7"/><file name="Observer.php" hash="078d6526c0720a010c6e97ef9dad9742"/><dir name="Payment"><file name="Abstract.php" hash="5667d8b7b4eae1f3b29e8fc6c043b9ce"/><dir name="Advanced"><file name="Abstract.php" hash="5f6d0e84f0cb051d0515aa5c3241be74"/><file name="Sandbox.php" hash="a1509cd32ad92e6e6d3a8f348be1d3bb"/></dir><file name="Advanced.php" hash="72006ba9aaa96486f6d7505814ffaf54"/></dir><dir name="Service"><file name="Login.php" hash="3ba988940839a636e6b42070db99e41e"/><file name="Quote.php" hash="3f83d1e1b1c6e19e0e23cb1a8c8b41f5"/></dir><file name="Simulator.php" hash="be19c4b71f46f3251455c497aeb407f6"/><dir name="System"><dir name="Config"><dir name="Backend"><dir name="DataPolling"><file name="Cron.php" hash="c3d3009775702bee14da3695f0d41f68"/></dir></dir></dir></dir></dir><dir name="controllers"><dir name="Adminhtml"><file name="DebugController.php" hash="28e0ddedf23912140158d100339bdbe8"/><file name="DocumentationController.php" hash="4e214386e032b2e513dda5a26344fd87"/><dir name="Log"><file name="ApiController.php" hash="e0a9181f57223d3ba722982572c1d003"/><file name="ExceptionController.php" hash="5daaa04ec6479396edfb1f62910f4ad3"/><file name="IpnController.php" hash="f00870c68a6b18d460c59d0b76d4a67d"/></dir><file name="OrderController.php" hash="1293b8aa3851f09b7559306e37a6a6ea"/><file name="SystemController.php" hash="52c60fa39dba8582b4ca81c2f065dbc5"/></dir><dir name="Advanced"><file name="CheckoutController.php" hash="4b0f052d67439041bf68a6b7229ee59a"/><file name="IpnController.php" hash="0d8a52a891d493870dd1081f9a407170"/><file name="LoginController.php" hash="d636ea6b2e3033615d877a87f37abfb2"/></dir></dir><dir name="etc"><file name="adminhtml.xml" hash="2dc1b70997469f8f0cd6a80eff845842"/><file name="config.xml" hash="1a1f2cda0e96386589c0576724422995"/><file name="system.xml" hash="d8004b1e1d07523825f81a5282999623"/></dir><dir name="sql"><dir name="amazonpayments_setup"><file name="mysql4-install-1.0.0.php" hash="d4681b9a39905cc9e9dcc660688dea85"/><file name="mysql4-upgrade-1.1.6-1.2.0.php" hash="27f8e108bac4268d3c17e812b413dbbc"/></dir></dir></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="amazonpayments.xml" hash="4bc12228bba39bd925ed129d7cf64258"/></dir><dir name="template"><dir name="creativestyle"><dir name="amazonpayments"><dir name="advanced"><file name="documentation.phtml" hash="af3ae6ebce4712dd8fb972bef508ca55"/><dir name="log"><dir name="api"><file name="view.phtml" hash="92e2a91aa6f25e20fe8e89bad751e8cf"/></dir><dir name="exception"><file name="view.phtml" hash="c5d01f6de86e47d4da5dfabd60b1b382"/></dir><file name="js.phtml" hash="eb1d2098440a0bac2a6f5b959afa3693"/><dir name="notification"><file name="view.phtml" hash="31d893106f7c7c7f94f05d5cafa36440"/></dir></dir></dir><dir name="debug"><dir name="section"><file name="table.phtml" hash="f4bb8e35b3608cf0639407a3461c3717"/></dir><file name="section.phtml" hash="1472da0e9f07b5583a02e327483d4d75"/></dir><file name="debug.phtml" hash="9748d4fe92986f36ad47ae5b61fc4883"/><file name="info.phtml" hash="8f58e70d3d5974c60d182450b424e521"/><file name="init.phtml" hash="ba9d53045077e63b4e6c25c6b7bb685c"/><dir name="payment"><file name="info.phtml" hash="200af8569ab7792e7f16c5f4a93c6897"/><dir name="pdf"><file name="info.phtml" hash="1fb213f3fcc3aeecaa6305c07cff3b73"/></dir></dir></dir></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="amazonpayments.xml" hash="97aa4f974470707e890c72454b468c0d"/></dir><dir name="template"><dir name="creativestyle"><dir name="amazonpayments"><dir name="button"><file name="js.phtml" hash="ff2502a96e1edfe14c2777efb738ef21"/><file name="tooltip.phtml" hash="6e430b0cba211ae63f69df86d943f9ee"/></dir><dir name="checkout"><file name="capture_notice.phtml" hash="f9c75cd05a596d0a16c55f0169b4ee6c"/><file name="js.phtml" hash="d9ca7b6c98e1521b2f7be308261596a2"/><dir name="review"><file name="button.phtml" hash="1312572385c9ff653d283bb0c3f47b1b"/></dir><file name="sandbox_toolbox.phtml" hash="ff639266f99827e3ec3a9e8305bd7eb7"/><file name="shipping_method.phtml" hash="8a8c97b4eb2a7c8cfc8248bd499b95eb"/></dir><file name="checkout.phtml" hash="083f3118e3e9665eda2851b285c7815d"/><file name="head.phtml" hash="271adf18a0fa0da90dce2d0f5c6ef4d7"/><dir name="login"><dir name="button"><file name="account_login.phtml" hash="0ce9b9d891af3f6c5b1c83a17d311e6b"/></dir><file name="button.phtml" hash="b5d66280337ecc895ae9a2bc48c469e4"/><dir name="form"><file name="account_confirm.phtml" hash="cff4c9f656b2e790bd65723d4e2042b9"/><file name="account_update.phtml" hash="64fdc50df3b3c49384d5d50a1da82d4d"/></dir><file name="head.phtml" hash="dfe0af795b7075a22cf2b0865e94df61"/><file name="logout.phtml" hash="066465552b22eb23867e641fba7f7f96"/></dir><dir name="onepage"><file name="button.phtml" hash="95e053ca57f36df23180af93b77a6557"/></dir><dir name="pay"><file name="button.phtml" hash="dfcccab45794c81d2d3ca52f709019d4"/></dir><dir name="payment"><file name="info.phtml" hash="3631896707e596d9675f526a7d021617"/><dir name="pdf"><file name="info.phtml" hash="69549bf3340c19d62f42a556f13e8a1e"/></dir></dir></dir></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Creativestyle_AmazonPayments.xml" hash="3d30f68b24829494a2a66164eba0e5f7"/></dir></target><target name="magelocale"><dir name="en_US"><file name="Creativestyle_AmazonPayments.csv" hash="f2bae0bb7e9c61e2692b6f9e9d698f61"/><dir name="template"><dir name="email"><file name="amazon_payments_failed.html" hash="ad694ba24051f779698d483bc32d9b75"/></dir></dir></dir><dir name="en_GB"><file name="Creativestyle_AmazonPayments.csv" hash="97121388fa441b1779504845ea98c159"/><dir name="template"><dir name="email"><file name="amazon_payments_failed.html" hash="1a933579acb1fbb3d78ae47ca990521b"/></dir></dir></dir><dir name="de_DE"><file name="Creativestyle_AmazonPayments.csv" hash="5c61c08241a8ce7dcd891e2fe0f16606"/><dir name="template"><dir name="email"><file name="amazon_payments_failed.html" hash="4879ccbfbea101548700da52b058bd0b"/></dir></dir></dir></target><target name="mage"><dir name="js"><dir name="creativestyle"><file name="apa_checkout.min.js" hash="ac6c62c9dcefeeb0d342b7c9cf481de5"/><file name="apa_sandbox_toolbox.min.js" hash="43db69188712b5b4665b586fc70f39de"/><dir name="vendors"><file name="prism.js" hash="c700de3d980f7ef1e056dc5400acfd44"/></dir></dir></dir></target><target name="magelib"><dir name="OffAmazonPayments"><file name="Model.php" hash="e3a28207e23b6721fe6365e43599f118"/></dir><dir name="OffAmazonPaymentsNotifications"><file name="Client.php" hash="1dec75c9bc526f12e55fc71014c68e0b"/><dir name="Impl"><file name="Certificate.php" hash="e0998510c161b545184442f86f223be6"/><file name="IpnNotificationParser.php" hash="f64aafc6a51f8d7103498ec2e2573d9a"/><file name="Message.php" hash="d619a69bb302c088788da1f8f5719dbf"/><file name="OpenSslVerifySignature.php" hash="4af11b596876b58416bad4a1dd4ced72"/><file name="SnsMessageParser.php" hash="d758f092216419d91497a044fa771553"/><file name="SnsMessageValidator.php" hash="8aae89c1e2fa20b04b0a2d5f77ac68c7"/><file name="VerifySignature.php" hash="b18edb328fbe91c1c7b0aa8afe2904d0"/><file name="XmlNotificationParser.php" hash="725375499131ed3a4822cd92934113b4"/></dir><file name="Interface.php" hash="effe919508aab0c2aa1e585d2783c4e6"/><file name="InvalidCertificateException.php" hash="41bd42da2146c9c6263ddabefd9bfa62"/><file name="InvalidMessageException.php" hash="2edda9cd6cc0c059846c4858cedfcd66"/><dir name="Model"><file name="AuthorizationDetails.php" hash="6156de0995394ffc98b68fd84b136e3b"/><file name="AuthorizationNotification.php" hash="8e16a899a86fb00227ba2c5c4ad959c2"/><file name="BillingAgreement.php" hash="9da534b752fa0f415a020290a74abec3"/><file name="BillingAgreementLimits.php" hash="9c9b5baf17601c48355dcb07858090ef"/><file name="BillingAgreementNotification.php" hash="61aead8581ede00a174f384a11250b43"/><file name="BillingAgreementStatus.php" hash="6742b7532befc0abbb53cb0fbec9b43a"/><file name="CaptureDetails.php" hash="325f72a9c552a7b2f5f32391a0e0bafd"/><file name="CaptureNotification.php" hash="43b56cb3bea3c0f50f5f4b1a2b80e582"/><file name="IdList.php" hash="94c58bd555c5f4b49ec4c7156913957c"/><file name="IpnNotificationMetadata.php" hash="8c9e9affd803a359d966bcadc4f82579"/><file name="MerchantRegistrationDetails.php" hash="d4de7689d8e216567abd710dde7ef4ed"/><file name="NotificationImpl.php" hash="b8cd375f86b58e3afb8459753315afe0"/><file name="NotificationMetadataImpl.php" hash="d115d664275afe97b64c5994a05b81b6"/><file name="OrderItemCategories.php" hash="e5799dea7ee1ba6b09dc0511c0209b95"/><file name="OrderReference.php" hash="31b4d7b1c704a3610616b807d979c974"/><file name="OrderReferenceNotification.php" hash="4cdf1834e8ac28907b9783bea5a091e9"/><file name="OrderReferenceStatus.php" hash="a834fd68d60220a43cdeb73676ff14cf"/><file name="OrderTotal.php" hash="a29ae92dde221fc5fc62890829642c93"/><file name="Price.php" hash="14a21d4e21e85876880f0dac5efd9800"/><file name="ProviderCreditDetails.php" hash="d355185842eb0816de151fb535b14edc"/><file name="ProviderCreditNotification.php" hash="21e2ec363636e5dc1817852ce3c80a38"/><file name="ProviderCreditReversalDetails.php" hash="a789bbf3c7074bc800053967e64286c7"/><file name="ProviderCreditReversalNotification.php" hash="4b915017f53aa074aec91764ee353009"/><file name="ProviderCreditReversalSummary.php" hash="1f9cd50005ade77d793a15e029b3cf69"/><file name="ProviderCreditReversalSummaryList.php" hash="6d3a3913ea433fa54ac34197825354ff"/><file name="ProviderCreditSummary.php" hash="4403e12b73867b58021655df3fcf6720"/><file name="ProviderCreditSummaryList.php" hash="8a5a83e94ce75fc3992f98525d47765d"/><file name="RefundDetails.php" hash="bafddf5e7ebb0e41d0d4b0f3f46fc01b"/><file name="RefundNotification.php" hash="665c33d7489219e983ac5dae9059c679"/><file name="SellerBillingAgreementAttributes.php" hash="9a14fbde36b33da97339a756246ad2a7"/><file name="SellerOrderAttributes.php" hash="35bb678c57904c333ea6aae5ac520ced"/><file name="SnsNotificationMetadata.php" hash="3f8afa5a4ed51cf738bb1e721bdf1556"/><file name="SolutionProviderMerchantNotification.php" hash="3921eca9a0d7b9cd02772205f0918bdd"/><file name="SolutionProviderOption.php" hash="df8fbbb1ad2fef1796e3b42a9a417a64"/><file name="SolutionProviderOptions.php" hash="8f5f0e7415bb9dfc5dfafaab236d91df"/><file name="Status.php" hash="8753243136d6ff0ca3089c8cc975f5ab"/></dir><file name="Notification.php" hash="edaf311309c64b67a4fd82ccb86393a3"/><file name="NotificationMetadata.php" hash="9ffe2779593da053e82587dbb61da7d1"/></dir><dir name="OffAmazonPaymentsService"><file name="Client.php" hash="aef6bf4604b2cc27d02534483b58de64"/><file name="Environments.php" hash="d84e7322b3394033b427f91be0a0abdb"/><file name="Exception.php" hash="dd85e54cfa5783c7ef7b1f93ca3995b2"/><file name="Interface.php" hash="b0d2b9acda872f079afe324a95579ec8"/><file name="MerchantValues.php" hash="0350a9ad9ddc2b1382a79f012c54e1b8"/><dir name="Model"><file name="Address.php" hash="78a9e512c29f2a8fa9d70985b9e6a742"/><file name="AuthorizationDetails.php" hash="8a84c0aad90b2cbe77f136b93b83925f"/><file name="AuthorizeOnBillingAgreementRequest.php" hash="bea0b83b59acf306a489e9ece548864b"/><file name="AuthorizeOnBillingAgreementResponse.php" hash="bc807f536bfeff6b863213a0132c25ba"/><file name="AuthorizeOnBillingAgreementResult.php" hash="a0cc9be92ae7b7313f8902d4cc98b43f"/><file name="AuthorizeRequest.php" hash="9404796ad770d7408b19f02bc63f3f66"/><file name="AuthorizeResponse.php" hash="67efb0d9fe244eb5a0c106aed777fa6e"/><file name="AuthorizeResult.php" hash="fa06502055d3b45695844610b8bd1c82"/><file name="BillingAddress.php" hash="3921b0b2e0b365454cf8b997165c482f"/><file name="BillingAgreementAttributes.php" hash="e0bbaedf3aee7f1067888d4e9375af59"/><file name="BillingAgreementDetails.php" hash="1b658fc00f87e3f0f021ccfb2f99eefe"/><file name="BillingAgreementLimits.php" hash="dab6ab8f66490ba29a70875653c8e5d9"/><file name="BillingAgreementStatus.php" hash="0ac0344859384092d6d9e8da39a74faf"/><file name="Buyer.php" hash="39f8a6582bc2b01028b05b8d836d3c36"/><file name="CancelOrderReferenceRequest.php" hash="9cc5898b590a2af3b49cd80fa57f814c"/><file name="CancelOrderReferenceResponse.php" hash="0183f41e2b61be4a0b5d467fb790bbb1"/><file name="CancelOrderReferenceResult.php" hash="959a306b37f78385125a99e16b90efcc"/><file name="CaptureDetails.php" hash="abd0aae54d5c5203b2a4ebd9fa6e22d6"/><file name="CaptureRequest.php" hash="fd583e404c6a912ea731f640cb25b5bd"/><file name="CaptureResponse.php" hash="748c7d744436a31f0c167171b6ea4859"/><file name="CaptureResult.php" hash="01e50ce098b5baa49b6e99a1d214b4d0"/><file name="CloseAuthorizationRequest.php" hash="bd2ad1d641a62ff8e9567c28d29d380b"/><file name="CloseAuthorizationResponse.php" hash="5d9d0482f6b7499672965a1059c86309"/><file name="CloseAuthorizationResult.php" hash="551b53340039ec26e2a5b88d978c3487"/><file name="CloseBillingAgreementRequest.php" hash="272cd013fb1c479014ef906e8acb2451"/><file name="CloseBillingAgreementResponse.php" hash="0dcbf7315b300dc5a69258461af26b2c"/><file name="CloseBillingAgreementResult.php" hash="cdb1e83edeb9235e0628e156ca93735d"/><file name="CloseOrderReferenceRequest.php" hash="51a0e90cde8ef7218c9661e665ae0e01"/><file name="CloseOrderReferenceResponse.php" hash="9093e5b5ac5a2e722974298fc6ac293a"/><file name="CloseOrderReferenceResult.php" hash="6c40de823b51817ba5a32d21534098d5"/><file name="ConfirmBillingAgreementRequest.php" hash="ca96eb4f3fc93a6c91049c928a8e97aa"/><file name="ConfirmBillingAgreementResponse.php" hash="a600b340a156a191be8596264e27ff4c"/><file name="ConfirmBillingAgreementResult.php" hash="775de65034edcefb8ab778aabb2e5a82"/><file name="ConfirmOrderReferenceRequest.php" hash="bf5faea5f65cc807e231975560b0264a"/><file name="ConfirmOrderReferenceResponse.php" hash="4ef74b3dc826aff2337c3266d0a30207"/><file name="Constraint.php" hash="303c1db25b181407d8fa7f8b62bc5f05"/><file name="Constraints.php" hash="9da0f4b7e66576b84c4fd6da3704925b"/><file name="CreateOrderReferenceForIdRequest.php" hash="06ea9fb90b1985c7958c7dfefb4a2513"/><file name="CreateOrderReferenceForIdResponse.php" hash="68f6e42176bc5bcd1b5a3690be80418f"/><file name="CreateOrderReferenceForIdResult.php" hash="50600fe328e4c802334d0b12308875ca"/><file name="Destination.php" hash="e87ccf1a85981d7bf8b8c6f72d8731b2"/><file name="Error.php" hash="d21a6c88ec26f46363ccca239f5d3baf"/><file name="ErrorResponse.php" hash="8e351f2f1a5d3f6ffdadea8699ff3b30"/><file name="GetAuthorizationDetailsRequest.php" hash="6a1d43c9245813c57d3be6de557f768d"/><file name="GetAuthorizationDetailsResponse.php" hash="f9272df733a3ab5b556eb4d9032cc1a3"/><file name="GetAuthorizationDetailsResult.php" hash="270d0ebb53cf595593a72ba29ca3d1f0"/><file name="GetBillingAgreementDetailsRequest.php" hash="df8a926714ede6042091da422e04f181"/><file name="GetBillingAgreementDetailsResponse.php" hash="aba22538c8fef15e54edcbbe460dc9ef"/><file name="GetBillingAgreementDetailsResult.php" hash="1775046ceeefcf7ac86b5d737f6c0224"/><file name="GetCaptureDetailsRequest.php" hash="fba43cb1613fceda4f3e1ea282ed89ba"/><file name="GetCaptureDetailsResponse.php" hash="52f0408b003801a2f8364f60a726d1ea"/><file name="GetCaptureDetailsResult.php" hash="8866ba5fcafc8dcb03c43f0a99741f24"/><file name="GetOrderReferenceDetailsRequest.php" hash="a97dba48604325ddbda732f264928858"/><file name="GetOrderReferenceDetailsResponse.php" hash="c0ac35c5f5bc1396ed0798b38f8909b2"/><file name="GetOrderReferenceDetailsResult.php" hash="9a4ecf515761d6ab032d717c0b54a7db"/><file name="GetProviderCreditDetailsRequest.php" hash="1b613acafc8f66e0385379705bcf664c"/><file name="GetProviderCreditDetailsResponse.php" hash="9fcdbd8af985e96579c93378259c5e4a"/><file name="GetProviderCreditDetailsResult.php" hash="3a660d2ad0f6528e16f554987caf9a51"/><file name="GetProviderCreditReversalDetailsRequest.php" hash="592caa40f517ed1cfc66dd9a12e9bac3"/><file name="GetProviderCreditReversalDetailsResponse.php" hash="85d1fb8584f14d443cf7e4956c3dd03f"/><file name="GetProviderCreditReversalDetailsResult.php" hash="06effa515f870d1bd5fff7bc62a1d752"/><file name="GetRefundDetailsRequest.php" hash="e1d0e53d2a153174acf2200eb138c757"/><file name="GetRefundDetailsResponse.php" hash="1e7459d7dd500d0b249c7bea7308f2e7"/><file name="GetRefundDetailsResult.php" hash="543794de2b9d16c857b223dba01aecd4"/><file name="IdList.php" hash="b4268f542c7ba2104e163320ed612d22"/><file name="OrderItemCategories.php" hash="e73be59d18bbf97ac320687c1de50cb8"/><file name="OrderReferenceAttributes.php" hash="5a64aebf99a35f0c777e284f7070a86c"/><file name="OrderReferenceDetails.php" hash="1d9c76fb5f25760a9789dd18ba8d21b5"/><file name="OrderReferenceStatus.php" hash="d89ea6c6b42ac75c3183b8cfcb2fadef"/><file name="OrderTotal.php" hash="60d3ea9eb79100262158c20fbff7721b"/><file name="ParentDetails.php" hash="10956c527c367057d9f5517977a41c02"/><file name="Price.php" hash="09d7333f6c421432b8d5d965eae3995e"/><file name="ProviderCredit.php" hash="331663826ea8f444d5b0c05c59d69874"/><file name="ProviderCreditDetails.php" hash="0b916937d2397ad51d0dc1b0cf86777b"/><file name="ProviderCreditList.php" hash="3467cfe1dc096d07c33e2fadb3cb90d1"/><file name="ProviderCreditReversal.php" hash="b965141481deddd3b8e1c48a68d8c292"/><file name="ProviderCreditReversalDetails.php" hash="aaf5a41e7d6aba6758b5c24de2affe4d"/><file name="ProviderCreditReversalList.php" hash="47ff9cee9313ea98b23cec3257fdd704"/><file name="ProviderCreditReversalSummary.php" hash="decb86a0305f061206625dea1c8aacdb"/><file name="ProviderCreditReversalSummaryList.php" hash="4948d8e2034b7e60fc7157d7be149ea1"/><file name="ProviderCreditSummary.php" hash="06f9ad261e09b3709107d074604a1227"/><file name="ProviderCreditSummaryList.php" hash="28652df460f09e5d907d0c07f98b1b8f"/><file name="RefundDetails.php" hash="540392d28b43eb46f662dbb51f531b64"/><file name="RefundRequest.php" hash="0e712334612fde71d0cb9ddeb821707e"/><file name="RefundResponse.php" hash="43bf08dd68a46d5e8373bd760a3ee0e8"/><file name="RefundResult.php" hash="06df0a0180ed989d6576bc068b74f4bb"/><file name="ResponseHeaderMetadata.php" hash="d8024e3bf444e8a843a6f2f6a2f836ca"/><file name="ResponseMetadata.php" hash="40aa6720f5b801d3e5bdcadc3d496b69"/><file name="ReverseProviderCreditRequest.php" hash="51af6c8b7e31efd4fffafd83994fbc63"/><file name="ReverseProviderCreditResponse.php" hash="3a959a1b22156ddb81e2eed9e02a0da4"/><file name="ReverseProviderCreditResult.php" hash="6dc02bb8141e136a55d28034add4b101"/><file name="SellerBillingAgreementAttributes.php" hash="f46d36c1a55029d1423de6a7f554213f"/><file name="SellerOrderAttributes.php" hash="dfaca734d7b44dc4e38f5ebdcc14d7ef"/><file name="SetBillingAgreementDetailsRequest.php" hash="aa7c723f7f395ef59aded053413a30f0"/><file name="SetBillingAgreementDetailsResponse.php" hash="500823f0d779523ca912470d642f1cee"/><file name="SetBillingAgreementDetailsResult.php" hash="560eb1b417702c6170554b01bbd1666f"/><file name="SetOrderReferenceDetailsRequest.php" hash="01a63c649eafca4294e769d67dd5a176"/><file name="SetOrderReferenceDetailsResponse.php" hash="c88e8abc4e1ee3651e078691da8ea5c7"/><file name="SetOrderReferenceDetailsResult.php" hash="0bc28f81b9a000c14aa41866e53b256e"/><file name="Status.php" hash="0860d27faee2e1438c035fe769423935"/><file name="ValidateBillingAgreementRequest.php" hash="8919fcbfe049f8e655c5a3a649583c00"/><file name="ValidateBillingAgreementResponse.php" hash="7e34a36ef8e4970709308839a5f26a70"/><file name="ValidateBillingAgreementResult.php" hash="e111bac483f675c2f49aa51b3b727419"/></dir><file name="Model.php" hash="dd252b058b5736649cdec6038f825616"/><file name="RegionSpecificProperties.php" hash="5b1fa0f3a863c6f05adfd4e2abf61351"/><file name="Regions.php" hash="a544d12c6321899770c039426e063cce"/></dir></target><target name="mageskin"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="creativestyle"><dir name="css"><file name="amazonpayments.css" hash="a1f07a48b8de6d1fa9391a4eed2f12be"/><file name="amazonpayments-highlight.css" hash="f6daf03c989ac56ad436300b5520f0df"/></dir><dir name="images"><file name="amazon-payments-advanced-creativestyle-logo.png" hash="bb507d0085dab135ac313b8068515620"/><file name="amazon-payments-advanced-creativestyle-header-logo.png" hash="1f17fc7a61f8aaf929000d1d87f7d943"/><file name="amazon-payments-advanced-creativestyle-header-logo-white.png" hash="4ce4ba0d8d210a26caa380217804e200"/><file name="amazon-payments-advanced-header.png" hash="60f587870fbdb1242368c8c3b553bd8c"/><file name="amazon-payments-advanced-section.png" hash="8bc620f345eb46c920c51875d4cfad7c"/><file name="logo_a-glyph_16.png" hash="44a3f5f0013cab34d26653eb48b989fc"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="creativestyle"><dir name="css"><file name="amazonpayments.css" hash="98669e803a468cc7e01d481ce1647a0e"/><file name="amazonpayments-widgets.css" hash="35704192aaeb204e407e8b853c118d16"/><file name="amazonpayments-responsive-widgets.css" hash="ffca5cdc8a4e0585946c78258044c471"/></dir><dir name="images"><file name="amazon-loading-large.gif" hash="5f6d83bf2b69ab73c7e48ec9b66d54db"/><file name="logo_a-glyph_1x.png" hash="5d44ca86985afbb2a47b9265053a456e"/></dir></dir></dir></dir><dir name="rwd"><dir name="default"><dir name="creativestyle"><dir name="css"><file name="amazonpayments-responsive-widgets.css" hash="389d23ee96bb5305f7ba5b616d930846"/></dir></dir></dir></dir></dir></target></contents>
|
16 |
<compatible/>
|
17 |
<dependencies><required><php><min>5.2.0</min><max>6.0.0</max></php><extension><name>dom</name><min/><max/></extension><extension><name>curl</name><min/><max/></extension></required></dependencies>
|
18 |
</package>
|