@wix/auto_sdk_ecom_delivery-profile 1.0.257 → 1.0.259

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.
@@ -84,13 +84,13 @@ interface DeliveryRegion {
84
84
  */
85
85
  active?: boolean | null;
86
86
  /**
87
- * Delivery carriers assigned to this region. Carriers are managed using the Add Delivery Carrier, Update Delivery Carrier, and Remove Delivery Carrier methods.
87
+ * Delivery carriers assigned to this region. Carriers are managed using the [Add Delivery Carrier](https://dev.wix.com/docs/api-reference/business-solutions/e-commerce/shipping-delivery/delivery-profiles/add-delivery-carrier), [Update Delivery Carrier](https://dev.wix.com/docs/api-reference/business-solutions/e-commerce/shipping-delivery/delivery-profiles/update-delivery-carrier), and [Remove Delivery Carrier](https://dev.wix.com/docs/api-reference/business-solutions/e-commerce/shipping-delivery/delivery-profiles/remove-delivery-carrier) methods.
88
88
  * @maxSize 25
89
89
  * @readonly
90
90
  */
91
91
  deliveryCarriers?: DeliveryCarrier[];
92
92
  /**
93
- * Geographic destinations covered by this region. If empty, the region applies globally.
93
+ * Geographic destinations covered by this region. If empty, the region applies globally (Rest of World). A site can have up to 250 destinations across all delivery profiles.
94
94
  * @maxSize 250
95
95
  */
96
96
  destinations?: Destination[];
@@ -135,7 +135,11 @@ interface BackupRate {
135
135
  /**
136
136
  * Whether the backup rate is active.
137
137
  *
138
- * When `false`, if the carrier doesn't return a rate, the carrier's shipping options aren't shown to customers.
138
+ * The backup rate is used in the following situations:
139
+ * + When `active` is `true`.
140
+ * + When the carrier does not return a cost for any reason.
141
+ *
142
+ * If active, and no cost is returned by the carrier, the backup rate will be displayed to customers as the shipping option.
139
143
  *
140
144
  * Default: `false`
141
145
  */
@@ -148,7 +152,7 @@ interface AdditionalCharge {
148
152
  */
149
153
  description?: string | null;
150
154
  /**
151
- * Charge amount. For example, `"12.5"`.
155
+ * Additional fixed charge amount to add to the delivery rate. For example, `"12.50"`.
152
156
  * @maxLength 16
153
157
  */
154
158
  amount?: string;
@@ -175,7 +179,7 @@ interface CreatedBy extends CreatedByIdOneOf {
175
179
  */
176
180
  appId?: string | null;
177
181
  /**
178
- * Wix user ID, when the delivery profile was created by a Wix user.
182
+ * Wix user ID, when the delivery profile was created by a Wix user using the dashboard or an API call.
179
183
  * @format GUID
180
184
  */
181
185
  userId?: string | null;
@@ -188,7 +192,7 @@ interface CreatedByIdOneOf {
188
192
  */
189
193
  appId?: string | null;
190
194
  /**
191
- * Wix user ID, when the delivery profile was created by a Wix user.
195
+ * Wix user ID, when the delivery profile was created by a Wix user using the dashboard or an API call.
192
196
  * @format GUID
193
197
  */
194
198
  userId?: string | null;
@@ -815,7 +819,7 @@ interface UpdateCarrierSettingsRequest {
815
819
  */
816
820
  carrierId: string;
817
821
  /**
818
- * ID of the dashboard table row that triggered the change.
822
+ * Row ID in the carrier's dashboard settings table that identifies the specific shipping configuration to update. Retrieved from [List Delivery Carriers](https://dev.wix.com/docs/api-reference/business-solutions/e-commerce/shipping-delivery/delivery-profiles/list-delivery-carriers).
819
823
  * @format GUID
820
824
  */
821
825
  rowId: string;
@@ -831,7 +835,9 @@ interface SetDeliveryCarrierActiveStatusRequest {
831
835
  */
832
836
  carrierAppId: string;
833
837
  /**
834
- * Row ID that triggered the change.
838
+ * Row identifier in the carrier's dashboard settings table that identifies the specific shipping configuration to update.
839
+ *
840
+ * Pass the `row.key` field from the response of [List Delivery Carriers](https://dev.wix.com/docs/api-reference/business-solutions/e-commerce/shipping-delivery/delivery-profiles/list-delivery-carriers).
835
841
  * @format GUID
836
842
  */
837
843
  rowId: string;