Skip to content

Commit

Permalink
fix: rename voice to get around circular generation issue (#87)
Browse files Browse the repository at this point in the history
* fix: rename voice to get around circular generation issue

* retrigger

* disable examples on SDKs to get it building

* try again

* fix

* disable examples since recursion is causing too much bloat

---------

Co-authored-by: dsinghvi <[email protected]>
  • Loading branch information
fern-support and dsinghvi authored Dec 7, 2024
1 parent eb10efd commit 555bc0c
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
**/.preview/**
**/.definition
**/.preview/**
4 changes: 3 additions & 1 deletion fern/apis/api/generators.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ groups:
generators:
- name: fernapi/fern-python-sdk
version: 4.3.8
disable-examples: true
api:
settings:
unions: v1
Expand All @@ -25,7 +26,8 @@ groups:
ts-sdk:
generators:
- name: fernapi/fern-typescript-node-sdk
version: 0.40.5
version: 0.42.7
disable-examples: true
api:
settings:
unions: v1
Expand Down
52 changes: 52 additions & 0 deletions fern/apis/api/openapi-overrides.yml
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,8 @@ paths:
x-fern-sdk-group-name:
- analytics
x-fern-sdk-method-name: get
get:
x-fern-ignore: true
/logs:
get:
x-fern-pagination: true
Expand All @@ -191,6 +193,56 @@ paths:
x-fern-sdk-method-name: get
components:
schemas:
FallbackAzureVoice:
properties:
voiceId:
x-fern-type-name: FallbackAzureVoiceId
oneOf:
- x-fern-type-name: FallbackAzureVoiceIdEnum
FallbackDeepgramVoice:
properties:
voiceId:
x-fern-type-name: FallbackDeepgramVoiceId
oneOf:
- x-fern-type-name: FallbackDeepgramVoiceIdEnum
FallbackElevenLabsVoice:
properties:
voiceId:
x-fern-type-name: FallbackElevenLabsVoiceId
oneOf:
- x-fern-type-name: FallbackElevenLabsVoiceIdEnum
provider:
x-fern-type: literal<"11labs">
FallbackOpenAIVoice:
properties:
voiceId:
x-fern-type-name: FallbackOpenAIVoiceId
oneOf:
- x-fern-type-name: FallbackOpenAIVoiceIdEnum
FallbackRimeAIVoice:
properties:
voiceId:
x-fern-type-name: FallbackRimeAIVoiceId
oneOf:
- x-fern-type-name: FallbackRimeAIVoiceIdEnum
FallbackPlayHTVoice:
properties:
voiceId:
x-fern-type-name: FallbackPlayHTVoiceId
oneOf:
- x-fern-type-name: FallbackPlayHTVoiceIdEnum
FallbackLMNTVoice:
properties:
voiceId:
x-fern-type-name: FallbackLMNTVoiceId
oneOf:
- x-fern-type-name: FallbackLMNTVoiceIdEnum
FallbackNeetsVoice:
properties:
voiceId:
x-fern-type-name: FallbackNeetsVoiceId
oneOf:
- x-fern-type-name: FallbackNeetsVoiceIdEnum
AzureVoice:
properties:
voiceId:
Expand Down
2 changes: 1 addition & 1 deletion fern/fern.config.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"organization": "vapi",
"version": "0.45.1"
"version": "0.45.3"
}

0 comments on commit 555bc0c

Please sign in to comment.