Skip to content

Commit

Permalink
feat(api): update via SDK Studio
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-bot committed Mar 22, 2024
1 parent 4c2f56d commit 2819394
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions src/resources/retell-llms.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ export namespace RetellLlmCreateResponse {

destinationStateName?: string;

parameters?: unknown | null;
parameters?: Array<unknown> | null;

speakDuringTransition?: boolean;
}
Expand Down Expand Up @@ -320,7 +320,7 @@ export namespace RetellLlmRetrieveResponse {

destinationStateName?: string;

parameters?: unknown | null;
parameters?: Array<unknown> | null;

speakDuringTransition?: boolean;
}
Expand Down Expand Up @@ -482,7 +482,7 @@ export namespace RetellLlmUpdateResponse {

destinationStateName?: string;

parameters?: unknown | null;
parameters?: Array<unknown> | null;

speakDuringTransition?: boolean;
}
Expand Down Expand Up @@ -647,7 +647,7 @@ export namespace RetellLlmListResponse {

destinationStateName?: string;

parameters?: unknown | null;
parameters?: Array<unknown> | null;

speakDuringTransition?: boolean;
}
Expand Down Expand Up @@ -799,7 +799,7 @@ export namespace RetellLlmCreateParams {

destinationStateName?: string;

parameters?: unknown | null;
parameters?: Array<unknown> | null;

speakDuringTransition?: boolean;
}
Expand Down Expand Up @@ -950,7 +950,7 @@ export namespace RetellLlmUpdateParams {

destinationStateName?: string;

parameters?: unknown | null;
parameters?: Array<unknown> | null;

speakDuringTransition?: boolean;
}
Expand Down
12 changes: 6 additions & 6 deletions tests/api-resources/retell-llms.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ describe('resource retellLlms', () => {
edges: {
destinationStateName: 'string',
description: 'string',
parameters: {},
parameters: [{}, {}, {}],
speakDuringTransition: true,
},
tools: { type: 'pre_defined', name: 'end_call', description: 'string' },
Expand All @@ -48,7 +48,7 @@ describe('resource retellLlms', () => {
edges: {
destinationStateName: 'string',
description: 'string',
parameters: {},
parameters: [{}, {}, {}],
speakDuringTransition: true,
},
tools: { type: 'pre_defined', name: 'end_call', description: 'string' },
Expand All @@ -59,7 +59,7 @@ describe('resource retellLlms', () => {
edges: {
destinationStateName: 'string',
description: 'string',
parameters: {},
parameters: [{}, {}, {}],
speakDuringTransition: true,
},
tools: { type: 'pre_defined', name: 'end_call', description: 'string' },
Expand Down Expand Up @@ -116,7 +116,7 @@ describe('resource retellLlms', () => {
edges: {
destinationStateName: 'string',
description: 'string',
parameters: {},
parameters: [{}, {}, {}],
speakDuringTransition: true,
},
tools: { type: 'pre_defined', name: 'end_call', description: 'string' },
Expand All @@ -127,7 +127,7 @@ describe('resource retellLlms', () => {
edges: {
destinationStateName: 'string',
description: 'string',
parameters: {},
parameters: [{}, {}, {}],
speakDuringTransition: true,
},
tools: { type: 'pre_defined', name: 'end_call', description: 'string' },
Expand All @@ -138,7 +138,7 @@ describe('resource retellLlms', () => {
edges: {
destinationStateName: 'string',
description: 'string',
parameters: {},
parameters: [{}, {}, {}],
speakDuringTransition: true,
},
tools: { type: 'pre_defined', name: 'end_call', description: 'string' },
Expand Down

0 comments on commit 2819394

Please sign in to comment.