Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"ignoretz",
"PYPI",
"pytest",
"serie_number"
"serie_number",
"Tago"
]
}
65 changes: 65 additions & 0 deletions docs/source/Resources/Analysis/Analysis_Type.rst
Original file line number Diff line number Diff line change
Expand Up @@ -102,3 +102,68 @@ AnalysisListItem
| locked_at: Optional[datetime]

| console: Optional[List[str]]


.. _SnippetRuntime:

SnippetRuntime
--------------

Available runtime environments for snippets.

**Type:**

| Literal["node-legacy", "python-legacy", "node-rt2025", "python-rt2025", "deno-rt2025"]


.. _SnippetItem:

SnippetItem
-----------

Individual snippet metadata.

**Attributes:**

| id: str
| Unique identifier for the snippet

| title: str
| Human-readable title

| description: str
| Description of what the snippet does

| language: str
| Programming language (typescript, javascript, python)

| tags: List[str]
| Array of tags for categorization

| filename: str
| Filename of the snippet

| file_path: str
| Full path to the file in the runtime directory


.. _SnippetsListResponse:

SnippetsListResponse
--------------------

API response containing all snippets metadata for a runtime.

**Attributes:**

| runtime: :ref:`SnippetRuntime`
| Runtime environment identifier

| schema_version: int
| Schema version for the API response format

| generated_at: str
| ISO timestamp when the response was generated

| snippets: List[:ref:`SnippetItem`]
| Array of all available snippets for this runtime
Loading