ebay-api 8.7.0 → 8.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/api/apiFactory.d.ts +1 -1
- package/dist/api/apiFactory.js +5 -4
- package/dist/api/restful/commerce/index.d.ts +3 -1
- package/dist/api/restful/commerce/index.js +2 -1
- package/dist/ebay-api.min.mjs +1 -1
- package/lib/api/apiFactory.d.ts +1 -1
- package/lib/api/apiFactory.js +4 -3
- package/lib/api/restful/commerce/index.d.ts +3 -1
- package/lib/api/restful/commerce/index.js +9 -7
- package/lib/ebay-api.min.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ It supports `client credentials grant` and `authorization code grant` \(Auth'N'A
|
|
|
21
21
|
|
|
22
22
|
## Changelog
|
|
23
23
|
|
|
24
|
-
* `v8.7.
|
|
24
|
+
* `v8.7.1` is the latest release.
|
|
25
25
|
* See [here](https://github.com/hendt/ebay-api/blob/master/CHANGELOG.md) for the full changelog.
|
|
26
26
|
|
|
27
27
|
## Implementation status
|
package/dist/api/apiFactory.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ClientAlerts, Finding, Shopping, Trading
|
|
1
|
+
import { ClientAlerts, Finding, Merchandising, Shopping, Trading } from '../types/index.js';
|
|
2
2
|
import Api from './index.js';
|
|
3
3
|
import { Buy } from './restful/buy/index.js';
|
|
4
4
|
import { Commerce } from './restful/commerce/index.js';
|
package/dist/api/apiFactory.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import Api from './index.js';
|
|
2
2
|
import { Browse, Deal, Feed, Marketing as BuyMarketing, MarketplaceInsights, Offer, Order } from './restful/buy/index.js';
|
|
3
|
-
import { Catalog, Charity, Identity, Notification, Taxonomy, Translation } from './restful/commerce/index.js';
|
|
3
|
+
import { Catalog, Charity, Identity, Media, Notification, Taxonomy, Translation } from './restful/commerce/index.js';
|
|
4
4
|
import { Analytics as DeveloperAnalytics, KeyManagement } from './restful/developer/index.js';
|
|
5
5
|
import { Cancellation, Case, Inquiry, Return, } from './restful/postOrder/index.js';
|
|
6
6
|
import { Account, Analytics as SellAnalytics, Compliance, Feed as SellFeed, Finances, Fulfillment, Inventory, Listing, Logistics, Marketing as SellMarketing, Metadata, Negotiation, Recommendation } from './restful/sell/index.js';
|
|
@@ -24,11 +24,12 @@ export default class ApiFactory extends Api {
|
|
|
24
24
|
createCommerceApi() {
|
|
25
25
|
return {
|
|
26
26
|
catalog: this.createRestfulApi(Catalog),
|
|
27
|
-
identity: this.createRestfulApi(Identity),
|
|
28
|
-
taxonomy: this.createRestfulApi(Taxonomy),
|
|
29
|
-
translation: this.createRestfulApi(Translation),
|
|
30
27
|
charity: this.createRestfulApi(Charity),
|
|
28
|
+
identity: this.createRestfulApi(Identity),
|
|
31
29
|
notification: this.createRestfulApi(Notification),
|
|
30
|
+
media: this.createRestfulApi(Media),
|
|
31
|
+
translation: this.createRestfulApi(Translation),
|
|
32
|
+
taxonomy: this.createRestfulApi(Taxonomy),
|
|
32
33
|
};
|
|
33
34
|
}
|
|
34
35
|
createDeveloperApi() {
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import Catalog from './catalog/index.js';
|
|
2
2
|
import Charity from './charity/index.js';
|
|
3
3
|
import Identity from './identity/index.js';
|
|
4
|
+
import Media from './media/index.js';
|
|
4
5
|
import Notification from './notification/index.js';
|
|
5
6
|
import Taxonomy from './taxonomy/index.js';
|
|
6
7
|
import Translation from './translation/index.js';
|
|
@@ -11,5 +12,6 @@ export type Commerce = {
|
|
|
11
12
|
notification: Notification;
|
|
12
13
|
taxonomy: Taxonomy;
|
|
13
14
|
translation: Translation;
|
|
15
|
+
media: Media;
|
|
14
16
|
};
|
|
15
|
-
export { Catalog, Charity, Identity, Notification, Taxonomy, Translation };
|
|
17
|
+
export { Catalog, Charity, Identity, Notification, Taxonomy, Translation, Media };
|
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import Catalog from './catalog/index.js';
|
|
2
2
|
import Charity from './charity/index.js';
|
|
3
3
|
import Identity from './identity/index.js';
|
|
4
|
+
import Media from './media/index.js';
|
|
4
5
|
import Notification from './notification/index.js';
|
|
5
6
|
import Taxonomy from './taxonomy/index.js';
|
|
6
7
|
import Translation from './translation/index.js';
|
|
7
|
-
export { Catalog, Charity, Identity, Notification, Taxonomy, Translation };
|
|
8
|
+
export { Catalog, Charity, Identity, Notification, Taxonomy, Translation, Media };
|