From 563e71f7f968a655a685f4219e225f319dd92bb7 Mon Sep 17 00:00:00 2001 From: wix-docs-feds <87931637+wix-docs-feds@users.noreply.github.com> Date: Thu, 5 Oct 2023 16:26:40 +0300 Subject: [PATCH] publish new product page apis changes: Service $w.ProductPage has a new operation getSelectedVariantId Service $w.ProductPage has a new operation getCustomText Service $w.ProductPage has a new operation setAddToCartLabel Service $w.ProductPage has a new operation onChoiceSelected Service $w.ProductPage has a new operation onAddToCart Service $w.ProductPage has a new operation setBuyNowLabel Service $w.ProductPage has a new operation setQuantity Service $w.ProductPage has a new operation getQuantity Service $w.ProductPage has a new operation getSelectedChoices Service $w.ProductPage has a new operation onQuantityChanged Service $w.ProductPage has a new operation onBuyNow Service $w.ProductPage has a new callback choiceSelectedEventHandler Service $w.ProductPage has a new callback addToCartEventHandler Service $w.ProductPage has a new callback quantityChangedEventHandler Service $w.ProductPage has a new callback buyNowEventHandler issues: Mixin $w.Element not found (CartIcon.js (1)) Mixin $w.HiddenCollapsedMixin not found (CartIcon.js (1)) Message SeoTag has an unknown property type object (ProductPage.js (161)) Message SeoTag has an unknown property type object (ProductPage.js (161)) Mixin $w.Element not found (ProductPage.js (1)) Mixin $w.HiddenCollapsedMixin not found (ProductPage.js (1)) Mixin $w.Element not found (ThankYouPage.js (1)) Mixin $w.HiddenCollapsedMixin not found (ThankYouPage.js (1)) Browserslist: caniuse-lite is outdated. Please run: npx browserslist@latest --update-db Why you should do it regularly: https://github.com/browserslist/browserslist#browsers-data-updating ERROR: The @snippet tag - file 'velo-docs/examples/ThankYouPage-getOrder_pickup.es6' not found. File: ThankYouPage.js line: 157 Co-authored-by: Rebecca Skurnik --- .../$w/CartIcon.service.json | 6 +- .../$w/ProductPage.service.json | 587 +++++++++++++++++- .../$w/ThankYouPage.service.json | 69 +- 3 files changed, 583 insertions(+), 79 deletions(-) diff --git a/wixstores-client-worker/$w/CartIcon.service.json b/wixstores-client-worker/$w/CartIcon.service.json index b3e4494e5c..1425e9468b 100644 --- a/wixstores-client-worker/$w/CartIcon.service.json +++ b/wixstores-client-worker/$w/CartIcon.service.json @@ -3,8 +3,7 @@ "mixes": [ "$w.Element", "$w.HiddenCollapsedMixin" ], - "labels": - [ "changed" ], + "labels": [], "location": { "lineno": 1, "filename": "CartIcon.js" }, @@ -152,8 +151,7 @@ "extra": { } }, { "name": "addToCart", - "labels": - [ "changed" ], + "labels": [], "nameParams": [], "params": [ { "name": "productID", diff --git a/wixstores-client-worker/$w/ProductPage.service.json b/wixstores-client-worker/$w/ProductPage.service.json index b4b62908fd..cc8cfa53ec 100644 --- a/wixstores-client-worker/$w/ProductPage.service.json +++ b/wixstores-client-worker/$w/ProductPage.service.json @@ -16,9 +16,49 @@ { } }, "properties": [], "operations": - [ { "name": "getProduct", + [ { "name": "getCustomText", "labels": - [ "changed" ], + [ "new" ], + "nameParams": [], + "params": [], + "ret": + { "type": + { "name": "Promise", + "typeParams": + [ { "name": "Array", + "typeParams": + [ "string" ] } ] }, + "doc": "Fulfilled - Custom text field values." }, + "locations": + [ { "lineno": 265, + "filename": "ProductPage.js" } ], + "docs": + { "summary": "Gets the values of a product's [custom text fields](https://support.wix.com/en/article/wix-stores-allowing-customers-to-add-a-message-when-purchasing-a-product).", + "description": + [ "> This function is currently only available for [Wix Studio](https://dev.wix.com/docs/develop-websites/articles/coding-with-wix-studio/about-coding-with-wix-studio) sites.", + "", + " The `getCustomText()` function returns a Promise that is resolved when the values of a product's custom text fields are", + " retrieved." ], + "links": [], + "examples": + [ { "title": "Get the product's custom text field values", + "body": + [ "$w('#myProductPage').getCustomText()", + " .then((customShirtText) => {", + " let FrontOfShirtText = customShirtText[0]; // 'Hello'", + " let BackOfShirtText = customShirtText[1]; // 'World'", + " })", + " .catch((error) => {", + " console.error(error);", + " });" ], + "extra": + { } } ], + "extra": + { } }, + "extra": + { } }, + { "name": "getProduct", + "labels": [], "nameParams": [], "params": [], "ret": @@ -263,9 +303,511 @@ { } } ], "extra": { } }, + "extra": + { } }, + { "name": "getQuantity", + "labels": + [ "new" ], + "nameParams": [], + "params": [], + "ret": + { "type": + { "name": "Promise", + "typeParams": + [ "number" ] }, + "doc": "Fulfilled - Product's quantity." }, + "locations": + [ { "lineno": 375, + "filename": "ProductPage.js" } ], + "docs": + { "summary": "Gets the quantity of a product in the Product Page.", + "description": + [ "> This function is currently only available for [Wix Studio](https://dev.wix.com/docs/develop-websites/articles/coding-with-wix-studio/about-coding-with-wix-studio) sites.", + "", + " The `getQuantity()` function returns a Promise that is resolved when the product's quantity is retrieved." ], + "links": [], + "examples": + [ { "title": "Get the product's quantity", + "body": + [ "$w('#myProductPage').getQuantity()", + " .then((productQuantity) => {", + " let numberofBlueShirts = productQuantity; // 128", + " })", + " .catch((error) => {", + " console.error(error);", + " });" ], + "extra": + { } } ], + "extra": + { } }, + "extra": + { } }, + { "name": "getSelectedChoices", + "labels": + [ "new" ], + "nameParams": [], + "params": [], + "ret": + { "type": + { "name": "Promise", + "typeParams": + [ "Object" ] }, + "doc": "Fulfilled - An object with key:value pairs representing the selected product option choices. Each pair is a product option created in the **Products** tab of the dashboard. Each key corresponds to an option name, and its values correspond to the choices for this option. For example, `{color: \"white\", size: \"m\"}`." }, + "locations": + [ { "lineno": 388, + "filename": "ProductPage.js" } ], + "docs": + { "summary": "Gets the selected [product option](https://support.wix.com/en/article/wix-stores-adding-and-customizing-product-options) choices of a product in the Product Page.", + "description": + [ "> This function is currently only available for [Wix Studio](https://dev.wix.com/docs/develop-websites/articles/coding-with-wix-studio/about-coding-with-wix-studio) sites.", + "", + " The `getQuantity()` function returns a Promise that is resolved when the selected product option choices, such as {color: \"white\", size: \"m\"} are retrieved." ], + "links": [], + "examples": + [ { "title": "Get the selected product option choices", + "body": + [ "$w('#myProductPage').getSelectedChoices()", + " .then((selectedChoices) => {", + " let selectedProductChoices = selectedChoices; // {color: \"white\", size: \"m\"}", + " })", + " .catch((error) => {", + " console.error(error);", + " });" ], + "extra": + { } } ], + "extra": + { } }, + "extra": + { } }, + { "name": "getSelectedVariantId", + "labels": + [ "new" ], + "nameParams": [], + "params": [], + "ret": + { "type": + { "name": "Promise", + "typeParams": + [ "string" ] }, + "doc": "Fulfilled - Selected product variant ID." }, + "locations": + [ { "lineno": 250, + "filename": "ProductPage.js" } ], + "docs": + { "summary": "Gets the variant ID of the selected [product variant](https://support.wix.com/en/article/wix-stores-adding-and-customizing-product-options#setting-different-prices-for-variants).", + "description": + [ "> This function is currently only available for [Wix Studio](https://dev.wix.com/docs/develop-websites/articles/coding-with-wix-studio/about-coding-with-wix-studio) sites.", + "", + " The `getSelectedVariantId()` function returns a Promise that is resolved when the selected product variant's ID is", + " retrieved." ], + "links": [], + "examples": + [ { "title": "Get the selected product variant's ID", + "body": + [ "$w('#myProductPage').getSelectedVariantId()", + " .then((variantId) => {", + " let selectedProductVariantId = variantId; // '657321df-0d8c-4634-a6b4-1fa49d194bb7'", + " })", + " .catch((error) => {", + " console.error(error);", + " });" ], + "extra": + { } }, + { "title": "Get the selected product variant data by `variantID`", + "body": + [ "import wixData from 'wix-data';", + "", + "$w('#myProductPage').getSelectedVariantId()", + " .then((variantId) => {", + " let selectedProductVariantId = variantId; // '657321df-0d8c-4634-a6b4-1fa49d194bb7'", + "", + " if (selectedProductVariantId) {", + " wixData.query('Stores/Variants')", + " .eq('variantId', selectedProductVariantId)", + " .find()", + " .then((results) => {", + " let variantData = results.items[0];", + " });", + " }", + " })", + " .catch((error) => {", + " console.error(error);", + " });" ], + "extra": + { } } ], + "extra": + { } }, + "extra": + { } }, + { "name": "onAddToCart", + "labels": + [ "new" ], + "nameParams": [], + "params": + [ { "name": "addToCartEventHandler", + "type": "$w.ProductPage.addToCartEventHandler", + "doc": "The function to run when the **Add To Cart** button in the Product Page is clicked." } ], + "ret": + { "type": + { "name": "Promise", + "typeParams": + [ "void" ] }, + "doc": "" }, + "locations": + [ { "lineno": 318, + "filename": "ProductPage.js" } ], + "docs": + { "summary": "Adds an event handler that runs when the **Add To Cart** button in the Product Page is clicked.", + "description": + [ "> This function is currently only available for [Wix Studio](https://dev.wix.com/docs/develop-websites/articles/coding-with-wix-studio/about-coding-with-wix-studio) sites.", + "", + " The `onAddToCart()` function adds an event handler that runs when a site visitor clicks the **Add To Cart** button in the Product Page.", + " ", + " The event handler has 2 functions: ", + " + The `cancel()` function stops a site visitor from proceeding with the Wix Checkout process. ", + " + The `resume()` function allows a site visitor to proceed with the Wix Checkout process." ], + "links": [], + "examples": + [ { "title": "Resume Wix Checkout process when Add To Cart button is clicked", + "body": + [ "$w('#myProductPage').onAddToCart((resume, cancel) => {", + " console.log('Resume the Wix Checkout process.');", + " // custom code", + " resume();", + "});" ], + "extra": + { } }, + { "title": "Cancel Wix Checkout process when Add To Cart button is clicked", + "body": + [ "$w('#myProductPage').onAddToCart((resume, cancel) => {", + " console.log('Cancel the Wix Checkout process.');", + " // custom code", + " cancel();", + "});" ], + "extra": + { } } ], + "extra": + { } }, + "extra": + { } }, + { "name": "onBuyNow", + "labels": + [ "new" ], + "nameParams": [], + "params": + [ { "name": "buyNowEventHandler", + "type": "$w.ProductPage.buyNowEventHandler", + "doc": "The function to run when the **Buy Now** button in the Product Page is clicked." } ], + "ret": + { "type": + { "name": "Promise", + "typeParams": + [ "void" ] }, + "doc": "" }, + "locations": + [ { "lineno": 424, + "filename": "ProductPage.js" } ], + "docs": + { "summary": "Adds an event handler that runs when the **Buy Now** button in the Product Page is clicked.", + "description": + [ "> This function is currently only available for [Wix Studio](https://dev.wix.com/docs/develop-websites/articles/coding-with-wix-studio/about-coding-with-wix-studio) sites.", + "", + " The `onBuyNow()` function adds an event handler that runs when a site visitor clicks the **Buy Now** button in the Product Page.", + " ", + " The event handler has 2 functions: ", + " + The `cancel()` function stops a site visitor from proceeding with the Wix Checkout process. ", + " + The `resume()` function allows a site visitor to proceed with the Wix Checkout process." ], + "links": [], + "examples": + [ { "title": "Resume Wix Checkout process when Buy Now button is clicked", + "body": + [ "$w('#myProductPage').onBuyNow((resume, cancel) => {", + " console.log('Resume the Wix Checkout process.');", + " // custom code", + " resume();", + "});" ], + "extra": + { } }, + { "title": "Cancel Wix Checkout process when Buy Now button is clicked", + "body": + [ "$w('#myProductPage').onBuyNow((resume, cancel) => {", + " console.log('Cancel the Wix Checkout process.');", + " // custom code", + " cancel();", + "});" ], + "extra": + { } } ], + "extra": + { } }, + "extra": + { } }, + { "name": "onChoiceSelected", + "labels": + [ "new" ], + "nameParams": [], + "params": + [ { "name": "choiceSelectedEventhandler", + "type": "$w.ProductPage.choiceSelectedEventHandler", + "doc": "The function to run when a product option choice is selected." } ], + "ret": + { "type": + { "name": "Promise", + "typeParams": + [ "void" ] }, + "doc": "" }, + "locations": + [ { "lineno": 293, + "filename": "ProductPage.js" } ], + "docs": + { "summary": "Adds an event handler that runs when a [product option](https://support.wix.com/en/article/wix-stores-adding-and-customizing-product-options) choice is selected.", + "description": + [ "> This function is currently only available for [Wix Studio](https://dev.wix.com/docs/develop-websites/articles/coding-with-wix-studio/about-coding-with-wix-studio) sites.", + "", + " The `onChoiceSelected()` function adds an event handler that runs when a site visitor selects a product option choice such as {color: \"white\", size: \"m\"}.", + "", + " The received `selectedChoices` object contains information about the product option choice that was selected." ], + "links": [], + "examples": + [ { "title": "Get the product option choice that was selected", + "body": + [ "$w('#myProductPage').onChoiceSelected( (selectedChoices) => {", + " let mySelectedChoices = selectedChoices; // {color: \"blue\", size: \"m\"}", + "} );" ], + "extra": + { } } ], + "extra": + { } }, + "extra": + { } }, + { "name": "onQuantityChanged", + "labels": + [ "new" ], + "nameParams": [], + "params": + [ { "name": "quantityChangedEventHandler", + "type": "$w.ProductPage.quantityChangedEventHandler", + "doc": "The function to run when a product's quantity is changed." } ], + "ret": + { "type": + { "name": "Promise", + "typeParams": + [ "void" ] }, + "doc": "" }, + "locations": + [ { "lineno": 401, + "filename": "ProductPage.js" } ], + "docs": + { "summary": "Adds an event handler that runs when a product's quantity is changed.", + "description": + [ "> This function is currently only available for [Wix Studio](https://dev.wix.com/docs/develop-websites/articles/coding-with-wix-studio/about-coding-with-wix-studio) sites.", + "", + " The `onQuantityChanged()` function adds an event handler that runs when a product's quantity is changed." ], + "links": [], + "examples": + [ { "title": "Get the product's updated quantity", + "body": + [ "$w('#myProductPage').onQuantityChanged( (quantity) => {", + " let updatedQuantity = quantity; // 27", + "} );" ], + "extra": + { } } ], + "extra": + { } }, + "extra": + { } }, + { "name": "setAddToCartLabel", + "labels": + [ "new" ], + "nameParams": [], + "params": + [ { "name": "label", + "type": "string", + "doc": "A string representing the **Add To Cart** button's new label." } ], + "ret": + { "type": + { "name": "Promise", + "typeParams": + [ "void" ] }, + "doc": "Fulfilled - When the **Add To Cart** button's label is set." }, + "locations": + [ { "lineno": 279, + "filename": "ProductPage.js" } ], + "docs": + { "summary": "Sets the **Add To Cart** button's label.", + "description": + [ "> This function is currently only available for [Wix Studio](https://dev.wix.com/docs/develop-websites/articles/coding-with-wix-studio/about-coding-with-wix-studio) sites.", + "", + " The `setAddToCartLabel()` function returns a Promise that is resolved when the **Add To Cart** button's label is set." ], + "links": [], + "examples": + [ { "title": "Set the Add To Cart button's label", + "body": + [ "$w('#myProductPage').setAddToCartLabel('Add To My Beautiful Cart');" ], + "extra": + { } } ], + "extra": + { } }, + "extra": + { } }, + { "name": "setBuyNowLabel", + "labels": + [ "new" ], + "nameParams": [], + "params": + [ { "name": "label", + "type": "string", + "doc": "A string representing the **Buy Now** button's new label." } ], + "ret": + { "type": + { "name": "Promise", + "typeParams": + [ "void" ] }, + "doc": "Fulfilled - When the **Buy Now** button's label is set." }, + "locations": + [ { "lineno": 347, + "filename": "ProductPage.js" } ], + "docs": + { "summary": "Sets the **Buy Now** button's label.", + "description": + [ "> This function is currently only available for [Wix Studio](https://dev.wix.com/docs/develop-websites/articles/coding-with-wix-studio/about-coding-with-wix-studio) sites.", + "", + " The `setBuyNowLabel()` function returns a Promise that is resolved when the **Buy Now** button's label is set." ], + "links": [], + "examples": + [ { "title": "Set the Buy Now button's label", + "body": + [ "$w('#myProductPage').setBuyNowLabel('Purchase Now');" ], + "extra": + { } } ], + "extra": + { } }, + "extra": + { } }, + { "name": "setQuantity", + "labels": + [ "new" ], + "nameParams": [], + "params": + [ { "name": "value", + "type": "number", + "doc": "A number representing a product's new quantity." } ], + "ret": + { "type": + { "name": "Promise", + "typeParams": + [ "void" ] }, + "doc": "Fulfilled - When the product's quantity is set." }, + "locations": + [ { "lineno": 361, + "filename": "ProductPage.js" } ], + "docs": + { "summary": "Sets the quantity of a product in the Product Page.", + "description": + [ "> This function is currently only available for [Wix Studio](https://dev.wix.com/docs/develop-websites/articles/coding-with-wix-studio/about-coding-with-wix-studio) sites.", + "", + " The `setQuantity()` function returns a Promise that is resolved when the product's quantity is set." ], + "links": [], + "examples": + [ { "title": "Set the product's quantity", + "body": + [ "$w('#myProductPage').setQuantity(4);" ], + "extra": + { } } ], + "extra": + { } }, + "extra": + { } } ], + "callbacks": + [ { "name": "addToCartEventHandler", + "labels": + [ "new" ], + "nameParams": [], + "params": + [ { "name": "resume", + "type": "Function", + "doc": "A function that resumes the Wix Checkout process. This function doesn't take any parameters." }, + { "name": "cancel", + "type": "Function", + "doc": "A function that cancels the Wix Checkout process. This function doesn't take any parameters." } ], + "ret": + { "type": "void" }, + "locations": + [ { "lineno": 339, + "filename": "ProductPage.js" } ], + "docs": + { "summary": "Handles events triggered when the **Add To Cart** button in the Product Page is clicked.", + "links": [], + "examples": [], + "extra": + { } }, + "extra": + { } }, + { "name": "buyNowEventHandler", + "labels": + [ "new" ], + "nameParams": [], + "params": + [ { "name": "resume", + "type": "Function", + "doc": "A function that resumes the Wix Checkout process. This function doesn't take any parameters." }, + { "name": "cancel", + "type": "Function", + "doc": "A function that cancels the Wix Checkout process. This function doesn't take any parameters." } ], + "ret": + { "type": "void" }, + "locations": + [ { "lineno": 445, + "filename": "ProductPage.js" } ], + "docs": + { "summary": "Handles events triggered when the **Buy Now** button in the Product Page is clicked.", + "links": [], + "examples": [], + "extra": + { } }, + "extra": + { } }, + { "name": "choiceSelectedEventHandler", + "labels": + [ "new" ], + "nameParams": [], + "params": + [ { "name": "selectedChoices", + "type": "Object", + "doc": "An object with key:value pairs representing the selected product option choices. Each pair is a product option created in the **Products** tab of the dashboard. Each key corresponds to an option name, and its values correspond to the choices for this option. For example, `{color: \"white\", size: \"m\"}`." } ], + "ret": + { "type": "void" }, + "locations": + [ { "lineno": 311, + "filename": "ProductPage.js" } ], + "docs": + { "summary": "Handles events triggred when a product option choice is selected.", + "links": [], + "examples": [], + "extra": + { } }, + "extra": + { } }, + { "name": "quantityChangedEventHandler", + "labels": + [ "new" ], + "nameParams": [], + "params": + [ { "name": "quantity", + "type": "number", + "doc": "The product's updated quantity." } ], + "ret": + { "type": "void" }, + "locations": + [ { "lineno": 417, + "filename": "ProductPage.js" } ], + "docs": + { "summary": "Handles events triggred when a product's quantity is changed.", + "links": [], + "examples": [], + "extra": + { } }, "extra": { } } ], - "callbacks": [], "messages": [ { "name": "MediaItem", "locations": @@ -653,8 +1195,7 @@ "doc": "Product ribbon. Used to highlight relevant information about a product. For example, `\"Sale\"`, `\"New Arrival\"`, `\"Sold Out\"`." } ], "extra": { }, - "labels": - [ "changed" ] }, + "labels": [] }, { "name": "ProductAdditionalInfoSection", "locations": [ { "lineno": 39, @@ -675,8 +1216,7 @@ "doc": "Section description." } ], "extra": { }, - "labels": - [ "changed" ] }, + "labels": [] }, { "name": "ProductChoices", "locations": [ { "lineno": 143, @@ -694,8 +1234,7 @@ "doc": "Value of the choice. This key name is dependent on the\n product option. For example, if a product has a size option, this\n key value will be something like `\"Size\"` and its value will be something like\n `\"Large\"`.\n\n `optionKey` is not case-sensitive. Therefore the values for the option keys \"`Size`\", \"`SIZE`\", and \"`size`\" are combined." } ], "extra": { }, - "labels": - [ "changed" ] }, + "labels": [] }, { "name": "ProductCustomTextFields", "locations": [ { "lineno": 88, @@ -716,8 +1255,7 @@ "doc": "Maximum length of product customization field in characters." } ], "extra": { }, - "labels": - [ "changed" ] }, + "labels": [] }, { "name": "ProductDiscount", "locations": [ { "lineno": 96, @@ -738,8 +1276,7 @@ "doc": "Discount value. The discount value cannot be greater than the price of the product or the variant." } ], "extra": { }, - "labels": - [ "changed" ] }, + "labels": [] }, { "name": "ProductOption", "locations": [ { "lineno": 79, @@ -766,8 +1303,7 @@ "doc": "Option choices." } ], "extra": { }, - "labels": - [ "changed" ] }, + "labels": [] }, { "name": "ProductOptions", "locations": [ { "lineno": 67, @@ -787,8 +1323,7 @@ "doc": "Name of the option. This key name\n is dependent on the options added to the product. For example, if a product has a size\n option, this key will be something like `\"Size\"`.\n\n `optionKey` is not case-sensitive. Therefore the values for the option keys \"`Size`\", \"`SIZE`\", and \"`size`\" are combined." } ], "extra": { }, - "labels": - [ "changed" ] }, + "labels": [] }, { "name": "ProductOptionsChoice", "locations": [ { "lineno": 47, @@ -820,8 +1355,7 @@ "doc": "Indicates whether the product with this option is visible." } ], "extra": { }, - "labels": - [ "changed" ] }, + "labels": [] }, { "name": "ProductOptionsChoiceMedia", "locations": [ { "lineno": 59, @@ -842,8 +1376,7 @@ "doc": "List of choice media items." } ], "extra": { }, - "labels": - [ "changed" ] }, + "labels": [] }, { "name": "ProductRibbon", "locations": [ { "lineno": 12, @@ -861,8 +1394,7 @@ "doc": "Ribbon text." } ], "extra": { }, - "labels": - [ "changed" ] }, + "labels": [] }, { "name": "SeoData", "locations": [ { "lineno": 155, @@ -882,8 +1414,7 @@ "doc": "SEO tag details." } ], "extra": { }, - "labels": - [ "changed" ] }, + "labels": [] }, { "name": "SeoTag", "locations": [ { "lineno": 161, @@ -959,8 +1490,7 @@ "doc": "Price per unit formatted with currency symbol." } ], "extra": { }, - "labels": - [ "changed" ] }, + "labels": [] }, { "name": "VariantItem", "locations": [ { "lineno": 118, @@ -1009,7 +1539,6 @@ "doc": "Base measurement unit of weight, volume, or area. For example, if your product weighs 1 kilogram, and the `baseQuantity` is `100` grams, `baseMeasurementUnit` is `\"G\"`.\n\nSupported values:\n`\"ML\"`, `\"CL\"`, `\"L\"`, `\"CBM\"`, `\"MG\"`, `\"G\"`, `\"KG\"`, `\"MM\"`, `\"CM\"`, `\"M\"`, `\"SQM\"`, `\"OZ\"`, `\"LB\"`, `\"FLOZ\"`, `\"PT\"`, `\"QT\"`, `\"GAL\"`, `\"IN\"`, `\"FT\"`, `\"YD\"`, `\"SQFT\"`." } ], "extra": { }, - "labels": - [ "changed" ] } ], + "labels": [] } ], "extra": { } } \ No newline at end of file diff --git a/wixstores-client-worker/$w/ThankYouPage.service.json b/wixstores-client-worker/$w/ThankYouPage.service.json index 16e367ee90..7221d508fb 100644 --- a/wixstores-client-worker/$w/ThankYouPage.service.json +++ b/wixstores-client-worker/$w/ThankYouPage.service.json @@ -3,8 +3,7 @@ "mixes": [ "$w.Element", "$w.HiddenCollapsedMixin" ], - "labels": - [ "changed" ], + "labels": [], "location": { "lineno": 1, "filename": "ThankYouPage.js" }, @@ -17,8 +16,7 @@ "properties": [], "operations": [ { "name": "getOrder", - "labels": - [ "changed" ], + "labels": [], "nameParams": [], "params": [], "ret": @@ -442,8 +440,7 @@ "optional": true } ], "extra": { }, - "labels": - [ "changed" ] }, + "labels": [] }, { "name": "AppliedCoupon", "locations": [ { "lineno": 261, @@ -643,8 +640,7 @@ "doc": "Coupon code." } ], "extra": { }, - "labels": - [ "changed" ] }, + "labels": [] }, { "name": "BillingInfo", "locations": [ { "lineno": 99, @@ -863,8 +859,7 @@ "optional": true } ], "extra": { }, - "labels": - [ "changed" ] }, + "labels": [] }, { "name": "BuyerInfo", "locations": [ { "lineno": 12, @@ -1074,8 +1069,7 @@ "optional": true } ], "extra": { }, - "labels": - [ "changed" ] }, + "labels": [] }, { "name": "ChannelInfo", "locations": [ { "lineno": 62, @@ -1277,8 +1271,7 @@ "doc": "Sales channel that submitted the order.\nOne of:\n\n\n + `\"WEB\"`: Wix online store.\n + `\"POS\"`: Point of sale.\n + `\"EBAY\"`: eBay.\n + `\"OTHER_PLATFORM\"`: Order imported from another system (e.g., Cart2Cart).\n + `\"WIX_APP_STORE\"`: Order created via the Wix mobile app." } ], "extra": { }, - "labels": - [ "changed" ] }, + "labels": [] }, { "name": "CustomField", "locations": [ { "lineno": 252, @@ -1478,8 +1471,7 @@ "doc": "Custom field's text." } ], "extra": { }, - "labels": - [ "changed" ] }, + "labels": [] }, { "name": "CustomTextField", "locations": [ { "lineno": 196, @@ -1676,8 +1668,7 @@ "doc": "Field value." } ], "extra": { }, - "labels": - [ "changed" ] }, + "labels": [] }, { "name": "Discount", "locations": [ { "lineno": 270, @@ -1870,8 +1861,7 @@ "type": "$w.ThankYouPage.AppliedCoupon" } ], "extra": { }, - "labels": - [ "changed" ] }, + "labels": [] }, { "name": "EnteredBy", "locations": [ { "lineno": 82, @@ -2067,8 +2057,7 @@ "doc": "Order was created by one of the following:\n\n\n + `\"USER\"`: Wix user who performed a POS transaction on behalf of the buyer.\n + `\"MEMBER\"`: Logged-in site member.\n + `\"CONTACT\"`: A Wix contact." } ], "extra": { }, - "labels": - [ "changed" ] }, + "labels": [] }, { "name": "LineItemPriceData", "locations": [ { "lineno": 132, @@ -2268,8 +2257,7 @@ "doc": "Whether the price includes tax." } ], "extra": { }, - "labels": - [ "changed" ] }, + "labels": [] }, { "name": "MediaItem", "locations": [ { "lineno": 177, @@ -2477,8 +2465,7 @@ "doc": "Media item width.\n One of:\n\n\n - `\"IMAGE\"`: Image item.\n - `\"UNSPECIFIED_MEDIA_TYPE_ITEM\"`: Media item type can't be classified due to an error." } ], "extra": { }, - "labels": - [ "changed" ] }, + "labels": [] }, { "name": "Option", "locations": [ { "lineno": 169, @@ -2675,8 +2662,7 @@ "doc": "Selected option." } ], "extra": { }, - "labels": - [ "changed" ] }, + "labels": [] }, { "name": "Order", "locations": [ { "lineno": 277, @@ -2930,8 +2916,7 @@ "optional": true } ], "extra": { }, - "labels": - [ "changed" ] }, + "labels": [] }, { "name": "OrderLineItem", "locations": [ { "lineno": 204, @@ -3196,8 +3181,7 @@ "doc": "Line item's variant ID." } ], "extra": { }, - "labels": - [ "changed" ] }, + "labels": [] }, { "name": "OrderShippingInfo", "locations": [ { "lineno": 112, @@ -3411,8 +3395,7 @@ "optional": true } ], "extra": { }, - "labels": - [ "changed" ] }, + "labels": [] }, { "name": "PickupDetails", "locations": [ { "lineno": 157, @@ -3450,8 +3433,7 @@ "optional": true } ], "extra": { }, - "labels": - [ "changed" ] }, + "labels": [] }, { "name": "ShipmentDetails", "locations": [ { "lineno": 141, @@ -3682,8 +3664,7 @@ "optional": true } ], "extra": { }, - "labels": - [ "changed" ] }, + "labels": [] }, { "name": "ShipmentPriceData", "locations": [ { "lineno": 124, @@ -3880,8 +3861,7 @@ "doc": "Whether the price includes tax." } ], "extra": { }, - "labels": - [ "changed" ] }, + "labels": [] }, { "name": "StreetAddress", "locations": [ { "lineno": 32, @@ -4078,8 +4058,7 @@ "doc": "Address street number." } ], "extra": { }, - "labels": - [ "changed" ] }, + "labels": [] }, { "name": "SubscriptionInfo", "locations": [ { "lineno": 590, @@ -4366,8 +4345,7 @@ "doc": "Total weight of the order's items." } ], "extra": { }, - "labels": - [ "changed" ] }, + "labels": [] }, { "name": "VatId", "locations": [ { "lineno": 54, @@ -4564,7 +4542,6 @@ "doc": "VAT type. Either `\"CPF\"` or `\"CNPJ\"`." } ], "extra": { }, - "labels": - [ "changed" ] } ], + "labels": [] } ], "extra": { } } \ No newline at end of file