Skip to content

Commit 47c5c05

Browse files
author
Stefan Neuhaus
committed
Initial Commit
1 parent d9bab89 commit 47c5c05

File tree

1,939 files changed

+112790
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,939 files changed

+112790
-1
lines changed

.babelrc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"plugins": [
3+
["babel-plugin-transform-builtin-extend", {
4+
"globals": ["Error", "Array"]
5+
}]
6+
],
7+
"presets": ["env", "stage-0"]
8+
}

.swagger-codegen-ignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Swagger Codegen Ignore
2+
# Generated by swagger-codegen https://github.com/swagger-api/swagger-codegen
3+
4+
# Use this file to prevent files from being overwritten by the generator.
5+
# The patterns follow closely to .gitignore or .dockerignore.
6+
7+
# As an example, the C# client generator defines ApiClient.cs.
8+
# You can make changes and tell Swagger Codgen to ignore just this file by uncommenting the following line:
9+
#ApiClient.cs
10+
11+
# You can match any string of characters against a directory, file or extension with a single asterisk (*):
12+
#foo/*/qux
13+
# The above matches foo/bar/qux and foo/baz/qux, but not foo/bar/baz/qux
14+
15+
# You can recursively match patterns against a directory, file or extension with a double asterisk (**):
16+
#foo/**/qux
17+
# This matches foo/bar/qux, foo/baz/qux, and foo/bar/baz/qux
18+
19+
# You can also negate patterns with an exclamation (!).
20+
# For example, you can ignore all files in a docs folder with the file extension .md:
21+
#docs/*.md
22+
# Then explicitly reverse the ignore rule for a single file:
23+
#!docs/README.md

.swagger-codegen/VERSION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.0.20

.travis.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
language: node_js
2+
node_js:
3+
- "6"
4+
- "6.1"
5+
- "5"
6+
- "5.11"
7+

README.md

Lines changed: 31 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,31 @@
1-
# amazon-sp-api-javascript
1+
# Amazon Selling Partner API JS
2+
3+
This is an API Binding in JS for the new Amazon Selling Partner API.
4+
5+
Please note, that the code in this repository is generated through `swagger-codegen` with the [OpenAPI files provided by Amazon](https://github.com/amzn/selling-partner-api-models/tree/main/models).
6+
7+
The purpose of this package is to have an easy way of getting started with the Amazon Selling Partner API through a simple NPM/Yarn package.
8+
9+
# Installation
10+
11+
Just require this package via npm:
12+
13+
```
14+
npm install @clousale/amazon-sp-api
15+
```
16+
17+
or yarn
18+
19+
```
20+
yarn add @clousale/amazon-sp-api
21+
```
22+
23+
# Detailed Documentation
24+
25+
You can find detailed documentation for this JS Library in the [`docs` directory](https://github.com/clousale/amazon-sp-api-js/tree/master/docs)
26+
27+
You can find general information about the Amazon Selling Partner API on [the official Amazon Developer Website](https://developer.amazonservices.com)
28+
29+
# Notes
30+
31+
If you're looking for a complete Repricing & FBA-Reimbursement solution, you might want to consider giving [ClouSale.com](https://www.clousale.com) a shot.

docs/ASINIdentifier.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# SellingPartnerApiForPricing.ASINIdentifier
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**marketplaceId** | **String** | A marketplace identifier. |
7+
**ASIN** | **String** | The Amazon Standard Identification Number (ASIN) of the item. |

docs/ASINInboundGuidance.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# SellingPartnerApiForFulfillmentInbound.ASINInboundGuidance
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**ASIN** | **String** | The Amazon Standard Identification Number (ASIN) of the item. |
7+
**inboundGuidance** | [**InboundGuidance**](InboundGuidance.md) | |
8+
**guidanceReasonList** | [**GuidanceReasonList**](GuidanceReasonList.md) | | [optional]

docs/ASINInboundGuidanceList.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# SellingPartnerApiForFulfillmentInbound.ASINInboundGuidanceList
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------

docs/ASINPrepInstructions.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# SellingPartnerApiForFulfillmentInbound.ASINPrepInstructions
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**ASIN** | **String** | The Amazon Standard Identification Number (ASIN) of the item. | [optional]
7+
**barcodeInstruction** | [**BarcodeInstruction**](BarcodeInstruction.md) | | [optional]
8+
**prepGuidance** | [**PrepGuidance**](PrepGuidance.md) | | [optional]
9+
**prepInstructionList** | [**PrepInstructionList**](PrepInstructionList.md) | | [optional]

docs/ASINPrepInstructionsList.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# SellingPartnerApiForFulfillmentInbound.ASINPrepInstructionsList
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------

0 commit comments

Comments
 (0)