@wix/auto_sdk_ecom_delivery-profile 1.0.55 → 1.0.56
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +15 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +15 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +15 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +15 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1405,6 +1405,7 @@ declare enum WebhookIdentityType {
|
|
|
1405
1405
|
}
|
|
1406
1406
|
/** @enumType */
|
|
1407
1407
|
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
1408
|
+
/** @docsIgnore */
|
|
1408
1409
|
type CreateDeliveryProfileApplicationErrors = {
|
|
1409
1410
|
code?: 'DESTINATIONS_COLLISION';
|
|
1410
1411
|
description?: string;
|
|
@@ -1426,9 +1427,11 @@ type CreateDeliveryProfileApplicationErrors = {
|
|
|
1426
1427
|
description?: string;
|
|
1427
1428
|
data?: Record<string, any>;
|
|
1428
1429
|
};
|
|
1430
|
+
/** @docsIgnore */
|
|
1429
1431
|
type CreateDeliveryProfileValidationErrors = {
|
|
1430
1432
|
ruleName?: 'DESTINATION_NOT_SUPPORTED';
|
|
1431
1433
|
};
|
|
1434
|
+
/** @docsIgnore */
|
|
1432
1435
|
type UpdateDeliveryProfileApplicationErrors = {
|
|
1433
1436
|
code?: 'DELIVERY_REGION_CANNOT_BE_UPDATED';
|
|
1434
1437
|
description?: string;
|
|
@@ -1438,6 +1441,7 @@ type UpdateDeliveryProfileApplicationErrors = {
|
|
|
1438
1441
|
description?: string;
|
|
1439
1442
|
data?: Record<string, any>;
|
|
1440
1443
|
};
|
|
1444
|
+
/** @docsIgnore */
|
|
1441
1445
|
type AddDeliveryRegionApplicationErrors = {
|
|
1442
1446
|
code?: 'DELIVERY_PROFILE_NOT_FOUND';
|
|
1443
1447
|
description?: string;
|
|
@@ -1459,11 +1463,13 @@ type AddDeliveryRegionApplicationErrors = {
|
|
|
1459
1463
|
description?: string;
|
|
1460
1464
|
data?: Record<string, any>;
|
|
1461
1465
|
};
|
|
1466
|
+
/** @docsIgnore */
|
|
1462
1467
|
type AddDeliveryRegionValidationErrors = {
|
|
1463
1468
|
ruleName?: 'DELIVERY_REGION_NAME_ALREADY_EXISTS';
|
|
1464
1469
|
} | {
|
|
1465
1470
|
ruleName?: 'DESTINATION_NOT_SUPPORTED';
|
|
1466
1471
|
};
|
|
1472
|
+
/** @docsIgnore */
|
|
1467
1473
|
type UpdateDeliveryRegionApplicationErrors = {
|
|
1468
1474
|
code?: 'DELIVERY_PROFILE_NOT_FOUND';
|
|
1469
1475
|
description?: string;
|
|
@@ -1485,16 +1491,19 @@ type UpdateDeliveryRegionApplicationErrors = {
|
|
|
1485
1491
|
description?: string;
|
|
1486
1492
|
data?: Record<string, any>;
|
|
1487
1493
|
};
|
|
1494
|
+
/** @docsIgnore */
|
|
1488
1495
|
type UpdateDeliveryRegionValidationErrors = {
|
|
1489
1496
|
ruleName?: 'DELIVERY_REGION_NAME_ALREADY_EXISTS';
|
|
1490
1497
|
} | {
|
|
1491
1498
|
ruleName?: 'DESTINATION_NOT_SUPPORTED';
|
|
1492
1499
|
};
|
|
1500
|
+
/** @docsIgnore */
|
|
1493
1501
|
type GetDeliveryProfileByDeliveryRegionIdApplicationErrors = {
|
|
1494
1502
|
code?: 'DELIVERY_REGION_NOT_FOUND';
|
|
1495
1503
|
description?: string;
|
|
1496
1504
|
data?: Record<string, any>;
|
|
1497
1505
|
};
|
|
1506
|
+
/** @docsIgnore */
|
|
1498
1507
|
type RemoveDeliveryRegionApplicationErrors = {
|
|
1499
1508
|
code?: 'DELIVERY_PROFILE_NOT_FOUND';
|
|
1500
1509
|
description?: string;
|
|
@@ -1504,6 +1513,7 @@ type RemoveDeliveryRegionApplicationErrors = {
|
|
|
1504
1513
|
description?: string;
|
|
1505
1514
|
data?: Record<string, any>;
|
|
1506
1515
|
};
|
|
1516
|
+
/** @docsIgnore */
|
|
1507
1517
|
type AddDeliveryCarrierApplicationErrors = {
|
|
1508
1518
|
code?: 'DELIVERY_REGION_NOT_FOUND';
|
|
1509
1519
|
description?: string;
|
|
@@ -1525,14 +1535,17 @@ type AddDeliveryCarrierApplicationErrors = {
|
|
|
1525
1535
|
description?: string;
|
|
1526
1536
|
data?: Record<string, any>;
|
|
1527
1537
|
};
|
|
1538
|
+
/** @docsIgnore */
|
|
1528
1539
|
type AddDeliveryCarrierValidationErrors = {
|
|
1529
1540
|
ruleName?: 'DELIVERY_CARRIER_MISSING_BACKUP_RATE';
|
|
1530
1541
|
};
|
|
1542
|
+
/** @docsIgnore */
|
|
1531
1543
|
type RemoveDeliveryCarrierApplicationErrors = {
|
|
1532
1544
|
code?: 'DELIVERY_REGION_NOT_FOUND';
|
|
1533
1545
|
description?: string;
|
|
1534
1546
|
data?: Record<string, any>;
|
|
1535
1547
|
};
|
|
1548
|
+
/** @docsIgnore */
|
|
1536
1549
|
type UpdateDeliveryCarrierApplicationErrors = {
|
|
1537
1550
|
code?: 'DELIVERY_REGION_NOT_FOUND';
|
|
1538
1551
|
description?: string;
|
|
@@ -1554,6 +1567,7 @@ type UpdateDeliveryCarrierApplicationErrors = {
|
|
|
1554
1567
|
description?: string;
|
|
1555
1568
|
data?: Record<string, any>;
|
|
1556
1569
|
};
|
|
1570
|
+
/** @docsIgnore */
|
|
1557
1571
|
type ListDeliveryCarriersApplicationErrors = {
|
|
1558
1572
|
code?: 'DELIVERY_CARRIER_NOT_FOUND';
|
|
1559
1573
|
description?: string;
|
|
@@ -1563,6 +1577,7 @@ type ListDeliveryCarriersApplicationErrors = {
|
|
|
1563
1577
|
description?: string;
|
|
1564
1578
|
data?: Record<string, any>;
|
|
1565
1579
|
};
|
|
1580
|
+
/** @docsIgnore */
|
|
1566
1581
|
type UpdateCarrierSettingsApplicationErrors = {
|
|
1567
1582
|
code?: 'DELIVERY_CARRIER_NOT_FOUND';
|
|
1568
1583
|
description?: string;
|