@wix/ecom 1.0.626 → 1.0.627
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/package.json +4 -4
- package/type-bundles/context.bundle.d.ts +0 -274
- package/type-bundles/index.bundle.d.ts +0 -366
- package/type-bundles/meta.bundle.d.ts +98 -596
|
@@ -2268,9 +2268,9 @@ interface BackInStockItemDetails$1 {
|
|
|
2268
2268
|
/** Item price. */
|
|
2269
2269
|
price?: string;
|
|
2270
2270
|
/** Item image. */
|
|
2271
|
-
image?: Image$
|
|
2271
|
+
image?: Image$1;
|
|
2272
2272
|
}
|
|
2273
|
-
interface Image$
|
|
2273
|
+
interface Image$1 {
|
|
2274
2274
|
/** WixMedia image ID. */
|
|
2275
2275
|
id?: string;
|
|
2276
2276
|
/** Image URL. */
|
|
@@ -3066,7 +3066,7 @@ interface LineItem$5 {
|
|
|
3066
3066
|
* + Events - `ticket.name`
|
|
3067
3067
|
* @readonly
|
|
3068
3068
|
*/
|
|
3069
|
-
productName?: ProductName$
|
|
3069
|
+
productName?: ProductName$7;
|
|
3070
3070
|
/**
|
|
3071
3071
|
* URL to the item's page on the site.
|
|
3072
3072
|
* @readonly
|
|
@@ -3091,7 +3091,7 @@ interface LineItem$5 {
|
|
|
3091
3091
|
* Line item description lines. Used for displaying the cart, checkout and order.
|
|
3092
3092
|
* @readonly
|
|
3093
3093
|
*/
|
|
3094
|
-
descriptionLines?: DescriptionLine$
|
|
3094
|
+
descriptionLines?: DescriptionLine$7[];
|
|
3095
3095
|
/**
|
|
3096
3096
|
* Line item image details.
|
|
3097
3097
|
* @readonly
|
|
@@ -3106,7 +3106,7 @@ interface LineItem$5 {
|
|
|
3106
3106
|
* Physical properties of the item. When relevant, contains information such as SKU, item weight, and shippability.
|
|
3107
3107
|
* @readonly
|
|
3108
3108
|
*/
|
|
3109
|
-
physicalProperties?: PhysicalProperties$
|
|
3109
|
+
physicalProperties?: PhysicalProperties$7;
|
|
3110
3110
|
/**
|
|
3111
3111
|
* Item type. Either a preset type or custom.
|
|
3112
3112
|
* @readonly
|
|
@@ -3175,7 +3175,7 @@ interface CatalogReference$9 {
|
|
|
3175
3175
|
*/
|
|
3176
3176
|
options?: Record<string, any> | null;
|
|
3177
3177
|
}
|
|
3178
|
-
interface ProductName$
|
|
3178
|
+
interface ProductName$7 {
|
|
3179
3179
|
/**
|
|
3180
3180
|
* __Required.__ Item name in the site's default language as defined in the [request envelope](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/backend-extensions/add-self-hosted-service-plugin-extensions#request-envelope).
|
|
3181
3181
|
*
|
|
@@ -3217,25 +3217,25 @@ interface MultiCurrencyPrice$5 {
|
|
|
3217
3217
|
*/
|
|
3218
3218
|
formattedConvertedAmount?: string;
|
|
3219
3219
|
}
|
|
3220
|
-
interface DescriptionLine$
|
|
3220
|
+
interface DescriptionLine$7 extends DescriptionLineValueOneOf$7, DescriptionLineDescriptionLineValueOneOf$7 {
|
|
3221
3221
|
/** Description line plain text value. */
|
|
3222
|
-
plainText?: PlainTextValue$
|
|
3222
|
+
plainText?: PlainTextValue$7;
|
|
3223
3223
|
/** Description line color value. */
|
|
3224
|
-
colorInfo?: Color$
|
|
3224
|
+
colorInfo?: Color$7;
|
|
3225
3225
|
/** Description line name. */
|
|
3226
|
-
name?: DescriptionLineName$
|
|
3226
|
+
name?: DescriptionLineName$7;
|
|
3227
3227
|
}
|
|
3228
3228
|
/** @oneof */
|
|
3229
|
-
interface DescriptionLineValueOneOf$
|
|
3229
|
+
interface DescriptionLineValueOneOf$7 {
|
|
3230
3230
|
/** Description line plain text value. */
|
|
3231
|
-
plainText?: PlainTextValue$
|
|
3231
|
+
plainText?: PlainTextValue$7;
|
|
3232
3232
|
/** Description line color value. */
|
|
3233
|
-
colorInfo?: Color$
|
|
3233
|
+
colorInfo?: Color$7;
|
|
3234
3234
|
}
|
|
3235
3235
|
/** @oneof */
|
|
3236
|
-
interface DescriptionLineDescriptionLineValueOneOf$
|
|
3236
|
+
interface DescriptionLineDescriptionLineValueOneOf$7 {
|
|
3237
3237
|
}
|
|
3238
|
-
interface DescriptionLineName$
|
|
3238
|
+
interface DescriptionLineName$7 {
|
|
3239
3239
|
/** Description line name in the site's default language as defined in the [request envelope](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/backend-extensions/add-self-hosted-service-plugin-extensions#request-envelope). */
|
|
3240
3240
|
original?: string;
|
|
3241
3241
|
/**
|
|
@@ -3245,7 +3245,7 @@ interface DescriptionLineName$9 {
|
|
|
3245
3245
|
*/
|
|
3246
3246
|
translated?: string | null;
|
|
3247
3247
|
}
|
|
3248
|
-
interface PlainTextValue$
|
|
3248
|
+
interface PlainTextValue$7 {
|
|
3249
3249
|
/** Description line plain text value in the site's default language as defined in the [request envelope](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/backend-extensions/add-self-hosted-service-plugin-extensions#request-envelope). */
|
|
3250
3250
|
original?: string;
|
|
3251
3251
|
/**
|
|
@@ -3255,7 +3255,7 @@ interface PlainTextValue$9 {
|
|
|
3255
3255
|
*/
|
|
3256
3256
|
translated?: string | null;
|
|
3257
3257
|
}
|
|
3258
|
-
interface Color$
|
|
3258
|
+
interface Color$7 {
|
|
3259
3259
|
/** Description line color name in the site's default language as defined in the [request envelope](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/backend-extensions/add-self-hosted-service-plugin-extensions#request-envelope). */
|
|
3260
3260
|
original?: string;
|
|
3261
3261
|
/**
|
|
@@ -3314,7 +3314,7 @@ declare enum ItemAvailabilityStatus$5 {
|
|
|
3314
3314
|
/** Available quantity is less than requested */
|
|
3315
3315
|
PARTIALLY_AVAILABLE = "PARTIALLY_AVAILABLE"
|
|
3316
3316
|
}
|
|
3317
|
-
interface PhysicalProperties$
|
|
3317
|
+
interface PhysicalProperties$7 {
|
|
3318
3318
|
/** Line item weight. Measurement unit matches the weight unit specified in `weightUnit` in the request. */
|
|
3319
3319
|
weight?: number | null;
|
|
3320
3320
|
/** Stock-keeping unit. Learn more about [SKUs](https://www.wix.com/encyclopedia/definition/stock-keeping-unit-sku). */
|
|
@@ -6697,7 +6697,7 @@ interface LineItem$4 {
|
|
|
6697
6697
|
* + Events - `ticket.name`
|
|
6698
6698
|
* @readonly
|
|
6699
6699
|
*/
|
|
6700
|
-
productName?: ProductName$
|
|
6700
|
+
productName?: ProductName$6;
|
|
6701
6701
|
/**
|
|
6702
6702
|
* URL to the item's page on the site.
|
|
6703
6703
|
* @readonly
|
|
@@ -6722,7 +6722,7 @@ interface LineItem$4 {
|
|
|
6722
6722
|
* Line item description lines. Used for displaying the cart, checkout and order.
|
|
6723
6723
|
* @readonly
|
|
6724
6724
|
*/
|
|
6725
|
-
descriptionLines?: DescriptionLine$
|
|
6725
|
+
descriptionLines?: DescriptionLine$6[];
|
|
6726
6726
|
/**
|
|
6727
6727
|
* Line item image details.
|
|
6728
6728
|
* @readonly
|
|
@@ -6737,7 +6737,7 @@ interface LineItem$4 {
|
|
|
6737
6737
|
* Physical properties of the item. When relevant, contains information such as SKU, item weight, and shippability.
|
|
6738
6738
|
* @readonly
|
|
6739
6739
|
*/
|
|
6740
|
-
physicalProperties?: PhysicalProperties$
|
|
6740
|
+
physicalProperties?: PhysicalProperties$6;
|
|
6741
6741
|
/**
|
|
6742
6742
|
* Item type. Either a preset type or custom.
|
|
6743
6743
|
* @readonly
|
|
@@ -6806,7 +6806,7 @@ interface CatalogReference$8 {
|
|
|
6806
6806
|
*/
|
|
6807
6807
|
options?: Record<string, any> | null;
|
|
6808
6808
|
}
|
|
6809
|
-
interface ProductName$
|
|
6809
|
+
interface ProductName$6 {
|
|
6810
6810
|
/** **Required** - Original product name (in site's default language). */
|
|
6811
6811
|
original?: string;
|
|
6812
6812
|
/** Description product name translated into buyer's language. Defaults to `original` when not defined. */
|
|
@@ -6831,37 +6831,37 @@ interface MultiCurrencyPrice$4 {
|
|
|
6831
6831
|
*/
|
|
6832
6832
|
formattedConvertedAmount?: string;
|
|
6833
6833
|
}
|
|
6834
|
-
interface DescriptionLine$
|
|
6834
|
+
interface DescriptionLine$6 extends DescriptionLineValueOneOf$6, DescriptionLineDescriptionLineValueOneOf$6 {
|
|
6835
6835
|
/** Description line plain text value. */
|
|
6836
|
-
plainText?: PlainTextValue$
|
|
6836
|
+
plainText?: PlainTextValue$6;
|
|
6837
6837
|
/** Description line color value. */
|
|
6838
|
-
colorInfo?: Color$
|
|
6838
|
+
colorInfo?: Color$6;
|
|
6839
6839
|
/** Description line name. */
|
|
6840
|
-
name?: DescriptionLineName$
|
|
6840
|
+
name?: DescriptionLineName$6;
|
|
6841
6841
|
}
|
|
6842
6842
|
/** @oneof */
|
|
6843
|
-
interface DescriptionLineValueOneOf$
|
|
6843
|
+
interface DescriptionLineValueOneOf$6 {
|
|
6844
6844
|
/** Description line plain text value. */
|
|
6845
|
-
plainText?: PlainTextValue$
|
|
6845
|
+
plainText?: PlainTextValue$6;
|
|
6846
6846
|
/** Description line color value. */
|
|
6847
|
-
colorInfo?: Color$
|
|
6847
|
+
colorInfo?: Color$6;
|
|
6848
6848
|
}
|
|
6849
6849
|
/** @oneof */
|
|
6850
|
-
interface DescriptionLineDescriptionLineValueOneOf$
|
|
6850
|
+
interface DescriptionLineDescriptionLineValueOneOf$6 {
|
|
6851
6851
|
}
|
|
6852
|
-
interface DescriptionLineName$
|
|
6852
|
+
interface DescriptionLineName$6 {
|
|
6853
6853
|
/** Description line name in site's default language. */
|
|
6854
6854
|
original?: string;
|
|
6855
6855
|
/** Description line name translated into buyer's language. Defaults to `original` when not defined. */
|
|
6856
6856
|
translated?: string | null;
|
|
6857
6857
|
}
|
|
6858
|
-
interface PlainTextValue$
|
|
6858
|
+
interface PlainTextValue$6 {
|
|
6859
6859
|
/** Description line plain text value in site's default language. */
|
|
6860
6860
|
original?: string;
|
|
6861
6861
|
/** Description line plain text value translated into buyer's language. Defaults to `original` when not defined. */
|
|
6862
6862
|
translated?: string | null;
|
|
6863
6863
|
}
|
|
6864
|
-
interface Color$
|
|
6864
|
+
interface Color$6 {
|
|
6865
6865
|
/** Description line color name in site's default language. */
|
|
6866
6866
|
original?: string;
|
|
6867
6867
|
/** Description line color name translated into buyer's language. Defaults to `original` when not defined. */
|
|
@@ -6892,7 +6892,7 @@ declare enum ItemAvailabilityStatus$4 {
|
|
|
6892
6892
|
/** Available quantity is less than requested */
|
|
6893
6893
|
PARTIALLY_AVAILABLE = "PARTIALLY_AVAILABLE"
|
|
6894
6894
|
}
|
|
6895
|
-
interface PhysicalProperties$
|
|
6895
|
+
interface PhysicalProperties$6 {
|
|
6896
6896
|
/** Line item weight. Measurement unit matches the weight unit specified in `weightUnit` in the request. */
|
|
6897
6897
|
weight?: number | null;
|
|
6898
6898
|
/** Stock-keeping unit. Learn more about [SKUs](https://www.wix.com/encyclopedia/definition/stock-keeping-unit-sku). */
|
|
@@ -9438,7 +9438,7 @@ interface LineItem$3 {
|
|
|
9438
9438
|
* + Events - `ticket.name`
|
|
9439
9439
|
* @readonly
|
|
9440
9440
|
*/
|
|
9441
|
-
productName?: ProductName$
|
|
9441
|
+
productName?: ProductName$5;
|
|
9442
9442
|
/**
|
|
9443
9443
|
* URL to the item's page on the site.
|
|
9444
9444
|
* @readonly
|
|
@@ -9463,7 +9463,7 @@ interface LineItem$3 {
|
|
|
9463
9463
|
* Line item description lines. Used for displaying the cart, checkout and order.
|
|
9464
9464
|
* @readonly
|
|
9465
9465
|
*/
|
|
9466
|
-
descriptionLines?: DescriptionLine$
|
|
9466
|
+
descriptionLines?: DescriptionLine$5[];
|
|
9467
9467
|
/**
|
|
9468
9468
|
* Line item image details.
|
|
9469
9469
|
* @readonly
|
|
@@ -9478,7 +9478,7 @@ interface LineItem$3 {
|
|
|
9478
9478
|
* Physical properties of the item. When relevant, contains information such as SKU, item weight, and shippability.
|
|
9479
9479
|
* @readonly
|
|
9480
9480
|
*/
|
|
9481
|
-
physicalProperties?: PhysicalProperties$
|
|
9481
|
+
physicalProperties?: PhysicalProperties$5;
|
|
9482
9482
|
/**
|
|
9483
9483
|
* Item type. Either a preset type or custom.
|
|
9484
9484
|
* @readonly
|
|
@@ -9547,7 +9547,7 @@ interface CatalogReference$7 {
|
|
|
9547
9547
|
*/
|
|
9548
9548
|
options?: Record<string, any> | null;
|
|
9549
9549
|
}
|
|
9550
|
-
interface ProductName$
|
|
9550
|
+
interface ProductName$5 {
|
|
9551
9551
|
/**
|
|
9552
9552
|
* __Required.__ Item name in the site's default language as defined in the [request envelope](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/backend-extensions/add-self-hosted-service-plugin-extensions#request-envelope).
|
|
9553
9553
|
*
|
|
@@ -9589,25 +9589,25 @@ interface MultiCurrencyPrice$3 {
|
|
|
9589
9589
|
*/
|
|
9590
9590
|
formattedConvertedAmount?: string;
|
|
9591
9591
|
}
|
|
9592
|
-
interface DescriptionLine$
|
|
9592
|
+
interface DescriptionLine$5 extends DescriptionLineValueOneOf$5, DescriptionLineDescriptionLineValueOneOf$5 {
|
|
9593
9593
|
/** Description line plain text value. */
|
|
9594
|
-
plainText?: PlainTextValue$
|
|
9594
|
+
plainText?: PlainTextValue$5;
|
|
9595
9595
|
/** Description line color value. */
|
|
9596
|
-
colorInfo?: Color$
|
|
9596
|
+
colorInfo?: Color$5;
|
|
9597
9597
|
/** Description line name. */
|
|
9598
|
-
name?: DescriptionLineName$
|
|
9598
|
+
name?: DescriptionLineName$5;
|
|
9599
9599
|
}
|
|
9600
9600
|
/** @oneof */
|
|
9601
|
-
interface DescriptionLineValueOneOf$
|
|
9601
|
+
interface DescriptionLineValueOneOf$5 {
|
|
9602
9602
|
/** Description line plain text value. */
|
|
9603
|
-
plainText?: PlainTextValue$
|
|
9603
|
+
plainText?: PlainTextValue$5;
|
|
9604
9604
|
/** Description line color value. */
|
|
9605
|
-
colorInfo?: Color$
|
|
9605
|
+
colorInfo?: Color$5;
|
|
9606
9606
|
}
|
|
9607
9607
|
/** @oneof */
|
|
9608
|
-
interface DescriptionLineDescriptionLineValueOneOf$
|
|
9608
|
+
interface DescriptionLineDescriptionLineValueOneOf$5 {
|
|
9609
9609
|
}
|
|
9610
|
-
interface DescriptionLineName$
|
|
9610
|
+
interface DescriptionLineName$5 {
|
|
9611
9611
|
/** Description line name in the site's default language as defined in the [request envelope](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/backend-extensions/add-self-hosted-service-plugin-extensions#request-envelope). */
|
|
9612
9612
|
original?: string;
|
|
9613
9613
|
/**
|
|
@@ -9617,7 +9617,7 @@ interface DescriptionLineName$7 {
|
|
|
9617
9617
|
*/
|
|
9618
9618
|
translated?: string | null;
|
|
9619
9619
|
}
|
|
9620
|
-
interface PlainTextValue$
|
|
9620
|
+
interface PlainTextValue$5 {
|
|
9621
9621
|
/** Description line plain text value in the site's default language as defined in the [request envelope](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/backend-extensions/add-self-hosted-service-plugin-extensions#request-envelope). */
|
|
9622
9622
|
original?: string;
|
|
9623
9623
|
/**
|
|
@@ -9627,7 +9627,7 @@ interface PlainTextValue$7 {
|
|
|
9627
9627
|
*/
|
|
9628
9628
|
translated?: string | null;
|
|
9629
9629
|
}
|
|
9630
|
-
interface Color$
|
|
9630
|
+
interface Color$5 {
|
|
9631
9631
|
/** Description line color name in the site's default language as defined in the [request envelope](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/backend-extensions/add-self-hosted-service-plugin-extensions#request-envelope). */
|
|
9632
9632
|
original?: string;
|
|
9633
9633
|
/**
|
|
@@ -9686,7 +9686,7 @@ declare enum ItemAvailabilityStatus$3 {
|
|
|
9686
9686
|
/** Available quantity is less than requested */
|
|
9687
9687
|
PARTIALLY_AVAILABLE = "PARTIALLY_AVAILABLE"
|
|
9688
9688
|
}
|
|
9689
|
-
interface PhysicalProperties$
|
|
9689
|
+
interface PhysicalProperties$5 {
|
|
9690
9690
|
/** Line item weight. Measurement unit matches the weight unit specified in `weightUnit` in the request. */
|
|
9691
9691
|
weight?: number | null;
|
|
9692
9692
|
/** Stock-keeping unit. Learn more about [SKUs](https://www.wix.com/encyclopedia/definition/stock-keeping-unit-sku). */
|
|
@@ -12856,7 +12856,7 @@ interface LineItem$2 {
|
|
|
12856
12856
|
* + Events - `ticket.name`
|
|
12857
12857
|
* @readonly
|
|
12858
12858
|
*/
|
|
12859
|
-
productName?: ProductName$
|
|
12859
|
+
productName?: ProductName$4;
|
|
12860
12860
|
/**
|
|
12861
12861
|
* URL to the item's page on the site.
|
|
12862
12862
|
* @readonly
|
|
@@ -12881,7 +12881,7 @@ interface LineItem$2 {
|
|
|
12881
12881
|
* Line item description lines. Used for displaying the cart, checkout and order.
|
|
12882
12882
|
* @readonly
|
|
12883
12883
|
*/
|
|
12884
|
-
descriptionLines?: DescriptionLine$
|
|
12884
|
+
descriptionLines?: DescriptionLine$4[];
|
|
12885
12885
|
/**
|
|
12886
12886
|
* Line item image details.
|
|
12887
12887
|
* @readonly
|
|
@@ -12896,7 +12896,7 @@ interface LineItem$2 {
|
|
|
12896
12896
|
* Physical properties of the item. When relevant, contains information such as SKU, item weight, and shippability.
|
|
12897
12897
|
* @readonly
|
|
12898
12898
|
*/
|
|
12899
|
-
physicalProperties?: PhysicalProperties$
|
|
12899
|
+
physicalProperties?: PhysicalProperties$4;
|
|
12900
12900
|
/**
|
|
12901
12901
|
* Item type. Either a preset type or custom.
|
|
12902
12902
|
* @readonly
|
|
@@ -12965,7 +12965,7 @@ interface CatalogReference$6 {
|
|
|
12965
12965
|
*/
|
|
12966
12966
|
options?: Record<string, any> | null;
|
|
12967
12967
|
}
|
|
12968
|
-
interface ProductName$
|
|
12968
|
+
interface ProductName$4 {
|
|
12969
12969
|
/** **Required** - Original product name (in site's default language). */
|
|
12970
12970
|
original?: string;
|
|
12971
12971
|
/** Description product name translated into buyer's language. Defaults to `original` when not defined. */
|
|
@@ -12990,37 +12990,37 @@ interface MultiCurrencyPrice$2 {
|
|
|
12990
12990
|
*/
|
|
12991
12991
|
formattedConvertedAmount?: string;
|
|
12992
12992
|
}
|
|
12993
|
-
interface DescriptionLine$
|
|
12993
|
+
interface DescriptionLine$4 extends DescriptionLineValueOneOf$4, DescriptionLineDescriptionLineValueOneOf$4 {
|
|
12994
12994
|
/** Description line plain text value. */
|
|
12995
|
-
plainText?: PlainTextValue$
|
|
12995
|
+
plainText?: PlainTextValue$4;
|
|
12996
12996
|
/** Description line color value. */
|
|
12997
|
-
colorInfo?: Color$
|
|
12997
|
+
colorInfo?: Color$4;
|
|
12998
12998
|
/** Description line name. */
|
|
12999
|
-
name?: DescriptionLineName$
|
|
12999
|
+
name?: DescriptionLineName$4;
|
|
13000
13000
|
}
|
|
13001
13001
|
/** @oneof */
|
|
13002
|
-
interface DescriptionLineValueOneOf$
|
|
13002
|
+
interface DescriptionLineValueOneOf$4 {
|
|
13003
13003
|
/** Description line plain text value. */
|
|
13004
|
-
plainText?: PlainTextValue$
|
|
13004
|
+
plainText?: PlainTextValue$4;
|
|
13005
13005
|
/** Description line color value. */
|
|
13006
|
-
colorInfo?: Color$
|
|
13006
|
+
colorInfo?: Color$4;
|
|
13007
13007
|
}
|
|
13008
13008
|
/** @oneof */
|
|
13009
|
-
interface DescriptionLineDescriptionLineValueOneOf$
|
|
13009
|
+
interface DescriptionLineDescriptionLineValueOneOf$4 {
|
|
13010
13010
|
}
|
|
13011
|
-
interface DescriptionLineName$
|
|
13011
|
+
interface DescriptionLineName$4 {
|
|
13012
13012
|
/** Description line name in site's default language. */
|
|
13013
13013
|
original?: string;
|
|
13014
13014
|
/** Description line name translated into buyer's language. Defaults to `original` when not defined. */
|
|
13015
13015
|
translated?: string | null;
|
|
13016
13016
|
}
|
|
13017
|
-
interface PlainTextValue$
|
|
13017
|
+
interface PlainTextValue$4 {
|
|
13018
13018
|
/** Description line plain text value in site's default language. */
|
|
13019
13019
|
original?: string;
|
|
13020
13020
|
/** Description line plain text value translated into buyer's language. Defaults to `original` when not defined. */
|
|
13021
13021
|
translated?: string | null;
|
|
13022
13022
|
}
|
|
13023
|
-
interface Color$
|
|
13023
|
+
interface Color$4 {
|
|
13024
13024
|
/** Description line color name in site's default language. */
|
|
13025
13025
|
original?: string;
|
|
13026
13026
|
/** Description line color name translated into buyer's language. Defaults to `original` when not defined. */
|
|
@@ -13051,7 +13051,7 @@ declare enum ItemAvailabilityStatus$2 {
|
|
|
13051
13051
|
/** Available quantity is less than requested */
|
|
13052
13052
|
PARTIALLY_AVAILABLE = "PARTIALLY_AVAILABLE"
|
|
13053
13053
|
}
|
|
13054
|
-
interface PhysicalProperties$
|
|
13054
|
+
interface PhysicalProperties$4 {
|
|
13055
13055
|
/** Line item weight. Measurement unit matches the weight unit specified in `weightUnit` in the request. */
|
|
13056
13056
|
weight?: number | null;
|
|
13057
13057
|
/** Stock-keeping unit. Learn more about [SKUs](https://www.wix.com/encyclopedia/definition/stock-keeping-unit-sku). */
|
|
@@ -15528,7 +15528,7 @@ interface LineItem$1 {
|
|
|
15528
15528
|
* + Events - `ticket.name`
|
|
15529
15529
|
* @readonly
|
|
15530
15530
|
*/
|
|
15531
|
-
productName?: ProductName$
|
|
15531
|
+
productName?: ProductName$3;
|
|
15532
15532
|
/**
|
|
15533
15533
|
* URL to the item's page on the site.
|
|
15534
15534
|
* @readonly
|
|
@@ -15578,7 +15578,7 @@ interface LineItem$1 {
|
|
|
15578
15578
|
* Line item description lines. Used for display purposes for the cart, checkout and order.
|
|
15579
15579
|
* @readonly
|
|
15580
15580
|
*/
|
|
15581
|
-
descriptionLines?: DescriptionLine$
|
|
15581
|
+
descriptionLines?: DescriptionLine$3[];
|
|
15582
15582
|
/**
|
|
15583
15583
|
* Line item image details.
|
|
15584
15584
|
* @readonly
|
|
@@ -15593,7 +15593,7 @@ interface LineItem$1 {
|
|
|
15593
15593
|
* Physical properties of the item. When relevant, contains information such as SKU, item weight, and shippability.
|
|
15594
15594
|
* @readonly
|
|
15595
15595
|
*/
|
|
15596
|
-
physicalProperties?: PhysicalProperties$
|
|
15596
|
+
physicalProperties?: PhysicalProperties$3;
|
|
15597
15597
|
/**
|
|
15598
15598
|
* Item type. Either a preset type or custom.
|
|
15599
15599
|
* @readonly
|
|
@@ -15632,8 +15632,6 @@ interface LineItem$1 {
|
|
|
15632
15632
|
* @readonly
|
|
15633
15633
|
*/
|
|
15634
15634
|
depositAmount?: MultiCurrencyPrice$1;
|
|
15635
|
-
/** Allows partial overrides for catalog line item properties like name, price, etc */
|
|
15636
|
-
catalogOverrideFields?: CatalogOverrideFields$3;
|
|
15637
15635
|
}
|
|
15638
15636
|
/** Used for grouping line items. Sent when an item is added to a cart, checkout, or order. */
|
|
15639
15637
|
interface CatalogReference$5 {
|
|
@@ -15657,7 +15655,7 @@ interface CatalogReference$5 {
|
|
|
15657
15655
|
*/
|
|
15658
15656
|
options?: Record<string, any> | null;
|
|
15659
15657
|
}
|
|
15660
|
-
interface ProductName$
|
|
15658
|
+
interface ProductName$3 {
|
|
15661
15659
|
/**
|
|
15662
15660
|
* __Required.__ Item name in the site's default language as defined in the [request envelope](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/backend-extensions/add-self-hosted-service-plugin-extensions#request-envelope).
|
|
15663
15661
|
*
|
|
@@ -15730,25 +15728,25 @@ declare enum JurisdictionType$2 {
|
|
|
15730
15728
|
CITY = "CITY",
|
|
15731
15729
|
SPECIAL = "SPECIAL"
|
|
15732
15730
|
}
|
|
15733
|
-
interface DescriptionLine$
|
|
15731
|
+
interface DescriptionLine$3 extends DescriptionLineValueOneOf$3, DescriptionLineDescriptionLineValueOneOf$3 {
|
|
15734
15732
|
/** Description line plain text value. */
|
|
15735
|
-
plainText?: PlainTextValue$
|
|
15733
|
+
plainText?: PlainTextValue$3;
|
|
15736
15734
|
/** Description line color value. */
|
|
15737
|
-
colorInfo?: Color$
|
|
15735
|
+
colorInfo?: Color$3;
|
|
15738
15736
|
/** Description line name. */
|
|
15739
|
-
name?: DescriptionLineName$
|
|
15737
|
+
name?: DescriptionLineName$3;
|
|
15740
15738
|
}
|
|
15741
15739
|
/** @oneof */
|
|
15742
|
-
interface DescriptionLineValueOneOf$
|
|
15740
|
+
interface DescriptionLineValueOneOf$3 {
|
|
15743
15741
|
/** Description line plain text value. */
|
|
15744
|
-
plainText?: PlainTextValue$
|
|
15742
|
+
plainText?: PlainTextValue$3;
|
|
15745
15743
|
/** Description line color value. */
|
|
15746
|
-
colorInfo?: Color$
|
|
15744
|
+
colorInfo?: Color$3;
|
|
15747
15745
|
}
|
|
15748
15746
|
/** @oneof */
|
|
15749
|
-
interface DescriptionLineDescriptionLineValueOneOf$
|
|
15747
|
+
interface DescriptionLineDescriptionLineValueOneOf$3 {
|
|
15750
15748
|
}
|
|
15751
|
-
interface DescriptionLineName$
|
|
15749
|
+
interface DescriptionLineName$3 {
|
|
15752
15750
|
/** Description line name in the site's default language as defined in the [request envelope](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/backend-extensions/add-self-hosted-service-plugin-extensions#request-envelope). */
|
|
15753
15751
|
original?: string;
|
|
15754
15752
|
/**
|
|
@@ -15758,7 +15756,7 @@ interface DescriptionLineName$5 {
|
|
|
15758
15756
|
*/
|
|
15759
15757
|
translated?: string | null;
|
|
15760
15758
|
}
|
|
15761
|
-
interface PlainTextValue$
|
|
15759
|
+
interface PlainTextValue$3 {
|
|
15762
15760
|
/** Description line plain text value in the site's default language as defined in the [request envelope](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/backend-extensions/add-self-hosted-service-plugin-extensions#request-envelope). */
|
|
15763
15761
|
original?: string;
|
|
15764
15762
|
/**
|
|
@@ -15768,7 +15766,7 @@ interface PlainTextValue$5 {
|
|
|
15768
15766
|
*/
|
|
15769
15767
|
translated?: string | null;
|
|
15770
15768
|
}
|
|
15771
|
-
interface Color$
|
|
15769
|
+
interface Color$3 {
|
|
15772
15770
|
/** Description line color name in the site's default language as defined in the [request envelope](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/backend-extensions/add-self-hosted-service-plugin-extensions#request-envelope). */
|
|
15773
15771
|
original?: string;
|
|
15774
15772
|
/**
|
|
@@ -15827,7 +15825,7 @@ declare enum ItemAvailabilityStatus$1 {
|
|
|
15827
15825
|
/** Available quantity is less than requested */
|
|
15828
15826
|
PARTIALLY_AVAILABLE = "PARTIALLY_AVAILABLE"
|
|
15829
15827
|
}
|
|
15830
|
-
interface PhysicalProperties$
|
|
15828
|
+
interface PhysicalProperties$3 {
|
|
15831
15829
|
/** Line item weight. Measurement unit matches the weight unit specified in `weightUnit` in the request. */
|
|
15832
15830
|
weight?: number | null;
|
|
15833
15831
|
/** Stock-keeping unit. Learn more about [SKUs](https://www.wix.com/encyclopedia/definition/stock-keeping-unit-sku). */
|
|
@@ -15903,32 +15901,6 @@ interface PriceDescription$3 {
|
|
|
15903
15901
|
*/
|
|
15904
15902
|
translated?: string | null;
|
|
15905
15903
|
}
|
|
15906
|
-
interface CatalogOverrideFields$3 {
|
|
15907
|
-
/** Item product name */
|
|
15908
|
-
productName?: ProductName$5;
|
|
15909
|
-
/** Item price **after** discounts. */
|
|
15910
|
-
price?: string | null;
|
|
15911
|
-
/** Item price **before** discount. */
|
|
15912
|
-
fullPrice?: string | null;
|
|
15913
|
-
/** Line item description lines. Used for displaying the cart, checkout and order. */
|
|
15914
|
-
descriptionLines?: DescriptionLine$5[];
|
|
15915
|
-
/** Physical properties of the item. When relevant, contains information such as SKU, item weight, and shippability. */
|
|
15916
|
-
physicalProperties?: PhysicalProperties$5;
|
|
15917
|
-
/** Line item image details. */
|
|
15918
|
-
image?: Image$2;
|
|
15919
|
-
}
|
|
15920
|
-
interface Image$2 {
|
|
15921
|
-
/** WixMedia image ID. */
|
|
15922
|
-
id?: string;
|
|
15923
|
-
/** Original image height. */
|
|
15924
|
-
height?: number;
|
|
15925
|
-
/** Original image width. */
|
|
15926
|
-
width?: number;
|
|
15927
|
-
/** Image alt text. Optional. */
|
|
15928
|
-
altText?: string | null;
|
|
15929
|
-
/** Image filename. Optional. */
|
|
15930
|
-
filename?: string | null;
|
|
15931
|
-
}
|
|
15932
15904
|
/** Billing Info and shipping details */
|
|
15933
15905
|
interface AddressWithContact$3 {
|
|
15934
15906
|
/** Address. */
|
|
@@ -26008,7 +25980,7 @@ interface LineItem {
|
|
|
26008
25980
|
* + Events - `ticket.name`
|
|
26009
25981
|
* @readonly
|
|
26010
25982
|
*/
|
|
26011
|
-
productName?: ProductName$
|
|
25983
|
+
productName?: ProductName$2;
|
|
26012
25984
|
/**
|
|
26013
25985
|
* URL to the item's page on the site.
|
|
26014
25986
|
* @readonly
|
|
@@ -26058,7 +26030,7 @@ interface LineItem {
|
|
|
26058
26030
|
* Line item description lines. Used for displaying the cart, checkout and order.
|
|
26059
26031
|
* @readonly
|
|
26060
26032
|
*/
|
|
26061
|
-
descriptionLines?: DescriptionLine$
|
|
26033
|
+
descriptionLines?: DescriptionLine$2[];
|
|
26062
26034
|
/**
|
|
26063
26035
|
* Line item image details.
|
|
26064
26036
|
* @readonly
|
|
@@ -26073,7 +26045,7 @@ interface LineItem {
|
|
|
26073
26045
|
* Physical properties of the item. When relevant, contains information such as SKU, item weight, and shippability.
|
|
26074
26046
|
* @readonly
|
|
26075
26047
|
*/
|
|
26076
|
-
physicalProperties?: PhysicalProperties$
|
|
26048
|
+
physicalProperties?: PhysicalProperties$2;
|
|
26077
26049
|
/**
|
|
26078
26050
|
* Item type. Either a preset type or custom.
|
|
26079
26051
|
* @readonly
|
|
@@ -26111,8 +26083,6 @@ interface LineItem {
|
|
|
26111
26083
|
* @readonly
|
|
26112
26084
|
*/
|
|
26113
26085
|
depositAmount?: MultiCurrencyPrice;
|
|
26114
|
-
/** Allows partial overrides for catalog line item properties like name, price, etc */
|
|
26115
|
-
catalogOverrideFields?: CatalogOverrideFields$2;
|
|
26116
26086
|
}
|
|
26117
26087
|
/** Used for grouping line items. Sent when an item is added to a cart, checkout, or order. */
|
|
26118
26088
|
interface CatalogReference$4 {
|
|
@@ -26138,7 +26108,7 @@ interface CatalogReference$4 {
|
|
|
26138
26108
|
*/
|
|
26139
26109
|
options?: Record<string, any> | null;
|
|
26140
26110
|
}
|
|
26141
|
-
interface ProductName$
|
|
26111
|
+
interface ProductName$2 {
|
|
26142
26112
|
/**
|
|
26143
26113
|
* __Required.__ Item name in the site's default language as defined in the [request envelope](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/backend-extensions/add-self-hosted-service-plugin-extensions#request-envelope).
|
|
26144
26114
|
*
|
|
@@ -26196,25 +26166,25 @@ interface TaxRateBreakdown {
|
|
|
26196
26166
|
/** Amount of tax for this tax detail. */
|
|
26197
26167
|
tax?: MultiCurrencyPrice;
|
|
26198
26168
|
}
|
|
26199
|
-
interface DescriptionLine$
|
|
26169
|
+
interface DescriptionLine$2 extends DescriptionLineValueOneOf$2, DescriptionLineDescriptionLineValueOneOf$2 {
|
|
26200
26170
|
/** Description line plain text value. */
|
|
26201
|
-
plainText?: PlainTextValue$
|
|
26171
|
+
plainText?: PlainTextValue$2;
|
|
26202
26172
|
/** Description line color value. */
|
|
26203
|
-
colorInfo?: Color$
|
|
26173
|
+
colorInfo?: Color$2;
|
|
26204
26174
|
/** Description line name. */
|
|
26205
|
-
name?: DescriptionLineName$
|
|
26175
|
+
name?: DescriptionLineName$2;
|
|
26206
26176
|
}
|
|
26207
26177
|
/** @oneof */
|
|
26208
|
-
interface DescriptionLineValueOneOf$
|
|
26178
|
+
interface DescriptionLineValueOneOf$2 {
|
|
26209
26179
|
/** Description line plain text value. */
|
|
26210
|
-
plainText?: PlainTextValue$
|
|
26180
|
+
plainText?: PlainTextValue$2;
|
|
26211
26181
|
/** Description line color value. */
|
|
26212
|
-
colorInfo?: Color$
|
|
26182
|
+
colorInfo?: Color$2;
|
|
26213
26183
|
}
|
|
26214
26184
|
/** @oneof */
|
|
26215
|
-
interface DescriptionLineDescriptionLineValueOneOf$
|
|
26185
|
+
interface DescriptionLineDescriptionLineValueOneOf$2 {
|
|
26216
26186
|
}
|
|
26217
|
-
interface DescriptionLineName$
|
|
26187
|
+
interface DescriptionLineName$2 {
|
|
26218
26188
|
/** Description line name in the site's default language as defined in the [request envelope](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/backend-extensions/add-self-hosted-service-plugin-extensions#request-envelope). */
|
|
26219
26189
|
original?: string;
|
|
26220
26190
|
/**
|
|
@@ -26224,7 +26194,7 @@ interface DescriptionLineName$4 {
|
|
|
26224
26194
|
*/
|
|
26225
26195
|
translated?: string | null;
|
|
26226
26196
|
}
|
|
26227
|
-
interface PlainTextValue$
|
|
26197
|
+
interface PlainTextValue$2 {
|
|
26228
26198
|
/** Description line plain text value in the site's default language as defined in the [request envelope](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/backend-extensions/add-self-hosted-service-plugin-extensions#request-envelope). */
|
|
26229
26199
|
original?: string;
|
|
26230
26200
|
/**
|
|
@@ -26234,7 +26204,7 @@ interface PlainTextValue$4 {
|
|
|
26234
26204
|
*/
|
|
26235
26205
|
translated?: string | null;
|
|
26236
26206
|
}
|
|
26237
|
-
interface Color$
|
|
26207
|
+
interface Color$2 {
|
|
26238
26208
|
/** Description line color name in the site's default language as defined in the [request envelope](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/backend-extensions/add-self-hosted-service-plugin-extensions#request-envelope). */
|
|
26239
26209
|
original?: string;
|
|
26240
26210
|
/**
|
|
@@ -26265,7 +26235,7 @@ declare enum ItemAvailabilityStatus {
|
|
|
26265
26235
|
/** Available quantity is less than requested */
|
|
26266
26236
|
PARTIALLY_AVAILABLE = "PARTIALLY_AVAILABLE"
|
|
26267
26237
|
}
|
|
26268
|
-
interface PhysicalProperties$
|
|
26238
|
+
interface PhysicalProperties$2 {
|
|
26269
26239
|
/** Line item weight. Measurement unit (`"KG"` or `"LB"`) is taken from `order.weightUnit`. */
|
|
26270
26240
|
weight?: number | null;
|
|
26271
26241
|
/** Stock-keeping unit. Learn more about [SKUs](https://www.wix.com/encyclopedia/definition/stock-keeping-unit-sku). */
|
|
@@ -26325,20 +26295,6 @@ interface PriceDescription$2 {
|
|
|
26325
26295
|
*/
|
|
26326
26296
|
translated?: string | null;
|
|
26327
26297
|
}
|
|
26328
|
-
interface CatalogOverrideFields$2 {
|
|
26329
|
-
/** Item product name */
|
|
26330
|
-
productName?: ProductName$4;
|
|
26331
|
-
/** Item price **after** discounts. */
|
|
26332
|
-
price?: string | null;
|
|
26333
|
-
/** Item price **before** discount. */
|
|
26334
|
-
fullPrice?: string | null;
|
|
26335
|
-
/** Line item description lines. Used for displaying the cart, checkout and order. */
|
|
26336
|
-
descriptionLines?: DescriptionLine$4[];
|
|
26337
|
-
/** Physical properties of the item. When relevant, contains information such as SKU, item weight, and shippability. */
|
|
26338
|
-
physicalProperties?: PhysicalProperties$4;
|
|
26339
|
-
/** Line item image details. */
|
|
26340
|
-
image?: string;
|
|
26341
|
-
}
|
|
26342
26298
|
/** Billing Info and shipping details */
|
|
26343
26299
|
interface AddressWithContact$2 {
|
|
26344
26300
|
/** Address. */
|
|
@@ -27342,26 +27298,6 @@ interface CreateCheckoutResponseNonNullableFields {
|
|
|
27342
27298
|
formattedAmount: string;
|
|
27343
27299
|
formattedConvertedAmount: string;
|
|
27344
27300
|
};
|
|
27345
|
-
catalogOverrideFields?: {
|
|
27346
|
-
productName?: {
|
|
27347
|
-
original: string;
|
|
27348
|
-
};
|
|
27349
|
-
descriptionLines: {
|
|
27350
|
-
plainText?: {
|
|
27351
|
-
original: string;
|
|
27352
|
-
};
|
|
27353
|
-
colorInfo?: {
|
|
27354
|
-
original: string;
|
|
27355
|
-
};
|
|
27356
|
-
name?: {
|
|
27357
|
-
original: string;
|
|
27358
|
-
};
|
|
27359
|
-
}[];
|
|
27360
|
-
physicalProperties?: {
|
|
27361
|
-
shippable: boolean;
|
|
27362
|
-
};
|
|
27363
|
-
image: string;
|
|
27364
|
-
};
|
|
27365
27301
|
}[];
|
|
27366
27302
|
billingInfo?: {
|
|
27367
27303
|
contactDetails?: {
|
|
@@ -28044,26 +27980,6 @@ interface GetCheckoutResponseNonNullableFields {
|
|
|
28044
27980
|
formattedAmount: string;
|
|
28045
27981
|
formattedConvertedAmount: string;
|
|
28046
27982
|
};
|
|
28047
|
-
catalogOverrideFields?: {
|
|
28048
|
-
productName?: {
|
|
28049
|
-
original: string;
|
|
28050
|
-
};
|
|
28051
|
-
descriptionLines: {
|
|
28052
|
-
plainText?: {
|
|
28053
|
-
original: string;
|
|
28054
|
-
};
|
|
28055
|
-
colorInfo?: {
|
|
28056
|
-
original: string;
|
|
28057
|
-
};
|
|
28058
|
-
name?: {
|
|
28059
|
-
original: string;
|
|
28060
|
-
};
|
|
28061
|
-
}[];
|
|
28062
|
-
physicalProperties?: {
|
|
28063
|
-
shippable: boolean;
|
|
28064
|
-
};
|
|
28065
|
-
image: string;
|
|
28066
|
-
};
|
|
28067
27983
|
}[];
|
|
28068
27984
|
billingInfo?: {
|
|
28069
27985
|
contactDetails?: {
|
|
@@ -28749,26 +28665,6 @@ interface UpdateCheckoutResponseNonNullableFields {
|
|
|
28749
28665
|
formattedAmount: string;
|
|
28750
28666
|
formattedConvertedAmount: string;
|
|
28751
28667
|
};
|
|
28752
|
-
catalogOverrideFields?: {
|
|
28753
|
-
productName?: {
|
|
28754
|
-
original: string;
|
|
28755
|
-
};
|
|
28756
|
-
descriptionLines: {
|
|
28757
|
-
plainText?: {
|
|
28758
|
-
original: string;
|
|
28759
|
-
};
|
|
28760
|
-
colorInfo?: {
|
|
28761
|
-
original: string;
|
|
28762
|
-
};
|
|
28763
|
-
name?: {
|
|
28764
|
-
original: string;
|
|
28765
|
-
};
|
|
28766
|
-
}[];
|
|
28767
|
-
physicalProperties?: {
|
|
28768
|
-
shippable: boolean;
|
|
28769
|
-
};
|
|
28770
|
-
image: string;
|
|
28771
|
-
};
|
|
28772
28668
|
}[];
|
|
28773
28669
|
billingInfo?: {
|
|
28774
28670
|
contactDetails?: {
|
|
@@ -29451,26 +29347,6 @@ interface RemoveCouponResponseNonNullableFields {
|
|
|
29451
29347
|
formattedAmount: string;
|
|
29452
29348
|
formattedConvertedAmount: string;
|
|
29453
29349
|
};
|
|
29454
|
-
catalogOverrideFields?: {
|
|
29455
|
-
productName?: {
|
|
29456
|
-
original: string;
|
|
29457
|
-
};
|
|
29458
|
-
descriptionLines: {
|
|
29459
|
-
plainText?: {
|
|
29460
|
-
original: string;
|
|
29461
|
-
};
|
|
29462
|
-
colorInfo?: {
|
|
29463
|
-
original: string;
|
|
29464
|
-
};
|
|
29465
|
-
name?: {
|
|
29466
|
-
original: string;
|
|
29467
|
-
};
|
|
29468
|
-
}[];
|
|
29469
|
-
physicalProperties?: {
|
|
29470
|
-
shippable: boolean;
|
|
29471
|
-
};
|
|
29472
|
-
image: string;
|
|
29473
|
-
};
|
|
29474
29350
|
}[];
|
|
29475
29351
|
billingInfo?: {
|
|
29476
29352
|
contactDetails?: {
|
|
@@ -30153,26 +30029,6 @@ interface RemoveGiftCardResponseNonNullableFields {
|
|
|
30153
30029
|
formattedAmount: string;
|
|
30154
30030
|
formattedConvertedAmount: string;
|
|
30155
30031
|
};
|
|
30156
|
-
catalogOverrideFields?: {
|
|
30157
|
-
productName?: {
|
|
30158
|
-
original: string;
|
|
30159
|
-
};
|
|
30160
|
-
descriptionLines: {
|
|
30161
|
-
plainText?: {
|
|
30162
|
-
original: string;
|
|
30163
|
-
};
|
|
30164
|
-
colorInfo?: {
|
|
30165
|
-
original: string;
|
|
30166
|
-
};
|
|
30167
|
-
name?: {
|
|
30168
|
-
original: string;
|
|
30169
|
-
};
|
|
30170
|
-
}[];
|
|
30171
|
-
physicalProperties?: {
|
|
30172
|
-
shippable: boolean;
|
|
30173
|
-
};
|
|
30174
|
-
image: string;
|
|
30175
|
-
};
|
|
30176
30032
|
}[];
|
|
30177
30033
|
billingInfo?: {
|
|
30178
30034
|
contactDetails?: {
|
|
@@ -30855,26 +30711,6 @@ interface RemoveOverrideCheckoutUrlResponseNonNullableFields {
|
|
|
30855
30711
|
formattedAmount: string;
|
|
30856
30712
|
formattedConvertedAmount: string;
|
|
30857
30713
|
};
|
|
30858
|
-
catalogOverrideFields?: {
|
|
30859
|
-
productName?: {
|
|
30860
|
-
original: string;
|
|
30861
|
-
};
|
|
30862
|
-
descriptionLines: {
|
|
30863
|
-
plainText?: {
|
|
30864
|
-
original: string;
|
|
30865
|
-
};
|
|
30866
|
-
colorInfo?: {
|
|
30867
|
-
original: string;
|
|
30868
|
-
};
|
|
30869
|
-
name?: {
|
|
30870
|
-
original: string;
|
|
30871
|
-
};
|
|
30872
|
-
}[];
|
|
30873
|
-
physicalProperties?: {
|
|
30874
|
-
shippable: boolean;
|
|
30875
|
-
};
|
|
30876
|
-
image: string;
|
|
30877
|
-
};
|
|
30878
30714
|
}[];
|
|
30879
30715
|
billingInfo?: {
|
|
30880
30716
|
contactDetails?: {
|
|
@@ -31557,26 +31393,6 @@ interface AddToCheckoutResponseNonNullableFields {
|
|
|
31557
31393
|
formattedAmount: string;
|
|
31558
31394
|
formattedConvertedAmount: string;
|
|
31559
31395
|
};
|
|
31560
|
-
catalogOverrideFields?: {
|
|
31561
|
-
productName?: {
|
|
31562
|
-
original: string;
|
|
31563
|
-
};
|
|
31564
|
-
descriptionLines: {
|
|
31565
|
-
plainText?: {
|
|
31566
|
-
original: string;
|
|
31567
|
-
};
|
|
31568
|
-
colorInfo?: {
|
|
31569
|
-
original: string;
|
|
31570
|
-
};
|
|
31571
|
-
name?: {
|
|
31572
|
-
original: string;
|
|
31573
|
-
};
|
|
31574
|
-
}[];
|
|
31575
|
-
physicalProperties?: {
|
|
31576
|
-
shippable: boolean;
|
|
31577
|
-
};
|
|
31578
|
-
image: string;
|
|
31579
|
-
};
|
|
31580
31396
|
}[];
|
|
31581
31397
|
billingInfo?: {
|
|
31582
31398
|
contactDetails?: {
|
|
@@ -32259,26 +32075,6 @@ interface RemoveLineItemsResponseNonNullableFields {
|
|
|
32259
32075
|
formattedAmount: string;
|
|
32260
32076
|
formattedConvertedAmount: string;
|
|
32261
32077
|
};
|
|
32262
|
-
catalogOverrideFields?: {
|
|
32263
|
-
productName?: {
|
|
32264
|
-
original: string;
|
|
32265
|
-
};
|
|
32266
|
-
descriptionLines: {
|
|
32267
|
-
plainText?: {
|
|
32268
|
-
original: string;
|
|
32269
|
-
};
|
|
32270
|
-
colorInfo?: {
|
|
32271
|
-
original: string;
|
|
32272
|
-
};
|
|
32273
|
-
name?: {
|
|
32274
|
-
original: string;
|
|
32275
|
-
};
|
|
32276
|
-
}[];
|
|
32277
|
-
physicalProperties?: {
|
|
32278
|
-
shippable: boolean;
|
|
32279
|
-
};
|
|
32280
|
-
image: string;
|
|
32281
|
-
};
|
|
32282
32078
|
}[];
|
|
32283
32079
|
billingInfo?: {
|
|
32284
32080
|
contactDetails?: {
|
|
@@ -32965,26 +32761,6 @@ interface UpdateLineItemsQuantityResponseNonNullableFields {
|
|
|
32965
32761
|
formattedAmount: string;
|
|
32966
32762
|
formattedConvertedAmount: string;
|
|
32967
32763
|
};
|
|
32968
|
-
catalogOverrideFields?: {
|
|
32969
|
-
productName?: {
|
|
32970
|
-
original: string;
|
|
32971
|
-
};
|
|
32972
|
-
descriptionLines: {
|
|
32973
|
-
plainText?: {
|
|
32974
|
-
original: string;
|
|
32975
|
-
};
|
|
32976
|
-
colorInfo?: {
|
|
32977
|
-
original: string;
|
|
32978
|
-
};
|
|
32979
|
-
name?: {
|
|
32980
|
-
original: string;
|
|
32981
|
-
};
|
|
32982
|
-
}[];
|
|
32983
|
-
physicalProperties?: {
|
|
32984
|
-
shippable: boolean;
|
|
32985
|
-
};
|
|
32986
|
-
image: string;
|
|
32987
|
-
};
|
|
32988
32764
|
}[];
|
|
32989
32765
|
billingInfo?: {
|
|
32990
32766
|
contactDetails?: {
|
|
@@ -33990,8 +33766,6 @@ interface V1LineItem$1 {
|
|
|
33990
33766
|
* > **Note:** For more information on what to pass to `lineItems.catalogReference`, see [eCommerce Integration in the Wix Stores Catalog API](https://dev.wix.com/api/rest/wix-stores/catalog/ecommerce-integration).
|
|
33991
33767
|
*/
|
|
33992
33768
|
catalogReference?: CatalogReference$3;
|
|
33993
|
-
/** Allows partial overrides for catalog line item properties like name, price, etc */
|
|
33994
|
-
catalogOverrideFields?: CatalogOverrideFields$1;
|
|
33995
33769
|
}
|
|
33996
33770
|
/** Used for grouping line items. Sent when an item is added to a cart, checkout, or order. */
|
|
33997
33771
|
interface CatalogReference$3 {
|
|
@@ -34015,112 +33789,11 @@ interface CatalogReference$3 {
|
|
|
34015
33789
|
*/
|
|
34016
33790
|
options?: Record<string, any> | null;
|
|
34017
33791
|
}
|
|
34018
|
-
interface CatalogOverrideFields$1 {
|
|
34019
|
-
/** Item product name */
|
|
34020
|
-
productName?: ProductName$3;
|
|
34021
|
-
/** Item price **after** discounts. */
|
|
34022
|
-
price?: string | null;
|
|
34023
|
-
/** Item price **before** discount. */
|
|
34024
|
-
fullPrice?: string | null;
|
|
34025
|
-
/** Line item description lines. Used for displaying the cart, checkout and order. */
|
|
34026
|
-
descriptionLines?: DescriptionLine$3[];
|
|
34027
|
-
/** Physical properties of the item. When relevant, contains information such as SKU, item weight, and shippability. */
|
|
34028
|
-
physicalProperties?: PhysicalProperties$3;
|
|
34029
|
-
/** Line item image details. */
|
|
34030
|
-
image?: Image$1;
|
|
34031
|
-
}
|
|
34032
|
-
interface ProductName$3 {
|
|
34033
|
-
/**
|
|
34034
|
-
* __Required.__ Item name in the site's default language as defined in the [request envelope](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/backend-extensions/add-self-hosted-service-plugin-extensions#request-envelope).
|
|
34035
|
-
*
|
|
34036
|
-
* Min: 1 character.
|
|
34037
|
-
* Max: 200 characters.
|
|
34038
|
-
*/
|
|
34039
|
-
original?: string;
|
|
34040
|
-
/**
|
|
34041
|
-
* Item name translated into the buyer's language.
|
|
34042
|
-
*
|
|
34043
|
-
* Min: 1 character.
|
|
34044
|
-
* Max: 400 characters.
|
|
34045
|
-
* Default: Same as `original`.
|
|
34046
|
-
*/
|
|
34047
|
-
translated?: string | null;
|
|
34048
|
-
}
|
|
34049
|
-
interface DescriptionLine$3 extends DescriptionLineValueOneOf$3, DescriptionLineDescriptionLineValueOneOf$3 {
|
|
34050
|
-
/** Description line plain text value. */
|
|
34051
|
-
plainText?: PlainTextValue$3;
|
|
34052
|
-
/** Description line color value. */
|
|
34053
|
-
colorInfo?: Color$3;
|
|
34054
|
-
/** Description line name. */
|
|
34055
|
-
name?: DescriptionLineName$3;
|
|
34056
|
-
}
|
|
34057
|
-
/** @oneof */
|
|
34058
|
-
interface DescriptionLineValueOneOf$3 {
|
|
34059
|
-
/** Description line plain text value. */
|
|
34060
|
-
plainText?: PlainTextValue$3;
|
|
34061
|
-
/** Description line color value. */
|
|
34062
|
-
colorInfo?: Color$3;
|
|
34063
|
-
}
|
|
34064
|
-
/** @oneof */
|
|
34065
|
-
interface DescriptionLineDescriptionLineValueOneOf$3 {
|
|
34066
|
-
}
|
|
34067
|
-
interface DescriptionLineName$3 {
|
|
34068
|
-
/** Description line name in the site's default language as defined in the [request envelope](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/backend-extensions/add-self-hosted-service-plugin-extensions#request-envelope). */
|
|
34069
|
-
original?: string;
|
|
34070
|
-
/**
|
|
34071
|
-
* Description line name translated into the buyer's language.
|
|
34072
|
-
*
|
|
34073
|
-
* Default: Same as `original`.
|
|
34074
|
-
*/
|
|
34075
|
-
translated?: string | null;
|
|
34076
|
-
}
|
|
34077
|
-
interface PlainTextValue$3 {
|
|
34078
|
-
/** Description line plain text value in the site's default language as defined in the [request envelope](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/backend-extensions/add-self-hosted-service-plugin-extensions#request-envelope). */
|
|
34079
|
-
original?: string;
|
|
34080
|
-
/**
|
|
34081
|
-
* Description line plain text value translated into the buyer's language.
|
|
34082
|
-
*
|
|
34083
|
-
* Default: Same as `original`.
|
|
34084
|
-
*/
|
|
34085
|
-
translated?: string | null;
|
|
34086
|
-
}
|
|
34087
|
-
interface Color$3 {
|
|
34088
|
-
/** Description line color name in the site's default language as defined in the [request envelope](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/backend-extensions/add-self-hosted-service-plugin-extensions#request-envelope). */
|
|
34089
|
-
original?: string;
|
|
34090
|
-
/**
|
|
34091
|
-
* Description line color name translated into the buyer's language.
|
|
34092
|
-
*
|
|
34093
|
-
* Default: Same as `original`.
|
|
34094
|
-
*/
|
|
34095
|
-
translated?: string | null;
|
|
34096
|
-
/** HEX or RGB color code for display. */
|
|
34097
|
-
code?: string | null;
|
|
34098
|
-
}
|
|
34099
33792
|
declare enum DescriptionLineType$1 {
|
|
34100
33793
|
UNRECOGNISED = "UNRECOGNISED",
|
|
34101
33794
|
PLAIN_TEXT = "PLAIN_TEXT",
|
|
34102
33795
|
COLOR = "COLOR"
|
|
34103
33796
|
}
|
|
34104
|
-
interface PhysicalProperties$3 {
|
|
34105
|
-
/** Line item weight. Measurement unit matches the weight unit specified in `weightUnit` in the request. */
|
|
34106
|
-
weight?: number | null;
|
|
34107
|
-
/** Stock-keeping unit. Learn more about [SKUs](https://www.wix.com/encyclopedia/definition/stock-keeping-unit-sku). */
|
|
34108
|
-
sku?: string | null;
|
|
34109
|
-
/** Whether this line item is shippable. */
|
|
34110
|
-
shippable?: boolean;
|
|
34111
|
-
}
|
|
34112
|
-
interface Image$1 {
|
|
34113
|
-
/** WixMedia image ID. */
|
|
34114
|
-
id?: string;
|
|
34115
|
-
/** Original image height. */
|
|
34116
|
-
height?: number;
|
|
34117
|
-
/** Original image width. */
|
|
34118
|
-
width?: number;
|
|
34119
|
-
/** Image alt text. Optional. */
|
|
34120
|
-
altText?: string | null;
|
|
34121
|
-
/** Image filename. Optional. */
|
|
34122
|
-
filename?: string | null;
|
|
34123
|
-
}
|
|
34124
33797
|
declare enum ItemTypeItemType$2 {
|
|
34125
33798
|
UNRECOGNISED = "UNRECOGNISED",
|
|
34126
33799
|
PHYSICAL = "PHYSICAL",
|
|
@@ -34833,8 +34506,6 @@ interface V1LineItem {
|
|
|
34833
34506
|
* > **Note:** For more information on what to pass to `lineItems.catalogReference`, see [eCommerce Integration in the Wix Stores Catalog API](https://dev.wix.com/api/rest/wix-stores/catalog/ecommerce-integration).
|
|
34834
34507
|
*/
|
|
34835
34508
|
catalogReference?: CatalogReference$2;
|
|
34836
|
-
/** Allows partial overrides for catalog line item properties like name, price, etc */
|
|
34837
|
-
catalogOverrideFields?: CatalogOverrideFields;
|
|
34838
34509
|
}
|
|
34839
34510
|
/** Used for grouping line items. Sent when an item is added to a cart, checkout, or order. */
|
|
34840
34511
|
interface CatalogReference$2 {
|
|
@@ -34858,95 +34529,6 @@ interface CatalogReference$2 {
|
|
|
34858
34529
|
*/
|
|
34859
34530
|
options?: Record<string, any> | null;
|
|
34860
34531
|
}
|
|
34861
|
-
interface CatalogOverrideFields {
|
|
34862
|
-
/** Item product name */
|
|
34863
|
-
productName?: ProductName$2;
|
|
34864
|
-
/** Item price **after** discounts. */
|
|
34865
|
-
price?: string | null;
|
|
34866
|
-
/** Item price **before** discount. */
|
|
34867
|
-
fullPrice?: string | null;
|
|
34868
|
-
/** Line item description lines. Used for displaying the cart, checkout and order. */
|
|
34869
|
-
descriptionLines?: DescriptionLine$2[];
|
|
34870
|
-
/** Physical properties of the item. When relevant, contains information such as SKU, item weight, and shippability. */
|
|
34871
|
-
physicalProperties?: PhysicalProperties$2;
|
|
34872
|
-
/** Line item image details. */
|
|
34873
|
-
image?: string;
|
|
34874
|
-
}
|
|
34875
|
-
interface ProductName$2 {
|
|
34876
|
-
/**
|
|
34877
|
-
* __Required.__ Item name in the site's default language as defined in the [request envelope](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/backend-extensions/add-self-hosted-service-plugin-extensions#request-envelope).
|
|
34878
|
-
*
|
|
34879
|
-
* Min: 1 character.
|
|
34880
|
-
* Max: 200 characters.
|
|
34881
|
-
*/
|
|
34882
|
-
original?: string;
|
|
34883
|
-
/**
|
|
34884
|
-
* Item name translated into the buyer's language.
|
|
34885
|
-
*
|
|
34886
|
-
* Min: 1 character.
|
|
34887
|
-
* Max: 400 characters.
|
|
34888
|
-
* Default: Same as `original`.
|
|
34889
|
-
*/
|
|
34890
|
-
translated?: string | null;
|
|
34891
|
-
}
|
|
34892
|
-
interface DescriptionLine$2 extends DescriptionLineValueOneOf$2, DescriptionLineDescriptionLineValueOneOf$2 {
|
|
34893
|
-
/** Description line plain text value. */
|
|
34894
|
-
plainText?: PlainTextValue$2;
|
|
34895
|
-
/** Description line color value. */
|
|
34896
|
-
colorInfo?: Color$2;
|
|
34897
|
-
/** Description line name. */
|
|
34898
|
-
name?: DescriptionLineName$2;
|
|
34899
|
-
}
|
|
34900
|
-
/** @oneof */
|
|
34901
|
-
interface DescriptionLineValueOneOf$2 {
|
|
34902
|
-
/** Description line plain text value. */
|
|
34903
|
-
plainText?: PlainTextValue$2;
|
|
34904
|
-
/** Description line color value. */
|
|
34905
|
-
colorInfo?: Color$2;
|
|
34906
|
-
}
|
|
34907
|
-
/** @oneof */
|
|
34908
|
-
interface DescriptionLineDescriptionLineValueOneOf$2 {
|
|
34909
|
-
}
|
|
34910
|
-
interface DescriptionLineName$2 {
|
|
34911
|
-
/** Description line name in the site's default language as defined in the [request envelope](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/backend-extensions/add-self-hosted-service-plugin-extensions#request-envelope). */
|
|
34912
|
-
original?: string;
|
|
34913
|
-
/**
|
|
34914
|
-
* Description line name translated into the buyer's language.
|
|
34915
|
-
*
|
|
34916
|
-
* Default: Same as `original`.
|
|
34917
|
-
*/
|
|
34918
|
-
translated?: string | null;
|
|
34919
|
-
}
|
|
34920
|
-
interface PlainTextValue$2 {
|
|
34921
|
-
/** Description line plain text value in the site's default language as defined in the [request envelope](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/backend-extensions/add-self-hosted-service-plugin-extensions#request-envelope). */
|
|
34922
|
-
original?: string;
|
|
34923
|
-
/**
|
|
34924
|
-
* Description line plain text value translated into the buyer's language.
|
|
34925
|
-
*
|
|
34926
|
-
* Default: Same as `original`.
|
|
34927
|
-
*/
|
|
34928
|
-
translated?: string | null;
|
|
34929
|
-
}
|
|
34930
|
-
interface Color$2 {
|
|
34931
|
-
/** Description line color name in the site's default language as defined in the [request envelope](https://dev.wix.com/docs/build-apps/develop-your-app/frameworks/self-hosting/supported-extensions/backend-extensions/add-self-hosted-service-plugin-extensions#request-envelope). */
|
|
34932
|
-
original?: string;
|
|
34933
|
-
/**
|
|
34934
|
-
* Description line color name translated into the buyer's language.
|
|
34935
|
-
*
|
|
34936
|
-
* Default: Same as `original`.
|
|
34937
|
-
*/
|
|
34938
|
-
translated?: string | null;
|
|
34939
|
-
/** HEX or RGB color code for display. */
|
|
34940
|
-
code?: string | null;
|
|
34941
|
-
}
|
|
34942
|
-
interface PhysicalProperties$2 {
|
|
34943
|
-
/** Line item weight. Measurement unit matches the weight unit specified in `weightUnit` in the request. */
|
|
34944
|
-
weight?: number | null;
|
|
34945
|
-
/** Stock-keeping unit. Learn more about [SKUs](https://www.wix.com/encyclopedia/definition/stock-keeping-unit-sku). */
|
|
34946
|
-
sku?: string | null;
|
|
34947
|
-
/** Whether this line item is shippable. */
|
|
34948
|
-
shippable?: boolean;
|
|
34949
|
-
}
|
|
34950
34532
|
interface CreateCheckoutTemplateRequest {
|
|
34951
34533
|
/** Checkout template to create. */
|
|
34952
34534
|
checkoutTemplate: CheckoutTemplate;
|
|
@@ -35081,26 +34663,6 @@ interface CreateCheckoutTemplateResponseNonNullableFields {
|
|
|
35081
34663
|
catalogItemId: string;
|
|
35082
34664
|
appId: string;
|
|
35083
34665
|
};
|
|
35084
|
-
catalogOverrideFields?: {
|
|
35085
|
-
productName?: {
|
|
35086
|
-
original: string;
|
|
35087
|
-
};
|
|
35088
|
-
descriptionLines: {
|
|
35089
|
-
plainText?: {
|
|
35090
|
-
original: string;
|
|
35091
|
-
};
|
|
35092
|
-
colorInfo?: {
|
|
35093
|
-
original: string;
|
|
35094
|
-
};
|
|
35095
|
-
name?: {
|
|
35096
|
-
original: string;
|
|
35097
|
-
};
|
|
35098
|
-
}[];
|
|
35099
|
-
physicalProperties?: {
|
|
35100
|
-
shippable: boolean;
|
|
35101
|
-
};
|
|
35102
|
-
image: string;
|
|
35103
|
-
};
|
|
35104
34666
|
}[];
|
|
35105
34667
|
};
|
|
35106
34668
|
}
|
|
@@ -35120,26 +34682,6 @@ interface GetCheckoutTemplateResponseNonNullableFields {
|
|
|
35120
34682
|
catalogItemId: string;
|
|
35121
34683
|
appId: string;
|
|
35122
34684
|
};
|
|
35123
|
-
catalogOverrideFields?: {
|
|
35124
|
-
productName?: {
|
|
35125
|
-
original: string;
|
|
35126
|
-
};
|
|
35127
|
-
descriptionLines: {
|
|
35128
|
-
plainText?: {
|
|
35129
|
-
original: string;
|
|
35130
|
-
};
|
|
35131
|
-
colorInfo?: {
|
|
35132
|
-
original: string;
|
|
35133
|
-
};
|
|
35134
|
-
name?: {
|
|
35135
|
-
original: string;
|
|
35136
|
-
};
|
|
35137
|
-
}[];
|
|
35138
|
-
physicalProperties?: {
|
|
35139
|
-
shippable: boolean;
|
|
35140
|
-
};
|
|
35141
|
-
image: string;
|
|
35142
|
-
};
|
|
35143
34685
|
}[];
|
|
35144
34686
|
};
|
|
35145
34687
|
}
|
|
@@ -35159,26 +34701,6 @@ interface UpdateCheckoutTemplateResponseNonNullableFields {
|
|
|
35159
34701
|
catalogItemId: string;
|
|
35160
34702
|
appId: string;
|
|
35161
34703
|
};
|
|
35162
|
-
catalogOverrideFields?: {
|
|
35163
|
-
productName?: {
|
|
35164
|
-
original: string;
|
|
35165
|
-
};
|
|
35166
|
-
descriptionLines: {
|
|
35167
|
-
plainText?: {
|
|
35168
|
-
original: string;
|
|
35169
|
-
};
|
|
35170
|
-
colorInfo?: {
|
|
35171
|
-
original: string;
|
|
35172
|
-
};
|
|
35173
|
-
name?: {
|
|
35174
|
-
original: string;
|
|
35175
|
-
};
|
|
35176
|
-
}[];
|
|
35177
|
-
physicalProperties?: {
|
|
35178
|
-
shippable: boolean;
|
|
35179
|
-
};
|
|
35180
|
-
image: string;
|
|
35181
|
-
};
|
|
35182
34704
|
}[];
|
|
35183
34705
|
};
|
|
35184
34706
|
}
|
|
@@ -35198,26 +34720,6 @@ interface QueryCheckoutTemplatesResponseNonNullableFields {
|
|
|
35198
34720
|
catalogItemId: string;
|
|
35199
34721
|
appId: string;
|
|
35200
34722
|
};
|
|
35201
|
-
catalogOverrideFields?: {
|
|
35202
|
-
productName?: {
|
|
35203
|
-
original: string;
|
|
35204
|
-
};
|
|
35205
|
-
descriptionLines: {
|
|
35206
|
-
plainText?: {
|
|
35207
|
-
original: string;
|
|
35208
|
-
};
|
|
35209
|
-
colorInfo?: {
|
|
35210
|
-
original: string;
|
|
35211
|
-
};
|
|
35212
|
-
name?: {
|
|
35213
|
-
original: string;
|
|
35214
|
-
};
|
|
35215
|
-
}[];
|
|
35216
|
-
physicalProperties?: {
|
|
35217
|
-
shippable: boolean;
|
|
35218
|
-
};
|
|
35219
|
-
image: string;
|
|
35220
|
-
};
|
|
35221
34723
|
}[];
|
|
35222
34724
|
}[];
|
|
35223
34725
|
}
|