Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

create-zuplo-api

Package Overview
Dependencies
Maintainers
5
Versions
1052
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

create-zuplo-api - npm Package Compare versions

Comparing version
6.67.14
to
6.67.15
+16
-1
dist/templates/default/config/routes.oas.json

@@ -5,3 +5,9 @@ {

"version": "1.0.0",
"title": "My Zuplo API"
"title": "Todo API",
"description": "A simple task management API that lets you create, read, update, and delete todo items. Use this API to build productivity apps, task trackers, or integrate task management into your existing workflows.\n\n## Getting Started\n\nAll endpoints accept and return JSON. To create your first todo, send a `POST` request to `/todos` with a title and userId.\n\n## Authentication\n\nThis sample API does not require authentication. Add [API key authentication](https://zuplo.com/docs/policies/api-key-inbound) or any other policy via your Zuplo gateway configuration.",
"contact": {
"name": "API Support",
"url": "https://zuplo.com/docs",
"email": "support@zuplo.com"
}
},

@@ -223,5 +229,12 @@ "paths": {

},
"tags": [
{
"name": "Todo",
"description": "Endpoints for managing todo items including creating, listing, updating, and deleting tasks."
}
],
"components": {
"schemas": {
"Todo": {
"description": "A complete todo item as returned by the API, including its system-assigned ID.",
"type": "object",

@@ -249,2 +262,3 @@ "properties": {

"CreateTodo": {
"description": "The request body for creating a new todo. Only a title and userId are required.",
"type": "object",

@@ -269,2 +283,3 @@ "properties": {

"UpdateTodo": {
"description": "The request body for updating a todo. All fields are optional so you can patch individual properties.",
"type": "object",

@@ -271,0 +286,0 @@ "properties": {

+1
-1
{
"name": "create-zuplo-api",
"version": "6.67.14",
"version": "6.67.15",
"keywords": [

@@ -5,0 +5,0 @@ "api",

Sorry, the diff of this file is too big to display