@bagelink/sdk 1.2.20 → 1.2.25

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -30,6 +30,7 @@ export interface ComponentsObject {
30
30
 
31
31
  export interface OperationObject {
32
32
  summary?: string
33
+ description?: string
33
34
  operationId?: string
34
35
  parameters?: ParameterObject[]
35
36
  requestBody?: RequestBodyObject
@@ -57,6 +58,7 @@ export interface SchemaObject {
57
58
  export interface ParameterObject {
58
59
  name: string
59
60
  in: string
61
+ description?: string
60
62
  schema: SchemaObject
61
63
  required?: boolean
62
64
  }