Skip to content

Update wix-billing-backend.service.json #3063

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions js-wixcode-sdk/$w.service.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"docs":
{ "summary": "The `$w` namespace contains everything you need in order to work\n with your site's components.",
"description":
[ "The `$w` namespace contains all of the UI elements, nodes, and",
[ "DANIEL TESTTTT The `$w` namespace contains all of the UI elements, nodes, and",
" events that make up your site. It also includes the [`$w()`]($w/$w),",
" [`onReady()`]($w.html#onReady), and [`at()`]($w.html#at) functions.",
"",
Expand Down Expand Up @@ -1063,4 +1063,4 @@
{ "title": "Elements in a repeater have the same ID for each repeater item. So how do I select an element in a specific repeater item?",
"markdown": "You can get an element from a specific repeater item by using the [`at()`](https://www.wix.com/code/reference/$w.html#at) function. You pass the function a [`context`](https://www.wix.com/code/reference/$w.Event.html#context) from an event handler's `event` property. The function returns a selector function that selects elements from the same item that triggered the event whose context you passed it. You can then use that selector to select the specific element you want." },
{ "title": "Why are my $w() selections not working?",
"markdown": "You can only select page elements using [`$w()`](https://www.wix.com/velo/reference/$w.html#$w) when the page is ready. If you use [`$w()`](https://www.wix.com/velo/reference/$w.html#$w) in code that runs before the page is ready, like global page code, the page elements are not ready to be selected. Use [`$w()`](https://www.wix.com/velo/reference/$w.html#$w) to select elements in the [`onReady()`](https://www.wix.com/velo/reference/$w.html#onReady) event handler, element event handlers, or any functions called by the above. \n\nAlso, be sure to check your selection syntax is correct. When selecting individual elements, make sure you have the proper ID and include a hash. For example: `$w(\"#myElement\")`. When selecting elements by type, make sure you have the proper type name and don't include a hash or `$w.` before the type name. For example: `$w(\"Text\")`. " } ] }
"markdown": "You can only select page elements using [`$w()`](https://www.wix.com/velo/reference/$w.html#$w) when the page is ready. If you use [`$w()`](https://www.wix.com/velo/reference/$w.html#$w) in code that runs before the page is ready, like global page code, the page elements are not ready to be selected. Use [`$w()`](https://www.wix.com/velo/reference/$w.html#$w) to select elements in the [`onReady()`](https://www.wix.com/velo/reference/$w.html#onReady) event handler, element event handlers, or any functions called by the above. \n\nAlso, be sure to check your selection syntax is correct. When selecting individual elements, make sure you have the proper ID and include a hash. For example: `$w(\"#myElement\")`. When selecting elements by type, make sure you have the proper type name and don't include a hash or `$w.` before the type name. For example: `$w(\"Text\")`. " } ] }
6 changes: 3 additions & 3 deletions js-wixcode-sdk/$w/Button.service.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@
"docs":
{ "summary": "A [button](https://support.wix.com/en/article/wix-editor-about-buttons) on your site.",
"description":
[ "A [button](https://support.wix.com/en/article/wix-editor-about-buttons) on your site." ],
[ "DANIEL TESTTTT A [button](https://support.wix.com/en/article/wix-editor-about-buttons) on your site." ],
"links": [],
"examples": [],
"extra":
{ } },
"properties":
[ { "name": "icon",
[ { "name": "DANIEL TESTTTT",
"labels": [],
"get": true,
"set": true,
Expand Down Expand Up @@ -485,4 +485,4 @@
{ "title": "Is the 'onClick()' event handler called even when a button is disabled?",
"markdown": "No. You can call the [`enable()`](https://www.wix.com/velo/reference/$w.Button.html#enable) function to allow the button to be clicked again." },
{ "title": "How do I change the label of the button after it is clicked?",
"markdown": "In the button's [onClick](https://www.wix.com/velo/reference/$w.Button.html#onClick) event handler, reset the button's text using the [`label`](https://www.wix.com/velo/reference/$w.Button.html#label) property.\n\n```javascript\n\n$w(\"myButton\").onClick( () => {\n\n $w(\"myButton\").label = \"New Text\";\n\n} );\n\n```" } ] }
"markdown": "In the button's [onClick](https://www.wix.com/velo/reference/$w.Button.html#onClick) event handler, reset the button's text using the [`label`](https://www.wix.com/velo/reference/$w.Button.html#label) property.\n\n```javascript\n\n$w(\"myButton\").onClick( () => {\n\n $w(\"myButton\").label = \"New Text\";\n\n} );\n\n```" } ] }
4 changes: 2 additions & 2 deletions wix-billing-backend/wix-billing-backend.service.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
{ "lineno": 1,
"filename": "index.js" },
"docs":
{ "summary": "The wix-billing-backend module contains functionality for working with\n billing features, such as [price quotes](https://support.wix.com/en/article/wix-price-quotes-creating-and-sending-price-quotes-to-clients) and\n[invoices](https://support.wix.com/en/article/about-wix-invoices).",
{ "summary": "DANIEL TEST The wix-billing-backend module contains functionality for working with\n billing features, such as [price quotes](https://support.wix.com/en/article/wix-price-quotes-creating-and-sending-price-quotes-to-clients) and\n[invoices](https://support.wix.com/en/article/about-wix-invoices).",
"description":
[ "The Wix billing API allows you to manage billing of your customers, using invoices and price quotes. ",
[ "DANIEL TEST The Wix billing API allows you to manage billing of your customers, using invoices and price quotes. ",
"",
"Learn more about how you can [create and manage invoices](https://support.wix.com/en/article/wix-invoices-about-wix-invoices)",
"and [create and manage price quotes](https://support.wix.com/en/article/wix-price-quotes-creating-and-sending-price-quotes-to-clients).",
Expand Down
4 changes: 2 additions & 2 deletions wix-billing-backend/wix-billing-backend/Events.service.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"docs":
{ "summary": "An event that fires when an invoice is created.",
"description":
[ "The `onInvoiceCreated()` event handler runs when an invoice is created. The received `Invoice`",
[ "DANIEL TEST The `onInvoiceCreated()` event handler runs when an invoice is created. The received `Invoice`",
" object contains information about the invoice that was created.",
"",
"> **Note:** Backend events don't work when previewing your site." ],
Expand Down Expand Up @@ -1384,4 +1384,4 @@
"callbacks": [],
"messages": [],
"extra":
{ } }
{ } }
4 changes: 2 additions & 2 deletions wix-billing-backend/wix-billing-backend/Invoices.service.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"labels": [],
"nameParams": [],
"params":
[ { "name": "id",
[ { "name": "DANIEL TEST ",
"type": "wix-billing-backend.Invoices.IdAndVersion",
"doc": "ID and version of the invoice." },
{ "name": "payment",
Expand Down Expand Up @@ -5135,4 +5135,4 @@
{ },
"labels": [] } ],
"extra":
{ } }
{ } }