Skip to content

Commit

Permalink
Release 0.0.1-beta14
Browse files Browse the repository at this point in the history
  • Loading branch information
fern-api[bot] committed Sep 5, 2024
1 parent 48edf39 commit 02d5a2f
Show file tree
Hide file tree
Showing 12 changed files with 141 additions and 141 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gooeyai",
"version": "0.0.1-beta13",
"version": "0.0.1-beta14",
"private": false,
"repository": "https://github.com/GooeyAI/typescript-sdk",
"main": "./index.js",
Expand Down
10 changes: 5 additions & 5 deletions reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ await client.copilotIntegrations.videoBotsStream("request_id");

## CopilotForYourEnterprise

<details><summary><code>client.copilotForYourEnterprise.<a href="/src/api/resources/copilotForYourEnterprise/client/Client.ts">asyncFormVideoBots</a>({ ...params }) -> Gooey.AsyncApiResponseModelV3</code></summary>
<details><summary><code>client.copilotForYourEnterprise.<a href="/src/api/resources/copilotForYourEnterprise/client/Client.ts">asyncFormVideoBots</a>({ ...params }) -> Gooey.BodyAsyncFormVideoBots</code></summary>
<dl>
<dd>

Expand Down Expand Up @@ -194,7 +194,7 @@ await client.copilotForYourEnterprise.asyncFormVideoBots();

## Evaluator

<details><summary><code>client.evaluator.<a href="/src/api/resources/evaluator/client/Client.ts">asyncFormBulkEval</a>({ ...params }) -> Gooey.AsyncApiResponseModelV3</code></summary>
<details><summary><code>client.evaluator.<a href="/src/api/resources/evaluator/client/Client.ts">asyncFormBulkEval</a>({ ...params }) -> Gooey.BodyAsyncFormBulkEval</code></summary>
<dl>
<dd>

Expand Down Expand Up @@ -244,7 +244,7 @@ await client.evaluator.asyncFormBulkEval();

## SmartGpt

<details><summary><code>client.smartGpt.<a href="/src/api/resources/smartGpt/client/Client.ts">asyncFormSmartGpt</a>({ ...params }) -> Gooey.AsyncApiResponseModelV3</code></summary>
<details><summary><code>client.smartGpt.<a href="/src/api/resources/smartGpt/client/Client.ts">asyncFormSmartGpt</a>({ ...params }) -> Gooey.BodyAsyncFormSmartGpt</code></summary>
<dl>
<dd>

Expand Down Expand Up @@ -334,7 +334,7 @@ await client.smartGpt.post();

## Functions

<details><summary><code>client.functions.<a href="/src/api/resources/functions/client/Client.ts">asyncFormFunctions</a>({ ...params }) -> Gooey.AsyncApiResponseModelV3</code></summary>
<details><summary><code>client.functions.<a href="/src/api/resources/functions/client/Client.ts">asyncFormFunctions</a>({ ...params }) -> Gooey.BodyAsyncFormFunctions</code></summary>
<dl>
<dd>

Expand Down Expand Up @@ -424,7 +424,7 @@ await client.functions.post();

## LipSyncing

<details><summary><code>client.lipSyncing.<a href="/src/api/resources/lipSyncing/client/Client.ts">asyncFormLipsync</a>({ ...params }) -> Gooey.AsyncApiResponseModelV3</code></summary>
<details><summary><code>client.lipSyncing.<a href="/src/api/resources/lipSyncing/client/Client.ts">asyncFormLipsync</a>({ ...params }) -> Gooey.BodyAsyncFormLipsync</code></summary>
<dl>
<dd>

Expand Down
224 changes: 112 additions & 112 deletions src/Client.ts

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/api/resources/bulkRunner/client/Client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export class BulkRunner {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "gooeyai",
"X-Fern-SDK-Version": "0.0.1-beta13",
"X-Fern-SDK-Version": "0.0.1-beta14",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
Expand Down
6 changes: 3 additions & 3 deletions src/api/resources/copilotForYourEnterprise/client/Client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export class CopilotForYourEnterprise {
public async asyncFormVideoBots(
request: Gooey.AsyncFormVideoBotsRequest = {},
requestOptions?: CopilotForYourEnterprise.RequestOptions
): Promise<Gooey.AsyncApiResponseModelV3> {
): Promise<Gooey.BodyAsyncFormVideoBots> {
const { exampleId } = request;
const _queryParams: Record<string, string | string[] | object | object[]> = {};
if (exampleId != null) {
Expand All @@ -62,7 +62,7 @@ export class CopilotForYourEnterprise {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "gooeyai",
"X-Fern-SDK-Version": "0.0.1-beta13",
"X-Fern-SDK-Version": "0.0.1-beta14",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
Expand All @@ -74,7 +74,7 @@ export class CopilotForYourEnterprise {
abortSignal: requestOptions?.abortSignal,
});
if (_response.ok) {
return serializers.AsyncApiResponseModelV3.parseOrThrow(_response.body, {
return serializers.BodyAsyncFormVideoBots.parseOrThrow(_response.body, {
unrecognizedObjectKeys: "passthrough",
allowUnrecognizedUnionMembers: true,
allowUnrecognizedEnumValues: true,
Expand Down
4 changes: 2 additions & 2 deletions src/api/resources/copilotIntegrations/client/Client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export class CopilotIntegrations {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "gooeyai",
"X-Fern-SDK-Version": "0.0.1-beta13",
"X-Fern-SDK-Version": "0.0.1-beta14",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
Expand Down Expand Up @@ -137,7 +137,7 @@ export class CopilotIntegrations {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "gooeyai",
"X-Fern-SDK-Version": "0.0.1-beta13",
"X-Fern-SDK-Version": "0.0.1-beta14",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
Expand Down
2 changes: 1 addition & 1 deletion src/api/resources/embeddings/client/Client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export class Embeddings {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "gooeyai",
"X-Fern-SDK-Version": "0.0.1-beta13",
"X-Fern-SDK-Version": "0.0.1-beta14",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
Expand Down
6 changes: 3 additions & 3 deletions src/api/resources/evaluator/client/Client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export class Evaluator {
public async asyncFormBulkEval(
request: Gooey.AsyncFormBulkEvalRequest = {},
requestOptions?: Evaluator.RequestOptions
): Promise<Gooey.AsyncApiResponseModelV3> {
): Promise<Gooey.BodyAsyncFormBulkEval> {
const { exampleId } = request;
const _queryParams: Record<string, string | string[] | object | object[]> = {};
if (exampleId != null) {
Expand All @@ -62,7 +62,7 @@ export class Evaluator {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "gooeyai",
"X-Fern-SDK-Version": "0.0.1-beta13",
"X-Fern-SDK-Version": "0.0.1-beta14",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
Expand All @@ -74,7 +74,7 @@ export class Evaluator {
abortSignal: requestOptions?.abortSignal,
});
if (_response.ok) {
return serializers.AsyncApiResponseModelV3.parseOrThrow(_response.body, {
return serializers.BodyAsyncFormBulkEval.parseOrThrow(_response.body, {
unrecognizedObjectKeys: "passthrough",
allowUnrecognizedUnionMembers: true,
allowUnrecognizedEnumValues: true,
Expand Down
8 changes: 4 additions & 4 deletions src/api/resources/functions/client/Client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export class Functions {
public async asyncFormFunctions(
request: Gooey.AsyncFormFunctionsRequest = {},
requestOptions?: Functions.RequestOptions
): Promise<Gooey.AsyncApiResponseModelV3> {
): Promise<Gooey.BodyAsyncFormFunctions> {
const { exampleId } = request;
const _queryParams: Record<string, string | string[] | object | object[]> = {};
if (exampleId != null) {
Expand All @@ -62,7 +62,7 @@ export class Functions {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "gooeyai",
"X-Fern-SDK-Version": "0.0.1-beta13",
"X-Fern-SDK-Version": "0.0.1-beta14",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
Expand All @@ -74,7 +74,7 @@ export class Functions {
abortSignal: requestOptions?.abortSignal,
});
if (_response.ok) {
return serializers.AsyncApiResponseModelV3.parseOrThrow(_response.body, {
return serializers.BodyAsyncFormFunctions.parseOrThrow(_response.body, {
unrecognizedObjectKeys: "passthrough",
allowUnrecognizedUnionMembers: true,
allowUnrecognizedEnumValues: true,
Expand Down Expand Up @@ -167,7 +167,7 @@ export class Functions {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "gooeyai",
"X-Fern-SDK-Version": "0.0.1-beta13",
"X-Fern-SDK-Version": "0.0.1-beta14",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
Expand Down
6 changes: 3 additions & 3 deletions src/api/resources/lipSyncing/client/Client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export class LipSyncing {
public async asyncFormLipsync(
request: Gooey.AsyncFormLipsyncRequest = {},
requestOptions?: LipSyncing.RequestOptions
): Promise<Gooey.AsyncApiResponseModelV3> {
): Promise<Gooey.BodyAsyncFormLipsync> {
const { exampleId } = request;
const _queryParams: Record<string, string | string[] | object | object[]> = {};
if (exampleId != null) {
Expand All @@ -62,7 +62,7 @@ export class LipSyncing {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "gooeyai",
"X-Fern-SDK-Version": "0.0.1-beta13",
"X-Fern-SDK-Version": "0.0.1-beta14",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
Expand All @@ -74,7 +74,7 @@ export class LipSyncing {
abortSignal: requestOptions?.abortSignal,
});
if (_response.ok) {
return serializers.AsyncApiResponseModelV3.parseOrThrow(_response.body, {
return serializers.BodyAsyncFormLipsync.parseOrThrow(_response.body, {
unrecognizedObjectKeys: "passthrough",
allowUnrecognizedUnionMembers: true,
allowUnrecognizedEnumValues: true,
Expand Down
4 changes: 2 additions & 2 deletions src/api/resources/misc/client/Client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export class Misc {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "gooeyai",
"X-Fern-SDK-Version": "0.0.1-beta13",
"X-Fern-SDK-Version": "0.0.1-beta14",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
Expand Down Expand Up @@ -123,7 +123,7 @@ export class Misc {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "gooeyai",
"X-Fern-SDK-Version": "0.0.1-beta13",
"X-Fern-SDK-Version": "0.0.1-beta14",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
Expand Down
8 changes: 4 additions & 4 deletions src/api/resources/smartGpt/client/Client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export class SmartGpt {
public async asyncFormSmartGpt(
request: Gooey.AsyncFormSmartGptRequest = {},
requestOptions?: SmartGpt.RequestOptions
): Promise<Gooey.AsyncApiResponseModelV3> {
): Promise<Gooey.BodyAsyncFormSmartGpt> {
const { exampleId } = request;
const _queryParams: Record<string, string | string[] | object | object[]> = {};
if (exampleId != null) {
Expand All @@ -62,7 +62,7 @@ export class SmartGpt {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "gooeyai",
"X-Fern-SDK-Version": "0.0.1-beta13",
"X-Fern-SDK-Version": "0.0.1-beta14",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
Expand All @@ -74,7 +74,7 @@ export class SmartGpt {
abortSignal: requestOptions?.abortSignal,
});
if (_response.ok) {
return serializers.AsyncApiResponseModelV3.parseOrThrow(_response.body, {
return serializers.BodyAsyncFormSmartGpt.parseOrThrow(_response.body, {
unrecognizedObjectKeys: "passthrough",
allowUnrecognizedUnionMembers: true,
allowUnrecognizedEnumValues: true,
Expand Down Expand Up @@ -167,7 +167,7 @@ export class SmartGpt {
Authorization: await this._getAuthorizationHeader(),
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "gooeyai",
"X-Fern-SDK-Version": "0.0.1-beta13",
"X-Fern-SDK-Version": "0.0.1-beta14",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
},
Expand Down

0 comments on commit 02d5a2f

Please sign in to comment.