Skip to content

Commit 555bc0c

Browse files
fix: rename voice to get around circular generation issue (#87)
* 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]>
1 parent eb10efd commit 555bc0c

File tree

4 files changed

+58
-3
lines changed

4 files changed

+58
-3
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
**/.preview/**
1+
**/.definition
2+
**/.preview/**

fern/apis/api/generators.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ groups:
1111
generators:
1212
- name: fernapi/fern-python-sdk
1313
version: 4.3.8
14+
disable-examples: true
1415
api:
1516
settings:
1617
unions: v1
@@ -25,7 +26,8 @@ groups:
2526
ts-sdk:
2627
generators:
2728
- name: fernapi/fern-typescript-node-sdk
28-
version: 0.40.5
29+
version: 0.42.7
30+
disable-examples: true
2931
api:
3032
settings:
3133
unions: v1

fern/apis/api/openapi-overrides.yml

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,8 @@ paths:
183183
x-fern-sdk-group-name:
184184
- analytics
185185
x-fern-sdk-method-name: get
186+
get:
187+
x-fern-ignore: true
186188
/logs:
187189
get:
188190
x-fern-pagination: true
@@ -191,6 +193,56 @@ paths:
191193
x-fern-sdk-method-name: get
192194
components:
193195
schemas:
196+
FallbackAzureVoice:
197+
properties:
198+
voiceId:
199+
x-fern-type-name: FallbackAzureVoiceId
200+
oneOf:
201+
- x-fern-type-name: FallbackAzureVoiceIdEnum
202+
FallbackDeepgramVoice:
203+
properties:
204+
voiceId:
205+
x-fern-type-name: FallbackDeepgramVoiceId
206+
oneOf:
207+
- x-fern-type-name: FallbackDeepgramVoiceIdEnum
208+
FallbackElevenLabsVoice:
209+
properties:
210+
voiceId:
211+
x-fern-type-name: FallbackElevenLabsVoiceId
212+
oneOf:
213+
- x-fern-type-name: FallbackElevenLabsVoiceIdEnum
214+
provider:
215+
x-fern-type: literal<"11labs">
216+
FallbackOpenAIVoice:
217+
properties:
218+
voiceId:
219+
x-fern-type-name: FallbackOpenAIVoiceId
220+
oneOf:
221+
- x-fern-type-name: FallbackOpenAIVoiceIdEnum
222+
FallbackRimeAIVoice:
223+
properties:
224+
voiceId:
225+
x-fern-type-name: FallbackRimeAIVoiceId
226+
oneOf:
227+
- x-fern-type-name: FallbackRimeAIVoiceIdEnum
228+
FallbackPlayHTVoice:
229+
properties:
230+
voiceId:
231+
x-fern-type-name: FallbackPlayHTVoiceId
232+
oneOf:
233+
- x-fern-type-name: FallbackPlayHTVoiceIdEnum
234+
FallbackLMNTVoice:
235+
properties:
236+
voiceId:
237+
x-fern-type-name: FallbackLMNTVoiceId
238+
oneOf:
239+
- x-fern-type-name: FallbackLMNTVoiceIdEnum
240+
FallbackNeetsVoice:
241+
properties:
242+
voiceId:
243+
x-fern-type-name: FallbackNeetsVoiceId
244+
oneOf:
245+
- x-fern-type-name: FallbackNeetsVoiceIdEnum
194246
AzureVoice:
195247
properties:
196248
voiceId:

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.45.1"
3+
"version": "0.45.3"
44
}

0 commit comments

Comments
 (0)