Skip to content

Commit 0e739ed

Browse files
committed
update params to include missing options
1 parent 4537261 commit 0e739ed

File tree

1 file changed

+31
-2
lines changed

1 file changed

+31
-2
lines changed

fern/openapi-overrides.yml

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,38 @@ paths:
8888
parameters:
8989
- name: Intercom-Version
9090
in: header
91-
required: true
9291
schema:
93-
$ref: '#/components/schemas/intercom_version'
92+
"$ref": "#/components/schemas/intercom_version"
93+
- name: phrase
94+
in: query
95+
required: false
96+
description: The phrase within your articles to search for.
97+
example: Getting started
98+
schema:
99+
type: string
100+
- name: state
101+
in: query
102+
required: false
103+
description: The state of the Articles returned. One of `published`, `draft`
104+
or `all`.
105+
example: published
106+
schema:
107+
type: string
108+
- name: help_center_id
109+
in: query
110+
required: false
111+
description: The ID of the Help Center to search in.
112+
example: 123
113+
schema:
114+
type: integer
115+
- name: highlight
116+
in: query
117+
required: false
118+
description: Return a highlighted version of the matching content within your
119+
articles. Refer to the response schema for more details.
120+
example: false
121+
schema:
122+
type: boolean
94123
- name: page
95124
in: query
96125
required: false

0 commit comments

Comments
 (0)