Zum Hauptinhalt springen

Admonition Styling Test

This page showcases all admonition types with the new terminal-inspired styling.

Note

note

This is a note admonition. Use it for general information that doesn't fit other categories.

Custom Title

Notes can also have custom titles like this one.

Tip

tip

This is a tip admonition. Use it for helpful suggestions and best practices.

Pro Tip

Tips can highlight best practices or shortcuts that improve workflow.

Info

info

This is an info admonition. Use it for important contextual information.

API Rate Limits

The ZeyOS API allows up to 100 requests per minute per user.

Caution

caution

This is a caution admonition. Use it for warnings about potential issues.

Deprecation Warning

This method will be removed in version 3.0. Please migrate to the new API.

Danger

danger

This is a danger admonition. Use it for critical warnings about destructive actions.

Data Loss Warning

This operation cannot be undone. All data will be permanently deleted.

With Code Examples

Using the SDK

Here's how to authenticate:

JavaScript
const zeyos = require('zeyos-sdk');
zeyos.authenticate({
apiKey: 'your-api-key'
});
API Change

The user.getAll() method signature has changed:

Diff
- user.getAll(callback)
+ user.getAll(options, callback)