Skip to content

Commit 8823bc8

Browse files
committed
fix(fern/apis/api/openapi.json): update Analytics and Logs endpoints
This commit updates the Analytics and Logs endpoints in the OpenAPI specification for the Fern API. Specifically, it changes the Analytics endpoint from a POST to a GET request, renames the operationId and summary, and removes the "201" response code. For the Logs endpoint, the summary is updated to use a verb, as per the specification standards.
1 parent b9893c8 commit 8823bc8

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

fern/apis/api/openapi.json

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2757,9 +2757,9 @@
27572757
}
27582758
},
27592759
"/analytics": {
2760-
"post": {
2761-
"operationId": "AnalyticsController_query",
2762-
"summary": "Create Analytics Queries",
2760+
"get": {
2761+
"operationId": "AnalyticsController_getQuery",
2762+
"summary": "Get Analytics",
27632763
"parameters": [],
27642764
"requestBody": {
27652765
"required": true,
@@ -2784,9 +2784,6 @@
27842784
}
27852785
}
27862786
}
2787-
},
2788-
"201": {
2789-
"description": ""
27902787
}
27912788
},
27922789
"tags": [
@@ -2802,7 +2799,7 @@
28022799
"/logs": {
28032800
"get": {
28042801
"operationId": "LoggingController_queryLogs",
2805-
"summary": "List logs",
2802+
"summary": "Get Logs",
28062803
"parameters": [
28072804
{
28082805
"name": "orgId",

0 commit comments

Comments
 (0)