@wix/auto_sdk_ecom_orders 1.0.26 → 1.0.28
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/build/cjs/src/ecom-v1-order-orders.types.d.ts +10 -10
- package/build/cjs/src/ecom-v1-order-orders.universal.d.ts +10 -10
- package/build/es/src/ecom-v1-order-orders.types.d.ts +10 -10
- package/build/es/src/ecom-v1-order-orders.universal.d.ts +10 -10
- package/build/internal/cjs/src/ecom-v1-order-orders.types.d.ts +10 -10
- package/build/internal/cjs/src/ecom-v1-order-orders.universal.d.ts +10 -10
- package/build/internal/es/src/ecom-v1-order-orders.types.d.ts +10 -10
- package/build/internal/es/src/ecom-v1-order-orders.universal.d.ts +10 -10
- package/package.json +2 -2
|
@@ -2224,7 +2224,7 @@ export interface Location {
|
|
|
2224
2224
|
*/
|
|
2225
2225
|
name?: string;
|
|
2226
2226
|
}
|
|
2227
|
-
/** Triggered when the
|
|
2227
|
+
/** Triggered when the order status changes to approved */
|
|
2228
2228
|
export interface OrderApproved {
|
|
2229
2229
|
/** The order that was updated */
|
|
2230
2230
|
order?: Order;
|
|
@@ -3099,7 +3099,7 @@ export interface Refund {
|
|
|
3099
3099
|
*/
|
|
3100
3100
|
createdDate?: Date | null;
|
|
3101
3101
|
/**
|
|
3102
|
-
* Aggregated refund
|
|
3102
|
+
* Aggregated refund summary.
|
|
3103
3103
|
* @readonly
|
|
3104
3104
|
*/
|
|
3105
3105
|
summary?: AggregatedRefundSummary;
|
|
@@ -3171,29 +3171,29 @@ export interface RefundStatusInfo {
|
|
|
3171
3171
|
description?: string | null;
|
|
3172
3172
|
}
|
|
3173
3173
|
export interface AggregatedRefundSummary {
|
|
3174
|
-
/** Total
|
|
3174
|
+
/** Total amount requested for refund. */
|
|
3175
3175
|
requestedRefund?: Price;
|
|
3176
|
-
/** Pending refund amount */
|
|
3176
|
+
/** Pending refund amount - the portion of `requestedRefund` that is still pending. */
|
|
3177
3177
|
pendingRefund?: Price;
|
|
3178
|
-
/** Refunded amount
|
|
3178
|
+
/** Refunded amount - the portion of `requestedRefund` that refunded successfully. */
|
|
3179
3179
|
refunded?: Price;
|
|
3180
|
-
/** Failed refund amount
|
|
3180
|
+
/** Failed refund amount - the portion of `requestedRefund` that failed. */
|
|
3181
3181
|
failedRefundAmount?: Price;
|
|
3182
|
-
/**
|
|
3182
|
+
/** Whether at least one refund transaction is still in `"PENDING"` status. */
|
|
3183
3183
|
pending?: boolean;
|
|
3184
|
-
/** Breakdown of refunded items. Available only after refund is
|
|
3184
|
+
/** Breakdown of refunded items. Available only after refund is complete. */
|
|
3185
3185
|
breakdown?: RefundItemsBreakdown;
|
|
3186
3186
|
}
|
|
3187
3187
|
export interface RefundItemsBreakdown {
|
|
3188
3188
|
/**
|
|
3189
|
-
* Refunded line items and amount refunded for each
|
|
3189
|
+
* Refunded line items and the amount refunded for each.
|
|
3190
3190
|
* @maxSize 300
|
|
3191
3191
|
*/
|
|
3192
3192
|
lineItems?: LineItemRefundSummary[];
|
|
3193
3193
|
}
|
|
3194
3194
|
export interface LineItemRefundSummary {
|
|
3195
3195
|
/**
|
|
3196
|
-
*
|
|
3196
|
+
* ID of the refunded line item.
|
|
3197
3197
|
* @format GUID
|
|
3198
3198
|
*/
|
|
3199
3199
|
lineItemId?: string;
|
|
@@ -2201,7 +2201,7 @@ export interface Location {
|
|
|
2201
2201
|
*/
|
|
2202
2202
|
name?: string;
|
|
2203
2203
|
}
|
|
2204
|
-
/** Triggered when the
|
|
2204
|
+
/** Triggered when the order status changes to approved */
|
|
2205
2205
|
export interface OrderApproved {
|
|
2206
2206
|
/** The order that was updated */
|
|
2207
2207
|
order?: Order;
|
|
@@ -3076,7 +3076,7 @@ export interface Refund {
|
|
|
3076
3076
|
*/
|
|
3077
3077
|
_createdDate?: Date | null;
|
|
3078
3078
|
/**
|
|
3079
|
-
* Aggregated refund
|
|
3079
|
+
* Aggregated refund summary.
|
|
3080
3080
|
* @readonly
|
|
3081
3081
|
*/
|
|
3082
3082
|
summary?: AggregatedRefundSummary;
|
|
@@ -3148,29 +3148,29 @@ export interface RefundStatusInfo {
|
|
|
3148
3148
|
description?: string | null;
|
|
3149
3149
|
}
|
|
3150
3150
|
export interface AggregatedRefundSummary {
|
|
3151
|
-
/** Total
|
|
3151
|
+
/** Total amount requested for refund. */
|
|
3152
3152
|
requestedRefund?: Price;
|
|
3153
|
-
/** Pending refund amount */
|
|
3153
|
+
/** Pending refund amount - the portion of `requestedRefund` that is still pending. */
|
|
3154
3154
|
pendingRefund?: Price;
|
|
3155
|
-
/** Refunded amount
|
|
3155
|
+
/** Refunded amount - the portion of `requestedRefund` that refunded successfully. */
|
|
3156
3156
|
refunded?: Price;
|
|
3157
|
-
/** Failed refund amount
|
|
3157
|
+
/** Failed refund amount - the portion of `requestedRefund` that failed. */
|
|
3158
3158
|
failedRefundAmount?: Price;
|
|
3159
|
-
/**
|
|
3159
|
+
/** Whether at least one refund transaction is still in `"PENDING"` status. */
|
|
3160
3160
|
pending?: boolean;
|
|
3161
|
-
/** Breakdown of refunded items. Available only after refund is
|
|
3161
|
+
/** Breakdown of refunded items. Available only after refund is complete. */
|
|
3162
3162
|
breakdown?: RefundItemsBreakdown;
|
|
3163
3163
|
}
|
|
3164
3164
|
export interface RefundItemsBreakdown {
|
|
3165
3165
|
/**
|
|
3166
|
-
* Refunded line items and amount refunded for each
|
|
3166
|
+
* Refunded line items and the amount refunded for each.
|
|
3167
3167
|
* @maxSize 300
|
|
3168
3168
|
*/
|
|
3169
3169
|
lineItems?: LineItemRefundSummary[];
|
|
3170
3170
|
}
|
|
3171
3171
|
export interface LineItemRefundSummary {
|
|
3172
3172
|
/**
|
|
3173
|
-
*
|
|
3173
|
+
* ID of the refunded line item.
|
|
3174
3174
|
* @format GUID
|
|
3175
3175
|
*/
|
|
3176
3176
|
lineItemId?: string;
|
|
@@ -2224,7 +2224,7 @@ export interface Location {
|
|
|
2224
2224
|
*/
|
|
2225
2225
|
name?: string;
|
|
2226
2226
|
}
|
|
2227
|
-
/** Triggered when the
|
|
2227
|
+
/** Triggered when the order status changes to approved */
|
|
2228
2228
|
export interface OrderApproved {
|
|
2229
2229
|
/** The order that was updated */
|
|
2230
2230
|
order?: Order;
|
|
@@ -3099,7 +3099,7 @@ export interface Refund {
|
|
|
3099
3099
|
*/
|
|
3100
3100
|
createdDate?: Date | null;
|
|
3101
3101
|
/**
|
|
3102
|
-
* Aggregated refund
|
|
3102
|
+
* Aggregated refund summary.
|
|
3103
3103
|
* @readonly
|
|
3104
3104
|
*/
|
|
3105
3105
|
summary?: AggregatedRefundSummary;
|
|
@@ -3171,29 +3171,29 @@ export interface RefundStatusInfo {
|
|
|
3171
3171
|
description?: string | null;
|
|
3172
3172
|
}
|
|
3173
3173
|
export interface AggregatedRefundSummary {
|
|
3174
|
-
/** Total
|
|
3174
|
+
/** Total amount requested for refund. */
|
|
3175
3175
|
requestedRefund?: Price;
|
|
3176
|
-
/** Pending refund amount */
|
|
3176
|
+
/** Pending refund amount - the portion of `requestedRefund` that is still pending. */
|
|
3177
3177
|
pendingRefund?: Price;
|
|
3178
|
-
/** Refunded amount
|
|
3178
|
+
/** Refunded amount - the portion of `requestedRefund` that refunded successfully. */
|
|
3179
3179
|
refunded?: Price;
|
|
3180
|
-
/** Failed refund amount
|
|
3180
|
+
/** Failed refund amount - the portion of `requestedRefund` that failed. */
|
|
3181
3181
|
failedRefundAmount?: Price;
|
|
3182
|
-
/**
|
|
3182
|
+
/** Whether at least one refund transaction is still in `"PENDING"` status. */
|
|
3183
3183
|
pending?: boolean;
|
|
3184
|
-
/** Breakdown of refunded items. Available only after refund is
|
|
3184
|
+
/** Breakdown of refunded items. Available only after refund is complete. */
|
|
3185
3185
|
breakdown?: RefundItemsBreakdown;
|
|
3186
3186
|
}
|
|
3187
3187
|
export interface RefundItemsBreakdown {
|
|
3188
3188
|
/**
|
|
3189
|
-
* Refunded line items and amount refunded for each
|
|
3189
|
+
* Refunded line items and the amount refunded for each.
|
|
3190
3190
|
* @maxSize 300
|
|
3191
3191
|
*/
|
|
3192
3192
|
lineItems?: LineItemRefundSummary[];
|
|
3193
3193
|
}
|
|
3194
3194
|
export interface LineItemRefundSummary {
|
|
3195
3195
|
/**
|
|
3196
|
-
*
|
|
3196
|
+
* ID of the refunded line item.
|
|
3197
3197
|
* @format GUID
|
|
3198
3198
|
*/
|
|
3199
3199
|
lineItemId?: string;
|
|
@@ -2201,7 +2201,7 @@ export interface Location {
|
|
|
2201
2201
|
*/
|
|
2202
2202
|
name?: string;
|
|
2203
2203
|
}
|
|
2204
|
-
/** Triggered when the
|
|
2204
|
+
/** Triggered when the order status changes to approved */
|
|
2205
2205
|
export interface OrderApproved {
|
|
2206
2206
|
/** The order that was updated */
|
|
2207
2207
|
order?: Order;
|
|
@@ -3076,7 +3076,7 @@ export interface Refund {
|
|
|
3076
3076
|
*/
|
|
3077
3077
|
_createdDate?: Date | null;
|
|
3078
3078
|
/**
|
|
3079
|
-
* Aggregated refund
|
|
3079
|
+
* Aggregated refund summary.
|
|
3080
3080
|
* @readonly
|
|
3081
3081
|
*/
|
|
3082
3082
|
summary?: AggregatedRefundSummary;
|
|
@@ -3148,29 +3148,29 @@ export interface RefundStatusInfo {
|
|
|
3148
3148
|
description?: string | null;
|
|
3149
3149
|
}
|
|
3150
3150
|
export interface AggregatedRefundSummary {
|
|
3151
|
-
/** Total
|
|
3151
|
+
/** Total amount requested for refund. */
|
|
3152
3152
|
requestedRefund?: Price;
|
|
3153
|
-
/** Pending refund amount */
|
|
3153
|
+
/** Pending refund amount - the portion of `requestedRefund` that is still pending. */
|
|
3154
3154
|
pendingRefund?: Price;
|
|
3155
|
-
/** Refunded amount
|
|
3155
|
+
/** Refunded amount - the portion of `requestedRefund` that refunded successfully. */
|
|
3156
3156
|
refunded?: Price;
|
|
3157
|
-
/** Failed refund amount
|
|
3157
|
+
/** Failed refund amount - the portion of `requestedRefund` that failed. */
|
|
3158
3158
|
failedRefundAmount?: Price;
|
|
3159
|
-
/**
|
|
3159
|
+
/** Whether at least one refund transaction is still in `"PENDING"` status. */
|
|
3160
3160
|
pending?: boolean;
|
|
3161
|
-
/** Breakdown of refunded items. Available only after refund is
|
|
3161
|
+
/** Breakdown of refunded items. Available only after refund is complete. */
|
|
3162
3162
|
breakdown?: RefundItemsBreakdown;
|
|
3163
3163
|
}
|
|
3164
3164
|
export interface RefundItemsBreakdown {
|
|
3165
3165
|
/**
|
|
3166
|
-
* Refunded line items and amount refunded for each
|
|
3166
|
+
* Refunded line items and the amount refunded for each.
|
|
3167
3167
|
* @maxSize 300
|
|
3168
3168
|
*/
|
|
3169
3169
|
lineItems?: LineItemRefundSummary[];
|
|
3170
3170
|
}
|
|
3171
3171
|
export interface LineItemRefundSummary {
|
|
3172
3172
|
/**
|
|
3173
|
-
*
|
|
3173
|
+
* ID of the refunded line item.
|
|
3174
3174
|
* @format GUID
|
|
3175
3175
|
*/
|
|
3176
3176
|
lineItemId?: string;
|
|
@@ -2224,7 +2224,7 @@ export interface Location {
|
|
|
2224
2224
|
*/
|
|
2225
2225
|
name?: string;
|
|
2226
2226
|
}
|
|
2227
|
-
/** Triggered when the
|
|
2227
|
+
/** Triggered when the order status changes to approved */
|
|
2228
2228
|
export interface OrderApproved {
|
|
2229
2229
|
/** The order that was updated */
|
|
2230
2230
|
order?: Order;
|
|
@@ -3099,7 +3099,7 @@ export interface Refund {
|
|
|
3099
3099
|
*/
|
|
3100
3100
|
createdDate?: Date | null;
|
|
3101
3101
|
/**
|
|
3102
|
-
* Aggregated refund
|
|
3102
|
+
* Aggregated refund summary.
|
|
3103
3103
|
* @readonly
|
|
3104
3104
|
*/
|
|
3105
3105
|
summary?: AggregatedRefundSummary;
|
|
@@ -3171,29 +3171,29 @@ export interface RefundStatusInfo {
|
|
|
3171
3171
|
description?: string | null;
|
|
3172
3172
|
}
|
|
3173
3173
|
export interface AggregatedRefundSummary {
|
|
3174
|
-
/** Total
|
|
3174
|
+
/** Total amount requested for refund. */
|
|
3175
3175
|
requestedRefund?: Price;
|
|
3176
|
-
/** Pending refund amount */
|
|
3176
|
+
/** Pending refund amount - the portion of `requestedRefund` that is still pending. */
|
|
3177
3177
|
pendingRefund?: Price;
|
|
3178
|
-
/** Refunded amount
|
|
3178
|
+
/** Refunded amount - the portion of `requestedRefund` that refunded successfully. */
|
|
3179
3179
|
refunded?: Price;
|
|
3180
|
-
/** Failed refund amount
|
|
3180
|
+
/** Failed refund amount - the portion of `requestedRefund` that failed. */
|
|
3181
3181
|
failedRefundAmount?: Price;
|
|
3182
|
-
/**
|
|
3182
|
+
/** Whether at least one refund transaction is still in `"PENDING"` status. */
|
|
3183
3183
|
pending?: boolean;
|
|
3184
|
-
/** Breakdown of refunded items. Available only after refund is
|
|
3184
|
+
/** Breakdown of refunded items. Available only after refund is complete. */
|
|
3185
3185
|
breakdown?: RefundItemsBreakdown;
|
|
3186
3186
|
}
|
|
3187
3187
|
export interface RefundItemsBreakdown {
|
|
3188
3188
|
/**
|
|
3189
|
-
* Refunded line items and amount refunded for each
|
|
3189
|
+
* Refunded line items and the amount refunded for each.
|
|
3190
3190
|
* @maxSize 300
|
|
3191
3191
|
*/
|
|
3192
3192
|
lineItems?: LineItemRefundSummary[];
|
|
3193
3193
|
}
|
|
3194
3194
|
export interface LineItemRefundSummary {
|
|
3195
3195
|
/**
|
|
3196
|
-
*
|
|
3196
|
+
* ID of the refunded line item.
|
|
3197
3197
|
* @format GUID
|
|
3198
3198
|
*/
|
|
3199
3199
|
lineItemId?: string;
|
|
@@ -2391,7 +2391,7 @@ export interface Location {
|
|
|
2391
2391
|
*/
|
|
2392
2392
|
name?: string;
|
|
2393
2393
|
}
|
|
2394
|
-
/** Triggered when the
|
|
2394
|
+
/** Triggered when the order status changes to approved */
|
|
2395
2395
|
export interface OrderApproved {
|
|
2396
2396
|
/** The order that was updated */
|
|
2397
2397
|
order?: Order;
|
|
@@ -3318,7 +3318,7 @@ export interface Refund {
|
|
|
3318
3318
|
*/
|
|
3319
3319
|
_createdDate?: Date | null;
|
|
3320
3320
|
/**
|
|
3321
|
-
* Aggregated refund
|
|
3321
|
+
* Aggregated refund summary.
|
|
3322
3322
|
* @readonly
|
|
3323
3323
|
*/
|
|
3324
3324
|
summary?: AggregatedRefundSummary;
|
|
@@ -3390,29 +3390,29 @@ export interface RefundStatusInfo {
|
|
|
3390
3390
|
description?: string | null;
|
|
3391
3391
|
}
|
|
3392
3392
|
export interface AggregatedRefundSummary {
|
|
3393
|
-
/** Total
|
|
3393
|
+
/** Total amount requested for refund. */
|
|
3394
3394
|
requestedRefund?: Price;
|
|
3395
|
-
/** Pending refund amount */
|
|
3395
|
+
/** Pending refund amount - the portion of `requestedRefund` that is still pending. */
|
|
3396
3396
|
pendingRefund?: Price;
|
|
3397
|
-
/** Refunded amount
|
|
3397
|
+
/** Refunded amount - the portion of `requestedRefund` that refunded successfully. */
|
|
3398
3398
|
refunded?: Price;
|
|
3399
|
-
/** Failed refund amount
|
|
3399
|
+
/** Failed refund amount - the portion of `requestedRefund` that failed. */
|
|
3400
3400
|
failedRefundAmount?: Price;
|
|
3401
|
-
/**
|
|
3401
|
+
/** Whether at least one refund transaction is still in `"PENDING"` status. */
|
|
3402
3402
|
pending?: boolean;
|
|
3403
|
-
/** Breakdown of refunded items. Available only after refund is
|
|
3403
|
+
/** Breakdown of refunded items. Available only after refund is complete. */
|
|
3404
3404
|
breakdown?: RefundItemsBreakdown;
|
|
3405
3405
|
}
|
|
3406
3406
|
export interface RefundItemsBreakdown {
|
|
3407
3407
|
/**
|
|
3408
|
-
* Refunded line items and amount refunded for each
|
|
3408
|
+
* Refunded line items and the amount refunded for each.
|
|
3409
3409
|
* @maxSize 300
|
|
3410
3410
|
*/
|
|
3411
3411
|
lineItems?: LineItemRefundSummary[];
|
|
3412
3412
|
}
|
|
3413
3413
|
export interface LineItemRefundSummary {
|
|
3414
3414
|
/**
|
|
3415
|
-
*
|
|
3415
|
+
* ID of the refunded line item.
|
|
3416
3416
|
* @format GUID
|
|
3417
3417
|
*/
|
|
3418
3418
|
lineItemId?: string;
|
|
@@ -2224,7 +2224,7 @@ export interface Location {
|
|
|
2224
2224
|
*/
|
|
2225
2225
|
name?: string;
|
|
2226
2226
|
}
|
|
2227
|
-
/** Triggered when the
|
|
2227
|
+
/** Triggered when the order status changes to approved */
|
|
2228
2228
|
export interface OrderApproved {
|
|
2229
2229
|
/** The order that was updated */
|
|
2230
2230
|
order?: Order;
|
|
@@ -3099,7 +3099,7 @@ export interface Refund {
|
|
|
3099
3099
|
*/
|
|
3100
3100
|
createdDate?: Date | null;
|
|
3101
3101
|
/**
|
|
3102
|
-
* Aggregated refund
|
|
3102
|
+
* Aggregated refund summary.
|
|
3103
3103
|
* @readonly
|
|
3104
3104
|
*/
|
|
3105
3105
|
summary?: AggregatedRefundSummary;
|
|
@@ -3171,29 +3171,29 @@ export interface RefundStatusInfo {
|
|
|
3171
3171
|
description?: string | null;
|
|
3172
3172
|
}
|
|
3173
3173
|
export interface AggregatedRefundSummary {
|
|
3174
|
-
/** Total
|
|
3174
|
+
/** Total amount requested for refund. */
|
|
3175
3175
|
requestedRefund?: Price;
|
|
3176
|
-
/** Pending refund amount */
|
|
3176
|
+
/** Pending refund amount - the portion of `requestedRefund` that is still pending. */
|
|
3177
3177
|
pendingRefund?: Price;
|
|
3178
|
-
/** Refunded amount
|
|
3178
|
+
/** Refunded amount - the portion of `requestedRefund` that refunded successfully. */
|
|
3179
3179
|
refunded?: Price;
|
|
3180
|
-
/** Failed refund amount
|
|
3180
|
+
/** Failed refund amount - the portion of `requestedRefund` that failed. */
|
|
3181
3181
|
failedRefundAmount?: Price;
|
|
3182
|
-
/**
|
|
3182
|
+
/** Whether at least one refund transaction is still in `"PENDING"` status. */
|
|
3183
3183
|
pending?: boolean;
|
|
3184
|
-
/** Breakdown of refunded items. Available only after refund is
|
|
3184
|
+
/** Breakdown of refunded items. Available only after refund is complete. */
|
|
3185
3185
|
breakdown?: RefundItemsBreakdown;
|
|
3186
3186
|
}
|
|
3187
3187
|
export interface RefundItemsBreakdown {
|
|
3188
3188
|
/**
|
|
3189
|
-
* Refunded line items and amount refunded for each
|
|
3189
|
+
* Refunded line items and the amount refunded for each.
|
|
3190
3190
|
* @maxSize 300
|
|
3191
3191
|
*/
|
|
3192
3192
|
lineItems?: LineItemRefundSummary[];
|
|
3193
3193
|
}
|
|
3194
3194
|
export interface LineItemRefundSummary {
|
|
3195
3195
|
/**
|
|
3196
|
-
*
|
|
3196
|
+
* ID of the refunded line item.
|
|
3197
3197
|
* @format GUID
|
|
3198
3198
|
*/
|
|
3199
3199
|
lineItemId?: string;
|
|
@@ -2391,7 +2391,7 @@ export interface Location {
|
|
|
2391
2391
|
*/
|
|
2392
2392
|
name?: string;
|
|
2393
2393
|
}
|
|
2394
|
-
/** Triggered when the
|
|
2394
|
+
/** Triggered when the order status changes to approved */
|
|
2395
2395
|
export interface OrderApproved {
|
|
2396
2396
|
/** The order that was updated */
|
|
2397
2397
|
order?: Order;
|
|
@@ -3318,7 +3318,7 @@ export interface Refund {
|
|
|
3318
3318
|
*/
|
|
3319
3319
|
_createdDate?: Date | null;
|
|
3320
3320
|
/**
|
|
3321
|
-
* Aggregated refund
|
|
3321
|
+
* Aggregated refund summary.
|
|
3322
3322
|
* @readonly
|
|
3323
3323
|
*/
|
|
3324
3324
|
summary?: AggregatedRefundSummary;
|
|
@@ -3390,29 +3390,29 @@ export interface RefundStatusInfo {
|
|
|
3390
3390
|
description?: string | null;
|
|
3391
3391
|
}
|
|
3392
3392
|
export interface AggregatedRefundSummary {
|
|
3393
|
-
/** Total
|
|
3393
|
+
/** Total amount requested for refund. */
|
|
3394
3394
|
requestedRefund?: Price;
|
|
3395
|
-
/** Pending refund amount */
|
|
3395
|
+
/** Pending refund amount - the portion of `requestedRefund` that is still pending. */
|
|
3396
3396
|
pendingRefund?: Price;
|
|
3397
|
-
/** Refunded amount
|
|
3397
|
+
/** Refunded amount - the portion of `requestedRefund` that refunded successfully. */
|
|
3398
3398
|
refunded?: Price;
|
|
3399
|
-
/** Failed refund amount
|
|
3399
|
+
/** Failed refund amount - the portion of `requestedRefund` that failed. */
|
|
3400
3400
|
failedRefundAmount?: Price;
|
|
3401
|
-
/**
|
|
3401
|
+
/** Whether at least one refund transaction is still in `"PENDING"` status. */
|
|
3402
3402
|
pending?: boolean;
|
|
3403
|
-
/** Breakdown of refunded items. Available only after refund is
|
|
3403
|
+
/** Breakdown of refunded items. Available only after refund is complete. */
|
|
3404
3404
|
breakdown?: RefundItemsBreakdown;
|
|
3405
3405
|
}
|
|
3406
3406
|
export interface RefundItemsBreakdown {
|
|
3407
3407
|
/**
|
|
3408
|
-
* Refunded line items and amount refunded for each
|
|
3408
|
+
* Refunded line items and the amount refunded for each.
|
|
3409
3409
|
* @maxSize 300
|
|
3410
3410
|
*/
|
|
3411
3411
|
lineItems?: LineItemRefundSummary[];
|
|
3412
3412
|
}
|
|
3413
3413
|
export interface LineItemRefundSummary {
|
|
3414
3414
|
/**
|
|
3415
|
-
*
|
|
3415
|
+
* ID of the refunded line item.
|
|
3416
3416
|
* @format GUID
|
|
3417
3417
|
*/
|
|
3418
3418
|
lineItemId?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/auto_sdk_ecom_orders",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.28",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"fqdn": "wix.ecom.v1.order"
|
|
49
49
|
}
|
|
50
50
|
},
|
|
51
|
-
"falconPackageHash": "
|
|
51
|
+
"falconPackageHash": "42024a084acfdf08fc12460e00e73121475711b690916b00500fe71c"
|
|
52
52
|
}
|