@umbraco-commerce/backoffice 15.2.1 → 15.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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umbraco-commerce/backoffice",
|
|
3
|
-
"version": "15.
|
|
3
|
+
"version": "15.3.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"types": "./types/umbraco-commerce-public.d.ts",
|
|
6
6
|
"files": [
|
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
"README.md"
|
|
9
9
|
],
|
|
10
10
|
"engines": {
|
|
11
|
-
"node": ">=
|
|
12
|
-
"npm": ">=10.
|
|
11
|
+
"node": ">=22 <23",
|
|
12
|
+
"npm": ">=10.9 < 11"
|
|
13
13
|
},
|
|
14
14
|
"bugs": {
|
|
15
15
|
"url": "https://github.com/umbraco/Umbraco.Commerce.Issues/issues"
|
|
@@ -20,6 +20,6 @@
|
|
|
20
20
|
"url": "https://umbraco.com"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
|
-
"@umbraco-cms/backoffice": "^15.
|
|
23
|
+
"@umbraco-cms/backoffice": "^15.3.0"
|
|
24
24
|
}
|
|
25
25
|
}
|
|
@@ -259,6 +259,7 @@ declare type PaymentProviderFeaturesDto = {
|
|
|
259
259
|
cancelPayment?: boolean | null;
|
|
260
260
|
capturePayment?: boolean | null;
|
|
261
261
|
refundPayment?: boolean | null;
|
|
262
|
+
partiallyRefundPayment: boolean;
|
|
262
263
|
};
|
|
263
264
|
|
|
264
265
|
declare type PriceDto = {
|
|
@@ -286,6 +287,7 @@ declare type RegionDto = {
|
|
|
286
287
|
code: string;
|
|
287
288
|
name?: string | null;
|
|
288
289
|
store?: StoreBasicDto | StoreDto | StoreNamedReferenceDto | StoreReferenceDto | null;
|
|
290
|
+
country?: CountryDto | CountryNamedReferenceDto | CountryReferenceDto | null;
|
|
289
291
|
defaultPaymentMethod?: PaymentMethodDto | PaymentMethodNamedReferenceDto | PaymentMethodReferenceDto | PaymentMethodWithFeeDto | null;
|
|
290
292
|
defaultShippingMethod?: ShippingMethodDto | ShippingMethodNamedReferenceDto | ShippingMethodReferenceDto | ShippingMethodWithRatesDto | null;
|
|
291
293
|
sortOrder?: number | null;
|
|
@@ -391,6 +393,7 @@ declare type StoreDto = {
|
|
|
391
393
|
defaultOrderStatus?: OrderStatusDto | OrderStatusNamedReferenceDto | OrderStatusReferenceDto | null;
|
|
392
394
|
errorOrderStatus?: OrderStatusDto | OrderStatusNamedReferenceDto | OrderStatusReferenceDto | null;
|
|
393
395
|
pricesIncludeTax?: boolean | null;
|
|
396
|
+
canRefundTransactionFee: boolean;
|
|
394
397
|
useCookies?: boolean | null;
|
|
395
398
|
cookieTimeout?: number | null;
|
|
396
399
|
confirmationEmailTemplate?: EmailTemplateDto | EmailTemplateNamedReferenceDto | EmailTemplateReferenceDto | null;
|
|
@@ -581,6 +584,8 @@ export declare interface UcManifestStoreMenuItem extends ManifestElement<UcStore
|
|
|
581
584
|
/** @public **/
|
|
582
585
|
export declare interface UcMetaActivityLogEntry {
|
|
583
586
|
color?: string;
|
|
587
|
+
textColor?: string;
|
|
588
|
+
bgColor?: string;
|
|
584
589
|
tag?: string;
|
|
585
590
|
label?: string;
|
|
586
591
|
href?: string;
|