@shopware-ag/acceptance-test-suite 2.1.0 → 2.2.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/dist/index.d.mts +8 -1
- package/dist/index.d.ts +8 -1
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -142,6 +142,13 @@ type Order = components['schemas']['Order'] & {
|
|
|
142
142
|
lastName: string;
|
|
143
143
|
email: string;
|
|
144
144
|
};
|
|
145
|
+
price: {
|
|
146
|
+
netPrice: number;
|
|
147
|
+
positionPrice: number;
|
|
148
|
+
rawTotal: number;
|
|
149
|
+
taxStatus: string;
|
|
150
|
+
totalPrice: number;
|
|
151
|
+
};
|
|
145
152
|
};
|
|
146
153
|
type ShippingMethod = components['schemas']['ShippingMethod'] & {
|
|
147
154
|
id: string;
|
|
@@ -527,7 +534,7 @@ interface DefaultSalesChannelTypes {
|
|
|
527
534
|
themeSeed: string | null;
|
|
528
535
|
};
|
|
529
536
|
DefaultStorefront: {
|
|
530
|
-
salesChannel:
|
|
537
|
+
salesChannel: SalesChannel;
|
|
531
538
|
customer: Customer;
|
|
532
539
|
url: string;
|
|
533
540
|
};
|
package/dist/index.d.ts
CHANGED
|
@@ -142,6 +142,13 @@ type Order = components['schemas']['Order'] & {
|
|
|
142
142
|
lastName: string;
|
|
143
143
|
email: string;
|
|
144
144
|
};
|
|
145
|
+
price: {
|
|
146
|
+
netPrice: number;
|
|
147
|
+
positionPrice: number;
|
|
148
|
+
rawTotal: number;
|
|
149
|
+
taxStatus: string;
|
|
150
|
+
totalPrice: number;
|
|
151
|
+
};
|
|
145
152
|
};
|
|
146
153
|
type ShippingMethod = components['schemas']['ShippingMethod'] & {
|
|
147
154
|
id: string;
|
|
@@ -527,7 +534,7 @@ interface DefaultSalesChannelTypes {
|
|
|
527
534
|
themeSeed: string | null;
|
|
528
535
|
};
|
|
529
536
|
DefaultStorefront: {
|
|
530
|
-
salesChannel:
|
|
537
|
+
salesChannel: SalesChannel;
|
|
531
538
|
customer: Customer;
|
|
532
539
|
url: string;
|
|
533
540
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shopware-ag/acceptance-test-suite",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"description": "Shopware Acceptance Test Suite",
|
|
5
5
|
"author": "shopware AG",
|
|
6
6
|
"license": "MIT",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@axe-core/playwright": "4.9.1",
|
|
40
|
-
"@playwright/test": "^1.
|
|
40
|
+
"@playwright/test": "^1.45.0",
|
|
41
41
|
"@shopware/api-client": "0.5.0",
|
|
42
42
|
"axe-html-reporter": "2.2.3",
|
|
43
43
|
"image-js": "0.35.5",
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
"@typescript-eslint/eslint-plugin": "7.8.0",
|
|
50
50
|
"@typescript-eslint/parser": "7.8.0",
|
|
51
51
|
"eslint": "8.56.0",
|
|
52
|
-
"eslint-plugin-playwright": "1.6.
|
|
52
|
+
"eslint-plugin-playwright": "1.6.2",
|
|
53
53
|
"ts-node": "10.9.2",
|
|
54
54
|
"typescript": "5.4.5",
|
|
55
55
|
"unbuild": "2.0.0"
|