@tpmjs/tools-sprites-delete
v0.1.3
Published
Delete a sprite and all its associated data including checkpoints
Maintainers
Readme
@tpmjs/sprites-delete
Delete a sprite and all its associated data including checkpoints.
Installation
npm install @tpmjs/sprites-deleteRequirements
SPRITES_TOKENenvironment variable - Get your token from https://sprites.dev
Usage
import { spritesDeleteTool } from '@tpmjs/sprites-delete';
const result = await spritesDeleteTool.execute({
name: 'my-sandbox'
});
console.log(result);
// {
// deleted: true,
// name: 'my-sandbox'
// }Input Parameters
| Parameter | Type | Required | Description |
|-----------|------|----------|-------------|
| name | string | Yes | Name of the sprite to delete |
Output
| Field | Type | Description |
|-------|------|-------------|
| deleted | boolean | Whether deletion was successful |
| name | string | Name of the deleted sprite |
Warning
This action is irreversible. All data associated with the sprite, including:
- Filesystem contents
- All checkpoints
- Execution history
will be permanently deleted.
Error Handling
The tool throws errors in these cases:
SPRITES_TOKENenvironment variable is not set- Sprite not found (HTTP 404)
- Invalid or expired API token (HTTP 401)
- Network timeout (30 second limit)
- API errors with descriptive messages
License
MIT
