generate-backend-client
Generate TypeScript client code to call Kalendis API with x-api-key authentication for managing users, availability, and bookings in production, staging, or development environments.
Instructions
Generate a TypeScript client that calls Kalendis API directly with x-api-key authentication
Input Schema
Name | Required | Description | Default |
---|---|---|---|
environment | No | Target environment (optional, defaults to production) | |
typesImportPath | No | Import path for types file (optional, defaults to "../types") |
Input Schema (JSON Schema)
{
"properties": {
"environment": {
"description": "Target environment (optional, defaults to production)",
"enum": [
"production",
"staging",
"development"
],
"type": "string"
},
"typesImportPath": {
"description": "Import path for types file (optional, defaults to \"../types\")",
"type": "string"
}
},
"required": [],
"type": "object"
}