Skip to content

Commit cde395a

Browse files
committed
Moved spec changes to overrides file
1 parent 714edcf commit cde395a

File tree

2 files changed

+70
-39
lines changed

2 files changed

+70
-39
lines changed

fern/apis/api/openapi-overrides.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,13 @@ paths:
2727
x-fern-sdk-group-name:
2828
- calls
2929
x-fern-sdk-method-name: update
30+
/v2/call:
31+
get:
32+
parameters:
33+
- name: structuredOutputs
34+
schema:
35+
additionalProperties:
36+
$ref: "#/components/schemas/StructuredOutputsFilterValue"
3037
/chat:
3138
get:
3239
x-fern-availability: beta
@@ -235,6 +242,34 @@ paths:
235242
x-fern-sdk-method-name: get
236243
components:
237244
schemas:
245+
StructuredOutputsFilterValue:
246+
type: object
247+
description: Filter operators for structured output values
248+
properties:
249+
eq:
250+
type: string
251+
description: Equal to
252+
neq:
253+
type: string
254+
description: Not equal to
255+
gt:
256+
type: string
257+
description: Greater than
258+
gte:
259+
type: string
260+
description: Greater than or equal to
261+
lt:
262+
type: string
263+
description: Less than
264+
lte:
265+
type: string
266+
description: Less than or equal to
267+
contains:
268+
type: string
269+
description: Contains
270+
notContains:
271+
type: string
272+
description: Not contains
238273
CreateAssistantDTO:
239274
properties:
240275
serverMessages:

fern/apis/api/openapi.json

Lines changed: 35 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -871,7 +871,41 @@
871871
"schema": {
872872
"type": "object",
873873
"additionalProperties": {
874-
"$ref": "#/components/schemas/StructuredOutputsFilterValue"
874+
"type": "object",
875+
"properties": {
876+
"eq": {
877+
"type": "string",
878+
"description": "Equal to"
879+
},
880+
"neq": {
881+
"type": "string",
882+
"description": "Not equal to"
883+
},
884+
"gt": {
885+
"type": "string",
886+
"description": "Greater than"
887+
},
888+
"gte": {
889+
"type": "string",
890+
"description": "Greater than or equal to"
891+
},
892+
"lt": {
893+
"type": "string",
894+
"description": "Less than"
895+
},
896+
"lte": {
897+
"type": "string",
898+
"description": "Less than or equal to"
899+
},
900+
"contains": {
901+
"type": "string",
902+
"description": "Contains"
903+
},
904+
"notContains": {
905+
"type": "string",
906+
"description": "Not contains"
907+
}
908+
}
875909
},
876910
"example": {
877911
"c9dddda4-d70a-4dad-aa5c-aaf117f85cea": {
@@ -5364,44 +5398,6 @@
53645398
}
53655399
},
53665400
"schemas": {
5367-
"StructuredOutputsFilterValue": {
5368-
"type": "object",
5369-
"description": "Filter operators for structured output values",
5370-
"properties": {
5371-
"eq": {
5372-
"type": "string",
5373-
"description": "Equal to"
5374-
},
5375-
"neq": {
5376-
"type": "string",
5377-
"description": "Not equal to"
5378-
},
5379-
"gt": {
5380-
"type": "string",
5381-
"description": "Greater than"
5382-
},
5383-
"gte": {
5384-
"type": "string",
5385-
"description": "Greater than or equal to"
5386-
},
5387-
"lt": {
5388-
"type": "string",
5389-
"description": "Less than"
5390-
},
5391-
"lte": {
5392-
"type": "string",
5393-
"description": "Less than or equal to"
5394-
},
5395-
"contains": {
5396-
"type": "string",
5397-
"description": "Contains"
5398-
},
5399-
"notContains": {
5400-
"type": "string",
5401-
"description": "Not contains"
5402-
}
5403-
}
5404-
},
54055401
"FallbackTranscriberPlan": {
54065402
"type": "object",
54075403
"properties": {

0 commit comments

Comments
 (0)