@sp-api-sdk/finances-api-v0 1.9.4 → 1.9.5
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/dist/cjs/src/api-model/api/default-api.js +4 -4
- package/dist/es/src/api-model/api/default-api.js +4 -4
- package/dist/types/src/api-model/api/default-api.d.ts +13 -13
- package/dist/types/src/api-model/base.d.ts +2 -2
- package/dist/types/src/api-model/common.d.ts +2 -2
- package/dist/types/src/api-model/models/adjustment-event.d.ts +4 -4
- package/dist/types/src/api-model/models/adjustment-item.d.ts +7 -7
- package/dist/types/src/api-model/models/affordability-expense-event.d.ts +9 -9
- package/dist/types/src/api-model/models/charge-component.d.ts +2 -2
- package/dist/types/src/api-model/models/charge-instrument.d.ts +3 -3
- package/dist/types/src/api-model/models/coupon-payment-event.d.ts +8 -8
- package/dist/types/src/api-model/models/currency.d.ts +2 -2
- package/dist/types/src/api-model/models/debt-recovery-event.d.ts +5 -5
- package/dist/types/src/api-model/models/debt-recovery-item.d.ts +4 -4
- package/dist/types/src/api-model/models/direct-payment.d.ts +2 -2
- package/dist/types/src/api-model/models/fbaliquidation-event.d.ts +4 -4
- package/dist/types/src/api-model/models/fee-component.d.ts +2 -2
- package/dist/types/src/api-model/models/financial-event-group.d.ts +11 -11
- package/dist/types/src/api-model/models/financial-events.d.ts +27 -27
- package/dist/types/src/api-model/models/imaging-services-fee-event.d.ts +4 -4
- package/dist/types/src/api-model/models/list-financial-event-groups-payload.d.ts +2 -2
- package/dist/types/src/api-model/models/list-financial-event-groups-response.d.ts +2 -2
- package/dist/types/src/api-model/models/list-financial-events-payload.d.ts +2 -2
- package/dist/types/src/api-model/models/list-financial-events-response.d.ts +2 -2
- package/dist/types/src/api-model/models/loan-servicing-event.d.ts +2 -2
- package/dist/types/src/api-model/models/model-error.d.ts +3 -3
- package/dist/types/src/api-model/models/network-commingling-transaction-event.d.ts +8 -8
- package/dist/types/src/api-model/models/pay-with-amazon-event.d.ts +10 -10
- package/dist/types/src/api-model/models/product-ads-payment-event.d.ts +6 -6
- package/dist/types/src/api-model/models/promotion.d.ts +3 -3
- package/dist/types/src/api-model/models/removal-shipment-adjustment-event.d.ts +6 -6
- package/dist/types/src/api-model/models/removal-shipment-event.d.ts +5 -5
- package/dist/types/src/api-model/models/removal-shipment-item-adjustment.d.ts +7 -7
- package/dist/types/src/api-model/models/removal-shipment-item.d.ts +8 -8
- package/dist/types/src/api-model/models/rental-transaction-event.d.ts +10 -10
- package/dist/types/src/api-model/models/retrocharge-event.d.ts +7 -7
- package/dist/types/src/api-model/models/safetreimbursement-event.d.ts +5 -5
- package/dist/types/src/api-model/models/safetreimbursement-item.d.ts +3 -3
- package/dist/types/src/api-model/models/seller-deal-payment-event.d.ts +8 -8
- package/dist/types/src/api-model/models/seller-review-enrollment-payment-event.d.ts +6 -6
- package/dist/types/src/api-model/models/service-fee-event.d.ts +7 -7
- package/dist/types/src/api-model/models/shipment-event.d.ts +13 -13
- package/dist/types/src/api-model/models/shipment-item.d.ts +13 -13
- package/dist/types/src/api-model/models/solution-provider-credit-event.d.ts +10 -10
- package/dist/types/src/api-model/models/tax-withheld-component.d.ts +2 -2
- package/dist/types/src/api-model/models/tax-withholding-event.d.ts +4 -4
- package/dist/types/src/api-model/models/tax-withholding-period.d.ts +2 -2
- package/dist/types/src/api-model/models/trial-shipment-event.d.ts +5 -5
- package/package.json +2 -2
|
@@ -21,41 +21,41 @@ export interface RemovalShipmentItemAdjustment {
|
|
|
21
21
|
* @type {string}
|
|
22
22
|
* @memberof RemovalShipmentItemAdjustment
|
|
23
23
|
*/
|
|
24
|
-
RemovalShipmentItemId?: string;
|
|
24
|
+
'RemovalShipmentItemId'?: string;
|
|
25
25
|
/**
|
|
26
26
|
* The tax collection model applied to the item. Possible values: * MarketplaceFacilitator - Tax is withheld and remitted to the taxing authority by Amazon on behalf of the seller. * Standard - Tax is paid to the seller and not remitted to the taxing authority by Amazon.
|
|
27
27
|
* @type {string}
|
|
28
28
|
* @memberof RemovalShipmentItemAdjustment
|
|
29
29
|
*/
|
|
30
|
-
TaxCollectionModel?: string;
|
|
30
|
+
'TaxCollectionModel'?: string;
|
|
31
31
|
/**
|
|
32
32
|
* The Amazon fulfillment network SKU for the item.
|
|
33
33
|
* @type {string}
|
|
34
34
|
* @memberof RemovalShipmentItemAdjustment
|
|
35
35
|
*/
|
|
36
|
-
FulfillmentNetworkSKU?: string;
|
|
36
|
+
'FulfillmentNetworkSKU'?: string;
|
|
37
37
|
/**
|
|
38
38
|
* Adjusted quantity of removal shipmentItemAdjustment items.
|
|
39
39
|
* @type {number}
|
|
40
40
|
* @memberof RemovalShipmentItemAdjustment
|
|
41
41
|
*/
|
|
42
|
-
AdjustedQuantity?: number;
|
|
42
|
+
'AdjustedQuantity'?: number;
|
|
43
43
|
/**
|
|
44
44
|
*
|
|
45
45
|
* @type {Currency}
|
|
46
46
|
* @memberof RemovalShipmentItemAdjustment
|
|
47
47
|
*/
|
|
48
|
-
RevenueAdjustment?: Currency;
|
|
48
|
+
'RevenueAdjustment'?: Currency;
|
|
49
49
|
/**
|
|
50
50
|
*
|
|
51
51
|
* @type {Currency}
|
|
52
52
|
* @memberof RemovalShipmentItemAdjustment
|
|
53
53
|
*/
|
|
54
|
-
TaxAmountAdjustment?: Currency;
|
|
54
|
+
'TaxAmountAdjustment'?: Currency;
|
|
55
55
|
/**
|
|
56
56
|
*
|
|
57
57
|
* @type {Currency}
|
|
58
58
|
* @memberof RemovalShipmentItemAdjustment
|
|
59
59
|
*/
|
|
60
|
-
TaxWithheldAdjustment?: Currency;
|
|
60
|
+
'TaxWithheldAdjustment'?: Currency;
|
|
61
61
|
}
|
|
@@ -21,47 +21,47 @@ export interface RemovalShipmentItem {
|
|
|
21
21
|
* @type {string}
|
|
22
22
|
* @memberof RemovalShipmentItem
|
|
23
23
|
*/
|
|
24
|
-
RemovalShipmentItemId?: string;
|
|
24
|
+
'RemovalShipmentItemId'?: string;
|
|
25
25
|
/**
|
|
26
26
|
* The tax collection model applied to the item. Possible values: * MarketplaceFacilitator - Tax is withheld and remitted to the taxing authority by Amazon on behalf of the seller. * Standard - Tax is paid to the seller and not remitted to the taxing authority by Amazon.
|
|
27
27
|
* @type {string}
|
|
28
28
|
* @memberof RemovalShipmentItem
|
|
29
29
|
*/
|
|
30
|
-
TaxCollectionModel?: string;
|
|
30
|
+
'TaxCollectionModel'?: string;
|
|
31
31
|
/**
|
|
32
32
|
* The Amazon fulfillment network SKU for the item.
|
|
33
33
|
* @type {string}
|
|
34
34
|
* @memberof RemovalShipmentItem
|
|
35
35
|
*/
|
|
36
|
-
FulfillmentNetworkSKU?: string;
|
|
36
|
+
'FulfillmentNetworkSKU'?: string;
|
|
37
37
|
/**
|
|
38
38
|
* The quantity of the item.
|
|
39
39
|
* @type {number}
|
|
40
40
|
* @memberof RemovalShipmentItem
|
|
41
41
|
*/
|
|
42
|
-
Quantity?: number;
|
|
42
|
+
'Quantity'?: number;
|
|
43
43
|
/**
|
|
44
44
|
*
|
|
45
45
|
* @type {Currency}
|
|
46
46
|
* @memberof RemovalShipmentItem
|
|
47
47
|
*/
|
|
48
|
-
Revenue?: Currency;
|
|
48
|
+
'Revenue'?: Currency;
|
|
49
49
|
/**
|
|
50
50
|
*
|
|
51
51
|
* @type {Currency}
|
|
52
52
|
* @memberof RemovalShipmentItem
|
|
53
53
|
*/
|
|
54
|
-
FeeAmount?: Currency;
|
|
54
|
+
'FeeAmount'?: Currency;
|
|
55
55
|
/**
|
|
56
56
|
*
|
|
57
57
|
* @type {Currency}
|
|
58
58
|
* @memberof RemovalShipmentItem
|
|
59
59
|
*/
|
|
60
|
-
TaxAmount?: Currency;
|
|
60
|
+
'TaxAmount'?: Currency;
|
|
61
61
|
/**
|
|
62
62
|
*
|
|
63
63
|
* @type {Currency}
|
|
64
64
|
* @memberof RemovalShipmentItem
|
|
65
65
|
*/
|
|
66
|
-
TaxWithheld?: Currency;
|
|
66
|
+
'TaxWithheld'?: Currency;
|
|
67
67
|
}
|
|
@@ -24,59 +24,59 @@ export interface RentalTransactionEvent {
|
|
|
24
24
|
* @type {string}
|
|
25
25
|
* @memberof RentalTransactionEvent
|
|
26
26
|
*/
|
|
27
|
-
AmazonOrderId?: string;
|
|
27
|
+
'AmazonOrderId'?: string;
|
|
28
28
|
/**
|
|
29
29
|
* The type of rental event. Possible values: * RentalCustomerPayment-Buyout - Transaction type that represents when the customer wants to buy out a rented item. * RentalCustomerPayment-Extension - Transaction type that represents when the customer wants to extend the rental period. * RentalCustomerRefund-Buyout - Transaction type that represents when the customer requests a refund for the buyout of the rented item. * RentalCustomerRefund-Extension - Transaction type that represents when the customer requests a refund over the extension on the rented item. * RentalHandlingFee - Transaction type that represents the fee that Amazon charges sellers who rent through Amazon. * RentalChargeFailureReimbursement - Transaction type that represents when Amazon sends money to the seller to compensate for a failed charge. * RentalLostItemReimbursement - Transaction type that represents when Amazon sends money to the seller to compensate for a lost item.
|
|
30
30
|
* @type {string}
|
|
31
31
|
* @memberof RentalTransactionEvent
|
|
32
32
|
*/
|
|
33
|
-
RentalEventType?: string;
|
|
33
|
+
'RentalEventType'?: string;
|
|
34
34
|
/**
|
|
35
35
|
* The number of days that the buyer extended an already rented item. This value is only returned for RentalCustomerPayment-Extension and RentalCustomerRefund-Extension events.
|
|
36
36
|
* @type {number}
|
|
37
37
|
* @memberof RentalTransactionEvent
|
|
38
38
|
*/
|
|
39
|
-
ExtensionLength?: number;
|
|
39
|
+
'ExtensionLength'?: number;
|
|
40
40
|
/**
|
|
41
41
|
*
|
|
42
42
|
* @type {string}
|
|
43
43
|
* @memberof RentalTransactionEvent
|
|
44
44
|
*/
|
|
45
|
-
PostedDate?: string;
|
|
45
|
+
'PostedDate'?: string;
|
|
46
46
|
/**
|
|
47
47
|
* A list of charge information on the seller\'s account.
|
|
48
48
|
* @type {Array<ChargeComponent>}
|
|
49
49
|
* @memberof RentalTransactionEvent
|
|
50
50
|
*/
|
|
51
|
-
RentalChargeList?: Array<ChargeComponent>;
|
|
51
|
+
'RentalChargeList'?: Array<ChargeComponent>;
|
|
52
52
|
/**
|
|
53
53
|
* A list of fee component information.
|
|
54
54
|
* @type {Array<FeeComponent>}
|
|
55
55
|
* @memberof RentalTransactionEvent
|
|
56
56
|
*/
|
|
57
|
-
RentalFeeList?: Array<FeeComponent>;
|
|
57
|
+
'RentalFeeList'?: Array<FeeComponent>;
|
|
58
58
|
/**
|
|
59
59
|
* The name of the marketplace.
|
|
60
60
|
* @type {string}
|
|
61
61
|
* @memberof RentalTransactionEvent
|
|
62
62
|
*/
|
|
63
|
-
MarketplaceName?: string;
|
|
63
|
+
'MarketplaceName'?: string;
|
|
64
64
|
/**
|
|
65
65
|
*
|
|
66
66
|
* @type {Currency}
|
|
67
67
|
* @memberof RentalTransactionEvent
|
|
68
68
|
*/
|
|
69
|
-
RentalInitialValue?: Currency;
|
|
69
|
+
'RentalInitialValue'?: Currency;
|
|
70
70
|
/**
|
|
71
71
|
*
|
|
72
72
|
* @type {Currency}
|
|
73
73
|
* @memberof RentalTransactionEvent
|
|
74
74
|
*/
|
|
75
|
-
RentalReimbursement?: Currency;
|
|
75
|
+
'RentalReimbursement'?: Currency;
|
|
76
76
|
/**
|
|
77
77
|
* A list of information about taxes withheld.
|
|
78
78
|
* @type {Array<TaxWithheldComponent>}
|
|
79
79
|
* @memberof RentalTransactionEvent
|
|
80
80
|
*/
|
|
81
|
-
RentalTaxWithheldList?: Array<TaxWithheldComponent>;
|
|
81
|
+
'RentalTaxWithheldList'?: Array<TaxWithheldComponent>;
|
|
82
82
|
}
|
|
@@ -22,41 +22,41 @@ export interface RetrochargeEvent {
|
|
|
22
22
|
* @type {string}
|
|
23
23
|
* @memberof RetrochargeEvent
|
|
24
24
|
*/
|
|
25
|
-
RetrochargeEventType?: string;
|
|
25
|
+
'RetrochargeEventType'?: string;
|
|
26
26
|
/**
|
|
27
27
|
* An Amazon-defined identifier for an order.
|
|
28
28
|
* @type {string}
|
|
29
29
|
* @memberof RetrochargeEvent
|
|
30
30
|
*/
|
|
31
|
-
AmazonOrderId?: string;
|
|
31
|
+
'AmazonOrderId'?: string;
|
|
32
32
|
/**
|
|
33
33
|
*
|
|
34
34
|
* @type {string}
|
|
35
35
|
* @memberof RetrochargeEvent
|
|
36
36
|
*/
|
|
37
|
-
PostedDate?: string;
|
|
37
|
+
'PostedDate'?: string;
|
|
38
38
|
/**
|
|
39
39
|
*
|
|
40
40
|
* @type {Currency}
|
|
41
41
|
* @memberof RetrochargeEvent
|
|
42
42
|
*/
|
|
43
|
-
BaseTax?: Currency;
|
|
43
|
+
'BaseTax'?: Currency;
|
|
44
44
|
/**
|
|
45
45
|
*
|
|
46
46
|
* @type {Currency}
|
|
47
47
|
* @memberof RetrochargeEvent
|
|
48
48
|
*/
|
|
49
|
-
ShippingTax?: Currency;
|
|
49
|
+
'ShippingTax'?: Currency;
|
|
50
50
|
/**
|
|
51
51
|
* The name of the marketplace where the retrocharge event occurred.
|
|
52
52
|
* @type {string}
|
|
53
53
|
* @memberof RetrochargeEvent
|
|
54
54
|
*/
|
|
55
|
-
MarketplaceName?: string;
|
|
55
|
+
'MarketplaceName'?: string;
|
|
56
56
|
/**
|
|
57
57
|
* A list of information about taxes withheld.
|
|
58
58
|
* @type {Array<TaxWithheldComponent>}
|
|
59
59
|
* @memberof RetrochargeEvent
|
|
60
60
|
*/
|
|
61
|
-
RetrochargeTaxWithheldList?: Array<TaxWithheldComponent>;
|
|
61
|
+
'RetrochargeTaxWithheldList'?: Array<TaxWithheldComponent>;
|
|
62
62
|
}
|
|
@@ -22,29 +22,29 @@ export interface SAFETReimbursementEvent {
|
|
|
22
22
|
* @type {string}
|
|
23
23
|
* @memberof SAFETReimbursementEvent
|
|
24
24
|
*/
|
|
25
|
-
PostedDate?: string;
|
|
25
|
+
'PostedDate'?: string;
|
|
26
26
|
/**
|
|
27
27
|
* A SAFE-T claim identifier.
|
|
28
28
|
* @type {string}
|
|
29
29
|
* @memberof SAFETReimbursementEvent
|
|
30
30
|
*/
|
|
31
|
-
SAFETClaimId?: string;
|
|
31
|
+
'SAFETClaimId'?: string;
|
|
32
32
|
/**
|
|
33
33
|
*
|
|
34
34
|
* @type {Currency}
|
|
35
35
|
* @memberof SAFETReimbursementEvent
|
|
36
36
|
*/
|
|
37
|
-
ReimbursedAmount?: Currency;
|
|
37
|
+
'ReimbursedAmount'?: Currency;
|
|
38
38
|
/**
|
|
39
39
|
* Indicates why the seller was reimbursed.
|
|
40
40
|
* @type {string}
|
|
41
41
|
* @memberof SAFETReimbursementEvent
|
|
42
42
|
*/
|
|
43
|
-
ReasonCode?: string;
|
|
43
|
+
'ReasonCode'?: string;
|
|
44
44
|
/**
|
|
45
45
|
* A list of SAFETReimbursementItems.
|
|
46
46
|
* @type {Array<SAFETReimbursementItem>}
|
|
47
47
|
* @memberof SAFETReimbursementEvent
|
|
48
48
|
*/
|
|
49
|
-
SAFETReimbursementItemList?: Array<SAFETReimbursementItem>;
|
|
49
|
+
'SAFETReimbursementItemList'?: Array<SAFETReimbursementItem>;
|
|
50
50
|
}
|
|
@@ -21,17 +21,17 @@ export interface SAFETReimbursementItem {
|
|
|
21
21
|
* @type {Array<ChargeComponent>}
|
|
22
22
|
* @memberof SAFETReimbursementItem
|
|
23
23
|
*/
|
|
24
|
-
itemChargeList?: Array<ChargeComponent>;
|
|
24
|
+
'itemChargeList'?: Array<ChargeComponent>;
|
|
25
25
|
/**
|
|
26
26
|
* The description of the item as shown on the product detail page on the retail website.
|
|
27
27
|
* @type {string}
|
|
28
28
|
* @memberof SAFETReimbursementItem
|
|
29
29
|
*/
|
|
30
|
-
productDescription?: string;
|
|
30
|
+
'productDescription'?: string;
|
|
31
31
|
/**
|
|
32
32
|
* The number of units of the item being reimbursed.
|
|
33
33
|
* @type {string}
|
|
34
34
|
* @memberof SAFETReimbursementItem
|
|
35
35
|
*/
|
|
36
|
-
quantity?: string;
|
|
36
|
+
'quantity'?: string;
|
|
37
37
|
}
|
|
@@ -21,47 +21,47 @@ export interface SellerDealPaymentEvent {
|
|
|
21
21
|
* @type {string}
|
|
22
22
|
* @memberof SellerDealPaymentEvent
|
|
23
23
|
*/
|
|
24
|
-
postedDate?: string;
|
|
24
|
+
'postedDate'?: string;
|
|
25
25
|
/**
|
|
26
26
|
* The unique identifier of the deal.
|
|
27
27
|
* @type {string}
|
|
28
28
|
* @memberof SellerDealPaymentEvent
|
|
29
29
|
*/
|
|
30
|
-
dealId?: string;
|
|
30
|
+
'dealId'?: string;
|
|
31
31
|
/**
|
|
32
32
|
* The internal description of the deal.
|
|
33
33
|
* @type {string}
|
|
34
34
|
* @memberof SellerDealPaymentEvent
|
|
35
35
|
*/
|
|
36
|
-
dealDescription?: string;
|
|
36
|
+
'dealDescription'?: string;
|
|
37
37
|
/**
|
|
38
38
|
* The type of event: SellerDealComplete.
|
|
39
39
|
* @type {string}
|
|
40
40
|
* @memberof SellerDealPaymentEvent
|
|
41
41
|
*/
|
|
42
|
-
eventType?: string;
|
|
42
|
+
'eventType'?: string;
|
|
43
43
|
/**
|
|
44
44
|
* The type of fee: RunLightningDealFee.
|
|
45
45
|
* @type {string}
|
|
46
46
|
* @memberof SellerDealPaymentEvent
|
|
47
47
|
*/
|
|
48
|
-
feeType?: string;
|
|
48
|
+
'feeType'?: string;
|
|
49
49
|
/**
|
|
50
50
|
*
|
|
51
51
|
* @type {Currency}
|
|
52
52
|
* @memberof SellerDealPaymentEvent
|
|
53
53
|
*/
|
|
54
|
-
feeAmount?: Currency;
|
|
54
|
+
'feeAmount'?: Currency;
|
|
55
55
|
/**
|
|
56
56
|
*
|
|
57
57
|
* @type {Currency}
|
|
58
58
|
* @memberof SellerDealPaymentEvent
|
|
59
59
|
*/
|
|
60
|
-
taxAmount?: Currency;
|
|
60
|
+
'taxAmount'?: Currency;
|
|
61
61
|
/**
|
|
62
62
|
*
|
|
63
63
|
* @type {Currency}
|
|
64
64
|
* @memberof SellerDealPaymentEvent
|
|
65
65
|
*/
|
|
66
|
-
totalAmount?: Currency;
|
|
66
|
+
'totalAmount'?: Currency;
|
|
67
67
|
}
|
|
@@ -23,35 +23,35 @@ export interface SellerReviewEnrollmentPaymentEvent {
|
|
|
23
23
|
* @type {string}
|
|
24
24
|
* @memberof SellerReviewEnrollmentPaymentEvent
|
|
25
25
|
*/
|
|
26
|
-
PostedDate?: string;
|
|
26
|
+
'PostedDate'?: string;
|
|
27
27
|
/**
|
|
28
28
|
* An enrollment identifier.
|
|
29
29
|
* @type {string}
|
|
30
30
|
* @memberof SellerReviewEnrollmentPaymentEvent
|
|
31
31
|
*/
|
|
32
|
-
EnrollmentId?: string;
|
|
32
|
+
'EnrollmentId'?: string;
|
|
33
33
|
/**
|
|
34
34
|
* The Amazon Standard Identification Number (ASIN) of the item that was enrolled in the Early Reviewer Program.
|
|
35
35
|
* @type {string}
|
|
36
36
|
* @memberof SellerReviewEnrollmentPaymentEvent
|
|
37
37
|
*/
|
|
38
|
-
ParentASIN?: string;
|
|
38
|
+
'ParentASIN'?: string;
|
|
39
39
|
/**
|
|
40
40
|
*
|
|
41
41
|
* @type {FeeComponent}
|
|
42
42
|
* @memberof SellerReviewEnrollmentPaymentEvent
|
|
43
43
|
*/
|
|
44
|
-
FeeComponent?: FeeComponent;
|
|
44
|
+
'FeeComponent'?: FeeComponent;
|
|
45
45
|
/**
|
|
46
46
|
*
|
|
47
47
|
* @type {ChargeComponent}
|
|
48
48
|
* @memberof SellerReviewEnrollmentPaymentEvent
|
|
49
49
|
*/
|
|
50
|
-
ChargeComponent?: ChargeComponent;
|
|
50
|
+
'ChargeComponent'?: ChargeComponent;
|
|
51
51
|
/**
|
|
52
52
|
*
|
|
53
53
|
* @type {Currency}
|
|
54
54
|
* @memberof SellerReviewEnrollmentPaymentEvent
|
|
55
55
|
*/
|
|
56
|
-
TotalAmount?: Currency;
|
|
56
|
+
'TotalAmount'?: Currency;
|
|
57
57
|
}
|
|
@@ -21,41 +21,41 @@ export interface ServiceFeeEvent {
|
|
|
21
21
|
* @type {string}
|
|
22
22
|
* @memberof ServiceFeeEvent
|
|
23
23
|
*/
|
|
24
|
-
AmazonOrderId?: string;
|
|
24
|
+
'AmazonOrderId'?: string;
|
|
25
25
|
/**
|
|
26
26
|
* A short description of the service fee reason.
|
|
27
27
|
* @type {string}
|
|
28
28
|
* @memberof ServiceFeeEvent
|
|
29
29
|
*/
|
|
30
|
-
FeeReason?: string;
|
|
30
|
+
'FeeReason'?: string;
|
|
31
31
|
/**
|
|
32
32
|
* A list of fee component information.
|
|
33
33
|
* @type {Array<FeeComponent>}
|
|
34
34
|
* @memberof ServiceFeeEvent
|
|
35
35
|
*/
|
|
36
|
-
FeeList?: Array<FeeComponent>;
|
|
36
|
+
'FeeList'?: Array<FeeComponent>;
|
|
37
37
|
/**
|
|
38
38
|
* The seller SKU of the item. The seller SKU is qualified by the seller\'s seller ID, which is included with every call to the Selling Partner API.
|
|
39
39
|
* @type {string}
|
|
40
40
|
* @memberof ServiceFeeEvent
|
|
41
41
|
*/
|
|
42
|
-
SellerSKU?: string;
|
|
42
|
+
'SellerSKU'?: string;
|
|
43
43
|
/**
|
|
44
44
|
* A unique identifier assigned by Amazon to products stored in and fulfilled from an Amazon fulfillment center.
|
|
45
45
|
* @type {string}
|
|
46
46
|
* @memberof ServiceFeeEvent
|
|
47
47
|
*/
|
|
48
|
-
FnSKU?: string;
|
|
48
|
+
'FnSKU'?: string;
|
|
49
49
|
/**
|
|
50
50
|
* A short description of the service fee event.
|
|
51
51
|
* @type {string}
|
|
52
52
|
* @memberof ServiceFeeEvent
|
|
53
53
|
*/
|
|
54
|
-
FeeDescription?: string;
|
|
54
|
+
'FeeDescription'?: string;
|
|
55
55
|
/**
|
|
56
56
|
* The Amazon Standard Identification Number (ASIN) of the item.
|
|
57
57
|
* @type {string}
|
|
58
58
|
* @memberof ServiceFeeEvent
|
|
59
59
|
*/
|
|
60
|
-
ASIN?: string;
|
|
60
|
+
'ASIN'?: string;
|
|
61
61
|
}
|
|
@@ -24,77 +24,77 @@ export interface ShipmentEvent {
|
|
|
24
24
|
* @type {string}
|
|
25
25
|
* @memberof ShipmentEvent
|
|
26
26
|
*/
|
|
27
|
-
AmazonOrderId?: string;
|
|
27
|
+
'AmazonOrderId'?: string;
|
|
28
28
|
/**
|
|
29
29
|
* A seller-defined identifier for an order.
|
|
30
30
|
* @type {string}
|
|
31
31
|
* @memberof ShipmentEvent
|
|
32
32
|
*/
|
|
33
|
-
SellerOrderId?: string;
|
|
33
|
+
'SellerOrderId'?: string;
|
|
34
34
|
/**
|
|
35
35
|
* The name of the marketplace where the event occurred.
|
|
36
36
|
* @type {string}
|
|
37
37
|
* @memberof ShipmentEvent
|
|
38
38
|
*/
|
|
39
|
-
MarketplaceName?: string;
|
|
39
|
+
'MarketplaceName'?: string;
|
|
40
40
|
/**
|
|
41
41
|
* A list of charge information on the seller\'s account.
|
|
42
42
|
* @type {Array<ChargeComponent>}
|
|
43
43
|
* @memberof ShipmentEvent
|
|
44
44
|
*/
|
|
45
|
-
OrderChargeList?: Array<ChargeComponent>;
|
|
45
|
+
'OrderChargeList'?: Array<ChargeComponent>;
|
|
46
46
|
/**
|
|
47
47
|
* A list of charge information on the seller\'s account.
|
|
48
48
|
* @type {Array<ChargeComponent>}
|
|
49
49
|
* @memberof ShipmentEvent
|
|
50
50
|
*/
|
|
51
|
-
OrderChargeAdjustmentList?: Array<ChargeComponent>;
|
|
51
|
+
'OrderChargeAdjustmentList'?: Array<ChargeComponent>;
|
|
52
52
|
/**
|
|
53
53
|
* A list of fee component information.
|
|
54
54
|
* @type {Array<FeeComponent>}
|
|
55
55
|
* @memberof ShipmentEvent
|
|
56
56
|
*/
|
|
57
|
-
ShipmentFeeList?: Array<FeeComponent>;
|
|
57
|
+
'ShipmentFeeList'?: Array<FeeComponent>;
|
|
58
58
|
/**
|
|
59
59
|
* A list of fee component information.
|
|
60
60
|
* @type {Array<FeeComponent>}
|
|
61
61
|
* @memberof ShipmentEvent
|
|
62
62
|
*/
|
|
63
|
-
ShipmentFeeAdjustmentList?: Array<FeeComponent>;
|
|
63
|
+
'ShipmentFeeAdjustmentList'?: Array<FeeComponent>;
|
|
64
64
|
/**
|
|
65
65
|
* A list of fee component information.
|
|
66
66
|
* @type {Array<FeeComponent>}
|
|
67
67
|
* @memberof ShipmentEvent
|
|
68
68
|
*/
|
|
69
|
-
OrderFeeList?: Array<FeeComponent>;
|
|
69
|
+
'OrderFeeList'?: Array<FeeComponent>;
|
|
70
70
|
/**
|
|
71
71
|
* A list of fee component information.
|
|
72
72
|
* @type {Array<FeeComponent>}
|
|
73
73
|
* @memberof ShipmentEvent
|
|
74
74
|
*/
|
|
75
|
-
OrderFeeAdjustmentList?: Array<FeeComponent>;
|
|
75
|
+
'OrderFeeAdjustmentList'?: Array<FeeComponent>;
|
|
76
76
|
/**
|
|
77
77
|
* A list of direct payment information.
|
|
78
78
|
* @type {Array<DirectPayment>}
|
|
79
79
|
* @memberof ShipmentEvent
|
|
80
80
|
*/
|
|
81
|
-
DirectPaymentList?: Array<DirectPayment>;
|
|
81
|
+
'DirectPaymentList'?: Array<DirectPayment>;
|
|
82
82
|
/**
|
|
83
83
|
*
|
|
84
84
|
* @type {string}
|
|
85
85
|
* @memberof ShipmentEvent
|
|
86
86
|
*/
|
|
87
|
-
PostedDate?: string;
|
|
87
|
+
'PostedDate'?: string;
|
|
88
88
|
/**
|
|
89
89
|
* A list of shipment items.
|
|
90
90
|
* @type {Array<ShipmentItem>}
|
|
91
91
|
* @memberof ShipmentEvent
|
|
92
92
|
*/
|
|
93
|
-
ShipmentItemList?: Array<ShipmentItem>;
|
|
93
|
+
'ShipmentItemList'?: Array<ShipmentItem>;
|
|
94
94
|
/**
|
|
95
95
|
* A list of shipment items.
|
|
96
96
|
* @type {Array<ShipmentItem>}
|
|
97
97
|
* @memberof ShipmentEvent
|
|
98
98
|
*/
|
|
99
|
-
ShipmentItemAdjustmentList?: Array<ShipmentItem>;
|
|
99
|
+
'ShipmentItemAdjustmentList'?: Array<ShipmentItem>;
|
|
100
100
|
}
|
|
@@ -25,77 +25,77 @@ export interface ShipmentItem {
|
|
|
25
25
|
* @type {string}
|
|
26
26
|
* @memberof ShipmentItem
|
|
27
27
|
*/
|
|
28
|
-
SellerSKU?: string;
|
|
28
|
+
'SellerSKU'?: string;
|
|
29
29
|
/**
|
|
30
30
|
* An Amazon-defined order item identifier.
|
|
31
31
|
* @type {string}
|
|
32
32
|
* @memberof ShipmentItem
|
|
33
33
|
*/
|
|
34
|
-
OrderItemId?: string;
|
|
34
|
+
'OrderItemId'?: string;
|
|
35
35
|
/**
|
|
36
36
|
* An Amazon-defined order adjustment identifier defined for refunds, guarantee claims, and chargeback events.
|
|
37
37
|
* @type {string}
|
|
38
38
|
* @memberof ShipmentItem
|
|
39
39
|
*/
|
|
40
|
-
OrderAdjustmentItemId?: string;
|
|
40
|
+
'OrderAdjustmentItemId'?: string;
|
|
41
41
|
/**
|
|
42
42
|
* The number of items shipped.
|
|
43
43
|
* @type {number}
|
|
44
44
|
* @memberof ShipmentItem
|
|
45
45
|
*/
|
|
46
|
-
QuantityShipped?: number;
|
|
46
|
+
'QuantityShipped'?: number;
|
|
47
47
|
/**
|
|
48
48
|
* A list of charge information on the seller\'s account.
|
|
49
49
|
* @type {Array<ChargeComponent>}
|
|
50
50
|
* @memberof ShipmentItem
|
|
51
51
|
*/
|
|
52
|
-
ItemChargeList?: Array<ChargeComponent>;
|
|
52
|
+
'ItemChargeList'?: Array<ChargeComponent>;
|
|
53
53
|
/**
|
|
54
54
|
* A list of charge information on the seller\'s account.
|
|
55
55
|
* @type {Array<ChargeComponent>}
|
|
56
56
|
* @memberof ShipmentItem
|
|
57
57
|
*/
|
|
58
|
-
ItemChargeAdjustmentList?: Array<ChargeComponent>;
|
|
58
|
+
'ItemChargeAdjustmentList'?: Array<ChargeComponent>;
|
|
59
59
|
/**
|
|
60
60
|
* A list of fee component information.
|
|
61
61
|
* @type {Array<FeeComponent>}
|
|
62
62
|
* @memberof ShipmentItem
|
|
63
63
|
*/
|
|
64
|
-
ItemFeeList?: Array<FeeComponent>;
|
|
64
|
+
'ItemFeeList'?: Array<FeeComponent>;
|
|
65
65
|
/**
|
|
66
66
|
* A list of fee component information.
|
|
67
67
|
* @type {Array<FeeComponent>}
|
|
68
68
|
* @memberof ShipmentItem
|
|
69
69
|
*/
|
|
70
|
-
ItemFeeAdjustmentList?: Array<FeeComponent>;
|
|
70
|
+
'ItemFeeAdjustmentList'?: Array<FeeComponent>;
|
|
71
71
|
/**
|
|
72
72
|
* A list of information about taxes withheld.
|
|
73
73
|
* @type {Array<TaxWithheldComponent>}
|
|
74
74
|
* @memberof ShipmentItem
|
|
75
75
|
*/
|
|
76
|
-
ItemTaxWithheldList?: Array<TaxWithheldComponent>;
|
|
76
|
+
'ItemTaxWithheldList'?: Array<TaxWithheldComponent>;
|
|
77
77
|
/**
|
|
78
78
|
* A list of promotions.
|
|
79
79
|
* @type {Array<Promotion>}
|
|
80
80
|
* @memberof ShipmentItem
|
|
81
81
|
*/
|
|
82
|
-
PromotionList?: Array<Promotion>;
|
|
82
|
+
'PromotionList'?: Array<Promotion>;
|
|
83
83
|
/**
|
|
84
84
|
* A list of promotions.
|
|
85
85
|
* @type {Array<Promotion>}
|
|
86
86
|
* @memberof ShipmentItem
|
|
87
87
|
*/
|
|
88
|
-
PromotionAdjustmentList?: Array<Promotion>;
|
|
88
|
+
'PromotionAdjustmentList'?: Array<Promotion>;
|
|
89
89
|
/**
|
|
90
90
|
*
|
|
91
91
|
* @type {Currency}
|
|
92
92
|
* @memberof ShipmentItem
|
|
93
93
|
*/
|
|
94
|
-
CostOfPointsGranted?: Currency;
|
|
94
|
+
'CostOfPointsGranted'?: Currency;
|
|
95
95
|
/**
|
|
96
96
|
*
|
|
97
97
|
* @type {Currency}
|
|
98
98
|
* @memberof ShipmentItem
|
|
99
99
|
*/
|
|
100
|
-
CostOfPointsReturned?: Currency;
|
|
100
|
+
'CostOfPointsReturned'?: Currency;
|
|
101
101
|
}
|