ebay-api 9.5.0 → 9.5.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 CHANGED
@@ -75,7 +75,7 @@ For more examples, check out the [examples directory](./examples).
75
75
 
76
76
  ## Changelog
77
77
 
78
- * `v9.5.0` is the latest release.
78
+ * `v9.5.1` is the latest release.
79
79
  * See [here](https://github.com/hendt/ebay-api/blob/master/CHANGELOG.md) for the full changelog.
80
80
 
81
81
  ## Implementation status
@@ -1,7 +1,8 @@
1
1
  import type { AddressType, CountryCodeType, CurrencyCodeType, DaysCodeType, StandardOutputFields } from './common.js';
2
2
  export interface GetSellerListResponse extends StandardOutputFields {
3
+ HasMoreItems?: boolean;
3
4
  ItemArray: {
4
- Item?: {
5
+ Item?: Array<{
5
6
  ApplicationData?: string;
6
7
  AutoPay?: boolean;
7
8
  BuyItNowPrice?: number | {
@@ -414,7 +415,7 @@ export interface GetSellerListResponse extends StandardOutputFields {
414
415
  WatchCount?: bigint;
415
416
  eBayPlus?: boolean;
416
417
  eBayPlusEligible?: boolean;
417
- };
418
+ }>;
418
419
  };
419
420
  ItemsPerPage: number;
420
421
  PageNumber: number;
@@ -427,8 +428,9 @@ export interface GetSellerListResponse extends StandardOutputFields {
427
428
  AboutMePage: boolean;
428
429
  Email?: string;
429
430
  FeedbackPrivate: boolean;
430
- FeedbackRatingStar: 'Blue' | 'CustomCode' | 'Green' | 'GreenShooting' | 'None' | 'Purple' | 'PurpleShooting' | 'Red' | 'RedShooting' | 'SilverShooting' | 'Turquoise' | 'TurquoiseShooting' | 'Yellow' | 'YellowShooting';
431
+ FeedbackRatingStar?: 'Blue' | 'CustomCode' | 'Green' | 'GreenShooting' | 'None' | 'Purple' | 'PurpleShooting' | 'Red' | 'RedShooting' | 'SilverShooting' | 'Turquoise' | 'TurquoiseShooting' | 'Yellow' | 'YellowShooting';
431
432
  FeedbackScore: number;
433
+ PositiveFeedbackPercent?: number;
432
434
  IDVerified: boolean;
433
435
  NewUser: boolean;
434
436
  RegistrationDate: string;
@@ -437,20 +439,23 @@ export interface GetSellerListResponse extends StandardOutputFields {
437
439
  CIPBankAccountStored: boolean;
438
440
  CheckoutEnabled: boolean;
439
441
  GoodStanding: boolean;
442
+ LiveAuctionAuthorized?: boolean;
443
+ MerchandizingPref?: string;
440
444
  QualifiesForB2BVAT: boolean;
441
445
  SafePaymentExempt: boolean;
442
- SellerLevel: 'Bronze' | 'CustomCode' | 'Gold' | 'None' | 'Platinum' | 'Silver' | 'Titanium';
446
+ SellerLevel?: 'Bronze' | 'CustomCode' | 'Gold' | 'None' | 'Platinum' | 'Silver' | 'Titanium';
443
447
  StoreOwner?: boolean;
444
448
  StoreURL?: string;
445
449
  TopRatedSeller?: boolean;
446
450
  };
447
451
  Site: 'Australia' | 'Austria' | 'Belgium_Dutch' | 'Belgium_French' | 'Canada' | 'CanadaFrench' | 'CustomCode' | 'Cyprus' | 'Czechia' | 'eBayMotors' | 'France' | 'Germany' | 'HongKong' | 'India' | 'Ireland' | 'Italy' | 'Malaysia' | 'Netherlands' | 'Philippines' | 'Poland' | 'Russia' | 'Singapore' | 'Spain' | 'Switzerland' | 'UK' | 'US';
448
452
  Status: 'AccountOnHold' | 'Confirmed' | 'CreditCardVerify' | 'CustomCode' | 'Deleted' | 'Ghost' | 'Guest' | 'InMaintenance' | 'Merged' | 'RegistrationCodeMailOut' | 'Suspended' | 'TermPending' | 'Unconfirmed' | 'Unknown';
449
- UserAnonymized: boolean;
453
+ UserAnonymized?: boolean;
450
454
  UserID: string;
451
455
  UserIDChanged: boolean;
452
456
  UserIDLastChanged: string;
453
457
  VATStatus: 'CustomCode' | 'NoVATTax' | 'VATExempt' | 'VATTax';
454
458
  eBayGoodStanding: boolean;
459
+ MotorsDealer?: boolean;
455
460
  };
456
461
  }
@@ -1,7 +1,8 @@
1
1
  import type { AddressType, CountryCodeType, CurrencyCodeType, DaysCodeType, StandardOutputFields } from './common.js';
2
2
  export interface GetSellerListResponse extends StandardOutputFields {
3
+ HasMoreItems?: boolean;
3
4
  ItemArray: {
4
- Item?: {
5
+ Item?: Array<{
5
6
  ApplicationData?: string;
6
7
  AutoPay?: boolean;
7
8
  BuyItNowPrice?: number | {
@@ -414,7 +415,7 @@ export interface GetSellerListResponse extends StandardOutputFields {
414
415
  WatchCount?: bigint;
415
416
  eBayPlus?: boolean;
416
417
  eBayPlusEligible?: boolean;
417
- };
418
+ }>;
418
419
  };
419
420
  ItemsPerPage: number;
420
421
  PageNumber: number;
@@ -427,8 +428,9 @@ export interface GetSellerListResponse extends StandardOutputFields {
427
428
  AboutMePage: boolean;
428
429
  Email?: string;
429
430
  FeedbackPrivate: boolean;
430
- FeedbackRatingStar: 'Blue' | 'CustomCode' | 'Green' | 'GreenShooting' | 'None' | 'Purple' | 'PurpleShooting' | 'Red' | 'RedShooting' | 'SilverShooting' | 'Turquoise' | 'TurquoiseShooting' | 'Yellow' | 'YellowShooting';
431
+ FeedbackRatingStar?: 'Blue' | 'CustomCode' | 'Green' | 'GreenShooting' | 'None' | 'Purple' | 'PurpleShooting' | 'Red' | 'RedShooting' | 'SilverShooting' | 'Turquoise' | 'TurquoiseShooting' | 'Yellow' | 'YellowShooting';
431
432
  FeedbackScore: number;
433
+ PositiveFeedbackPercent?: number;
432
434
  IDVerified: boolean;
433
435
  NewUser: boolean;
434
436
  RegistrationDate: string;
@@ -437,20 +439,23 @@ export interface GetSellerListResponse extends StandardOutputFields {
437
439
  CIPBankAccountStored: boolean;
438
440
  CheckoutEnabled: boolean;
439
441
  GoodStanding: boolean;
442
+ LiveAuctionAuthorized?: boolean;
443
+ MerchandizingPref?: string;
440
444
  QualifiesForB2BVAT: boolean;
441
445
  SafePaymentExempt: boolean;
442
- SellerLevel: 'Bronze' | 'CustomCode' | 'Gold' | 'None' | 'Platinum' | 'Silver' | 'Titanium';
446
+ SellerLevel?: 'Bronze' | 'CustomCode' | 'Gold' | 'None' | 'Platinum' | 'Silver' | 'Titanium';
443
447
  StoreOwner?: boolean;
444
448
  StoreURL?: string;
445
449
  TopRatedSeller?: boolean;
446
450
  };
447
451
  Site: 'Australia' | 'Austria' | 'Belgium_Dutch' | 'Belgium_French' | 'Canada' | 'CanadaFrench' | 'CustomCode' | 'Cyprus' | 'Czechia' | 'eBayMotors' | 'France' | 'Germany' | 'HongKong' | 'India' | 'Ireland' | 'Italy' | 'Malaysia' | 'Netherlands' | 'Philippines' | 'Poland' | 'Russia' | 'Singapore' | 'Spain' | 'Switzerland' | 'UK' | 'US';
448
452
  Status: 'AccountOnHold' | 'Confirmed' | 'CreditCardVerify' | 'CustomCode' | 'Deleted' | 'Ghost' | 'Guest' | 'InMaintenance' | 'Merged' | 'RegistrationCodeMailOut' | 'Suspended' | 'TermPending' | 'Unconfirmed' | 'Unknown';
449
- UserAnonymized: boolean;
453
+ UserAnonymized?: boolean;
450
454
  UserID: string;
451
455
  UserIDChanged: boolean;
452
456
  UserIDLastChanged: string;
453
457
  VATStatus: 'CustomCode' | 'NoVATTax' | 'VATExempt' | 'VATTax';
454
458
  eBayGoodStanding: boolean;
459
+ MotorsDealer?: boolean;
455
460
  };
456
461
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "ebay-api",
3
3
  "author": "Daniil Tomilow",
4
- "version": "9.5.0",
4
+ "version": "9.5.1",
5
5
  "description": "eBay API for Node and Browser",
6
6
  "type": "module",
7
7
  "main": "./lib/index.js",