Skip to content
This repository was archived by the owner on Oct 17, 2020. It is now read-only.

Commit 3d91411

Browse files
author
Sylvain Rayé
committed
Merge pull request #19 from xyphoid/master
Add customer username to Magento API.
2 parents 50775b9 + 3f1d8c9 commit 3d91411

File tree

2 files changed

+42
-0
lines changed

2 files changed

+42
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<definitions xmlns:typens="urn:{{var wsdl.name}}" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
3+
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns="http://schemas.xmlsoap.org/wsdl/"
4+
name="{{var wsdl.name}}" targetNamespace="urn:{{var wsdl.name}}">
5+
<types>
6+
<schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:Magento">
7+
<import namespace="http://schemas.xmlsoap.org/soap/encoding/" schemaLocation="http://schemas.xmlsoap.org/soap/encoding/" />
8+
<complexType name="customerCustomerEntityToCreate">
9+
<all>
10+
<element name="username" type="xsd:string" minOccurs="0" />
11+
</all>
12+
</complexType>
13+
<complexType name="customerCustomerEntity">
14+
<all>
15+
<element name="username" type="xsd:string" minOccurs="0" />
16+
</all>
17+
</complexType>
18+
</schema>
19+
</types>
20+
</definitions>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<wsdl:definitions xmlns:typens="urn:{{var wsdl.name}}"
3+
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
4+
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
5+
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
6+
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
7+
name="{{var wsdl.name}}"
8+
targetNamespace="urn:{{var wsdl.name}}">
9+
<wsdl:types>
10+
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:{{var wsdl.name}}">
11+
<xsd:complexType name="customerCustomerEntityToCreate">
12+
<xsd:sequence>
13+
<xsd:element name="username" type="xsd:string" minOccurs="0" />
14+
</xsd:sequence>
15+
</xsd:complexType>
16+
<xsd:complexType name="customerCustomerEntity">
17+
<xsd:sequence>
18+
<xsd:element name="username" type="xsd:string" minOccurs="0" />
19+
</xsd:sequence>
20+
</xsd:complexType>
21+
</wsdl:types>
22+
</wsdl:definitions>

0 commit comments

Comments
 (0)