@shopware-ag/acceptance-test-suite 12.13.3 → 12.14.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 +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.mjs +1107 -1098
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -136,6 +136,7 @@ type Product = Omit<components["schemas"]["Product"], "price" | "prices" | "opti
|
|
|
136
136
|
tags?: Record<string, string>[];
|
|
137
137
|
visibilities?: Record<string, unknown>[];
|
|
138
138
|
variantListingConfig?: VariantListingConfig;
|
|
139
|
+
type?: string;
|
|
139
140
|
};
|
|
140
141
|
type ProductReview = components["schemas"]["ProductReview"] & {
|
|
141
142
|
id: string;
|
|
@@ -2127,6 +2128,7 @@ declare const BUNDLED_RESOURCES: {
|
|
|
2127
2128
|
submitOrder: string;
|
|
2128
2129
|
termsAndConditions: string;
|
|
2129
2130
|
immediateAccessToDigitalProduct: string;
|
|
2131
|
+
autoConfirmTermsText: string;
|
|
2130
2132
|
};
|
|
2131
2133
|
finish: {
|
|
2132
2134
|
thankYouForOrder: string;
|
|
@@ -3213,6 +3215,7 @@ declare const BUNDLED_RESOURCES: {
|
|
|
3213
3215
|
submitOrder: string;
|
|
3214
3216
|
termsAndConditions: string;
|
|
3215
3217
|
immediateAccessToDigitalProduct: string;
|
|
3218
|
+
autoConfirmTermsText: string;
|
|
3216
3219
|
};
|
|
3217
3220
|
finish: {
|
|
3218
3221
|
thankYouForOrder: string;
|
|
@@ -4253,6 +4256,7 @@ declare const baseNamespaces: {
|
|
|
4253
4256
|
submitOrder: string;
|
|
4254
4257
|
termsAndConditions: string;
|
|
4255
4258
|
immediateAccessToDigitalProduct: string;
|
|
4259
|
+
autoConfirmTermsText: string;
|
|
4256
4260
|
};
|
|
4257
4261
|
finish: {
|
|
4258
4262
|
thankYouForOrder: string;
|
|
@@ -4839,6 +4843,7 @@ declare class CheckoutConfirm implements PageObject {
|
|
|
4839
4843
|
readonly grandTotalPrice: Locator;
|
|
4840
4844
|
readonly taxPrice: Locator;
|
|
4841
4845
|
readonly submitOrderButton: Locator;
|
|
4846
|
+
readonly termsAutoConfirmedText: Locator;
|
|
4842
4847
|
/**
|
|
4843
4848
|
* Payment and Shipping options
|
|
4844
4849
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -136,6 +136,7 @@ type Product = Omit<components["schemas"]["Product"], "price" | "prices" | "opti
|
|
|
136
136
|
tags?: Record<string, string>[];
|
|
137
137
|
visibilities?: Record<string, unknown>[];
|
|
138
138
|
variantListingConfig?: VariantListingConfig;
|
|
139
|
+
type?: string;
|
|
139
140
|
};
|
|
140
141
|
type ProductReview = components["schemas"]["ProductReview"] & {
|
|
141
142
|
id: string;
|
|
@@ -2127,6 +2128,7 @@ declare const BUNDLED_RESOURCES: {
|
|
|
2127
2128
|
submitOrder: string;
|
|
2128
2129
|
termsAndConditions: string;
|
|
2129
2130
|
immediateAccessToDigitalProduct: string;
|
|
2131
|
+
autoConfirmTermsText: string;
|
|
2130
2132
|
};
|
|
2131
2133
|
finish: {
|
|
2132
2134
|
thankYouForOrder: string;
|
|
@@ -3213,6 +3215,7 @@ declare const BUNDLED_RESOURCES: {
|
|
|
3213
3215
|
submitOrder: string;
|
|
3214
3216
|
termsAndConditions: string;
|
|
3215
3217
|
immediateAccessToDigitalProduct: string;
|
|
3218
|
+
autoConfirmTermsText: string;
|
|
3216
3219
|
};
|
|
3217
3220
|
finish: {
|
|
3218
3221
|
thankYouForOrder: string;
|
|
@@ -4253,6 +4256,7 @@ declare const baseNamespaces: {
|
|
|
4253
4256
|
submitOrder: string;
|
|
4254
4257
|
termsAndConditions: string;
|
|
4255
4258
|
immediateAccessToDigitalProduct: string;
|
|
4259
|
+
autoConfirmTermsText: string;
|
|
4256
4260
|
};
|
|
4257
4261
|
finish: {
|
|
4258
4262
|
thankYouForOrder: string;
|
|
@@ -4839,6 +4843,7 @@ declare class CheckoutConfirm implements PageObject {
|
|
|
4839
4843
|
readonly grandTotalPrice: Locator;
|
|
4840
4844
|
readonly taxPrice: Locator;
|
|
4841
4845
|
readonly submitOrderButton: Locator;
|
|
4846
|
+
readonly termsAutoConfirmedText: Locator;
|
|
4842
4847
|
/**
|
|
4843
4848
|
* Payment and Shipping options
|
|
4844
4849
|
*/
|