@wix/ecom 1.0.792 → 1.0.794
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.
|
@@ -3934,17 +3934,15 @@ interface QueryV2$3 extends QueryV2PagingMethodOneOf$3 {
|
|
|
3934
3934
|
/** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
|
|
3935
3935
|
cursorPaging?: CursorPaging$j;
|
|
3936
3936
|
/**
|
|
3937
|
-
* Filter object
|
|
3938
|
-
*
|
|
3939
|
-
*
|
|
3940
|
-
* "fieldName2":{"$operator":"value2"}
|
|
3941
|
-
* }`
|
|
3942
|
-
* Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
|
|
3937
|
+
* Filter object.
|
|
3938
|
+
*
|
|
3939
|
+
* Learn more about the [filter section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-filter-section).
|
|
3943
3940
|
*/
|
|
3944
3941
|
filter?: Record<string, any> | null;
|
|
3945
3942
|
/**
|
|
3946
|
-
* Sort object
|
|
3947
|
-
*
|
|
3943
|
+
* Sort object.
|
|
3944
|
+
*
|
|
3945
|
+
* Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
|
|
3948
3946
|
*/
|
|
3949
3947
|
sort?: Sorting$j[];
|
|
3950
3948
|
/** Array of projected fields. A list of specific field names to return. If `fieldsets` are also specified, the union of `fieldsets` and `fields` is returned. */
|
|
@@ -4015,6 +4013,96 @@ interface Cursors$j {
|
|
|
4015
4013
|
/** Cursor pointing to the previous page in the list of results. */
|
|
4016
4014
|
prev?: string | null;
|
|
4017
4015
|
}
|
|
4016
|
+
interface SearchAbandonedCheckoutsRequest$1 {
|
|
4017
|
+
/** WQL query expression. */
|
|
4018
|
+
search?: Search$1;
|
|
4019
|
+
}
|
|
4020
|
+
interface Search$1 extends SearchPagingMethodOneOf$1 {
|
|
4021
|
+
/** Pointer to page of results using offset. Can not be used together with 'cursor_paging' */
|
|
4022
|
+
paging?: CommonPaging$1;
|
|
4023
|
+
/** Cursor pointing to page of results. Can't be used together with 'paging'. 'cursor_paging.cursor' can not be used together with 'filter' or 'sort' */
|
|
4024
|
+
cursorPaging?: CommonCursorPaging$1;
|
|
4025
|
+
/** A filter object. See documentation [here](https://bo.wix.com/wix-docs/rnd/platformization-guidelines/api-query-language#platformization-guidelines_api-query-language_defining-in-protobuf) */
|
|
4026
|
+
filter?: Record<string, any> | null;
|
|
4027
|
+
/** Sort object in the form [{"fieldName":"sortField1"},{"fieldName":"sortField2","direction":"DESC"}] */
|
|
4028
|
+
sort?: CommonSorting$1[];
|
|
4029
|
+
/** free text to match in searchable fields */
|
|
4030
|
+
search?: SearchDetails$1;
|
|
4031
|
+
}
|
|
4032
|
+
/** @oneof */
|
|
4033
|
+
interface SearchPagingMethodOneOf$1 {
|
|
4034
|
+
/** Pointer to page of results using offset. Can not be used together with 'cursor_paging' */
|
|
4035
|
+
paging?: CommonPaging$1;
|
|
4036
|
+
/** Cursor pointing to page of results. Can't be used together with 'paging'. 'cursor_paging.cursor' can not be used together with 'filter' or 'sort' */
|
|
4037
|
+
cursorPaging?: CommonCursorPaging$1;
|
|
4038
|
+
}
|
|
4039
|
+
interface CommonSorting$1 {
|
|
4040
|
+
/** Name of the field to sort by. */
|
|
4041
|
+
fieldName?: string;
|
|
4042
|
+
/** Sort order. */
|
|
4043
|
+
order?: CommonSortOrder$1;
|
|
4044
|
+
}
|
|
4045
|
+
declare enum CommonSortOrder$1 {
|
|
4046
|
+
ASC = "ASC",
|
|
4047
|
+
DESC = "DESC"
|
|
4048
|
+
}
|
|
4049
|
+
interface SearchDetails$1 {
|
|
4050
|
+
/** boolean search mode */
|
|
4051
|
+
mode?: Mode$1;
|
|
4052
|
+
/** search term or expression */
|
|
4053
|
+
expression?: string | null;
|
|
4054
|
+
/** fields to search in. if empty - server will search in own default fields */
|
|
4055
|
+
fields?: string[];
|
|
4056
|
+
/** flag if should use auto fuzzy search (allowing typos by a managed proximity algorithm) */
|
|
4057
|
+
fuzzy?: boolean;
|
|
4058
|
+
}
|
|
4059
|
+
declare enum Mode$1 {
|
|
4060
|
+
/** any */
|
|
4061
|
+
OR = "OR",
|
|
4062
|
+
/** all */
|
|
4063
|
+
AND = "AND"
|
|
4064
|
+
}
|
|
4065
|
+
interface CommonPaging$1 {
|
|
4066
|
+
/** Number of items to load. */
|
|
4067
|
+
limit?: number | null;
|
|
4068
|
+
/** Number of items to skip in the current sort order. */
|
|
4069
|
+
offset?: number | null;
|
|
4070
|
+
}
|
|
4071
|
+
interface CommonCursorPaging$1 {
|
|
4072
|
+
/** Maximum number of items to return in the results. */
|
|
4073
|
+
limit?: number | null;
|
|
4074
|
+
/**
|
|
4075
|
+
* Pointer to the next or previous page in the list of results.
|
|
4076
|
+
*
|
|
4077
|
+
* Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
|
|
4078
|
+
* Not relevant for the first request.
|
|
4079
|
+
*/
|
|
4080
|
+
cursor?: string | null;
|
|
4081
|
+
}
|
|
4082
|
+
interface SearchAbandonedCheckoutsResponse$1 {
|
|
4083
|
+
/** List of abandoned checkouts. */
|
|
4084
|
+
abandonedCheckouts?: AbandonedCheckout$1[];
|
|
4085
|
+
/** Paging metadata. Contains cursor which can be used in next query. */
|
|
4086
|
+
pagingMetadata?: CommonPagingMetadataV2$1;
|
|
4087
|
+
}
|
|
4088
|
+
interface CommonPagingMetadataV2$1 {
|
|
4089
|
+
/** Number of items returned in the response. */
|
|
4090
|
+
count?: number | null;
|
|
4091
|
+
/** Offset that was requested. */
|
|
4092
|
+
offset?: number | null;
|
|
4093
|
+
/** Total number of items that match the query. Returned if offset paging is used and the `tooManyToCount` flag is not set. */
|
|
4094
|
+
total?: number | null;
|
|
4095
|
+
/** Flag that indicates the server failed to calculate the `total` field. */
|
|
4096
|
+
tooManyToCount?: boolean | null;
|
|
4097
|
+
/** Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used. */
|
|
4098
|
+
cursors?: CommonCursors$1;
|
|
4099
|
+
}
|
|
4100
|
+
interface CommonCursors$1 {
|
|
4101
|
+
/** Cursor string pointing to the next page in the list of results. */
|
|
4102
|
+
next?: string | null;
|
|
4103
|
+
/** Cursor pointing to the previous page in the list of results. */
|
|
4104
|
+
prev?: string | null;
|
|
4105
|
+
}
|
|
4018
4106
|
interface RedirectToCheckoutRequest$1 {
|
|
4019
4107
|
/** abandoned checkout id */
|
|
4020
4108
|
abandonedCheckoutId: string;
|
|
@@ -4069,6 +4157,9 @@ interface QueryAbandonedCheckoutsResponseNonNullableFields$1 {
|
|
|
4069
4157
|
results: AbandonedCheckoutNonNullableFields$1[];
|
|
4070
4158
|
abandonedCheckouts: AbandonedCheckoutNonNullableFields$1[];
|
|
4071
4159
|
}
|
|
4160
|
+
interface SearchAbandonedCheckoutsResponseNonNullableFields$1 {
|
|
4161
|
+
abandonedCheckouts: AbandonedCheckoutNonNullableFields$1[];
|
|
4162
|
+
}
|
|
4072
4163
|
interface HeadersEntryNonNullableFields$3 {
|
|
4073
4164
|
key: string;
|
|
4074
4165
|
value: string;
|
|
@@ -4254,17 +4345,15 @@ interface QueryV2$2 extends QueryV2PagingMethodOneOf$2 {
|
|
|
4254
4345
|
/** Cursor token pointing to a page of results. Not used in the first request. Following requests use the cursor token and not `filter` or `sort`. */
|
|
4255
4346
|
cursorPaging?: CursorPaging$i;
|
|
4256
4347
|
/**
|
|
4257
|
-
* Filter object
|
|
4258
|
-
*
|
|
4259
|
-
*
|
|
4260
|
-
* "fieldName2":{"$operator":"value2"}
|
|
4261
|
-
* }`
|
|
4262
|
-
* Example of operators: `$eq`, `$ne`, `$lt`, `$lte`, `$gt`, `$gte`, `$in`, `$hasSome`, `$hasAll`, `$startsWith`, `$contains`
|
|
4348
|
+
* Filter object.
|
|
4349
|
+
*
|
|
4350
|
+
* Learn more about the [filter section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-filter-section).
|
|
4263
4351
|
*/
|
|
4264
4352
|
filter?: Record<string, any> | null;
|
|
4265
4353
|
/**
|
|
4266
|
-
* Sort object
|
|
4267
|
-
*
|
|
4354
|
+
* Sort object.
|
|
4355
|
+
*
|
|
4356
|
+
* Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
|
|
4268
4357
|
*/
|
|
4269
4358
|
sort?: Sorting$i[];
|
|
4270
4359
|
/** Array of projected fields. A list of specific field names to return. If `fieldsets` are also specified, the union of `fieldsets` and `fields` is returned. */
|
|
@@ -4335,6 +4424,96 @@ interface Cursors$i {
|
|
|
4335
4424
|
/** Cursor pointing to the previous page in the list of results. */
|
|
4336
4425
|
prev?: string | null;
|
|
4337
4426
|
}
|
|
4427
|
+
interface SearchAbandonedCheckoutsRequest {
|
|
4428
|
+
/** WQL query expression. */
|
|
4429
|
+
search?: Search;
|
|
4430
|
+
}
|
|
4431
|
+
interface Search extends SearchPagingMethodOneOf {
|
|
4432
|
+
/** Pointer to page of results using offset. Can not be used together with 'cursor_paging' */
|
|
4433
|
+
paging?: CommonPaging;
|
|
4434
|
+
/** Cursor pointing to page of results. Can't be used together with 'paging'. 'cursor_paging.cursor' can not be used together with 'filter' or 'sort' */
|
|
4435
|
+
cursorPaging?: CommonCursorPaging;
|
|
4436
|
+
/** A filter object. See documentation [here](https://bo.wix.com/wix-docs/rnd/platformization-guidelines/api-query-language#platformization-guidelines_api-query-language_defining-in-protobuf) */
|
|
4437
|
+
filter?: Record<string, any> | null;
|
|
4438
|
+
/** Sort object in the form [{"fieldName":"sortField1"},{"fieldName":"sortField2","direction":"DESC"}] */
|
|
4439
|
+
sort?: CommonSorting[];
|
|
4440
|
+
/** free text to match in searchable fields */
|
|
4441
|
+
search?: SearchDetails;
|
|
4442
|
+
}
|
|
4443
|
+
/** @oneof */
|
|
4444
|
+
interface SearchPagingMethodOneOf {
|
|
4445
|
+
/** Pointer to page of results using offset. Can not be used together with 'cursor_paging' */
|
|
4446
|
+
paging?: CommonPaging;
|
|
4447
|
+
/** Cursor pointing to page of results. Can't be used together with 'paging'. 'cursor_paging.cursor' can not be used together with 'filter' or 'sort' */
|
|
4448
|
+
cursorPaging?: CommonCursorPaging;
|
|
4449
|
+
}
|
|
4450
|
+
interface CommonSorting {
|
|
4451
|
+
/** Name of the field to sort by. */
|
|
4452
|
+
fieldName?: string;
|
|
4453
|
+
/** Sort order. */
|
|
4454
|
+
order?: CommonSortOrder;
|
|
4455
|
+
}
|
|
4456
|
+
declare enum CommonSortOrder {
|
|
4457
|
+
ASC = "ASC",
|
|
4458
|
+
DESC = "DESC"
|
|
4459
|
+
}
|
|
4460
|
+
interface SearchDetails {
|
|
4461
|
+
/** boolean search mode */
|
|
4462
|
+
mode?: Mode;
|
|
4463
|
+
/** search term or expression */
|
|
4464
|
+
expression?: string | null;
|
|
4465
|
+
/** fields to search in. if empty - server will search in own default fields */
|
|
4466
|
+
fields?: string[];
|
|
4467
|
+
/** flag if should use auto fuzzy search (allowing typos by a managed proximity algorithm) */
|
|
4468
|
+
fuzzy?: boolean;
|
|
4469
|
+
}
|
|
4470
|
+
declare enum Mode {
|
|
4471
|
+
/** any */
|
|
4472
|
+
OR = "OR",
|
|
4473
|
+
/** all */
|
|
4474
|
+
AND = "AND"
|
|
4475
|
+
}
|
|
4476
|
+
interface CommonPaging {
|
|
4477
|
+
/** Number of items to load. */
|
|
4478
|
+
limit?: number | null;
|
|
4479
|
+
/** Number of items to skip in the current sort order. */
|
|
4480
|
+
offset?: number | null;
|
|
4481
|
+
}
|
|
4482
|
+
interface CommonCursorPaging {
|
|
4483
|
+
/** Maximum number of items to return in the results. */
|
|
4484
|
+
limit?: number | null;
|
|
4485
|
+
/**
|
|
4486
|
+
* Pointer to the next or previous page in the list of results.
|
|
4487
|
+
*
|
|
4488
|
+
* Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.
|
|
4489
|
+
* Not relevant for the first request.
|
|
4490
|
+
*/
|
|
4491
|
+
cursor?: string | null;
|
|
4492
|
+
}
|
|
4493
|
+
interface SearchAbandonedCheckoutsResponse {
|
|
4494
|
+
/** List of abandoned checkouts. */
|
|
4495
|
+
abandonedCheckouts?: AbandonedCheckout[];
|
|
4496
|
+
/** Paging metadata. Contains cursor which can be used in next query. */
|
|
4497
|
+
pagingMetadata?: CommonPagingMetadataV2;
|
|
4498
|
+
}
|
|
4499
|
+
interface CommonPagingMetadataV2 {
|
|
4500
|
+
/** Number of items returned in the response. */
|
|
4501
|
+
count?: number | null;
|
|
4502
|
+
/** Offset that was requested. */
|
|
4503
|
+
offset?: number | null;
|
|
4504
|
+
/** Total number of items that match the query. Returned if offset paging is used and the `tooManyToCount` flag is not set. */
|
|
4505
|
+
total?: number | null;
|
|
4506
|
+
/** Flag that indicates the server failed to calculate the `total` field. */
|
|
4507
|
+
tooManyToCount?: boolean | null;
|
|
4508
|
+
/** Cursors to navigate through the result pages using `next` and `prev`. Returned if cursor paging is used. */
|
|
4509
|
+
cursors?: CommonCursors;
|
|
4510
|
+
}
|
|
4511
|
+
interface CommonCursors {
|
|
4512
|
+
/** Cursor string pointing to the next page in the list of results. */
|
|
4513
|
+
next?: string | null;
|
|
4514
|
+
/** Cursor pointing to the previous page in the list of results. */
|
|
4515
|
+
prev?: string | null;
|
|
4516
|
+
}
|
|
4338
4517
|
interface RedirectToCheckoutRequest {
|
|
4339
4518
|
/** abandoned checkout id */
|
|
4340
4519
|
abandonedCheckoutId: string;
|
|
@@ -4389,6 +4568,9 @@ interface QueryAbandonedCheckoutsResponseNonNullableFields {
|
|
|
4389
4568
|
results: AbandonedCheckoutNonNullableFields[];
|
|
4390
4569
|
abandonedCheckouts: AbandonedCheckoutNonNullableFields[];
|
|
4391
4570
|
}
|
|
4571
|
+
interface SearchAbandonedCheckoutsResponseNonNullableFields {
|
|
4572
|
+
abandonedCheckouts: AbandonedCheckoutNonNullableFields[];
|
|
4573
|
+
}
|
|
4392
4574
|
interface HeadersEntryNonNullableFields$2 {
|
|
4393
4575
|
key: string;
|
|
4394
4576
|
value: string;
|
|
@@ -4415,6 +4597,7 @@ declare function deleteAbandonedCheckout(): __PublicMethodMetaInfo$m<'DELETE', {
|
|
|
4415
4597
|
abandonedCheckoutId: string;
|
|
4416
4598
|
}, DeleteAbandonedCheckoutRequest, DeleteAbandonedCheckoutRequest$1, DeleteAbandonedCheckoutResponse, DeleteAbandonedCheckoutResponse$1>;
|
|
4417
4599
|
declare function queryAbandonedCheckouts(): __PublicMethodMetaInfo$m<'POST', {}, QueryAbandonedCheckoutsRequest, QueryAbandonedCheckoutsRequest$1, QueryAbandonedCheckoutsResponse & QueryAbandonedCheckoutsResponseNonNullableFields, QueryAbandonedCheckoutsResponse$1 & QueryAbandonedCheckoutsResponseNonNullableFields$1>;
|
|
4600
|
+
declare function searchAbandonedCheckouts(): __PublicMethodMetaInfo$m<'POST', {}, SearchAbandonedCheckoutsRequest, SearchAbandonedCheckoutsRequest$1, SearchAbandonedCheckoutsResponse & SearchAbandonedCheckoutsResponseNonNullableFields, SearchAbandonedCheckoutsResponse$1 & SearchAbandonedCheckoutsResponseNonNullableFields$1>;
|
|
4418
4601
|
declare function redirectToCheckout(): __PublicMethodMetaInfo$m<'GET', {
|
|
4419
4602
|
abandonedCheckoutId: string;
|
|
4420
4603
|
}, RedirectToCheckoutRequest, RedirectToCheckoutRequest$1, RawHttpResponse$2 & RawHttpResponseNonNullableFields$2, RawHttpResponse$3 & RawHttpResponseNonNullableFields$3>;
|
|
@@ -4423,8 +4606,9 @@ declare const meta$m_deleteAbandonedCheckout: typeof deleteAbandonedCheckout;
|
|
|
4423
4606
|
declare const meta$m_getAbandonedCheckout: typeof getAbandonedCheckout;
|
|
4424
4607
|
declare const meta$m_queryAbandonedCheckouts: typeof queryAbandonedCheckouts;
|
|
4425
4608
|
declare const meta$m_redirectToCheckout: typeof redirectToCheckout;
|
|
4609
|
+
declare const meta$m_searchAbandonedCheckouts: typeof searchAbandonedCheckouts;
|
|
4426
4610
|
declare namespace meta$m {
|
|
4427
|
-
export { type __PublicMethodMetaInfo$m as __PublicMethodMetaInfo, meta$m_deleteAbandonedCheckout as deleteAbandonedCheckout, meta$m_getAbandonedCheckout as getAbandonedCheckout, meta$m_queryAbandonedCheckouts as queryAbandonedCheckouts, meta$m_redirectToCheckout as redirectToCheckout };
|
|
4611
|
+
export { type __PublicMethodMetaInfo$m as __PublicMethodMetaInfo, meta$m_deleteAbandonedCheckout as deleteAbandonedCheckout, meta$m_getAbandonedCheckout as getAbandonedCheckout, meta$m_queryAbandonedCheckouts as queryAbandonedCheckouts, meta$m_redirectToCheckout as redirectToCheckout, meta$m_searchAbandonedCheckouts as searchAbandonedCheckouts };
|
|
4428
4612
|
}
|
|
4429
4613
|
|
|
4430
4614
|
/**
|
|
@@ -22755,8 +22939,12 @@ interface AuthorizedPaymentVoidedNonNullableFields$3 {
|
|
|
22755
22939
|
interface RegularPaymentRefundNonNullableFields$3 {
|
|
22756
22940
|
amount?: PriceNonNullableFields$7;
|
|
22757
22941
|
}
|
|
22942
|
+
interface GiftCardPaymentRefundNonNullableFields$3 {
|
|
22943
|
+
amount?: PriceNonNullableFields$7;
|
|
22944
|
+
}
|
|
22758
22945
|
interface RefundedPaymentNonNullableFields$3 {
|
|
22759
22946
|
regular?: RegularPaymentRefundNonNullableFields$3;
|
|
22947
|
+
giftCard?: GiftCardPaymentRefundNonNullableFields$3;
|
|
22760
22948
|
paymentId: string;
|
|
22761
22949
|
externalRefund: boolean;
|
|
22762
22950
|
}
|
|
@@ -22829,6 +23017,7 @@ interface V1BalanceSummaryNonNullableFields$1 {
|
|
|
22829
23017
|
refunded?: PriceNonNullableFields$7;
|
|
22830
23018
|
authorized?: PriceNonNullableFields$7;
|
|
22831
23019
|
pendingRefund?: PriceNonNullableFields$7;
|
|
23020
|
+
pending?: PriceNonNullableFields$7;
|
|
22832
23021
|
}
|
|
22833
23022
|
interface TagListNonNullableFields$3 {
|
|
22834
23023
|
tagIds: string[];
|
|
@@ -25313,8 +25502,12 @@ interface AuthorizedPaymentVoidedNonNullableFields$2 {
|
|
|
25313
25502
|
interface RegularPaymentRefundNonNullableFields$2 {
|
|
25314
25503
|
amount?: PriceNonNullableFields$6;
|
|
25315
25504
|
}
|
|
25505
|
+
interface GiftCardPaymentRefundNonNullableFields$2 {
|
|
25506
|
+
amount?: PriceNonNullableFields$6;
|
|
25507
|
+
}
|
|
25316
25508
|
interface RefundedPaymentNonNullableFields$2 {
|
|
25317
25509
|
regular?: RegularPaymentRefundNonNullableFields$2;
|
|
25510
|
+
giftCard?: GiftCardPaymentRefundNonNullableFields$2;
|
|
25318
25511
|
paymentId: string;
|
|
25319
25512
|
externalRefund: boolean;
|
|
25320
25513
|
}
|
|
@@ -25387,6 +25580,7 @@ interface V1BalanceSummaryNonNullableFields {
|
|
|
25387
25580
|
refunded?: PriceNonNullableFields$6;
|
|
25388
25581
|
authorized?: PriceNonNullableFields$6;
|
|
25389
25582
|
pendingRefund?: PriceNonNullableFields$6;
|
|
25583
|
+
pending?: PriceNonNullableFields$6;
|
|
25390
25584
|
}
|
|
25391
25585
|
interface TagListNonNullableFields$2 {
|
|
25392
25586
|
tagIds: string[];
|
|
@@ -28982,8 +29176,12 @@ interface AuthorizedPaymentVoidedNonNullableFields$1 {
|
|
|
28982
29176
|
interface RegularPaymentRefundNonNullableFields$1 {
|
|
28983
29177
|
amount?: PriceNonNullableFields$5;
|
|
28984
29178
|
}
|
|
29179
|
+
interface GiftCardPaymentRefundNonNullableFields$1 {
|
|
29180
|
+
amount?: PriceNonNullableFields$5;
|
|
29181
|
+
}
|
|
28985
29182
|
interface RefundedPaymentNonNullableFields$1 {
|
|
28986
29183
|
regular?: RegularPaymentRefundNonNullableFields$1;
|
|
29184
|
+
giftCard?: GiftCardPaymentRefundNonNullableFields$1;
|
|
28987
29185
|
paymentId: string;
|
|
28988
29186
|
externalRefund: boolean;
|
|
28989
29187
|
}
|
|
@@ -29060,6 +29258,7 @@ interface BalanceSummaryNonNullableFields$1 {
|
|
|
29060
29258
|
refunded?: PriceNonNullableFields$5;
|
|
29061
29259
|
authorized?: PriceNonNullableFields$5;
|
|
29062
29260
|
pendingRefund?: PriceNonNullableFields$5;
|
|
29261
|
+
pending?: PriceNonNullableFields$5;
|
|
29063
29262
|
}
|
|
29064
29263
|
interface AdditionalFeeNonNullableFields$1 {
|
|
29065
29264
|
name: string;
|
|
@@ -31231,8 +31430,12 @@ interface AuthorizedPaymentVoidedNonNullableFields {
|
|
|
31231
31430
|
interface RegularPaymentRefundNonNullableFields {
|
|
31232
31431
|
amount?: PriceNonNullableFields$4;
|
|
31233
31432
|
}
|
|
31433
|
+
interface GiftCardPaymentRefundNonNullableFields {
|
|
31434
|
+
amount?: PriceNonNullableFields$4;
|
|
31435
|
+
}
|
|
31234
31436
|
interface RefundedPaymentNonNullableFields {
|
|
31235
31437
|
regular?: RegularPaymentRefundNonNullableFields;
|
|
31438
|
+
giftCard?: GiftCardPaymentRefundNonNullableFields;
|
|
31236
31439
|
paymentId: string;
|
|
31237
31440
|
externalRefund: boolean;
|
|
31238
31441
|
}
|
|
@@ -31309,6 +31512,7 @@ interface BalanceSummaryNonNullableFields {
|
|
|
31309
31512
|
refunded?: PriceNonNullableFields$4;
|
|
31310
31513
|
authorized?: PriceNonNullableFields$4;
|
|
31311
31514
|
pendingRefund?: PriceNonNullableFields$4;
|
|
31515
|
+
pending?: PriceNonNullableFields$4;
|
|
31312
31516
|
}
|
|
31313
31517
|
interface AdditionalFeeNonNullableFields {
|
|
31314
31518
|
name: string;
|
|
@@ -3807,6 +3807,10 @@ interface RefundInitiated {
|
|
|
3807
3807
|
interface RefundedPayment extends RefundedPaymentKindOneOf {
|
|
3808
3808
|
/** Regular payment refund. */
|
|
3809
3809
|
regular?: RegularPaymentRefund;
|
|
3810
|
+
/** Gift card payment refund. */
|
|
3811
|
+
giftCard?: GiftCardPaymentRefund;
|
|
3812
|
+
/** Membership payment refund. */
|
|
3813
|
+
membership?: MembershipPaymentRefund;
|
|
3810
3814
|
/** Payment ID. */
|
|
3811
3815
|
paymentId?: string;
|
|
3812
3816
|
/** Whether refund was made externally and manually on the payment provider's side. */
|
|
@@ -3816,6 +3820,10 @@ interface RefundedPayment extends RefundedPaymentKindOneOf {
|
|
|
3816
3820
|
interface RefundedPaymentKindOneOf {
|
|
3817
3821
|
/** Regular payment refund. */
|
|
3818
3822
|
regular?: RegularPaymentRefund;
|
|
3823
|
+
/** Gift card payment refund. */
|
|
3824
|
+
giftCard?: GiftCardPaymentRefund;
|
|
3825
|
+
/** Membership payment refund. */
|
|
3826
|
+
membership?: MembershipPaymentRefund;
|
|
3819
3827
|
}
|
|
3820
3828
|
interface RegularPaymentRefund {
|
|
3821
3829
|
/** Refund amount */
|
|
@@ -3825,6 +3833,16 @@ interface RegularPaymentRefund {
|
|
|
3825
3833
|
/** Card issuer's brand. */
|
|
3826
3834
|
brand?: string | null;
|
|
3827
3835
|
}
|
|
3836
|
+
interface GiftCardPaymentRefund {
|
|
3837
|
+
/** Gift card payment ID */
|
|
3838
|
+
giftCardPaymentId?: string | null;
|
|
3839
|
+
/** Refund amount */
|
|
3840
|
+
amount?: Price;
|
|
3841
|
+
}
|
|
3842
|
+
interface MembershipPaymentRefund {
|
|
3843
|
+
/** Membership ID */
|
|
3844
|
+
membershipId?: string | null;
|
|
3845
|
+
}
|
|
3828
3846
|
interface PaymentRefunded {
|
|
3829
3847
|
/** Refund ID. */
|
|
3830
3848
|
refundId?: string;
|
|
@@ -5513,6 +5531,7 @@ type context$1_GetPaymentSettingsForCheckoutRequest = GetPaymentSettingsForCheck
|
|
|
5513
5531
|
type context$1_GetPaymentSettingsForCheckoutResponse = GetPaymentSettingsForCheckoutResponse;
|
|
5514
5532
|
type context$1_GetPaymentSettingsRequest = GetPaymentSettingsRequest;
|
|
5515
5533
|
type context$1_GetPaymentSettingsResponse = GetPaymentSettingsResponse;
|
|
5534
|
+
type context$1_GiftCardPaymentRefund = GiftCardPaymentRefund;
|
|
5516
5535
|
type context$1_Group = Group;
|
|
5517
5536
|
type context$1_InvalidMembership = InvalidMembership;
|
|
5518
5537
|
type context$1_ItemAvailabilityInfo = ItemAvailabilityInfo;
|
|
@@ -5538,6 +5557,7 @@ type context$1_Membership = Membership;
|
|
|
5538
5557
|
type context$1_MembershipName = MembershipName;
|
|
5539
5558
|
type context$1_MembershipOptions = MembershipOptions;
|
|
5540
5559
|
type context$1_MembershipPaymentCredits = MembershipPaymentCredits;
|
|
5560
|
+
type context$1_MembershipPaymentRefund = MembershipPaymentRefund;
|
|
5541
5561
|
type context$1_MerchantComment = MerchantComment;
|
|
5542
5562
|
type context$1_MerchantDiscountMerchantDiscountReasonOneOf = MerchantDiscountMerchantDiscountReasonOneOf;
|
|
5543
5563
|
type context$1_NewExchangeOrderCreated = NewExchangeOrderCreated;
|
|
@@ -5640,7 +5660,7 @@ type context$1_V1SubscriptionSettings = V1SubscriptionSettings;
|
|
|
5640
5660
|
type context$1_V1TaxSummary = V1TaxSummary;
|
|
5641
5661
|
type context$1_ValidationError = ValidationError;
|
|
5642
5662
|
declare namespace context$1 {
|
|
5643
|
-
export { type context$1_Activity as Activity, type context$1_ActivityContentOneOf as ActivityContentOneOf, context$1_ActivityType as ActivityType, type context$1_AdditionalFee as AdditionalFee, type Address$1 as Address, type AddressLocation$1 as AddressLocation, type AddressWithContact$1 as AddressWithContact, type context$1_AggregatedTaxBreakdown as AggregatedTaxBreakdown, type context$1_ApiAddressWithContact as ApiAddressWithContact, type context$1_ApplicationError as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, context$1_AppliedDiscountDiscountType as AppliedDiscountDiscountType, context$1_AttributionSource as AttributionSource, type context$1_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type context$1_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type context$1_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type context$1_AutoTaxFallbackCalculationDetails as AutoTaxFallbackCalculationDetails, type context$1_Balance as Balance, type context$1_BalanceSummary as BalanceSummary, type context$1_BuyerInfo as BuyerInfo, type context$1_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type context$1_CalculationErrors as CalculationErrors, type context$1_CalculationErrorsShippingCalculationErrorOneOf as CalculationErrorsShippingCalculationErrorOneOf, type context$1_CarrierError as CarrierError, type context$1_CarrierErrors as CarrierErrors, type context$1_CarrierServiceOption as CarrierServiceOption, type context$1_CatalogOverrideFields as CatalogOverrideFields, type CatalogReference$1 as CatalogReference, type context$1_ChannelInfo as ChannelInfo, context$1_ChannelType as ChannelType, context$1_ChargeType as ChargeType, type context$1_Checkout as Checkout, type context$1_Color as Color, type Context$1 as Context, type context$1_ConversionInfo as ConversionInfo, type Coupon$1 as Coupon, type context$1_CreatedBy as CreatedBy, type context$1_CreatedByIdOneOf as CreatedByIdOneOf, type context$1_CreditCardDetails as CreditCardDetails, type context$1_CustomActivity as CustomActivity, type context$1_CustomContentReference as CustomContentReference, type CustomField$1 as CustomField, type context$1_CustomSettings as CustomSettings, type context$1_DeliveryLogistics as DeliveryLogistics, type context$1_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type context$1_DeliveryTimeSlot as DeliveryTimeSlot, type Description$1 as Description, type context$1_DescriptionLine as DescriptionLine, type context$1_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type context$1_DescriptionLineName as DescriptionLineName, context$1_DescriptionLineType as DescriptionLineType, type context$1_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type context$1_Details as Details, type context$1_DetailsKindOneOf as DetailsKindOneOf, type context$1_DigitalFile as DigitalFile, context$1_DiscountReason as DiscountReason, type DiscountRule$1 as DiscountRule, type DiscountRuleName$1 as DiscountRuleName, DiscountType$1 as DiscountType, type context$1_DraftOrderChangesApplied as DraftOrderChangesApplied, type ExtendedFields$1 as ExtendedFields, type ExternalReference$1 as ExternalReference, context$1_FallbackReason as FallbackReason, type context$1_FieldViolation as FieldViolation, context$1_FileType as FileType, context$1_FulfillmentStatus as FulfillmentStatus, type context$1_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type FullAddressContactDetails$1 as FullAddressContactDetails, type context$1_GetPaymentSettingsForCheckoutRequest as GetPaymentSettingsForCheckoutRequest, type context$1_GetPaymentSettingsForCheckoutResponse as GetPaymentSettingsForCheckoutResponse, type context$1_GetPaymentSettingsRequest as GetPaymentSettingsRequest, type context$1_GetPaymentSettingsResponse as GetPaymentSettingsResponse, type GiftCard$1 as GiftCard, type context$1_Group as Group, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, IdentityType$1 as IdentityType, type context$1_InvalidMembership as InvalidMembership, type context$1_ItemAvailabilityInfo as ItemAvailabilityInfo, context$1_ItemAvailabilityStatus as ItemAvailabilityStatus, type ItemTaxFullDetails$1 as ItemTaxFullDetails, type ItemType$1 as ItemType, ItemTypeItemType$1 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$1 as ItemTypeItemTypeDataOneOf, JurisdictionType$1 as JurisdictionType, type LineItem$1 as LineItem, type context$1_LineItemAmount as LineItemAmount, type context$1_LineItemChanges as LineItemChanges, type context$1_LineItemDiscount as LineItemDiscount, type context$1_LineItemExchangeData as LineItemExchangeData, type context$1_LineItemPriceChange as LineItemPriceChange, type context$1_LineItemQuantityChange as LineItemQuantityChange, context$1_LineItemQuantityChangeType as LineItemQuantityChangeType, type context$1_LineItemTaxBreakdown as LineItemTaxBreakdown, type context$1_LineItemTaxInfo as LineItemTaxInfo, type context$1_LocationAndQuantity as LocationAndQuantity, type context$1_ManagedAdditionalFee as ManagedAdditionalFee, type context$1_ManagedDiscount as ManagedDiscount, type context$1_ManagedLineItem as ManagedLineItem, context$1_ManualCalculationReason as ManualCalculationReason, type context$1_Membership as Membership, type context$1_MembershipName as MembershipName, type context$1_MembershipOptions as MembershipOptions, type context$1_MembershipPaymentCredits as MembershipPaymentCredits, type context$1_MerchantComment as MerchantComment, type MerchantDiscount$1 as MerchantDiscount, type context$1_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type MultiCurrencyPrice$1 as MultiCurrencyPrice, NameInLineItem$1 as NameInLineItem, NameInOther$1 as NameInOther, type context$1_NewExchangeOrderCreated as NewExchangeOrderCreated, type context$1_Order as Order, type context$1_OrderChange as OrderChange, type context$1_OrderChangeValueOneOf as OrderChangeValueOneOf, type context$1_OrderCreatedFromExchange as OrderCreatedFromExchange, type context$1_OrderLineItem as OrderLineItem, type context$1_OrderRefunded as OrderRefunded, context$1_OrderStatus as OrderStatus, type context$1_OrderTaxBreakdown as OrderTaxBreakdown, type context$1_OrderTaxInfo as OrderTaxInfo, type Other$1 as Other, type context$1_OtherCharge as OtherCharge, type context$1_PaymentCanceled as PaymentCanceled, type context$1_PaymentCanceledPaymentDetailsOneOf as PaymentCanceledPaymentDetailsOneOf, type context$1_PaymentDeclined as PaymentDeclined, type context$1_PaymentDeclinedPaymentDetailsOneOf as PaymentDeclinedPaymentDetailsOneOf, context$1_PaymentOption as PaymentOption, context$1_PaymentOptionType as PaymentOptionType, type context$1_PaymentPending as PaymentPending, type context$1_PaymentPendingPaymentDetailsOneOf as PaymentPendingPaymentDetailsOneOf, type context$1_PaymentRefundFailed as PaymentRefundFailed, type context$1_PaymentRefunded as PaymentRefunded, type context$1_PaymentSettings as PaymentSettings, type context$1_PaymentSettingsSPIConfig as PaymentSettingsSPIConfig, context$1_PaymentStatus as PaymentStatus, type PhysicalProperties$1 as PhysicalProperties, type context$1_PickupAddress as PickupAddress, type context$1_PickupDetails as PickupDetails, context$1_PickupDetailsPickupMethod as PickupDetailsPickupMethod, context$1_PickupMethod as PickupMethod, type context$1_PlainTextValue as PlainTextValue, type context$1_Price as Price, type context$1_PriceDescription as PriceDescription, type PriceSummary$1 as PriceSummary, type ProductName$1 as ProductName, context$1_RateType as RateType, type context$1_RefundInitiated as RefundInitiated, type context$1_RefundedAsStoreCredit as RefundedAsStoreCredit, type context$1_RefundedPayment as RefundedPayment, type context$1_RefundedPaymentKindOneOf as RefundedPaymentKindOneOf, type context$1_RegularPayment as RegularPayment, type context$1_RegularPaymentPaymentMethodDetailsOneOf as RegularPaymentPaymentMethodDetailsOneOf, type context$1_RegularPaymentRefund as RegularPaymentRefund, context$1_RuleType as RuleType, type context$1_SavedPaymentMethod as SavedPaymentMethod, type context$1_Scope as Scope, type context$1_SecuredMedia as SecuredMedia, type SelectedCarrierServiceOption$1 as SelectedCarrierServiceOption, type context$1_SelectedCarrierServiceOptionOtherCharge as SelectedCarrierServiceOptionOtherCharge, type SelectedCarrierServiceOptionPrices$1 as SelectedCarrierServiceOptionPrices, type context$1_SelectedMembership as SelectedMembership, type context$1_SelectedMemberships as SelectedMemberships, type context$1_ServiceProperties as ServiceProperties, Severity$1 as Severity, type ShippingInfo$1 as ShippingInfo, type context$1_ShippingInformation as ShippingInformation, type context$1_ShippingInformationChange as ShippingInformationChange, type context$1_ShippingOption as ShippingOption, type context$1_ShippingPrice as ShippingPrice, type context$1_ShippingRegion as ShippingRegion, type StreetAddress$1 as StreetAddress, SubscriptionFrequency$1 as SubscriptionFrequency, type context$1_SubscriptionInfo as SubscriptionInfo, type SubscriptionOptionInfo$1 as SubscriptionOptionInfo, type SubscriptionSettings$1 as SubscriptionSettings, type context$1_SystemError as SystemError, type context$1_TagList as TagList, type context$1_Tags as Tags, type Target$1 as Target, type TargetLineItem$1 as TargetLineItem, type TargetTargetTypeOneOf$1 as TargetTargetTypeOneOf, type TaxBreakdown$1 as TaxBreakdown, type context$1_TaxCalculationDetails as TaxCalculationDetails, type context$1_TaxCalculationDetailsCalculationDetailsOneOf as TaxCalculationDetailsCalculationDetailsOneOf, type context$1_TaxRateBreakdown as TaxRateBreakdown, type context$1_TaxSummary as TaxSummary, type context$1_TaxableAddress as TaxableAddress, type context$1_TaxableAddressTaxableAddressDataOneOf as TaxableAddressTaxableAddressDataOneOf, context$1_TaxableAddressType as TaxableAddressType, type Title$1 as Title, type context$1_TotalPriceChange as TotalPriceChange, type context$1_TranslatedValue as TranslatedValue, type context$1_V1AdditionalFee as V1AdditionalFee, type context$1_V1AppliedDiscount as V1AppliedDiscount, type context$1_V1AppliedDiscountDiscountSourceOneOf as V1AppliedDiscountDiscountSourceOneOf, type context$1_V1BuyerInfo as V1BuyerInfo, type context$1_V1BuyerInfoIdOneOf as V1BuyerInfoIdOneOf, type context$1_V1Coupon as V1Coupon, type context$1_V1CreatedBy as V1CreatedBy, type context$1_V1CreatedByStringOneOf as V1CreatedByStringOneOf, type context$1_V1DeliveryLogistics as V1DeliveryLogistics, type context$1_V1DeliveryTimeSlot as V1DeliveryTimeSlot, type context$1_V1DiscountRule as V1DiscountRule, type context$1_V1DiscountRuleName as V1DiscountRuleName, type context$1_V1ItemTaxFullDetails as V1ItemTaxFullDetails, context$1_V1JurisdictionType as V1JurisdictionType, type context$1_V1LineItemDiscount as V1LineItemDiscount, type context$1_V1MerchantDiscount as V1MerchantDiscount, type context$1_V1PickupDetails as V1PickupDetails, type context$1_V1PriceSummary as V1PriceSummary, type context$1_V1ShippingInformation as V1ShippingInformation, type context$1_V1ShippingPrice as V1ShippingPrice, type context$1_V1ShippingRegion as V1ShippingRegion, type context$1_V1SubscriptionSettings as V1SubscriptionSettings, type context$1_V1TaxSummary as V1TaxSummary, type context$1_ValidationError as ValidationError, type VatId$1 as VatId, VatType$1 as VatType, type Violation$1 as Violation, WeightUnit$1 as WeightUnit, type _publicProvideHandlersType$1 as _publicProvideHandlersType, provideHandlers$2 as provideHandlers, provideHandlers$3 as publicProvideHandlers };
|
|
5663
|
+
export { type context$1_Activity as Activity, type context$1_ActivityContentOneOf as ActivityContentOneOf, context$1_ActivityType as ActivityType, type context$1_AdditionalFee as AdditionalFee, type Address$1 as Address, type AddressLocation$1 as AddressLocation, type AddressWithContact$1 as AddressWithContact, type context$1_AggregatedTaxBreakdown as AggregatedTaxBreakdown, type context$1_ApiAddressWithContact as ApiAddressWithContact, type context$1_ApplicationError as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, context$1_AppliedDiscountDiscountType as AppliedDiscountDiscountType, context$1_AttributionSource as AttributionSource, type context$1_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type context$1_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type context$1_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type context$1_AutoTaxFallbackCalculationDetails as AutoTaxFallbackCalculationDetails, type context$1_Balance as Balance, type context$1_BalanceSummary as BalanceSummary, type context$1_BuyerInfo as BuyerInfo, type context$1_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type context$1_CalculationErrors as CalculationErrors, type context$1_CalculationErrorsShippingCalculationErrorOneOf as CalculationErrorsShippingCalculationErrorOneOf, type context$1_CarrierError as CarrierError, type context$1_CarrierErrors as CarrierErrors, type context$1_CarrierServiceOption as CarrierServiceOption, type context$1_CatalogOverrideFields as CatalogOverrideFields, type CatalogReference$1 as CatalogReference, type context$1_ChannelInfo as ChannelInfo, context$1_ChannelType as ChannelType, context$1_ChargeType as ChargeType, type context$1_Checkout as Checkout, type context$1_Color as Color, type Context$1 as Context, type context$1_ConversionInfo as ConversionInfo, type Coupon$1 as Coupon, type context$1_CreatedBy as CreatedBy, type context$1_CreatedByIdOneOf as CreatedByIdOneOf, type context$1_CreditCardDetails as CreditCardDetails, type context$1_CustomActivity as CustomActivity, type context$1_CustomContentReference as CustomContentReference, type CustomField$1 as CustomField, type context$1_CustomSettings as CustomSettings, type context$1_DeliveryLogistics as DeliveryLogistics, type context$1_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type context$1_DeliveryTimeSlot as DeliveryTimeSlot, type Description$1 as Description, type context$1_DescriptionLine as DescriptionLine, type context$1_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type context$1_DescriptionLineName as DescriptionLineName, context$1_DescriptionLineType as DescriptionLineType, type context$1_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type context$1_Details as Details, type context$1_DetailsKindOneOf as DetailsKindOneOf, type context$1_DigitalFile as DigitalFile, context$1_DiscountReason as DiscountReason, type DiscountRule$1 as DiscountRule, type DiscountRuleName$1 as DiscountRuleName, DiscountType$1 as DiscountType, type context$1_DraftOrderChangesApplied as DraftOrderChangesApplied, type ExtendedFields$1 as ExtendedFields, type ExternalReference$1 as ExternalReference, context$1_FallbackReason as FallbackReason, type context$1_FieldViolation as FieldViolation, context$1_FileType as FileType, context$1_FulfillmentStatus as FulfillmentStatus, type context$1_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type FullAddressContactDetails$1 as FullAddressContactDetails, type context$1_GetPaymentSettingsForCheckoutRequest as GetPaymentSettingsForCheckoutRequest, type context$1_GetPaymentSettingsForCheckoutResponse as GetPaymentSettingsForCheckoutResponse, type context$1_GetPaymentSettingsRequest as GetPaymentSettingsRequest, type context$1_GetPaymentSettingsResponse as GetPaymentSettingsResponse, type GiftCard$1 as GiftCard, type context$1_GiftCardPaymentRefund as GiftCardPaymentRefund, type context$1_Group as Group, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, IdentityType$1 as IdentityType, type context$1_InvalidMembership as InvalidMembership, type context$1_ItemAvailabilityInfo as ItemAvailabilityInfo, context$1_ItemAvailabilityStatus as ItemAvailabilityStatus, type ItemTaxFullDetails$1 as ItemTaxFullDetails, type ItemType$1 as ItemType, ItemTypeItemType$1 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$1 as ItemTypeItemTypeDataOneOf, JurisdictionType$1 as JurisdictionType, type LineItem$1 as LineItem, type context$1_LineItemAmount as LineItemAmount, type context$1_LineItemChanges as LineItemChanges, type context$1_LineItemDiscount as LineItemDiscount, type context$1_LineItemExchangeData as LineItemExchangeData, type context$1_LineItemPriceChange as LineItemPriceChange, type context$1_LineItemQuantityChange as LineItemQuantityChange, context$1_LineItemQuantityChangeType as LineItemQuantityChangeType, type context$1_LineItemTaxBreakdown as LineItemTaxBreakdown, type context$1_LineItemTaxInfo as LineItemTaxInfo, type context$1_LocationAndQuantity as LocationAndQuantity, type context$1_ManagedAdditionalFee as ManagedAdditionalFee, type context$1_ManagedDiscount as ManagedDiscount, type context$1_ManagedLineItem as ManagedLineItem, context$1_ManualCalculationReason as ManualCalculationReason, type context$1_Membership as Membership, type context$1_MembershipName as MembershipName, type context$1_MembershipOptions as MembershipOptions, type context$1_MembershipPaymentCredits as MembershipPaymentCredits, type context$1_MembershipPaymentRefund as MembershipPaymentRefund, type context$1_MerchantComment as MerchantComment, type MerchantDiscount$1 as MerchantDiscount, type context$1_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type MultiCurrencyPrice$1 as MultiCurrencyPrice, NameInLineItem$1 as NameInLineItem, NameInOther$1 as NameInOther, type context$1_NewExchangeOrderCreated as NewExchangeOrderCreated, type context$1_Order as Order, type context$1_OrderChange as OrderChange, type context$1_OrderChangeValueOneOf as OrderChangeValueOneOf, type context$1_OrderCreatedFromExchange as OrderCreatedFromExchange, type context$1_OrderLineItem as OrderLineItem, type context$1_OrderRefunded as OrderRefunded, context$1_OrderStatus as OrderStatus, type context$1_OrderTaxBreakdown as OrderTaxBreakdown, type context$1_OrderTaxInfo as OrderTaxInfo, type Other$1 as Other, type context$1_OtherCharge as OtherCharge, type context$1_PaymentCanceled as PaymentCanceled, type context$1_PaymentCanceledPaymentDetailsOneOf as PaymentCanceledPaymentDetailsOneOf, type context$1_PaymentDeclined as PaymentDeclined, type context$1_PaymentDeclinedPaymentDetailsOneOf as PaymentDeclinedPaymentDetailsOneOf, context$1_PaymentOption as PaymentOption, context$1_PaymentOptionType as PaymentOptionType, type context$1_PaymentPending as PaymentPending, type context$1_PaymentPendingPaymentDetailsOneOf as PaymentPendingPaymentDetailsOneOf, type context$1_PaymentRefundFailed as PaymentRefundFailed, type context$1_PaymentRefunded as PaymentRefunded, type context$1_PaymentSettings as PaymentSettings, type context$1_PaymentSettingsSPIConfig as PaymentSettingsSPIConfig, context$1_PaymentStatus as PaymentStatus, type PhysicalProperties$1 as PhysicalProperties, type context$1_PickupAddress as PickupAddress, type context$1_PickupDetails as PickupDetails, context$1_PickupDetailsPickupMethod as PickupDetailsPickupMethod, context$1_PickupMethod as PickupMethod, type context$1_PlainTextValue as PlainTextValue, type context$1_Price as Price, type context$1_PriceDescription as PriceDescription, type PriceSummary$1 as PriceSummary, type ProductName$1 as ProductName, context$1_RateType as RateType, type context$1_RefundInitiated as RefundInitiated, type context$1_RefundedAsStoreCredit as RefundedAsStoreCredit, type context$1_RefundedPayment as RefundedPayment, type context$1_RefundedPaymentKindOneOf as RefundedPaymentKindOneOf, type context$1_RegularPayment as RegularPayment, type context$1_RegularPaymentPaymentMethodDetailsOneOf as RegularPaymentPaymentMethodDetailsOneOf, type context$1_RegularPaymentRefund as RegularPaymentRefund, context$1_RuleType as RuleType, type context$1_SavedPaymentMethod as SavedPaymentMethod, type context$1_Scope as Scope, type context$1_SecuredMedia as SecuredMedia, type SelectedCarrierServiceOption$1 as SelectedCarrierServiceOption, type context$1_SelectedCarrierServiceOptionOtherCharge as SelectedCarrierServiceOptionOtherCharge, type SelectedCarrierServiceOptionPrices$1 as SelectedCarrierServiceOptionPrices, type context$1_SelectedMembership as SelectedMembership, type context$1_SelectedMemberships as SelectedMemberships, type context$1_ServiceProperties as ServiceProperties, Severity$1 as Severity, type ShippingInfo$1 as ShippingInfo, type context$1_ShippingInformation as ShippingInformation, type context$1_ShippingInformationChange as ShippingInformationChange, type context$1_ShippingOption as ShippingOption, type context$1_ShippingPrice as ShippingPrice, type context$1_ShippingRegion as ShippingRegion, type StreetAddress$1 as StreetAddress, SubscriptionFrequency$1 as SubscriptionFrequency, type context$1_SubscriptionInfo as SubscriptionInfo, type SubscriptionOptionInfo$1 as SubscriptionOptionInfo, type SubscriptionSettings$1 as SubscriptionSettings, type context$1_SystemError as SystemError, type context$1_TagList as TagList, type context$1_Tags as Tags, type Target$1 as Target, type TargetLineItem$1 as TargetLineItem, type TargetTargetTypeOneOf$1 as TargetTargetTypeOneOf, type TaxBreakdown$1 as TaxBreakdown, type context$1_TaxCalculationDetails as TaxCalculationDetails, type context$1_TaxCalculationDetailsCalculationDetailsOneOf as TaxCalculationDetailsCalculationDetailsOneOf, type context$1_TaxRateBreakdown as TaxRateBreakdown, type context$1_TaxSummary as TaxSummary, type context$1_TaxableAddress as TaxableAddress, type context$1_TaxableAddressTaxableAddressDataOneOf as TaxableAddressTaxableAddressDataOneOf, context$1_TaxableAddressType as TaxableAddressType, type Title$1 as Title, type context$1_TotalPriceChange as TotalPriceChange, type context$1_TranslatedValue as TranslatedValue, type context$1_V1AdditionalFee as V1AdditionalFee, type context$1_V1AppliedDiscount as V1AppliedDiscount, type context$1_V1AppliedDiscountDiscountSourceOneOf as V1AppliedDiscountDiscountSourceOneOf, type context$1_V1BuyerInfo as V1BuyerInfo, type context$1_V1BuyerInfoIdOneOf as V1BuyerInfoIdOneOf, type context$1_V1Coupon as V1Coupon, type context$1_V1CreatedBy as V1CreatedBy, type context$1_V1CreatedByStringOneOf as V1CreatedByStringOneOf, type context$1_V1DeliveryLogistics as V1DeliveryLogistics, type context$1_V1DeliveryTimeSlot as V1DeliveryTimeSlot, type context$1_V1DiscountRule as V1DiscountRule, type context$1_V1DiscountRuleName as V1DiscountRuleName, type context$1_V1ItemTaxFullDetails as V1ItemTaxFullDetails, context$1_V1JurisdictionType as V1JurisdictionType, type context$1_V1LineItemDiscount as V1LineItemDiscount, type context$1_V1MerchantDiscount as V1MerchantDiscount, type context$1_V1PickupDetails as V1PickupDetails, type context$1_V1PriceSummary as V1PriceSummary, type context$1_V1ShippingInformation as V1ShippingInformation, type context$1_V1ShippingPrice as V1ShippingPrice, type context$1_V1ShippingRegion as V1ShippingRegion, type context$1_V1SubscriptionSettings as V1SubscriptionSettings, type context$1_V1TaxSummary as V1TaxSummary, type context$1_ValidationError as ValidationError, type VatId$1 as VatId, VatType$1 as VatType, type Violation$1 as Violation, WeightUnit$1 as WeightUnit, type _publicProvideHandlersType$1 as _publicProvideHandlersType, provideHandlers$2 as provideHandlers, provideHandlers$3 as publicProvideHandlers };
|
|
5644
5664
|
}
|
|
5645
5665
|
|
|
5646
5666
|
interface GetValidationViolationsRequest {
|
|
@@ -3807,6 +3807,10 @@ interface RefundInitiated {
|
|
|
3807
3807
|
interface RefundedPayment extends RefundedPaymentKindOneOf {
|
|
3808
3808
|
/** Regular payment refund. */
|
|
3809
3809
|
regular?: RegularPaymentRefund;
|
|
3810
|
+
/** Gift card payment refund. */
|
|
3811
|
+
giftCard?: GiftCardPaymentRefund;
|
|
3812
|
+
/** Membership payment refund. */
|
|
3813
|
+
membership?: MembershipPaymentRefund;
|
|
3810
3814
|
/** Payment ID. */
|
|
3811
3815
|
paymentId?: string;
|
|
3812
3816
|
/** Whether refund was made externally and manually on the payment provider's side. */
|
|
@@ -3816,6 +3820,10 @@ interface RefundedPayment extends RefundedPaymentKindOneOf {
|
|
|
3816
3820
|
interface RefundedPaymentKindOneOf {
|
|
3817
3821
|
/** Regular payment refund. */
|
|
3818
3822
|
regular?: RegularPaymentRefund;
|
|
3823
|
+
/** Gift card payment refund. */
|
|
3824
|
+
giftCard?: GiftCardPaymentRefund;
|
|
3825
|
+
/** Membership payment refund. */
|
|
3826
|
+
membership?: MembershipPaymentRefund;
|
|
3819
3827
|
}
|
|
3820
3828
|
interface RegularPaymentRefund {
|
|
3821
3829
|
/** Refund amount */
|
|
@@ -3825,6 +3833,16 @@ interface RegularPaymentRefund {
|
|
|
3825
3833
|
/** Card issuer's brand. */
|
|
3826
3834
|
brand?: string | null;
|
|
3827
3835
|
}
|
|
3836
|
+
interface GiftCardPaymentRefund {
|
|
3837
|
+
/** Gift card payment ID */
|
|
3838
|
+
giftCardPaymentId?: string | null;
|
|
3839
|
+
/** Refund amount */
|
|
3840
|
+
amount?: Price;
|
|
3841
|
+
}
|
|
3842
|
+
interface MembershipPaymentRefund {
|
|
3843
|
+
/** Membership ID */
|
|
3844
|
+
membershipId?: string | null;
|
|
3845
|
+
}
|
|
3828
3846
|
interface PaymentRefunded {
|
|
3829
3847
|
/** Refund ID. */
|
|
3830
3848
|
refundId?: string;
|
|
@@ -5513,6 +5531,7 @@ type index_d$1_GetPaymentSettingsForCheckoutRequest = GetPaymentSettingsForCheck
|
|
|
5513
5531
|
type index_d$1_GetPaymentSettingsForCheckoutResponse = GetPaymentSettingsForCheckoutResponse;
|
|
5514
5532
|
type index_d$1_GetPaymentSettingsRequest = GetPaymentSettingsRequest;
|
|
5515
5533
|
type index_d$1_GetPaymentSettingsResponse = GetPaymentSettingsResponse;
|
|
5534
|
+
type index_d$1_GiftCardPaymentRefund = GiftCardPaymentRefund;
|
|
5516
5535
|
type index_d$1_Group = Group;
|
|
5517
5536
|
type index_d$1_InvalidMembership = InvalidMembership;
|
|
5518
5537
|
type index_d$1_ItemAvailabilityInfo = ItemAvailabilityInfo;
|
|
@@ -5538,6 +5557,7 @@ type index_d$1_Membership = Membership;
|
|
|
5538
5557
|
type index_d$1_MembershipName = MembershipName;
|
|
5539
5558
|
type index_d$1_MembershipOptions = MembershipOptions;
|
|
5540
5559
|
type index_d$1_MembershipPaymentCredits = MembershipPaymentCredits;
|
|
5560
|
+
type index_d$1_MembershipPaymentRefund = MembershipPaymentRefund;
|
|
5541
5561
|
type index_d$1_MerchantComment = MerchantComment;
|
|
5542
5562
|
type index_d$1_MerchantDiscountMerchantDiscountReasonOneOf = MerchantDiscountMerchantDiscountReasonOneOf;
|
|
5543
5563
|
type index_d$1_NewExchangeOrderCreated = NewExchangeOrderCreated;
|
|
@@ -5640,7 +5660,7 @@ type index_d$1_V1SubscriptionSettings = V1SubscriptionSettings;
|
|
|
5640
5660
|
type index_d$1_V1TaxSummary = V1TaxSummary;
|
|
5641
5661
|
type index_d$1_ValidationError = ValidationError;
|
|
5642
5662
|
declare namespace index_d$1 {
|
|
5643
|
-
export { type index_d$1_Activity as Activity, type index_d$1_ActivityContentOneOf as ActivityContentOneOf, index_d$1_ActivityType as ActivityType, type index_d$1_AdditionalFee as AdditionalFee, type Address$1 as Address, type AddressLocation$1 as AddressLocation, type AddressWithContact$1 as AddressWithContact, type index_d$1_AggregatedTaxBreakdown as AggregatedTaxBreakdown, type index_d$1_ApiAddressWithContact as ApiAddressWithContact, type index_d$1_ApplicationError as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, index_d$1_AppliedDiscountDiscountType as AppliedDiscountDiscountType, index_d$1_AttributionSource as AttributionSource, type index_d$1_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type index_d$1_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type index_d$1_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type index_d$1_AutoTaxFallbackCalculationDetails as AutoTaxFallbackCalculationDetails, type index_d$1_Balance as Balance, type index_d$1_BalanceSummary as BalanceSummary, type index_d$1_BuyerInfo as BuyerInfo, type index_d$1_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type index_d$1_CalculationErrors as CalculationErrors, type index_d$1_CalculationErrorsShippingCalculationErrorOneOf as CalculationErrorsShippingCalculationErrorOneOf, type index_d$1_CarrierError as CarrierError, type index_d$1_CarrierErrors as CarrierErrors, type index_d$1_CarrierServiceOption as CarrierServiceOption, type index_d$1_CatalogOverrideFields as CatalogOverrideFields, type CatalogReference$1 as CatalogReference, type index_d$1_ChannelInfo as ChannelInfo, index_d$1_ChannelType as ChannelType, index_d$1_ChargeType as ChargeType, type index_d$1_Checkout as Checkout, type index_d$1_Color as Color, type Context$1 as Context, type index_d$1_ConversionInfo as ConversionInfo, type Coupon$1 as Coupon, type index_d$1_CreatedBy as CreatedBy, type index_d$1_CreatedByIdOneOf as CreatedByIdOneOf, type index_d$1_CreditCardDetails as CreditCardDetails, type index_d$1_CustomActivity as CustomActivity, type index_d$1_CustomContentReference as CustomContentReference, type CustomField$1 as CustomField, type index_d$1_CustomSettings as CustomSettings, type index_d$1_DeliveryLogistics as DeliveryLogistics, type index_d$1_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type index_d$1_DeliveryTimeSlot as DeliveryTimeSlot, type Description$1 as Description, type index_d$1_DescriptionLine as DescriptionLine, type index_d$1_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type index_d$1_DescriptionLineName as DescriptionLineName, index_d$1_DescriptionLineType as DescriptionLineType, type index_d$1_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type index_d$1_Details as Details, type index_d$1_DetailsKindOneOf as DetailsKindOneOf, type index_d$1_DigitalFile as DigitalFile, index_d$1_DiscountReason as DiscountReason, type DiscountRule$1 as DiscountRule, type DiscountRuleName$1 as DiscountRuleName, DiscountType$1 as DiscountType, type index_d$1_DraftOrderChangesApplied as DraftOrderChangesApplied, type ExtendedFields$1 as ExtendedFields, type ExternalReference$1 as ExternalReference, index_d$1_FallbackReason as FallbackReason, type index_d$1_FieldViolation as FieldViolation, index_d$1_FileType as FileType, index_d$1_FulfillmentStatus as FulfillmentStatus, type index_d$1_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type FullAddressContactDetails$1 as FullAddressContactDetails, type index_d$1_GetPaymentSettingsForCheckoutRequest as GetPaymentSettingsForCheckoutRequest, type index_d$1_GetPaymentSettingsForCheckoutResponse as GetPaymentSettingsForCheckoutResponse, type index_d$1_GetPaymentSettingsRequest as GetPaymentSettingsRequest, type index_d$1_GetPaymentSettingsResponse as GetPaymentSettingsResponse, type GiftCard$1 as GiftCard, type index_d$1_Group as Group, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, IdentityType$1 as IdentityType, type index_d$1_InvalidMembership as InvalidMembership, type index_d$1_ItemAvailabilityInfo as ItemAvailabilityInfo, index_d$1_ItemAvailabilityStatus as ItemAvailabilityStatus, type ItemTaxFullDetails$1 as ItemTaxFullDetails, type ItemType$1 as ItemType, ItemTypeItemType$1 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$1 as ItemTypeItemTypeDataOneOf, JurisdictionType$1 as JurisdictionType, type LineItem$1 as LineItem, type index_d$1_LineItemAmount as LineItemAmount, type index_d$1_LineItemChanges as LineItemChanges, type index_d$1_LineItemDiscount as LineItemDiscount, type index_d$1_LineItemExchangeData as LineItemExchangeData, type index_d$1_LineItemPriceChange as LineItemPriceChange, type index_d$1_LineItemQuantityChange as LineItemQuantityChange, index_d$1_LineItemQuantityChangeType as LineItemQuantityChangeType, type index_d$1_LineItemTaxBreakdown as LineItemTaxBreakdown, type index_d$1_LineItemTaxInfo as LineItemTaxInfo, type index_d$1_LocationAndQuantity as LocationAndQuantity, type index_d$1_ManagedAdditionalFee as ManagedAdditionalFee, type index_d$1_ManagedDiscount as ManagedDiscount, type index_d$1_ManagedLineItem as ManagedLineItem, index_d$1_ManualCalculationReason as ManualCalculationReason, type index_d$1_Membership as Membership, type index_d$1_MembershipName as MembershipName, type index_d$1_MembershipOptions as MembershipOptions, type index_d$1_MembershipPaymentCredits as MembershipPaymentCredits, type index_d$1_MerchantComment as MerchantComment, type MerchantDiscount$1 as MerchantDiscount, type index_d$1_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type MultiCurrencyPrice$1 as MultiCurrencyPrice, NameInLineItem$1 as NameInLineItem, NameInOther$1 as NameInOther, type index_d$1_NewExchangeOrderCreated as NewExchangeOrderCreated, type index_d$1_Order as Order, type index_d$1_OrderChange as OrderChange, type index_d$1_OrderChangeValueOneOf as OrderChangeValueOneOf, type index_d$1_OrderCreatedFromExchange as OrderCreatedFromExchange, type index_d$1_OrderLineItem as OrderLineItem, type index_d$1_OrderRefunded as OrderRefunded, index_d$1_OrderStatus as OrderStatus, type index_d$1_OrderTaxBreakdown as OrderTaxBreakdown, type index_d$1_OrderTaxInfo as OrderTaxInfo, type Other$1 as Other, type index_d$1_OtherCharge as OtherCharge, type index_d$1_PaymentCanceled as PaymentCanceled, type index_d$1_PaymentCanceledPaymentDetailsOneOf as PaymentCanceledPaymentDetailsOneOf, type index_d$1_PaymentDeclined as PaymentDeclined, type index_d$1_PaymentDeclinedPaymentDetailsOneOf as PaymentDeclinedPaymentDetailsOneOf, index_d$1_PaymentOption as PaymentOption, index_d$1_PaymentOptionType as PaymentOptionType, type index_d$1_PaymentPending as PaymentPending, type index_d$1_PaymentPendingPaymentDetailsOneOf as PaymentPendingPaymentDetailsOneOf, type index_d$1_PaymentRefundFailed as PaymentRefundFailed, type index_d$1_PaymentRefunded as PaymentRefunded, type index_d$1_PaymentSettings as PaymentSettings, type index_d$1_PaymentSettingsSPIConfig as PaymentSettingsSPIConfig, index_d$1_PaymentStatus as PaymentStatus, type PhysicalProperties$1 as PhysicalProperties, type index_d$1_PickupAddress as PickupAddress, type index_d$1_PickupDetails as PickupDetails, index_d$1_PickupDetailsPickupMethod as PickupDetailsPickupMethod, index_d$1_PickupMethod as PickupMethod, type index_d$1_PlainTextValue as PlainTextValue, type index_d$1_Price as Price, type index_d$1_PriceDescription as PriceDescription, type PriceSummary$1 as PriceSummary, type ProductName$1 as ProductName, index_d$1_RateType as RateType, type index_d$1_RefundInitiated as RefundInitiated, type index_d$1_RefundedAsStoreCredit as RefundedAsStoreCredit, type index_d$1_RefundedPayment as RefundedPayment, type index_d$1_RefundedPaymentKindOneOf as RefundedPaymentKindOneOf, type index_d$1_RegularPayment as RegularPayment, type index_d$1_RegularPaymentPaymentMethodDetailsOneOf as RegularPaymentPaymentMethodDetailsOneOf, type index_d$1_RegularPaymentRefund as RegularPaymentRefund, index_d$1_RuleType as RuleType, type index_d$1_SavedPaymentMethod as SavedPaymentMethod, type index_d$1_Scope as Scope, type index_d$1_SecuredMedia as SecuredMedia, type SelectedCarrierServiceOption$1 as SelectedCarrierServiceOption, type index_d$1_SelectedCarrierServiceOptionOtherCharge as SelectedCarrierServiceOptionOtherCharge, type SelectedCarrierServiceOptionPrices$1 as SelectedCarrierServiceOptionPrices, type index_d$1_SelectedMembership as SelectedMembership, type index_d$1_SelectedMemberships as SelectedMemberships, type index_d$1_ServiceProperties as ServiceProperties, Severity$1 as Severity, type ShippingInfo$1 as ShippingInfo, type index_d$1_ShippingInformation as ShippingInformation, type index_d$1_ShippingInformationChange as ShippingInformationChange, type index_d$1_ShippingOption as ShippingOption, type index_d$1_ShippingPrice as ShippingPrice, type index_d$1_ShippingRegion as ShippingRegion, type StreetAddress$1 as StreetAddress, SubscriptionFrequency$1 as SubscriptionFrequency, type index_d$1_SubscriptionInfo as SubscriptionInfo, type SubscriptionOptionInfo$1 as SubscriptionOptionInfo, type SubscriptionSettings$1 as SubscriptionSettings, type index_d$1_SystemError as SystemError, type index_d$1_TagList as TagList, type index_d$1_Tags as Tags, type Target$1 as Target, type TargetLineItem$1 as TargetLineItem, type TargetTargetTypeOneOf$1 as TargetTargetTypeOneOf, type TaxBreakdown$1 as TaxBreakdown, type index_d$1_TaxCalculationDetails as TaxCalculationDetails, type index_d$1_TaxCalculationDetailsCalculationDetailsOneOf as TaxCalculationDetailsCalculationDetailsOneOf, type index_d$1_TaxRateBreakdown as TaxRateBreakdown, type index_d$1_TaxSummary as TaxSummary, type index_d$1_TaxableAddress as TaxableAddress, type index_d$1_TaxableAddressTaxableAddressDataOneOf as TaxableAddressTaxableAddressDataOneOf, index_d$1_TaxableAddressType as TaxableAddressType, type Title$1 as Title, type index_d$1_TotalPriceChange as TotalPriceChange, type index_d$1_TranslatedValue as TranslatedValue, type index_d$1_V1AdditionalFee as V1AdditionalFee, type index_d$1_V1AppliedDiscount as V1AppliedDiscount, type index_d$1_V1AppliedDiscountDiscountSourceOneOf as V1AppliedDiscountDiscountSourceOneOf, type index_d$1_V1BuyerInfo as V1BuyerInfo, type index_d$1_V1BuyerInfoIdOneOf as V1BuyerInfoIdOneOf, type index_d$1_V1Coupon as V1Coupon, type index_d$1_V1CreatedBy as V1CreatedBy, type index_d$1_V1CreatedByStringOneOf as V1CreatedByStringOneOf, type index_d$1_V1DeliveryLogistics as V1DeliveryLogistics, type index_d$1_V1DeliveryTimeSlot as V1DeliveryTimeSlot, type index_d$1_V1DiscountRule as V1DiscountRule, type index_d$1_V1DiscountRuleName as V1DiscountRuleName, type index_d$1_V1ItemTaxFullDetails as V1ItemTaxFullDetails, index_d$1_V1JurisdictionType as V1JurisdictionType, type index_d$1_V1LineItemDiscount as V1LineItemDiscount, type index_d$1_V1MerchantDiscount as V1MerchantDiscount, type index_d$1_V1PickupDetails as V1PickupDetails, type index_d$1_V1PriceSummary as V1PriceSummary, type index_d$1_V1ShippingInformation as V1ShippingInformation, type index_d$1_V1ShippingPrice as V1ShippingPrice, type index_d$1_V1ShippingRegion as V1ShippingRegion, type index_d$1_V1SubscriptionSettings as V1SubscriptionSettings, type index_d$1_V1TaxSummary as V1TaxSummary, type index_d$1_ValidationError as ValidationError, type VatId$1 as VatId, VatType$1 as VatType, type Violation$1 as Violation, WeightUnit$1 as WeightUnit, type _publicProvideHandlersType$1 as _publicProvideHandlersType, provideHandlers$2 as provideHandlers, provideHandlers$3 as publicProvideHandlers };
|
|
5663
|
+
export { type index_d$1_Activity as Activity, type index_d$1_ActivityContentOneOf as ActivityContentOneOf, index_d$1_ActivityType as ActivityType, type index_d$1_AdditionalFee as AdditionalFee, type Address$1 as Address, type AddressLocation$1 as AddressLocation, type AddressWithContact$1 as AddressWithContact, type index_d$1_AggregatedTaxBreakdown as AggregatedTaxBreakdown, type index_d$1_ApiAddressWithContact as ApiAddressWithContact, type index_d$1_ApplicationError as ApplicationError, type AppliedDiscount$1 as AppliedDiscount, type AppliedDiscountDiscountSourceOneOf$1 as AppliedDiscountDiscountSourceOneOf, index_d$1_AppliedDiscountDiscountType as AppliedDiscountDiscountType, index_d$1_AttributionSource as AttributionSource, type index_d$1_AuthorizedPaymentCaptured as AuthorizedPaymentCaptured, type index_d$1_AuthorizedPaymentCreated as AuthorizedPaymentCreated, type index_d$1_AuthorizedPaymentVoided as AuthorizedPaymentVoided, type index_d$1_AutoTaxFallbackCalculationDetails as AutoTaxFallbackCalculationDetails, type index_d$1_Balance as Balance, type index_d$1_BalanceSummary as BalanceSummary, type index_d$1_BuyerInfo as BuyerInfo, type index_d$1_BuyerInfoIdOneOf as BuyerInfoIdOneOf, type index_d$1_CalculationErrors as CalculationErrors, type index_d$1_CalculationErrorsShippingCalculationErrorOneOf as CalculationErrorsShippingCalculationErrorOneOf, type index_d$1_CarrierError as CarrierError, type index_d$1_CarrierErrors as CarrierErrors, type index_d$1_CarrierServiceOption as CarrierServiceOption, type index_d$1_CatalogOverrideFields as CatalogOverrideFields, type CatalogReference$1 as CatalogReference, type index_d$1_ChannelInfo as ChannelInfo, index_d$1_ChannelType as ChannelType, index_d$1_ChargeType as ChargeType, type index_d$1_Checkout as Checkout, type index_d$1_Color as Color, type Context$1 as Context, type index_d$1_ConversionInfo as ConversionInfo, type Coupon$1 as Coupon, type index_d$1_CreatedBy as CreatedBy, type index_d$1_CreatedByIdOneOf as CreatedByIdOneOf, type index_d$1_CreditCardDetails as CreditCardDetails, type index_d$1_CustomActivity as CustomActivity, type index_d$1_CustomContentReference as CustomContentReference, type CustomField$1 as CustomField, type index_d$1_CustomSettings as CustomSettings, type index_d$1_DeliveryLogistics as DeliveryLogistics, type index_d$1_DeliveryLogisticsAddressOneOf as DeliveryLogisticsAddressOneOf, type index_d$1_DeliveryTimeSlot as DeliveryTimeSlot, type Description$1 as Description, type index_d$1_DescriptionLine as DescriptionLine, type index_d$1_DescriptionLineDescriptionLineValueOneOf as DescriptionLineDescriptionLineValueOneOf, type index_d$1_DescriptionLineName as DescriptionLineName, index_d$1_DescriptionLineType as DescriptionLineType, type index_d$1_DescriptionLineValueOneOf as DescriptionLineValueOneOf, type index_d$1_Details as Details, type index_d$1_DetailsKindOneOf as DetailsKindOneOf, type index_d$1_DigitalFile as DigitalFile, index_d$1_DiscountReason as DiscountReason, type DiscountRule$1 as DiscountRule, type DiscountRuleName$1 as DiscountRuleName, DiscountType$1 as DiscountType, type index_d$1_DraftOrderChangesApplied as DraftOrderChangesApplied, type ExtendedFields$1 as ExtendedFields, type ExternalReference$1 as ExternalReference, index_d$1_FallbackReason as FallbackReason, type index_d$1_FieldViolation as FieldViolation, index_d$1_FileType as FileType, index_d$1_FulfillmentStatus as FulfillmentStatus, type index_d$1_FulfillmentStatusesAggregate as FulfillmentStatusesAggregate, type FullAddressContactDetails$1 as FullAddressContactDetails, type index_d$1_GetPaymentSettingsForCheckoutRequest as GetPaymentSettingsForCheckoutRequest, type index_d$1_GetPaymentSettingsForCheckoutResponse as GetPaymentSettingsForCheckoutResponse, type index_d$1_GetPaymentSettingsRequest as GetPaymentSettingsRequest, type index_d$1_GetPaymentSettingsResponse as GetPaymentSettingsResponse, type GiftCard$1 as GiftCard, type index_d$1_GiftCardPaymentRefund as GiftCardPaymentRefund, type index_d$1_Group as Group, type IdentificationData$1 as IdentificationData, type IdentificationDataIdOneOf$1 as IdentificationDataIdOneOf, IdentityType$1 as IdentityType, type index_d$1_InvalidMembership as InvalidMembership, type index_d$1_ItemAvailabilityInfo as ItemAvailabilityInfo, index_d$1_ItemAvailabilityStatus as ItemAvailabilityStatus, type ItemTaxFullDetails$1 as ItemTaxFullDetails, type ItemType$1 as ItemType, ItemTypeItemType$1 as ItemTypeItemType, type ItemTypeItemTypeDataOneOf$1 as ItemTypeItemTypeDataOneOf, JurisdictionType$1 as JurisdictionType, type LineItem$1 as LineItem, type index_d$1_LineItemAmount as LineItemAmount, type index_d$1_LineItemChanges as LineItemChanges, type index_d$1_LineItemDiscount as LineItemDiscount, type index_d$1_LineItemExchangeData as LineItemExchangeData, type index_d$1_LineItemPriceChange as LineItemPriceChange, type index_d$1_LineItemQuantityChange as LineItemQuantityChange, index_d$1_LineItemQuantityChangeType as LineItemQuantityChangeType, type index_d$1_LineItemTaxBreakdown as LineItemTaxBreakdown, type index_d$1_LineItemTaxInfo as LineItemTaxInfo, type index_d$1_LocationAndQuantity as LocationAndQuantity, type index_d$1_ManagedAdditionalFee as ManagedAdditionalFee, type index_d$1_ManagedDiscount as ManagedDiscount, type index_d$1_ManagedLineItem as ManagedLineItem, index_d$1_ManualCalculationReason as ManualCalculationReason, type index_d$1_Membership as Membership, type index_d$1_MembershipName as MembershipName, type index_d$1_MembershipOptions as MembershipOptions, type index_d$1_MembershipPaymentCredits as MembershipPaymentCredits, type index_d$1_MembershipPaymentRefund as MembershipPaymentRefund, type index_d$1_MerchantComment as MerchantComment, type MerchantDiscount$1 as MerchantDiscount, type index_d$1_MerchantDiscountMerchantDiscountReasonOneOf as MerchantDiscountMerchantDiscountReasonOneOf, type MultiCurrencyPrice$1 as MultiCurrencyPrice, NameInLineItem$1 as NameInLineItem, NameInOther$1 as NameInOther, type index_d$1_NewExchangeOrderCreated as NewExchangeOrderCreated, type index_d$1_Order as Order, type index_d$1_OrderChange as OrderChange, type index_d$1_OrderChangeValueOneOf as OrderChangeValueOneOf, type index_d$1_OrderCreatedFromExchange as OrderCreatedFromExchange, type index_d$1_OrderLineItem as OrderLineItem, type index_d$1_OrderRefunded as OrderRefunded, index_d$1_OrderStatus as OrderStatus, type index_d$1_OrderTaxBreakdown as OrderTaxBreakdown, type index_d$1_OrderTaxInfo as OrderTaxInfo, type Other$1 as Other, type index_d$1_OtherCharge as OtherCharge, type index_d$1_PaymentCanceled as PaymentCanceled, type index_d$1_PaymentCanceledPaymentDetailsOneOf as PaymentCanceledPaymentDetailsOneOf, type index_d$1_PaymentDeclined as PaymentDeclined, type index_d$1_PaymentDeclinedPaymentDetailsOneOf as PaymentDeclinedPaymentDetailsOneOf, index_d$1_PaymentOption as PaymentOption, index_d$1_PaymentOptionType as PaymentOptionType, type index_d$1_PaymentPending as PaymentPending, type index_d$1_PaymentPendingPaymentDetailsOneOf as PaymentPendingPaymentDetailsOneOf, type index_d$1_PaymentRefundFailed as PaymentRefundFailed, type index_d$1_PaymentRefunded as PaymentRefunded, type index_d$1_PaymentSettings as PaymentSettings, type index_d$1_PaymentSettingsSPIConfig as PaymentSettingsSPIConfig, index_d$1_PaymentStatus as PaymentStatus, type PhysicalProperties$1 as PhysicalProperties, type index_d$1_PickupAddress as PickupAddress, type index_d$1_PickupDetails as PickupDetails, index_d$1_PickupDetailsPickupMethod as PickupDetailsPickupMethod, index_d$1_PickupMethod as PickupMethod, type index_d$1_PlainTextValue as PlainTextValue, type index_d$1_Price as Price, type index_d$1_PriceDescription as PriceDescription, type PriceSummary$1 as PriceSummary, type ProductName$1 as ProductName, index_d$1_RateType as RateType, type index_d$1_RefundInitiated as RefundInitiated, type index_d$1_RefundedAsStoreCredit as RefundedAsStoreCredit, type index_d$1_RefundedPayment as RefundedPayment, type index_d$1_RefundedPaymentKindOneOf as RefundedPaymentKindOneOf, type index_d$1_RegularPayment as RegularPayment, type index_d$1_RegularPaymentPaymentMethodDetailsOneOf as RegularPaymentPaymentMethodDetailsOneOf, type index_d$1_RegularPaymentRefund as RegularPaymentRefund, index_d$1_RuleType as RuleType, type index_d$1_SavedPaymentMethod as SavedPaymentMethod, type index_d$1_Scope as Scope, type index_d$1_SecuredMedia as SecuredMedia, type SelectedCarrierServiceOption$1 as SelectedCarrierServiceOption, type index_d$1_SelectedCarrierServiceOptionOtherCharge as SelectedCarrierServiceOptionOtherCharge, type SelectedCarrierServiceOptionPrices$1 as SelectedCarrierServiceOptionPrices, type index_d$1_SelectedMembership as SelectedMembership, type index_d$1_SelectedMemberships as SelectedMemberships, type index_d$1_ServiceProperties as ServiceProperties, Severity$1 as Severity, type ShippingInfo$1 as ShippingInfo, type index_d$1_ShippingInformation as ShippingInformation, type index_d$1_ShippingInformationChange as ShippingInformationChange, type index_d$1_ShippingOption as ShippingOption, type index_d$1_ShippingPrice as ShippingPrice, type index_d$1_ShippingRegion as ShippingRegion, type StreetAddress$1 as StreetAddress, SubscriptionFrequency$1 as SubscriptionFrequency, type index_d$1_SubscriptionInfo as SubscriptionInfo, type SubscriptionOptionInfo$1 as SubscriptionOptionInfo, type SubscriptionSettings$1 as SubscriptionSettings, type index_d$1_SystemError as SystemError, type index_d$1_TagList as TagList, type index_d$1_Tags as Tags, type Target$1 as Target, type TargetLineItem$1 as TargetLineItem, type TargetTargetTypeOneOf$1 as TargetTargetTypeOneOf, type TaxBreakdown$1 as TaxBreakdown, type index_d$1_TaxCalculationDetails as TaxCalculationDetails, type index_d$1_TaxCalculationDetailsCalculationDetailsOneOf as TaxCalculationDetailsCalculationDetailsOneOf, type index_d$1_TaxRateBreakdown as TaxRateBreakdown, type index_d$1_TaxSummary as TaxSummary, type index_d$1_TaxableAddress as TaxableAddress, type index_d$1_TaxableAddressTaxableAddressDataOneOf as TaxableAddressTaxableAddressDataOneOf, index_d$1_TaxableAddressType as TaxableAddressType, type Title$1 as Title, type index_d$1_TotalPriceChange as TotalPriceChange, type index_d$1_TranslatedValue as TranslatedValue, type index_d$1_V1AdditionalFee as V1AdditionalFee, type index_d$1_V1AppliedDiscount as V1AppliedDiscount, type index_d$1_V1AppliedDiscountDiscountSourceOneOf as V1AppliedDiscountDiscountSourceOneOf, type index_d$1_V1BuyerInfo as V1BuyerInfo, type index_d$1_V1BuyerInfoIdOneOf as V1BuyerInfoIdOneOf, type index_d$1_V1Coupon as V1Coupon, type index_d$1_V1CreatedBy as V1CreatedBy, type index_d$1_V1CreatedByStringOneOf as V1CreatedByStringOneOf, type index_d$1_V1DeliveryLogistics as V1DeliveryLogistics, type index_d$1_V1DeliveryTimeSlot as V1DeliveryTimeSlot, type index_d$1_V1DiscountRule as V1DiscountRule, type index_d$1_V1DiscountRuleName as V1DiscountRuleName, type index_d$1_V1ItemTaxFullDetails as V1ItemTaxFullDetails, index_d$1_V1JurisdictionType as V1JurisdictionType, type index_d$1_V1LineItemDiscount as V1LineItemDiscount, type index_d$1_V1MerchantDiscount as V1MerchantDiscount, type index_d$1_V1PickupDetails as V1PickupDetails, type index_d$1_V1PriceSummary as V1PriceSummary, type index_d$1_V1ShippingInformation as V1ShippingInformation, type index_d$1_V1ShippingPrice as V1ShippingPrice, type index_d$1_V1ShippingRegion as V1ShippingRegion, type index_d$1_V1SubscriptionSettings as V1SubscriptionSettings, type index_d$1_V1TaxSummary as V1TaxSummary, type index_d$1_ValidationError as ValidationError, type VatId$1 as VatId, VatType$1 as VatType, type Violation$1 as Violation, WeightUnit$1 as WeightUnit, type _publicProvideHandlersType$1 as _publicProvideHandlersType, provideHandlers$2 as provideHandlers, provideHandlers$3 as publicProvideHandlers };
|
|
5644
5664
|
}
|
|
5645
5665
|
|
|
5646
5666
|
interface GetValidationViolationsRequest {
|