├── .gitignore ├── README.md ├── package.json ├── readmes ├── catalogInventory_stock_item.md ├── catalog_category.md ├── catalog_category_attribute.md ├── catalog_product.md ├── catalog_product_attribute.md ├── catalog_product_attribute_media.md ├── catalog_product_attribute_set.md ├── catalog_product_custom_option.md ├── catalog_product_custom_option_value.md ├── catalog_product_downloadable_link.md ├── catalog_product_link.md ├── catalog_product_tag.md ├── catalog_product_tier_price.md ├── catalog_product_type.md ├── checkout_cart.md ├── checkout_cart_coupon.md ├── checkout_cart_customer.md ├── checkout_cart_payment.md ├── checkout_cart_product.md ├── checkout_cart_shipping.md ├── core.md ├── customer.md ├── customer_address.md ├── customer_group.md ├── directory_country.md ├── directory_region.md ├── sales_order.md ├── sales_order_credit_memo.md ├── sales_order_invoice.md ├── sales_order_shipment.md └── store.md └── src ├── curry.js ├── error.js ├── magento.js ├── prototype_base.js ├── resources ├── catalogInventory_stock_item.js ├── catalog_category.js ├── catalog_category_attribute.js ├── catalog_product.js ├── catalog_product_attribute.js ├── catalog_product_attribute_media.js ├── catalog_product_attribute_set.js ├── catalog_product_custom_option.js ├── catalog_product_custom_option_value.js ├── catalog_product_downloadable_link.js ├── catalog_product_link.js ├── catalog_product_tag.js ├── catalog_product_tier_price.js ├── catalog_product_type.js ├── checkout_cart.js ├── checkout_cart_coupon.js ├── checkout_cart_customer.js ├── checkout_cart_payment.js ├── checkout_cart_product.js ├── checkout_cart_shipping.js ├── core.js ├── customer.js ├── customer_address.js ├── customer_group.js ├── directory_country.js ├── directory_region.js ├── sales_order.js ├── sales_order_credit_memo.js ├── sales_order_invoice.js ├── sales_order_shipment.js └── store.js └── test └── index.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/package.json -------------------------------------------------------------------------------- /readmes/catalogInventory_stock_item.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/readmes/catalogInventory_stock_item.md -------------------------------------------------------------------------------- /readmes/catalog_category.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/readmes/catalog_category.md -------------------------------------------------------------------------------- /readmes/catalog_category_attribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/readmes/catalog_category_attribute.md -------------------------------------------------------------------------------- /readmes/catalog_product.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/readmes/catalog_product.md -------------------------------------------------------------------------------- /readmes/catalog_product_attribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/readmes/catalog_product_attribute.md -------------------------------------------------------------------------------- /readmes/catalog_product_attribute_media.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/readmes/catalog_product_attribute_media.md -------------------------------------------------------------------------------- /readmes/catalog_product_attribute_set.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/readmes/catalog_product_attribute_set.md -------------------------------------------------------------------------------- /readmes/catalog_product_custom_option.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/readmes/catalog_product_custom_option.md -------------------------------------------------------------------------------- /readmes/catalog_product_custom_option_value.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/readmes/catalog_product_custom_option_value.md -------------------------------------------------------------------------------- /readmes/catalog_product_downloadable_link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/readmes/catalog_product_downloadable_link.md -------------------------------------------------------------------------------- /readmes/catalog_product_link.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/readmes/catalog_product_link.md -------------------------------------------------------------------------------- /readmes/catalog_product_tag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/readmes/catalog_product_tag.md -------------------------------------------------------------------------------- /readmes/catalog_product_tier_price.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/readmes/catalog_product_tier_price.md -------------------------------------------------------------------------------- /readmes/catalog_product_type.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/readmes/catalog_product_type.md -------------------------------------------------------------------------------- /readmes/checkout_cart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/readmes/checkout_cart.md -------------------------------------------------------------------------------- /readmes/checkout_cart_coupon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/readmes/checkout_cart_coupon.md -------------------------------------------------------------------------------- /readmes/checkout_cart_customer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/readmes/checkout_cart_customer.md -------------------------------------------------------------------------------- /readmes/checkout_cart_payment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/readmes/checkout_cart_payment.md -------------------------------------------------------------------------------- /readmes/checkout_cart_product.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/readmes/checkout_cart_product.md -------------------------------------------------------------------------------- /readmes/checkout_cart_shipping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/readmes/checkout_cart_shipping.md -------------------------------------------------------------------------------- /readmes/core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/readmes/core.md -------------------------------------------------------------------------------- /readmes/customer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/readmes/customer.md -------------------------------------------------------------------------------- /readmes/customer_address.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/readmes/customer_address.md -------------------------------------------------------------------------------- /readmes/customer_group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/readmes/customer_group.md -------------------------------------------------------------------------------- /readmes/directory_country.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/readmes/directory_country.md -------------------------------------------------------------------------------- /readmes/directory_region.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/readmes/directory_region.md -------------------------------------------------------------------------------- /readmes/sales_order.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/readmes/sales_order.md -------------------------------------------------------------------------------- /readmes/sales_order_credit_memo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/readmes/sales_order_credit_memo.md -------------------------------------------------------------------------------- /readmes/sales_order_invoice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/readmes/sales_order_invoice.md -------------------------------------------------------------------------------- /readmes/sales_order_shipment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/readmes/sales_order_shipment.md -------------------------------------------------------------------------------- /readmes/store.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/readmes/store.md -------------------------------------------------------------------------------- /src/curry.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/src/curry.js -------------------------------------------------------------------------------- /src/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/src/error.js -------------------------------------------------------------------------------- /src/magento.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/src/magento.js -------------------------------------------------------------------------------- /src/prototype_base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/src/prototype_base.js -------------------------------------------------------------------------------- /src/resources/catalogInventory_stock_item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/src/resources/catalogInventory_stock_item.js -------------------------------------------------------------------------------- /src/resources/catalog_category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/src/resources/catalog_category.js -------------------------------------------------------------------------------- /src/resources/catalog_category_attribute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/src/resources/catalog_category_attribute.js -------------------------------------------------------------------------------- /src/resources/catalog_product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/src/resources/catalog_product.js -------------------------------------------------------------------------------- /src/resources/catalog_product_attribute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/src/resources/catalog_product_attribute.js -------------------------------------------------------------------------------- /src/resources/catalog_product_attribute_media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/src/resources/catalog_product_attribute_media.js -------------------------------------------------------------------------------- /src/resources/catalog_product_attribute_set.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/src/resources/catalog_product_attribute_set.js -------------------------------------------------------------------------------- /src/resources/catalog_product_custom_option.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/src/resources/catalog_product_custom_option.js -------------------------------------------------------------------------------- /src/resources/catalog_product_custom_option_value.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/src/resources/catalog_product_custom_option_value.js -------------------------------------------------------------------------------- /src/resources/catalog_product_downloadable_link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/src/resources/catalog_product_downloadable_link.js -------------------------------------------------------------------------------- /src/resources/catalog_product_link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/src/resources/catalog_product_link.js -------------------------------------------------------------------------------- /src/resources/catalog_product_tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/src/resources/catalog_product_tag.js -------------------------------------------------------------------------------- /src/resources/catalog_product_tier_price.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/src/resources/catalog_product_tier_price.js -------------------------------------------------------------------------------- /src/resources/catalog_product_type.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/src/resources/catalog_product_type.js -------------------------------------------------------------------------------- /src/resources/checkout_cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/src/resources/checkout_cart.js -------------------------------------------------------------------------------- /src/resources/checkout_cart_coupon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/src/resources/checkout_cart_coupon.js -------------------------------------------------------------------------------- /src/resources/checkout_cart_customer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/src/resources/checkout_cart_customer.js -------------------------------------------------------------------------------- /src/resources/checkout_cart_payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/src/resources/checkout_cart_payment.js -------------------------------------------------------------------------------- /src/resources/checkout_cart_product.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/src/resources/checkout_cart_product.js -------------------------------------------------------------------------------- /src/resources/checkout_cart_shipping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/src/resources/checkout_cart_shipping.js -------------------------------------------------------------------------------- /src/resources/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/src/resources/core.js -------------------------------------------------------------------------------- /src/resources/customer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/src/resources/customer.js -------------------------------------------------------------------------------- /src/resources/customer_address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/src/resources/customer_address.js -------------------------------------------------------------------------------- /src/resources/customer_group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/src/resources/customer_group.js -------------------------------------------------------------------------------- /src/resources/directory_country.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/src/resources/directory_country.js -------------------------------------------------------------------------------- /src/resources/directory_region.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/src/resources/directory_region.js -------------------------------------------------------------------------------- /src/resources/sales_order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/src/resources/sales_order.js -------------------------------------------------------------------------------- /src/resources/sales_order_credit_memo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/src/resources/sales_order_credit_memo.js -------------------------------------------------------------------------------- /src/resources/sales_order_invoice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/src/resources/sales_order_invoice.js -------------------------------------------------------------------------------- /src/resources/sales_order_shipment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/src/resources/sales_order_shipment.js -------------------------------------------------------------------------------- /src/resources/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/src/resources/store.js -------------------------------------------------------------------------------- /src/test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MadisonReed/magentoapi/HEAD/src/test/index.js --------------------------------------------------------------------------------