All available time zones are below:
- Africa/Abidjan
- Africa/Algiers
- Africa/Bissau
- Africa/Cairo
- Africa/Casablanca
- Africa/Ceuta
| // Luraph Macro Declarations for TypeScript | |
| // Usage: Take the contents of this file and put it in a d.ts file in your project root, or rootDir. | |
| // See: https://lura.ph/dashboard/documents/macros | |
| // LMD:TS Authored by @ninjaninja140 | |
| declare global { | |
| type EncryptionFunction<E, K = unknown, DK = unknown> = ( | |
| toEncrypt: E, | |
| encKey?: K, | |
| decKey?: DK, |
| #!/usr/bin/env bash | |
| # Install and use Deno in Cloudflare Pages build | |
| set -euo pipefail | |
| # Cache location (Cloudflare persists .cache between builds) | |
| export DENO_INSTALL="$PWD/.cache/deno" | |
| export PATH="$DENO_INSTALL/bin:$PATH" | |
| # Install Deno if not cached | |
| if [ ! -x "$DENO_INSTALL/bin/deno" ]; then |
| function Expand-ZipFile { | |
| param ( | |
| [Parameter(Mandatory)] | |
| [string]$ZipFilePath, | |
| [Parameter(Mandatory)] | |
| [string]$DestinationPath, | |
| [Parameter(Mandatory)] | |
| [string]$Label, |
| function Get-FileFromWeb { | |
| param ( | |
| [Parameter(Mandatory)] | |
| [string]$URL, | |
| [Parameter(Mandatory)] | |
| [string]$File, | |
| [Parameter(Mandatory)] | |
| [string]$Label, |
| { | |
| "openapi": "3.0.3", | |
| "info": { | |
| "title": "Vrfy API V2", | |
| "description": "[ API URL: vrfy.api.bracketed.co.uk ]\n\n<https://vrfy.api.bracketed.co.uk/v2>\n\n# Welcome to the revamped Vrfy API!\n\n\nOur Version 2 API provides much more than Version 1 could and with the addition of Swagger we are now able to publicly document our API for people to use.\n\nVersion 2 now allows users to test the API over Swagger and find out how to use the API in their own projects.\n\nVrfy's API is now mostly free-to-use with the exception of private routes which all require authentication to be used.\n\n_If you would like to find out more about Vrfy, you can join our [Discord Server](https://bracketed.co.uk/redirects/discord) or go to our [Website](https://vrfy.bracketed.co.uk) to find out more!_\n\n`Have fun!`", | |
| "version": "v2" | |
| }, | |
| "servers": [ | |
| { | |
| "url": "https://vrfy.api.bracketed.co.uk/v2" |
| This is a list of all known endpoints for the Roblox API. | |
| This list is meant to be used as a educational & informative | |
| resource to help you match thirdparty development with the functionality | |
| that you need. It's highly advised and against the point of this list to abuse, | |
| cheat or phish other users. Please be mindful. | |
| [Basic] | |
| websiteUrl - https://www.roblox.com | |
| apiProxyUrl - https://api.roblox.com (deprecated / no longer reachable) |