-
Instalar Visual Studio Code (VSCode)
- Descargar desde https://code.visualstudio.com/ e instalar.
-
Instalar Node.js y npm
- Descargar desde https://nodejs.org/ e instalar.
- En la terminal, verificar con:
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| interface TestCase { | |
| input: string; | |
| expected: string; | |
| solution: number; | |
| } | |
| const TEST_CASES: TestCase[] = [ | |
| { | |
| input: 'aca', | |
| expected: 'aaa', |
This service allows you to handling the mailing to be able to cancel and generate orders without repeating notifications to the user.
- First you have to disable transactional emails.
- You need to install this app running
vtex install [email protected]command on the vtex toolbelt. - Then you must hook the order status changes to this service. You can see how to do this here.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| repository.createCompetencia = (competencia) => { | |
| const genero_id = competencia.genero == 0 ? null: competencia.genero; | |
| const director_id = competencia.director == 0 ? null : competencia.director; | |
| const actor_id = competencia.actor == 0 ? null : competencia.actor; | |
| //Armando query de verificacion |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var lista = ["Lucas", "Matías", "Nicolás", "Heidy", "Analía", "Pedro"]; | |
| exports.lista = lista; |