Skip to content

Commit 44b6d74

Browse files
authored
Merge branch 'main' into update-openapi-spec-2025-07-02T00-27-20-453Z
2 parents 2b190ae + bcc59ab commit 44b6d74

File tree

3 files changed

+24
-128
lines changed

3 files changed

+24
-128
lines changed

fern/apis/api/generators.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ groups:
2828
ts-sdk:
2929
generators:
3030
- name: fernapi/fern-typescript-node-sdk
31-
version: 0.51.3
31+
version: 2.1.0
3232
api:
3333
settings:
3434
unions: v1
@@ -49,7 +49,7 @@ groups:
4949
java-sdk:
5050
generators:
5151
- name: fernapi/fern-java-sdk
52-
version: 2.37.0
52+
version: 2.38.1
5353
disable-examples: true
5454
output:
5555
location: maven
@@ -63,7 +63,7 @@ groups:
6363
go-sdk:
6464
generators:
6565
- name: fernapi/fern-go-sdk
66-
version: 0.37.4
66+
version: 1.4.0
6767
disable-examples: true
6868
api:
6969
settings:
@@ -88,7 +88,7 @@ groups:
8888
csharp-sdk:
8989
generators:
9090
- name: fernapi/fern-csharp-sdk
91-
version: 2.0.1
91+
version: 2.0.2
9292
disable-examples: true
9393
github:
9494
repository: VapiAI/server-sdk-csharp

fern/apis/api/openapi.json

Lines changed: 19 additions & 123 deletions
Original file line numberDiff line numberDiff line change
@@ -700,128 +700,6 @@
700700
"get": {
701701
"operationId": "CampaignController_findAll",
702702
"summary": "List Campaigns",
703-
"parameters": [
704-
{
705-
"name": "limit",
706-
"required": false,
707-
"in": "query",
708-
"description": "This is the maximum number of items to return. Defaults to 100.",
709-
"schema": {
710-
"minimum": 0,
711-
"maximum": 1000,
712-
"type": "number"
713-
}
714-
},
715-
{
716-
"name": "createdAtGt",
717-
"required": false,
718-
"in": "query",
719-
"description": "This will return items where the createdAt is greater than the specified value.",
720-
"schema": {
721-
"format": "date-time",
722-
"type": "string"
723-
}
724-
},
725-
{
726-
"name": "createdAtLt",
727-
"required": false,
728-
"in": "query",
729-
"description": "This will return items where the createdAt is less than the specified value.",
730-
"schema": {
731-
"format": "date-time",
732-
"type": "string"
733-
}
734-
},
735-
{
736-
"name": "createdAtGe",
737-
"required": false,
738-
"in": "query",
739-
"description": "This will return items where the createdAt is greater than or equal to the specified value.",
740-
"schema": {
741-
"format": "date-time",
742-
"type": "string"
743-
}
744-
},
745-
{
746-
"name": "createdAtLe",
747-
"required": false,
748-
"in": "query",
749-
"description": "This will return items where the createdAt is less than or equal to the specified value.",
750-
"schema": {
751-
"format": "date-time",
752-
"type": "string"
753-
}
754-
},
755-
{
756-
"name": "updatedAtGt",
757-
"required": false,
758-
"in": "query",
759-
"description": "This will return items where the updatedAt is greater than the specified value.",
760-
"schema": {
761-
"format": "date-time",
762-
"type": "string"
763-
}
764-
},
765-
{
766-
"name": "updatedAtLt",
767-
"required": false,
768-
"in": "query",
769-
"description": "This will return items where the updatedAt is less than the specified value.",
770-
"schema": {
771-
"format": "date-time",
772-
"type": "string"
773-
}
774-
},
775-
{
776-
"name": "updatedAtGe",
777-
"required": false,
778-
"in": "query",
779-
"description": "This will return items where the updatedAt is greater than or equal to the specified value.",
780-
"schema": {
781-
"format": "date-time",
782-
"type": "string"
783-
}
784-
},
785-
{
786-
"name": "updatedAtLe",
787-
"required": false,
788-
"in": "query",
789-
"description": "This will return items where the updatedAt is less than or equal to the specified value.",
790-
"schema": {
791-
"format": "date-time",
792-
"type": "string"
793-
}
794-
}
795-
],
796-
"responses": {
797-
"200": {
798-
"description": "",
799-
"content": {
800-
"application/json": {
801-
"schema": {
802-
"type": "array",
803-
"items": {
804-
"$ref": "#/components/schemas/Campaign"
805-
}
806-
}
807-
}
808-
}
809-
}
810-
},
811-
"tags": [
812-
"Campaigns"
813-
],
814-
"security": [
815-
{
816-
"bearer": []
817-
}
818-
]
819-
}
820-
},
821-
"/campaign/paginated": {
822-
"get": {
823-
"operationId": "CampaignController_findAllPaginated",
824-
"summary": "List Campaigns with pagination",
825703
"parameters": [
826704
{
827705
"name": "id",
@@ -965,7 +843,7 @@
965843
"content": {
966844
"application/json": {
967845
"schema": {
968-
"$ref": "#/components/schemas/Campaign"
846+
"$ref": "#/components/schemas/CampaignPaginatedResponse"
969847
}
970848
}
971849
}
@@ -27115,6 +26993,24 @@
2711526993
"callsCounterEnded"
2711626994
]
2711726995
},
26996+
"CampaignPaginatedResponse": {
26997+
"type": "object",
26998+
"properties": {
26999+
"results": {
27000+
"type": "array",
27001+
"items": {
27002+
"$ref": "#/components/schemas/Campaign"
27003+
}
27004+
},
27005+
"metadata": {
27006+
"$ref": "#/components/schemas/PaginationMeta"
27007+
}
27008+
},
27009+
"required": [
27010+
"results",
27011+
"metadata"
27012+
]
27013+
},
2711827014
"UpdateCampaignDTO": {
2711927015
"type": "object",
2712027016
"properties": {

fern/fern.config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"organization": "vapi",
3-
"version": "0.63.35"
3+
"version": "0.64.36"
44
}

0 commit comments

Comments
 (0)