@umbraco-commerce/backoffice 16.2.1 → 16.3.0
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
CHANGED
|
@@ -219,6 +219,7 @@ declare type PaymentMethodDto = {
|
|
|
219
219
|
taxClass?: TaxClassDto | TaxClassNamedReferenceDto | TaxClassReferenceDto | null;
|
|
220
220
|
imageId?: string | null;
|
|
221
221
|
paymentProviderAlias?: string | null;
|
|
222
|
+
isEnabled: boolean;
|
|
222
223
|
paymentProviderSettings?: {
|
|
223
224
|
[key: string]: unknown;
|
|
224
225
|
} | null;
|
|
@@ -248,6 +249,7 @@ declare type PaymentMethodWithFeeDto = {
|
|
|
248
249
|
taxClass?: TaxClassDto | TaxClassNamedReferenceDto | TaxClassReferenceDto | null;
|
|
249
250
|
imageId?: string | null;
|
|
250
251
|
paymentProviderAlias?: string | null;
|
|
252
|
+
isEnabled: boolean;
|
|
251
253
|
paymentProviderSettings?: {
|
|
252
254
|
[key: string]: unknown;
|
|
253
255
|
} | null;
|
|
@@ -331,6 +333,7 @@ declare type ShippingMethodDto = {
|
|
|
331
333
|
name?: string | null;
|
|
332
334
|
store?: StoreBasicDto | StoreDto | StoreNamedReferenceDto | StoreReferenceDto | null;
|
|
333
335
|
sku?: string | null;
|
|
336
|
+
isEnabled: boolean;
|
|
334
337
|
taxClass?: TaxClassDto | TaxClassNamedReferenceDto | TaxClassReferenceDto | null;
|
|
335
338
|
imageId?: string | null;
|
|
336
339
|
shippingProviderAlias?: string | null;
|
|
@@ -360,6 +363,7 @@ declare type ShippingMethodWithRatesDto = {
|
|
|
360
363
|
name?: string | null;
|
|
361
364
|
store?: StoreBasicDto | StoreDto | StoreNamedReferenceDto | StoreReferenceDto | null;
|
|
362
365
|
sku?: string | null;
|
|
366
|
+
isEnabled: boolean;
|
|
363
367
|
taxClass?: TaxClassDto | TaxClassNamedReferenceDto | TaxClassReferenceDto | null;
|
|
364
368
|
imageId?: string | null;
|
|
365
369
|
shippingProviderAlias?: string | null;
|