data
179 actions in this area
Sets:
cev | charity | columnfn | csv | data | datefn | defs | group | hash | json | manifest | math | prices | profile | rowfn | templates | textfn | timefn | url | vault
cev
is-tampered
Function
Check if a CEV variable has been tampered with
secure-add
Action
Add values to a CEV variable with server verification
secure-compare
Function
Compare two CEV values and store result (-1, 0, 1)
secure-decrement
Action
Decrement a CEV variable by 1
secure-divide
Action
Divide CEV variable values with server verification
secure-increment
Action
Increment a CEV variable by 1
secure-max
Action
Get maximum of two CEV values and store in a CEV variable
secure-min
Action
Get minimum of two CEV values and store in a CEV variable
secure-multiply
Action
Multiply CEV variable values with server verification
secure-set
Action
Initialize a CEV (Controlled Encrypted Variable) with a s...
secure-subtract
Action
Subtract CEV variable values with server verification
secure-verify
Function
Verify a CEV variable's signature without modifying it
charity
columnfn
add-column
Action
Add a new column to all rows in a table with optional def...
average-column
Action
Calculate average of numeric values in a column
count-unique
Action
Count unique values in a column
delete-column
Action
deletes a column from a table
get-column
Action
Extract all values from a column as an array
has-column
Action
Check if a column exists in a table
list-columns
Action
Get an array of all column names in a table
max-column
Action
Find maximum value in a column
min-column
Action
Find minimum value in a column
rename-column
Action
Rename a column across all rows in a table
sort-column
Action
sorts a column of data
sum-column
Action
Sum all numeric values in a column
csv
data
csv
Action
defines a block of static csv data
delete-app-data
Action
delete app data (private)
delete-public-app-data
Action
delete app data (public)
list-app-data
Action
list app data (private)
list-public-app-data
Action
list app data (public)
load-app-data
Action
loads app data (private)
load-public-app-data
Action
loads app data (public)
save-app-data
Action
saves app data (private)
save-public-app-data
Action
saves app data (public)
datefn
add-days
Function
adds days to a given date
add-months
Action
adds months to a given date
add-weeks
Action
adds weeks to a given date
day-names
Action
gets localized day names
days-between
Action
calculate the number of days between two dates
days-until
Action
calculate the days until specified or current date
format-date
Action
formats a date using a template string or preset
get-day
Action
extracts the day of month from a date (1-31)
get-month
Action
extracts the month from a date (1-12)
get-year
Action
extracts the year from a date
month-names
Action
gets the localized month names
defs
def-app
Action
Define app metadata with an identifier tag
def-coach
Action
Define a coach with an identifier tag (auto-assigns manag...
def-employee
Action
Define an employee with an identifier tag
def-guest
Action
Define a guest with an identifier tag (auto-assigns guest...
def-location
Action
Define a location with an identifier tag (alias for def-p...
def-manager
Action
Define a manager with an identifier tag (auto-assigns man...
def-place
Action
Define a place with an identifier tag
def-player
Action
Define a player with an identifier tag
def-room
Action
Define a room with an identifier tag (alias for def-place)
def-student
Action
Define a student with an identifier tag (auto-assigns mem...
def-teacher
Action
Define a teacher with an identifier tag (auto-assigns man...
def-thing
Action
Define a thing with an identifier tag
def-user
Action
Define a user with an identifier tag
group
hash
hash-compare
Function
Compares two hash values for equality (case-insensitive, ...
sha1
Function
Computes SHA-1 hash of text, returning a 40-character hex...
sha256
Function
Computes SHA-256 hash of text, returning a 64-character h...
sha384
Function
Computes SHA-384 hash of text, returning a 96-character h...
sha512
Function
Computes SHA-512 hash of text, returning a 128-character ...
verify-hash
Function
Verifies that text matches an expected hash (supports SHA...
json
is-valid-json
Function
Checks if a string is valid JSON
json-get
Function
Gets a value from a JSON object using dot notation path
json-keys
Function
Gets all keys from a JSON object as an array
json-merge
Function
Deep merges two JSON objects into one
json-set
Function
Sets a value in a JSON object at a specific path
json-values
Function
Gets all values from a JSON object as an array
parse-json
Function
Parses a JSON string into an object or array
stringify-json
Function
Converts an object or array to a JSON string
manifest
app-color
Action
Set app theme and background colors for the manifest
app-description
Action
Set app description for the manifest
app-font
Action
sets the App Font for the PWA manifest
app-name
Action
sets the App Name. Appears under icon
display-app-as
Action
Set PWA display mode for the app manifest
enable-as-app
Action
Enable app to be installed as a PWA by injecting manifest...
math
abs
Action
Returns the absolute value of a number
add
Action
Adds a number to an existing value
average
Function
Calculates the average (mean) of a set of numbers in an a...
calculate
Action
Solves math expressions like 2+3*4 or complex formulas
decrement
Action
decrements a number variable
divide
Action
divide
max
Function
Finds the maximum value from a set of numbers in an array
modulo
Function
calculate the modulo (remainder) of a division
multiply
Action
multiply value
round
Action
rounds a number to a specified number of decimals
round-down
Action
rounds a number down to nearest integer
round-up
Action
rounds a number up to nearest integer
subtract
Action
subtracts a number from another number
prices
.price
Element
Display a price with currency formatting
.price-strikethrough
Element
Display original price struck through with sale price
add-tax
Function
Add tax percentage to a price
format-price
Function
Format a number as a localized price string
set-currency
Action
Set the currency for price formatting
set-price-locale
Action
Set the locale for price number formatting
profile
.profile
Element
displays a styled user profile card with image and details
clear-profile
Action
Removes all saved user profile information from your app
new-profile
Action
Creates a fresh profile with default values, replacing an...
profile
Action
Stores user profile information like name, email, prefere...
restore-profile
Action
Restores saved user profile variables or creates new profile
store-profile
Action
Saves your current profile data to device for future use
rowfn
add-row
Action
Adds a new row of data to an existing table
clear-rows
Action
Removes all rows from a table
delete-row
Action
Removes a row from a table by its position
filter-rows
Action
Filter rows based on a condition with comparison operators
find-row
Action
Find the first row matching a condition
first-row
Function
Gets the first row from a table or group
get-row
Function
Gets a specific row by its position number from a table
last-row
Function
Gets the final row from a table or group
random-row
Action
Picks a random row from a table of data
sort-rows
Action
Sort entire table by column value
unpack-row
Action
Breaks down a row into separate variables for each field
update-row
Action
Update specific fields in a row
templates
get-template
Action
Get a template by ID
list-template-categories
Function
List all template categories
list-templates
Function
List app templates
render-template-form
Action
Render a template's input form
search-templates
Action
Search templates
submit-template-form
Action
Submit template form and create app
use-template
Action
Create app from template with values
textfn
add-line
Function
Add a line of text to existing text with newline
add-text
Function
Concatenates two text values together
camel-case
Function
Converts text to camelCase format (first word lowercase, ...
capitalize
Function
Capitalizes the first letter of each word in text
character
Function
Gets the character at a specific position in text
constant-case
Function
Converts text to CONSTANT_CASE format (uppercase with und...
count-words
Function
Counts the number of words in text
ends-with
Function
Checks if text ends with a specified suffix
extract-text
Function
Extracts a substring from text using start and end positions
kebab-case
Function
Converts text to kebab-case format (lowercase with hyphens)
length-of
Function
Returns the length of a text string or variable
lowercase
Function
Converts text to all lowercase letters
mask-text
Function
Masks text by replacing characters with a mask character,...
pad-left
Function
Pads text on the left to reach a target length
pad-right
Function
Pads text on the right to reach a target length
pascal-case
Function
Converts text to PascalCase format (each word capitalized...
remove-text
Function
Removes all occurrences of search text from source
repeat-text
Function
Repeats text a specified number of times
replace-text
Function
Replaces all occurrences of search text with replacement ...
reverse-text
Function
Reverses the characters in text
slug
Function
Converts text to a URL-friendly slug (lowercase, hyphens,...
snake-case
Function
Converts text to snake_case format (lowercase with unders...
split-text
Function
Splits text into an array of words by whitespace
starts-with
Function
Checks if text starts with a specified prefix
title-case
Function
Converts text to Title Case format (each word capitalized)
trim
Function
Removes whitespace from both ends of text
truncate-text
Function
Truncates text to a maximum length, adding ellipsis if tr...
uppercase
Function
Converts text to all uppercase letters
timefn
url
url-decode
Action
URL-decode an encoded string
url-encode
Action
URL-encode a string for safe inclusion in URLs
url-get
Action
Get the full current page URL
url-get-hash
Action
Get the current page hash fragment
url-get-hostname
Action
Get the current page hostname
url-get-origin
Action
Get the current page origin (protocol and host)
url-get-param
Action
Get a URL query parameter value by key
url-get-params
Action
Get all URL query parameters as a record
url-get-pathname
Action
Get the current page path
url-get-query
Action
Get the current page query string
url-has-param
Action
Check if a URL query parameter exists
url-remove-param
Action
Remove a URL query parameter
url-set
Action
Set the current page URL
url-set-param
Action
Add or update a URL query parameter