diff --git a/docs/lync/getting-started/convert-place.md b/docs/lync/getting-started/convert-place.md index ffa3396..25240bc 100644 --- a/docs/lync/getting-started/convert-place.md +++ b/docs/lync/getting-started/convert-place.md @@ -3,5 +3,5 @@ ::: danger UNAVAILABLE The `LYNC INIT` wizard is not yet available. -Please refer to the **Sample Project** inside the [Lync repo](https://github.com/Iron-Stag-Games/Lync). +Please refer to the [Sample Project](https://github.com/Iron-Stag-Games/Lync/tree/main/Sample%20Project) inside the [Lync repo](https://github.com/Iron-Stag-Games/Lync). ::: diff --git a/docs/lync/getting-started/new-project.md b/docs/lync/getting-started/new-project.md index a8d45f1..ec692de 100644 --- a/docs/lync/getting-started/new-project.md +++ b/docs/lync/getting-started/new-project.md @@ -3,5 +3,5 @@ ::: danger UNAVAILABLE The `LYNC INIT` wizard is not yet available. -Please refer to the **Sample Project** inside the [Lync repo](https://github.com/Iron-Stag-Games/Lync). +Please refer to the [Sample Project](https://github.com/Iron-Stag-Games/Lync/tree/main/Sample%20Project) inside the [Lync repo](https://github.com/Iron-Stag-Games/Lync). ::: diff --git a/docs/lync/project-format/project/automated-downloads.md b/docs/lync/project-format/project/automated-downloads.md index d9a1225..54d091e 100644 --- a/docs/lync/project-format/project/automated-downloads.md +++ b/docs/lync/project-format/project/automated-downloads.md @@ -1,18 +1,36 @@ -::: danger UNFINISHED -This documentation is unfinished. -::: - # Automated Downloads -Automated Downloads. +Automated Downloads send HTTP requests and download the hosts' responses to file. + +All sources are downloaded in sequence by using the `FETCH` mode. ## Syntax ::: info Keys - `name`: string + - The name of the source for informational purposes. - `url`: string + - The URL for the request. - `type`: string + - Must be `GET` or `POST`. - `headers`: {\[string]: string} + - The headers for the request. - `postData`: (string | Object) + - The data to submit in `POST` requests. - `path`: string + - The path to save the downloaded file. ::: + +## Example + +```json +"sources": [ + { + "name": "Economy", + "url": "https://docs.google.com/spreadsheets/d/(redacted)/export?format=xlsx", + "type": "GET", + "headers": {}, + "path": "Economy.xlsx" + } +] +```