4 Commits

Author SHA1 Message Date
7d075b3904 bumped up version
All checks were successful
continuous-integration/drone Build is passing
2026-07-17 12:52:51 +05:30
28c6d9e964 if no ffilterable but autocomplete, thriw error 2026-07-13 04:17:59 +05:30
628c3e97f5 if no ffilterable but autocomplete, thriw error 2026-07-13 04:14:42 +05:30
4bf358734a filterable treatment description 2026-07-13 04:01:50 +05:30
2 changed files with 2 additions and 5 deletions

View File

@@ -31,12 +31,10 @@ components:
type: string type: string
x-order: 1 x-order: 1
x-label: "Procedure Name" x-label: "Procedure Name"
x-autocomplete: token
description: description:
type: string type: string
x-order: 2 x-order: 2
x-label: "Description" x-label: "Description"
x-autocomplete: text
cost: cost:
type: number type: number
format: float format: float
@@ -287,7 +285,6 @@ components:
x-order: 4 x-order: 4
x-label: "Phone" x-label: "Phone"
x-description: "Contact phone number" x-description: "Contact phone number"
x-autocomplete: phone
metadata: metadata:
$ref: '#/components/schemas/Metadata' $ref: '#/components/schemas/Metadata'
x-order: 5 x-order: 5
@@ -319,6 +316,7 @@ components:
x-order: 2 x-order: 2
x-label: "Description" x-label: "Description"
x-description: "Detailed description of the treatment" x-description: "Detailed description of the treatment"
x-filterable: true
x-autocomplete: text x-autocomplete: text
metadata: metadata:
$ref: '#/components/schemas/Metadata' $ref: '#/components/schemas/Metadata'
@@ -422,7 +420,6 @@ components:
x-order: 2 x-order: 2
x-label: "Notes" x-label: "Notes"
x-description: "Any additional notes" x-description: "Any additional notes"
x-autocomplete: text
procedures: procedures:
type: array type: array
items: items:

View File

@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
[project] [project]
name = "openapi-first" name = "openapi-first"
version = "0.0.4" version = "0.0.5"
description = "Strict OpenAPI-first application bootstrap for FastAPI." description = "Strict OpenAPI-first application bootstrap for FastAPI."
readme = "README.md" readme = "README.md"
requires-python = ">=3.10" requires-python = ">=3.10"