Skip to content

Commit 7225b7b

Browse files
committed
Merge pull request #2 from lobot-io/v0.3.1
Updated documentation
2 parents 006f018 + ee7cde6 commit 7225b7b

File tree

3 files changed

+40
-34
lines changed

3 files changed

+40
-34
lines changed

MANUAL.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Magento-XMLRPC Manual
2+
3+
## Methods
4+
5+
+ [Catalog Category](./readmes/catalog_category.md)
6+
+ [Catalog Category Attribute](./readmes/catalog_category_attribute.md)
7+
+ [Catalog Product](./readmes/catalog_product.md)
8+
+ [Catalog Product Attribute](./readmes/catalog_product_attribute.md)
9+
+ [Catalog Product Attribute Media](./readmes/catalog_product_attribute_media.md)
10+
+ [Catalog Product Attribute Set](./readmes/catalog_product_attribute_set.md)
11+
+ [Catalog Product Custom Option](./readmes/catalog_product_custom_option.md)
12+
+ [Catalog Product Custom Option Value](./readmes/catalog_product_custom_option_value.md)
13+
+ [Catalog Product Downloadable Link](./readmes/catalog_product_downloadable_link.md)
14+
+ [Catalog Product Link](./readmes/catalog_product_link.md)
15+
+ [Catalog Product Tag](./readmes/catalog_product_tag.md)
16+
+ [Catalog Product Tier Price](./readmes/catalog_product_tier_price.md)
17+
+ [Catalog Product Type](./readmes/catalog_product_type.md)
18+
+ [Catalog Inventory Stock Item](./readmes/catalogInventory_stock_item.md)
19+
+ [Checkout Cart](./readmes/checkout_cart.md)
20+
+ [Checkout Cart Coupon](./readmes/checkout_cart_coupon.md)
21+
+ [Checkout Cart Customer](./readmes/checkout_cart_customer.md)
22+
+ [Checkout Cart Payment](./readmes/checkout_cart_payment.md)
23+
+ [Checkout Cart Product](./readmes/checkout_cart_product.md)
24+
+ [Checkout Cart Shipping](./readmes/checkout_cart_shipping.md)
25+
+ [Core](./readmes/core.md)
26+
+ [Customer](./readmes/customer.md)
27+
+ [Customer Address](./readmes/customer_address.md)
28+
+ [Customer Group](./readmes/customer_group.md)
29+
+ [Directory Country](./readmes/directory_country.md)
30+
+ [Directory Region](./readmes/directory_region.md)
31+
+ [Sales Order](./readmes/sales_order.md)
32+
+ [Sales Order Credit Memo](./readmes/sales_order_credit_memo.md)
33+
+ [Sales Order Invoice](./readmes/sales_order_invoice.md)
34+
+ [Sales Order Shipment](./readmes/sales_order_shipment.md)
35+
+ [Store](./readmes/store.md)

README.md

Lines changed: 4 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@
22

33
This wrapper lets you talk to Magento via XML-RPC.
44

5+
It is a minimally modified version of `magento` and `magento-api`, which incorrectly advertise as being SOAP clients.
6+
57
## Installation
68

7-
`npm install git+ssh://git@bitbucket.org/icecom/magentoapi.git`
9+
`npm install magento-xmlrpc`
810

911
## Usage
1012

@@ -39,35 +41,4 @@ All of the API methods take an object of params as the first argument, and a cal
3941
Or, if no params are sent, just a callback as the first argument.
4042

4143
## Methods
42-
43-
+ [Catalog Category](./readmes/catalog_category.md)
44-
+ [Catalog Category Attribute](./readmes/catalog_category_attribute.md)
45-
+ [Catalog Product](./readmes/catalog_product.md)
46-
+ [Catalog Product Attribute](./readmes/catalog_product_attribute.md)
47-
+ [Catalog Product Attribute Media](./readmes/catalog_product_attribute_media.md)
48-
+ [Catalog Product Attribute Set](./readmes/catalog_product_attribute_set.md)
49-
+ [Catalog Product Custom Option](./readmes/catalog_product_custom_option.md)
50-
+ [Catalog Product Custom Option Value](./readmes/catalog_product_custom_option_value.md)
51-
+ [Catalog Product Downloadable Link](./readmes/catalog_product_downloadable_link.md)
52-
+ [Catalog Product Link](./readmes/catalog_product_link.md)
53-
+ [Catalog Product Tag](./readmes/catalog_product_tag.md)
54-
+ [Catalog Product Tier Price](./readmes/catalog_product_tier_price.md)
55-
+ [Catalog Product Type](./readmes/catalog_product_type.md)
56-
+ [Catalog Inventory Stock Item](./readmes/catalogInventory_stock_item.md)
57-
+ [Checkout Cart](./readmes/checkout_cart.md)
58-
+ [Checkout Cart Coupon](./readmes/checkout_cart_coupon.md)
59-
+ [Checkout Cart Customer](./readmes/checkout_cart_customer.md)
60-
+ [Checkout Cart Payment](./readmes/checkout_cart_payment.md)
61-
+ [Checkout Cart Product](./readmes/checkout_cart_product.md)
62-
+ [Checkout Cart Shipping](./readmes/checkout_cart_shipping.md)
63-
+ [Core](./readmes/core.md)
64-
+ [Customer](./readmes/customer.md)
65-
+ [Customer Address](./readmes/customer_address.md)
66-
+ [Customer Group](./readmes/customer_group.md)
67-
+ [Directory Country](./readmes/directory_country.md)
68-
+ [Directory Region](./readmes/directory_region.md)
69-
+ [Sales Order](./readmes/sales_order.md)
70-
+ [Sales Order Credit Memo](./readmes/sales_order_credit_memo.md)
71-
+ [Sales Order Invoice](./readmes/sales_order_invoice.md)
72-
+ [Sales Order Shipment](./readmes/sales_order_shipment.md)
73-
+ [Store](./readmes/store.md)
44+
[Read the manual on Github](https://github.com/lobot-io/magento-xmlrpc/blob/master/MANUAL.md)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "magento-xmlrpc",
33
"author": "Steve Wolfe <stevenwolfe@gmail.com>",
44
"description": "Magento XML-RPC API wrapper for Node.js",
5-
"version": "0.3.0",
5+
"version": "0.3.1",
66
"main": "./src/magento",
77
"contributors": [{
88
"name": "Tim Marshall",

0 commit comments

Comments
 (0)